Skip to main content

remowt_client/
lib.rs

1use std::collections::HashMap;
2use std::env;
3use std::path::PathBuf;
4use std::sync::{Arc, Mutex};
5
6use anyhow::{anyhow, bail, ensure, Context as _, Result};
7use bifrostlink::declarative::RemoteEndpoints;
8use bifrostlink::{Remote, Rpc, Rtt};
9use camino::{Utf8Path, Utf8PathBuf};
10use remowt_link_shared::plugin::PluginEndpointsClient;
11use remowt_link_shared::port::child_port;
12use remowt_link_shared::{Address, BifConfig};
13use russh::client::{connect, Config, Handle, Handler, Msg, Session};
14use russh::keys::agent::client::AgentClient;
15use russh::keys::agent::AgentIdentity;
16use russh::keys::check_known_hosts;
17use russh::keys::ssh_key::PublicKey;
18use russh::Channel;
19use tempfile::TempDir;
20use tokio::io::AsyncRead;
21use tokio::net::UnixListener;
22use tokio::sync::oneshot;
23use tokio::task::JoinHandle;
24use tokio::{
25	fs,
26	io::{AsyncBufReadExt as _, AsyncReadExt as _, AsyncWriteExt as _, BufReader},
27};
28use tracing::{debug, info, warn};
29use uuid::Uuid;
30
31pub mod editor;
32mod forwarded;
33mod shell;
34mod ssh_exec;
35mod subprocess;
36
37use self::ssh_exec::SshExecChild;
38pub use self::subprocess::{RemowtChild, SpawnOptions, StderrMode, StdioMode};
39pub use forwarded::{RemowtListener, RemowtStream};
40pub use shell::{RemowtShell, RemowtShellResizer};
41
42type Subs = Arc<Mutex<HashMap<Utf8PathBuf, oneshot::Sender<Channel<Msg>>>>>;
43
44fn sh_quote(s: impl AsRef<str>) -> String {
45	format!("'{}'", s.as_ref().replace('\'', "'\\''"))
46}
47
48const ESCALATORS: [(&str, &[&str]); 2] = [("run0", &["--background=", "--pipe"]), ("sudo", &[])];
49
50pub struct AgentBundle {
51	dir: PathBuf,
52	hashes: HashMap<String, String>,
53}
54
55impl AgentBundle {
56	pub fn from_dir(dir: impl Into<PathBuf>) -> Result<Self> {
57		let dir = dir.into();
58		let hashes_path = dir.join("hashes");
59		let raw = std::fs::read_to_string(&hashes_path)
60			.with_context(|| format!("reading agent hashes at {}", hashes_path.display()))?;
61		let mut hashes = HashMap::new();
62		for line in raw.lines() {
63			let line = line.trim();
64			if line.is_empty() {
65				continue;
66			}
67			let (arch, hash) = line
68				.split_once(char::is_whitespace)
69				.ok_or_else(|| anyhow!("malformed hashes line: {line:?}"))?;
70			hashes.insert(arch.to_owned(), hash.trim().to_owned());
71		}
72		ensure!(
73			!hashes.is_empty(),
74			"agent bundle {} has no hashes",
75			dir.display()
76		);
77		Ok(Self { dir, hashes })
78	}
79
80	fn binary(&self, arch: &str) -> PathBuf {
81		self.dir.join(format!("remowt-agent-{arch}"))
82	}
83
84	fn local_binary(&self) -> Result<PathBuf> {
85		let arch = env::consts::ARCH;
86		let path = self.binary(arch);
87		ensure!(
88			path.is_file(),
89			"no local remowt-agent build for arch {arch} in bundle {}",
90			self.dir.display()
91		);
92		Ok(path)
93	}
94}
95
96async fn run(sess: &Handle<SshHandler>, cmd: &str) -> Result<(Option<u32>, Vec<u8>)> {
97	let ch = sess.channel_open_session().await?;
98	ch.exec(true, cmd).await?;
99
100	let mut child = SshExecChild::from_exec(ch);
101	drop(child.stdin);
102	drain_to_tracing(child.stderr, cmd.to_owned(), true);
103
104	let mut out = Vec::new();
105	child.stdout.read_to_end(&mut out).await?;
106	let code = child.exit.await.ok().flatten();
107	Ok((code, out))
108}
109
110async fn run_string_ok(sess: &Handle<SshHandler>, cmd: &str) -> Result<String> {
111	let (code, mut out) = run(sess, cmd).await?;
112	ensure!(
113		code == Some(0),
114		"remote command failed (exit {code:?}): {cmd}"
115	);
116	if !out.is_empty() {
117		ensure!(
118			out.ends_with(b"\n"),
119			"remote command was not newline-terminated: {cmd}: {out:?}"
120		);
121		out.pop();
122	}
123	String::from_utf8(out).context("expected utf8 output for command")
124}
125
126async fn deploy_agent(sess: &Handle<SshHandler>, bundle: &AgentBundle) -> Result<Utf8PathBuf> {
127	debug!("uname -a");
128	let arch = run_string_ok(sess, "uname -m").await?;
129	let hash = bundle
130		.hashes
131		.get(&arch)
132		.ok_or_else(|| anyhow!("no remowt-agent build for remote arch {arch:?}"))?;
133
134	debug!("get dir");
135	let cache = run_string_ok(sess, "echo \"$XDG_CACHE_HOME\"").await?;
136	let dir = if cache.is_empty() {
137		let home = run_string_ok(sess, "echo \"$HOME\"").await?;
138		ensure!(
139			!home.is_empty(),
140			"remote $HOME and $XDG_CACHE_HOME both empty"
141		);
142		Utf8PathBuf::from(home).join(".cache/remowt")
143	} else {
144		Utf8PathBuf::from(cache).join("remowt")
145	};
146	let path = dir.join(hash);
147
148	debug!("presence");
149	let (present, _) = run(sess, &format!("test -x {}", sh_quote(&path))).await?;
150	if present != Some(0) {
151		let bin = bundle.binary(&arch);
152		debug!("read");
153		let bytes = fs::read(&bin)
154			.await
155			.with_context(|| format!("reading agent binary {}", bin.display()))?;
156		debug!("upload");
157		upload_agent(sess, &dir, &path, bytes).await?;
158	}
159	Ok(path)
160}
161
162async fn upload_agent(
163	sess: &Handle<SshHandler>,
164	dir: &Utf8Path,
165	path: &Utf8Path,
166	bytes: Vec<u8>,
167) -> Result<()> {
168	debug!("mkdirp");
169	run_string_ok(sess, &format!("mkdir -p {}", sh_quote(dir))).await?;
170
171	let tmp = dir.join(format!("tmp.{}", Uuid::new_v4()));
172	let ch = sess.channel_open_session().await?;
173	debug!("cat");
174	ch.exec(true, format!("cat > {}", sh_quote(&tmp))).await?;
175
176	let mut child = SshExecChild::from_exec(ch);
177	child
178		.stdin
179		.write_all(&bytes)
180		.await
181		.context("sending agent binary")?;
182	child
183		.stdin
184		.shutdown()
185		.await
186		.context("sending agent binary")?;
187	let code = child.wait().await;
188	ensure!(code == Some(0), "agent upload failed (exit {code:?})");
189
190	debug!("chmod");
191	run_string_ok(sess, &format!("chmod 0755 {}", sh_quote(&tmp))).await?;
192	run_string_ok(
193		sess,
194		&format!("mv -f {} {}", sh_quote(&tmp), sh_quote(path)),
195	)
196	.await?;
197	Ok(())
198}
199
200pub struct SshHandler {
201	host: String,
202	port: u16,
203	subs: Subs,
204}
205impl Handler for SshHandler {
206	type Error = russh::Error;
207	async fn check_server_key(
208		&mut self,
209		server_public_key: &PublicKey,
210	) -> Result<bool, Self::Error> {
211		Ok(check_known_hosts(&self.host, self.port, server_public_key)?)
212	}
213	async fn server_channel_open_forwarded_streamlocal(
214		&mut self,
215		channel: Channel<Msg>,
216		socket_path: &str,
217		_session: &mut Session,
218	) -> Result<(), Self::Error> {
219		let Some(ch) = self
220			.subs
221			.lock()
222			.expect("lock")
223			.remove(&Utf8PathBuf::from(socket_path))
224		else {
225			return Err(russh::Error::WrongChannel);
226		};
227		let _ = ch.send(channel);
228		Ok(())
229	}
230}
231
232enum Transport {
233	Ssh {
234		sess: Arc<Handle<SshHandler>>,
235		subs: Subs,
236		runtime_dir: Utf8PathBuf,
237		agent_path: Utf8PathBuf,
238	},
239	Local {
240		agent_path: PathBuf,
241		runtime_dir: Utf8PathBuf,
242	},
243}
244
245struct RemowtInner {
246	transport: Transport,
247	rpc: Rpc<BifConfig>,
248	elevated: tokio::sync::OnceCell<()>,
249	#[allow(dead_code)]
250	children: Mutex<Vec<tokio::process::Child>>,
251	_runtime_tmp: Option<TempDir>,
252}
253
254#[derive(Clone)]
255pub struct Remowt(Arc<RemowtInner>);
256
257pub type RemowtRemote = Remote<BifConfig>;
258
259impl Remowt {
260	/// Connect to the remote host over ssh, detect the architecture and deploy the required
261	/// agent binary.
262	pub async fn connect(host: &str, bundle: &AgentBundle) -> Result<Self> {
263		let conf = russh_config::parse_home(host)?;
264		let port = conf.host_config.port.or(conf.port).unwrap_or(22);
265		let hostname = conf
266			.host_config
267			.hostname
268			.clone()
269			.unwrap_or_else(|| conf.host_name.clone());
270		let user = conf
271			.user
272			.clone()
273			.unwrap_or_else(|| env::var("USER").unwrap_or_else(|_| "root".to_owned()));
274
275		let subs: Subs = Arc::new(Mutex::new(HashMap::new()));
276		let mut sess = connect(
277			Arc::new(Config::default()),
278			(hostname.clone(), port),
279			SshHandler {
280				host: hostname,
281				port,
282				subs: subs.clone(),
283			},
284		)
285		.await?;
286
287		let mut agent = AgentClient::connect_env().await?;
288		let rsa_hash = sess.best_supported_rsa_hash().await?.flatten();
289		let mut authenticated = false;
290		for ident in agent.request_identities().await? {
291			let AgentIdentity::PublicKey { key, .. } = ident else {
292				continue;
293			};
294			if sess
295				.authenticate_publickey_with(user.clone(), key, rsa_hash, &mut agent)
296				.await?
297				.success()
298			{
299				authenticated = true;
300				break;
301			}
302		}
303		ensure!(authenticated, "ssh authentication failed");
304
305		let sess = Arc::new(sess);
306
307		debug!("deploying agent");
308		let agent_path = deploy_agent(&sess, bundle).await?;
309
310		debug!("runtime dir");
311		let runtime_dir = remote_runtime_dir(&sess).await?;
312
313		let rpc = Rpc::<BifConfig>::new(Address::User);
314
315		let cmd_chan = sess.channel_open_session().await?;
316		debug!("starting agent");
317		cmd_chan
318			.exec(true, format!("{} real-agent", sh_quote(&agent_path)))
319			.await?;
320
321		let child = SshExecChild::from_exec(cmd_chan);
322		drain_to_tracing(child.stderr, "agent".to_owned(), true);
323		rpc.add_direct(
324			Address::Agent,
325			child_port(child.stdout, child.stdin),
326			Rtt(0),
327		);
328
329		Ok(Self(Arc::new(RemowtInner {
330			transport: Transport::Ssh {
331				sess,
332				subs,
333				runtime_dir,
334				agent_path,
335			},
336			rpc,
337			elevated: tokio::sync::OnceCell::new(),
338			children: Mutex::new(Vec::new()),
339			_runtime_tmp: None,
340		})))
341	}
342
343	/// "Connect" to the local machine's agent, by starting the agent binary locally.
344	pub async fn connect_local(bundle: &AgentBundle) -> Result<Self> {
345		let agent_path = bundle.local_binary()?;
346		let mut child = tokio::process::Command::new(&agent_path)
347			.arg("real-agent")
348			.arg("--local")
349			.stdin(std::process::Stdio::piped())
350			.stdout(std::process::Stdio::piped())
351			.kill_on_drop(true)
352			.spawn()
353			.with_context(|| format!("spawning agent binary {}", agent_path.display()))?;
354		let stdin = child.stdin.take().expect("stdin piped");
355		let stdout = child.stdout.take().expect("stdout piped");
356
357		let rpc = Rpc::<BifConfig>::new(Address::User);
358		rpc.add_direct(Address::Agent, child_port(stdout, stdin), Rtt(0));
359
360		let (runtime_dir, runtime_tmp) = local_runtime_dir()?;
361
362		Ok(Self(Arc::new(RemowtInner {
363			transport: Transport::Local {
364				agent_path,
365				runtime_dir,
366			},
367			rpc,
368			elevated: tokio::sync::OnceCell::new(),
369			children: Mutex::new(vec![child]),
370			_runtime_tmp: runtime_tmp,
371		})))
372	}
373
374	/// Get the handle to the underlying russh session handle.
375	pub fn ssh(&self) -> Option<Arc<Handle<SshHandler>>> {
376		match &self.0.transport {
377			Transport::Ssh { sess, .. } => Some(sess.clone()),
378			Transport::Local { .. } => None,
379		}
380	}
381
382	pub fn rpc(&self) -> Rpc<BifConfig> {
383		self.0.rpc.clone()
384	}
385
386	pub async fn load_plugin(&self, id: u16, name: &str) -> Result<()> {
387		let client: PluginEndpointsClient<BifConfig> = self.endpoints();
388		client
389			.load_plugin(id, name.to_owned())
390			.await?
391			.map_err(|e| anyhow!("agent failed to load plugin: {e}"))
392	}
393	pub async fn run0_load_plugin_path(&self, id: u16, path: &str) -> Result<()> {
394		self.ensure_escalated().await?;
395		let client: PluginEndpointsClient<BifConfig> =
396			PluginEndpointsClient::wrap(self.0.rpc.remote(Address::AgentPrivileged));
397		client
398			.load_plugin_path(id, path.to_owned())
399			.await?
400			.map_err(|e| anyhow!("privileged agent failed to load plugin: {e}"))
401	}
402	pub fn plugin_endpoints<R: RemoteEndpoints<BifConfig>>(&self, id: u16) -> R {
403		R::wrap(self.0.rpc.remote(Address::Plugin(id)))
404	}
405
406	pub fn endpoints<R: RemoteEndpoints<BifConfig>>(&self) -> R {
407		R::wrap(self.0.rpc.remote(Address::Agent))
408	}
409	pub async fn run0_endpoints<R: RemoteEndpoints<BifConfig>>(&self) -> Result<R> {
410		self.ensure_escalated().await?;
411		Ok(R::wrap(self.0.rpc.remote(Address::AgentPrivileged)))
412	}
413
414	async fn ensure_escalated(&self) -> Result<()> {
415		self.0
416			.elevated
417			.get_or_try_init(|| async {
418				let (agent_path, local) = match &self.0.transport {
419					Transport::Ssh { agent_path, .. } => (agent_path.as_str().to_owned(), false),
420					Transport::Local { agent_path, .. } => (
421						agent_path
422							.to_str()
423							.ok_or_else(|| anyhow!("local agent path is not utf-8"))?
424							.to_owned(),
425						true,
426					),
427				};
428
429				let (tool, flags) = self.detect_escalation().await?;
430				let mut args: Vec<String> = Vec::new();
431				args.push("-w".to_owned());
432				args.push(tool.to_owned());
433				args.extend(flags.iter().copied().map(str::to_owned));
434				args.push(agent_path);
435				args.push("real-agent".to_owned());
436				args.push("--privileged".to_owned());
437				if local {
438					args.push("--local".to_owned());
439				}
440
441				let child = self
442					.spawn(SpawnOptions {
443						program: "setsid".to_owned(),
444						args,
445						stdin: StdioMode::Pipe,
446						stdout: StdioMode::Pipe,
447						stderr: StderrMode::Inherit,
448						..Default::default()
449					})
450					.await
451					.context("spawning privileged agent")?;
452
453				let stdin = child
454					.stdin
455					.ok_or_else(|| anyhow!("privileged agent stdin missing"))?;
456				let stdout = child
457					.stdout
458					.ok_or_else(|| anyhow!("privileged agent stdout missing"))?;
459
460				let port = child_port(stdout, stdin);
461				self.0
462					.rpc
463					.add_direct(Address::AgentPrivileged, port, Rtt(0));
464				anyhow::Ok(())
465			})
466			.await?;
467		Ok(())
468	}
469
470	async fn detect_escalation(&self) -> Result<(&'static str, &'static [&'static str])> {
471		for (tool, flags) in ESCALATORS {
472			let probe = self
473				.spawn(SpawnOptions {
474					program: (*tool).to_owned(),
475					args: vec!["--version".to_owned()],
476					stdout: StdioMode::Null,
477					stderr: StderrMode::Null,
478					..Default::default()
479				})
480				.await;
481			if let Ok(child) = probe {
482				let _ = child.wait().await;
483				return Ok((tool, flags));
484			}
485		}
486		bail!("no escalation tool found")
487	}
488
489	/// XDG_RUNTIME_DIR on the remote machine.
490	pub fn runtime_dir(&self) -> Utf8PathBuf {
491		match &self.0.transport {
492			Transport::Ssh { runtime_dir, .. } => runtime_dir.clone(),
493			Transport::Local { runtime_dir, .. } => runtime_dir.clone(),
494		}
495	}
496
497	/// Bind unix listener socket on the remote machine with auto-generated path, returning the path.
498	pub async fn bind_runtime_unix(&self, hint: &str) -> Result<(RemowtListener, Utf8PathBuf)> {
499		let sock = self
500			.runtime_dir()
501			.join(format!("remowt-{hint}-{}.sock", Uuid::new_v4()));
502		let listener = self.bind_unix(&sock).await?;
503		Ok((listener, sock))
504	}
505
506	/// Bind unix listener socket on the remote machine on the specified path.
507	pub async fn bind_unix(&self, path: &Utf8Path) -> Result<RemowtListener> {
508		match &self.0.transport {
509			Transport::Ssh { sess, subs, .. } => {
510				let (tx, rx) = oneshot::channel();
511				subs.lock().expect("lock").insert(path.to_owned(), tx);
512				sess.streamlocal_forward(path.to_owned()).await?;
513				Ok(RemowtListener::Ssh(rx))
514			}
515			Transport::Local { .. } => {
516				let _ = std::fs::remove_file(path);
517				Ok(RemowtListener::Local(
518					UnixListener::bind(path)?,
519					path.to_owned(),
520				))
521			}
522		}
523	}
524}
525
526pub(crate) fn drain_to_tracing(
527	stream: impl AsyncRead + Unpin + 'static + Send,
528	context: String,
529	stderr: bool,
530) -> JoinHandle<()> {
531	tokio::spawn(async move {
532		let mut reader = BufReader::new(stream);
533		let mut buf = Vec::with_capacity(4096);
534		loop {
535			buf.clear();
536			match reader.read_until(b'\n', &mut buf).await {
537				Ok(0) => break,
538				Ok(_) => {
539					let line = String::from_utf8_lossy(buf.strip_suffix(b"\n").unwrap_or(&buf));
540					if stderr {
541						warn!(context = %context, "{line}");
542					} else {
543						info!(context = %context, "{line}");
544					}
545				}
546				Err(e) => {
547					warn!(context = %context, "child stdio read failed: {e}");
548					break;
549				}
550			}
551		}
552	})
553}
554
555fn local_runtime_dir() -> Result<(Utf8PathBuf, Option<TempDir>)> {
556	if let Ok(dir) = env::var("XDG_RUNTIME_DIR") {
557		if !dir.is_empty() {
558			return Ok((Utf8PathBuf::from(dir), None));
559		}
560	}
561	let tmp = tempfile::Builder::new()
562		.prefix("remowt.")
563		.rand_bytes(12)
564		.tempdir()?;
565	let dir = Utf8PathBuf::from_path_buf(tmp.path().to_owned())
566		.map_err(|p| anyhow!("temp dir {} is not utf-8", p.display()))?;
567	Ok((dir, Some(tmp)))
568}
569
570async fn remote_runtime_dir(sess: &Handle<SshHandler>) -> Result<Utf8PathBuf> {
571	let dir = run_string_ok(sess, "echo \"$XDG_RUNTIME_DIR\"").await?;
572	let dir = dir.trim();
573	if dir.is_empty() {
574		let tmp = run_string_ok(sess, "mktemp -d remowt.XXXXXXXXXXXX --tmpdir").await?;
575		Ok(Utf8PathBuf::from(tmp))
576	} else {
577		Ok(Utf8PathBuf::from(dir))
578	}
579}