1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286
use super::stdio::TryFromChildIo;
use super::RemoteChild;
use super::Stdio;
use super::{Error, Session};
use std::borrow::Cow;
use std::ffi::OsStr;
use std::process;
#[derive(Debug)]
pub(crate) enum CommandImp {
#[cfg(feature = "process-mux")]
ProcessImpl(super::process_impl::Command),
#[cfg(feature = "native-mux")]
NativeMuxImpl(super::native_mux_impl::Command),
}
#[cfg(feature = "process-mux")]
impl From<super::process_impl::Command> for CommandImp {
fn from(imp: super::process_impl::Command) -> Self {
CommandImp::ProcessImpl(imp)
}
}
#[cfg(feature = "native-mux")]
impl From<super::native_mux_impl::Command> for CommandImp {
fn from(imp: super::native_mux_impl::Command) -> Self {
CommandImp::NativeMuxImpl(imp)
}
}
#[cfg(any(feature = "process-mux", feature = "native-mux"))]
macro_rules! delegate {
($impl:expr, $var:ident, $then:block) => {{
match $impl {
#[cfg(feature = "process-mux")]
CommandImp::ProcessImpl($var) => $then,
#[cfg(feature = "native-mux")]
CommandImp::NativeMuxImpl($var) => $then,
}
}};
}
#[cfg(not(any(feature = "process-mux", feature = "native-mux")))]
macro_rules! delegate {
($impl:expr, $var:ident, $then:block) => {{
unreachable!("Neither feature process-mux nor native-mux is enabled")
}};
}
/// A remote process builder, providing fine-grained control over how a new remote process should
/// be spawned.
///
/// A default configuration can be generated using [`Session::command(program)`](Session::command),
/// where `program` gives a path to the program to be executed. Additional builder methods allow
/// the configuration to be changed (for example, by adding arguments) prior to spawning. The
/// interface is almost identical to that of [`std::process::Command`].
///
/// `Command` can be reused to spawn multiple remote processes. The builder methods change the
/// command without needing to immediately spawn the process. Similarly, you can call builder
/// methods after spawning a process and then spawn a new process with the modified settings.
///
/// # Environment variables and current working directory.
///
/// You'll notice that unlike its `std` counterpart, `Command` does not have any methods for
/// setting environment variables or the current working directory for the remote command. This is
/// because the SSH protocol does not support this (at least not in its standard configuration).
/// For more details on this, see the `ENVIRONMENT` section of [`ssh(1)`]. To work around this,
/// give [`env(1)`] a try. If the remote shell supports it, you can also prefix your command with
/// `["cd", "dir", "&&"]` to run the rest of the command in some directory `dir`.
///
/// # Exit status
///
/// The `ssh` command generally forwards the exit status of the remote process. The exception is if
/// a protocol-level error occured, in which case it will return with exit status 255. Since the
/// remote process _could_ also return with exit status 255, we have no reliable way to distinguish
/// between remote errors and errors from `ssh`, but this library _assumes_ that 255 means the
/// error came from `ssh`, and acts accordingly.
///
/// [`ssh(1)`]: https://linux.die.net/man/1/ssh
/// [`env(1)`]: https://linux.die.net/man/1/env
#[derive(Debug)]
pub struct Command<'s> {
session: &'s Session,
imp: CommandImp,
stdin_set: bool,
stdout_set: bool,
stderr_set: bool,
}
impl<'s> Command<'s> {
pub(crate) fn new(session: &'s super::Session, imp: CommandImp) -> Self {
Self {
session,
imp,
stdin_set: false,
stdout_set: false,
stderr_set: false,
}
}
/// Adds an argument to pass to the remote program.
///
/// Before it is passed to the remote host, `arg` is escaped so that special characters aren't
/// evaluated by the remote shell. If you do not want this behavior, use [`raw_arg`](Command::raw_arg).
///
/// Only one argument can be passed per use. So instead of:
///
/// ```no_run
/// # fn foo(c: &mut openssh::Command<'_>) { c
/// .arg("-C /path/to/repo")
/// # ; }
/// ```
///
/// usage would be:
///
/// ```no_run
/// # fn foo(c: &mut openssh::Command<'_>) { c
/// .arg("-C")
/// .arg("/path/to/repo")
/// # ; }
/// ```
///
/// To pass multiple arguments see [`args`](Command::args).
pub fn arg<S: AsRef<str>>(&mut self, arg: S) -> &mut Self {
self.raw_arg(&*shell_escape::unix::escape(Cow::Borrowed(arg.as_ref())))
}
/// Adds an argument to pass to the remote program.
///
/// Unlike [`arg`](Command::arg), this method does not shell-escape `arg`. The argument is passed as written
/// to `ssh`, which will pass it again as an argument to the remote shell. Since the remote
/// shell may do argument parsing, characters such as spaces and `*` may be interpreted by the
/// remote shell.
///
/// To pass multiple unescaped arguments see [`raw_args`](Command::raw_args).
pub fn raw_arg<S: AsRef<OsStr>>(&mut self, arg: S) -> &mut Self {
delegate!(&mut self.imp, imp, {
imp.raw_arg(arg.as_ref());
});
self
}
/// Adds multiple arguments to pass to the remote program.
///
/// Before they are passed to the remote host, each argument in `args` is escaped so that
/// special characters aren't evaluated by the remote shell. If you do not want this behavior,
/// use [`raw_args`](Command::raw_args).
///
/// To pass a single argument see [`arg`](Command::arg).
pub fn args<I, S>(&mut self, args: I) -> &mut Self
where
I: IntoIterator<Item = S>,
S: AsRef<str>,
{
for arg in args {
self.arg(arg);
}
self
}
/// Adds multiple arguments to pass to the remote program.
///
/// Unlike [`args`](Command::args), this method does not shell-escape `args`. The arguments are passed as
/// written to `ssh`, which will pass them again as arguments to the remote shell. However,
/// since the remote shell may do argument parsing, characters such as spaces and `*` may be
/// interpreted by the remote shell.
///
/// To pass a single argument see [`raw_arg`](Command::raw_arg).
pub fn raw_args<I, S>(&mut self, args: I) -> &mut Self
where
I: IntoIterator<Item = S>,
S: AsRef<OsStr>,
{
for arg in args {
self.raw_arg(arg);
}
self
}
/// Configuration for the remote process's standard input (stdin) handle.
///
/// Defaults to [`inherit`] when used with `spawn` or `status`, and
/// defaults to [`null`] when used with `output`.
///
/// [`inherit`]: struct.Stdio.html#method.inherit
/// [`null`]: struct.Stdio.html#method.null
pub fn stdin<T: Into<Stdio>>(&mut self, cfg: T) -> &mut Self {
delegate!(&mut self.imp, imp, {
imp.stdin(cfg.into());
});
self.stdin_set = true;
self
}
/// Configuration for the remote process's standard output (stdout) handle.
///
/// Defaults to [`inherit`] when used with `spawn` or `status`, and
/// defaults to [`piped`] when used with `output`.
///
/// [`inherit`]: struct.Stdio.html#method.inherit
/// [`piped`]: struct.Stdio.html#method.piped
pub fn stdout<T: Into<Stdio>>(&mut self, cfg: T) -> &mut Self {
delegate!(&mut self.imp, imp, {
imp.stdout(cfg.into());
});
self.stdout_set = true;
self
}
/// Configuration for the remote process's standard error (stderr) handle.
///
/// Defaults to [`inherit`] when used with `spawn` or `status`, and
/// defaults to [`piped`] when used with `output`.
///
/// [`inherit`]: struct.Stdio.html#method.inherit
/// [`piped`]: struct.Stdio.html#method.piped
pub fn stderr<T: Into<Stdio>>(&mut self, cfg: T) -> &mut Self {
delegate!(&mut self.imp, imp, {
imp.stderr(cfg.into());
});
self.stderr_set = true;
self
}
async fn spawn_impl(&mut self) -> Result<RemoteChild<'s>, Error> {
Ok(RemoteChild::new(
self.session,
delegate!(&mut self.imp, imp, {
let (imp, stdin, stdout, stderr) = imp.spawn().await?;
(
imp.into(),
stdin.map(TryFromChildIo::try_from).transpose()?,
stdout.map(TryFromChildIo::try_from).transpose()?,
stderr.map(TryFromChildIo::try_from).transpose()?,
)
}),
))
}
/// Executes the remote command without waiting for it, returning a handle to it
/// instead.
///
/// By default, stdin, stdout and stderr are inherited.
pub async fn spawn(&mut self) -> Result<RemoteChild<'s>, Error> {
if !self.stdin_set {
self.stdin(Stdio::inherit());
}
if !self.stdout_set {
self.stdout(Stdio::inherit());
}
if !self.stderr_set {
self.stderr(Stdio::inherit());
}
self.spawn_impl().await
}
/// Executes the remote command, waiting for it to finish and collecting all of its output.
///
/// By default, stdout and stderr are captured (and used to provide the resulting
/// output) and stdin is set to `Stdio::null()`.
pub async fn output(&mut self) -> Result<process::Output, Error> {
if !self.stdin_set {
self.stdin(Stdio::null());
}
if !self.stdout_set {
self.stdout(Stdio::piped());
}
if !self.stderr_set {
self.stderr(Stdio::piped());
}
self.spawn_impl().await?.wait_with_output().await
}
/// Executes the remote command, waiting for it to finish and collecting its exit status.
///
/// By default, stdin, stdout and stderr are inherited.
pub async fn status(&mut self) -> Result<process::ExitStatus, Error> {
self.spawn().await?.wait().await
}
}