1use crate::{
2 json_log::LogRecord,
3 protocol::{
4 MESSAGE_LEN_SIZE, MessageId, message_len_from_buffer, read_message_with_len, write_message,
5 },
6 proxy::ProxyLaunchError,
7};
8use anyhow::{Context as _, Result, anyhow};
9use async_trait::async_trait;
10use collections::HashMap;
11use futures::{
12 AsyncReadExt as _, Future, FutureExt as _, StreamExt as _,
13 channel::{
14 mpsc::{self, Sender, UnboundedReceiver, UnboundedSender},
15 oneshot,
16 },
17 future::{BoxFuture, Shared},
18 select, select_biased,
19};
20use gpui::{
21 App, AppContext as _, AsyncApp, BackgroundExecutor, BorrowAppContext, Context, Entity,
22 EventEmitter, Global, SemanticVersion, Task, WeakEntity,
23};
24use itertools::Itertools;
25use parking_lot::Mutex;
26
27use release_channel::{AppCommitSha, AppVersion, ReleaseChannel};
28use rpc::{
29 AnyProtoClient, EntityMessageSubscriber, ErrorExt, ProtoClient, ProtoMessageHandlerSet,
30 RpcError,
31 proto::{self, Envelope, EnvelopedMessage, PeerId, RequestMessage, build_typed_envelope},
32};
33use schemars::JsonSchema;
34use serde::{Deserialize, Serialize};
35use smol::{
36 fs,
37 process::{self, Child, Stdio},
38};
39use std::{
40 any::TypeId,
41 collections::VecDeque,
42 fmt, iter,
43 ops::ControlFlow,
44 path::{Path, PathBuf},
45 sync::{
46 Arc, Weak,
47 atomic::{AtomicU32, AtomicU64, Ordering::SeqCst},
48 },
49 time::{Duration, Instant},
50};
51use tempfile::TempDir;
52use util::{
53 ResultExt,
54 paths::{PathStyle, RemotePathBuf},
55};
56
57#[derive(
58 Debug, PartialEq, Eq, PartialOrd, Ord, Hash, Clone, Copy, serde::Serialize, serde::Deserialize,
59)]
60pub struct SshProjectId(pub u64);
61
62#[derive(Clone)]
63pub struct SshSocket {
64 connection_options: SshConnectionOptions,
65 #[cfg(not(target_os = "windows"))]
66 socket_path: PathBuf,
67 #[cfg(target_os = "windows")]
68 envs: HashMap<String, String>,
69}
70
71#[derive(Debug, Clone, PartialEq, Eq, Hash, Deserialize, Serialize, JsonSchema)]
72pub struct SshPortForwardOption {
73 #[serde(skip_serializing_if = "Option::is_none")]
74 pub local_host: Option<String>,
75 pub local_port: u16,
76 #[serde(skip_serializing_if = "Option::is_none")]
77 pub remote_host: Option<String>,
78 pub remote_port: u16,
79}
80
81#[derive(Debug, Default, Clone, PartialEq, Eq, Hash)]
82pub struct SshConnectionOptions {
83 pub host: String,
84 pub username: Option<String>,
85 pub port: Option<u16>,
86 pub password: Option<String>,
87 pub args: Option<Vec<String>>,
88 pub port_forwards: Option<Vec<SshPortForwardOption>>,
89
90 pub nickname: Option<String>,
91 pub upload_binary_over_ssh: bool,
92}
93
94pub struct SshArgs {
95 pub arguments: Vec<String>,
96 pub envs: Option<HashMap<String, String>>,
97}
98
99#[macro_export]
100macro_rules! shell_script {
101 ($fmt:expr, $($name:ident = $arg:expr),+ $(,)?) => {{
102 format!(
103 $fmt,
104 $(
105 $name = shlex::try_quote($arg).unwrap()
106 ),+
107 )
108 }};
109}
110
111fn parse_port_number(port_str: &str) -> Result<u16> {
112 port_str
113 .parse()
114 .with_context(|| format!("parsing port number: {port_str}"))
115}
116
117fn parse_port_forward_spec(spec: &str) -> Result<SshPortForwardOption> {
118 let parts: Vec<&str> = spec.split(':').collect();
119
120 match parts.len() {
121 4 => {
122 let local_port = parse_port_number(parts[1])?;
123 let remote_port = parse_port_number(parts[3])?;
124
125 Ok(SshPortForwardOption {
126 local_host: Some(parts[0].to_string()),
127 local_port,
128 remote_host: Some(parts[2].to_string()),
129 remote_port,
130 })
131 }
132 3 => {
133 let local_port = parse_port_number(parts[0])?;
134 let remote_port = parse_port_number(parts[2])?;
135
136 Ok(SshPortForwardOption {
137 local_host: None,
138 local_port,
139 remote_host: Some(parts[1].to_string()),
140 remote_port,
141 })
142 }
143 _ => anyhow::bail!("Invalid port forward format"),
144 }
145}
146
147impl SshConnectionOptions {
148 pub fn parse_command_line(input: &str) -> Result<Self> {
149 let input = input.trim_start_matches("ssh ");
150 let mut hostname: Option<String> = None;
151 let mut username: Option<String> = None;
152 let mut port: Option<u16> = None;
153 let mut args = Vec::new();
154 let mut port_forwards: Vec<SshPortForwardOption> = Vec::new();
155
156 // disallowed: -E, -e, -F, -f, -G, -g, -M, -N, -n, -O, -q, -S, -s, -T, -t, -V, -v, -W
157 const ALLOWED_OPTS: &[&str] = &[
158 "-4", "-6", "-A", "-a", "-C", "-K", "-k", "-X", "-x", "-Y", "-y",
159 ];
160 const ALLOWED_ARGS: &[&str] = &[
161 "-B", "-b", "-c", "-D", "-F", "-I", "-i", "-J", "-l", "-m", "-o", "-P", "-p", "-R",
162 "-w",
163 ];
164
165 let mut tokens = shlex::split(input).context("invalid input")?.into_iter();
166
167 'outer: while let Some(arg) = tokens.next() {
168 if ALLOWED_OPTS.contains(&(&arg as &str)) {
169 args.push(arg.to_string());
170 continue;
171 }
172 if arg == "-p" {
173 port = tokens.next().and_then(|arg| arg.parse().ok());
174 continue;
175 } else if let Some(p) = arg.strip_prefix("-p") {
176 port = p.parse().ok();
177 continue;
178 }
179 if arg == "-l" {
180 username = tokens.next();
181 continue;
182 } else if let Some(l) = arg.strip_prefix("-l") {
183 username = Some(l.to_string());
184 continue;
185 }
186 if arg == "-L" || arg.starts_with("-L") {
187 let forward_spec = if arg == "-L" {
188 tokens.next()
189 } else {
190 Some(arg.strip_prefix("-L").unwrap().to_string())
191 };
192
193 if let Some(spec) = forward_spec {
194 port_forwards.push(parse_port_forward_spec(&spec)?);
195 } else {
196 anyhow::bail!("Missing port forward format");
197 }
198 }
199
200 for a in ALLOWED_ARGS {
201 if arg == *a {
202 args.push(arg);
203 if let Some(next) = tokens.next() {
204 args.push(next);
205 }
206 continue 'outer;
207 } else if arg.starts_with(a) {
208 args.push(arg);
209 continue 'outer;
210 }
211 }
212 if arg.starts_with("-") || hostname.is_some() {
213 anyhow::bail!("unsupported argument: {:?}", arg);
214 }
215 let mut input = &arg as &str;
216 // Destination might be: username1@username2@ip2@ip1
217 if let Some((u, rest)) = input.rsplit_once('@') {
218 input = rest;
219 username = Some(u.to_string());
220 }
221 if let Some((rest, p)) = input.split_once(':') {
222 input = rest;
223 port = p.parse().ok()
224 }
225 hostname = Some(input.to_string())
226 }
227
228 let Some(hostname) = hostname else {
229 anyhow::bail!("missing hostname");
230 };
231
232 let port_forwards = match port_forwards.len() {
233 0 => None,
234 _ => Some(port_forwards),
235 };
236
237 Ok(Self {
238 host: hostname.to_string(),
239 username: username.clone(),
240 port,
241 port_forwards,
242 args: Some(args),
243 password: None,
244 nickname: None,
245 upload_binary_over_ssh: false,
246 })
247 }
248
249 pub fn ssh_url(&self) -> String {
250 let mut result = String::from("ssh://");
251 if let Some(username) = &self.username {
252 // Username might be: username1@username2@ip2
253 let username = urlencoding::encode(username);
254 result.push_str(&username);
255 result.push('@');
256 }
257 result.push_str(&self.host);
258 if let Some(port) = self.port {
259 result.push(':');
260 result.push_str(&port.to_string());
261 }
262 result
263 }
264
265 pub fn additional_args(&self) -> Vec<String> {
266 let mut args = self.args.iter().flatten().cloned().collect::<Vec<String>>();
267
268 if let Some(forwards) = &self.port_forwards {
269 args.extend(forwards.iter().map(|pf| {
270 let local_host = match &pf.local_host {
271 Some(host) => host,
272 None => "localhost",
273 };
274 let remote_host = match &pf.remote_host {
275 Some(host) => host,
276 None => "localhost",
277 };
278
279 format!(
280 "-L{}:{}:{}:{}",
281 local_host, pf.local_port, remote_host, pf.remote_port
282 )
283 }));
284 }
285
286 args
287 }
288
289 fn scp_url(&self) -> String {
290 if let Some(username) = &self.username {
291 format!("{}@{}", username, self.host)
292 } else {
293 self.host.clone()
294 }
295 }
296
297 pub fn connection_string(&self) -> String {
298 let host = if let Some(username) = &self.username {
299 format!("{}@{}", username, self.host)
300 } else {
301 self.host.clone()
302 };
303 if let Some(port) = &self.port {
304 format!("{}:{}", host, port)
305 } else {
306 host
307 }
308 }
309}
310
311#[derive(Copy, Clone, Debug)]
312pub struct SshPlatform {
313 pub os: &'static str,
314 pub arch: &'static str,
315}
316
317pub trait SshClientDelegate: Send + Sync {
318 fn ask_password(&self, prompt: String, tx: oneshot::Sender<String>, cx: &mut AsyncApp);
319 fn get_download_params(
320 &self,
321 platform: SshPlatform,
322 release_channel: ReleaseChannel,
323 version: Option<SemanticVersion>,
324 cx: &mut AsyncApp,
325 ) -> Task<Result<Option<(String, String)>>>;
326
327 fn download_server_binary_locally(
328 &self,
329 platform: SshPlatform,
330 release_channel: ReleaseChannel,
331 version: Option<SemanticVersion>,
332 cx: &mut AsyncApp,
333 ) -> Task<Result<PathBuf>>;
334 fn set_status(&self, status: Option<&str>, cx: &mut AsyncApp);
335}
336
337impl SshSocket {
338 #[cfg(not(target_os = "windows"))]
339 fn new(options: SshConnectionOptions, socket_path: PathBuf) -> Result<Self> {
340 Ok(Self {
341 connection_options: options,
342 socket_path,
343 })
344 }
345
346 #[cfg(target_os = "windows")]
347 fn new(options: SshConnectionOptions, temp_dir: &TempDir, secret: String) -> Result<Self> {
348 let askpass_script = temp_dir.path().join("askpass.bat");
349 std::fs::write(&askpass_script, "@ECHO OFF\necho %ZED_SSH_ASKPASS%")?;
350 let mut envs = HashMap::default();
351 envs.insert("SSH_ASKPASS_REQUIRE".into(), "force".into());
352 envs.insert("SSH_ASKPASS".into(), askpass_script.display().to_string());
353 envs.insert("ZED_SSH_ASKPASS".into(), secret);
354 Ok(Self {
355 connection_options: options,
356 envs,
357 })
358 }
359
360 // :WARNING: ssh unquotes arguments when executing on the remote :WARNING:
361 // e.g. $ ssh host sh -c 'ls -l' is equivalent to $ ssh host sh -c ls -l
362 // and passes -l as an argument to sh, not to ls.
363 // Furthermore, some setups (e.g. Coder) will change directory when SSH'ing
364 // into a machine. You must use `cd` to get back to $HOME.
365 // You need to do it like this: $ ssh host "cd; sh -c 'ls -l /tmp'"
366 fn ssh_command(&self, program: &str, args: &[&str]) -> process::Command {
367 let mut command = util::command::new_smol_command("ssh");
368 let to_run = iter::once(&program)
369 .chain(args.iter())
370 .map(|token| {
371 // We're trying to work with: sh, bash, zsh, fish, tcsh, ...?
372 debug_assert!(
373 !token.contains('\n'),
374 "multiline arguments do not work in all shells"
375 );
376 shlex::try_quote(token).unwrap()
377 })
378 .join(" ");
379 let to_run = format!("cd; {to_run}");
380 log::debug!("ssh {} {:?}", self.connection_options.ssh_url(), to_run);
381 self.ssh_options(&mut command)
382 .arg(self.connection_options.ssh_url())
383 .arg(to_run);
384 command
385 }
386
387 async fn run_command(&self, program: &str, args: &[&str]) -> Result<String> {
388 let output = self.ssh_command(program, args).output().await?;
389 anyhow::ensure!(
390 output.status.success(),
391 "failed to run command: {}",
392 String::from_utf8_lossy(&output.stderr)
393 );
394 Ok(String::from_utf8_lossy(&output.stdout).to_string())
395 }
396
397 #[cfg(not(target_os = "windows"))]
398 fn ssh_options<'a>(&self, command: &'a mut process::Command) -> &'a mut process::Command {
399 command
400 .stdin(Stdio::piped())
401 .stdout(Stdio::piped())
402 .stderr(Stdio::piped())
403 .args(self.connection_options.additional_args())
404 .args(["-o", "ControlMaster=no", "-o"])
405 .arg(format!("ControlPath={}", self.socket_path.display()))
406 }
407
408 #[cfg(target_os = "windows")]
409 fn ssh_options<'a>(&self, command: &'a mut process::Command) -> &'a mut process::Command {
410 command
411 .stdin(Stdio::piped())
412 .stdout(Stdio::piped())
413 .stderr(Stdio::piped())
414 .args(self.connection_options.additional_args())
415 .envs(self.envs.clone())
416 }
417
418 // On Windows, we need to use `SSH_ASKPASS` to provide the password to ssh.
419 // On Linux, we use the `ControlPath` option to create a socket file that ssh can use to
420 #[cfg(not(target_os = "windows"))]
421 fn ssh_args(&self) -> SshArgs {
422 let mut arguments = self.connection_options.additional_args();
423 arguments.extend(vec![
424 "-o".to_string(),
425 "ControlMaster=no".to_string(),
426 "-o".to_string(),
427 format!("ControlPath={}", self.socket_path.display()),
428 self.connection_options.ssh_url(),
429 ]);
430 SshArgs {
431 arguments,
432 envs: None,
433 }
434 }
435
436 #[cfg(target_os = "windows")]
437 fn ssh_args(&self) -> SshArgs {
438 let mut arguments = self.connection_options.additional_args();
439 arguments.push(self.connection_options.ssh_url());
440 SshArgs {
441 arguments,
442 envs: Some(self.envs.clone()),
443 }
444 }
445
446 async fn platform(&self) -> Result<SshPlatform> {
447 let uname = self.run_command("sh", &["-c", "uname -sm"]).await?;
448 let Some((os, arch)) = uname.split_once(" ") else {
449 anyhow::bail!("unknown uname: {uname:?}")
450 };
451
452 let os = match os.trim() {
453 "Darwin" => "macos",
454 "Linux" => "linux",
455 _ => anyhow::bail!(
456 "Prebuilt remote servers are not yet available for {os:?}. See https://zed.dev/docs/remote-development"
457 ),
458 };
459 // exclude armv5,6,7 as they are 32-bit.
460 let arch = if arch.starts_with("armv8")
461 || arch.starts_with("armv9")
462 || arch.starts_with("arm64")
463 || arch.starts_with("aarch64")
464 {
465 "aarch64"
466 } else if arch.starts_with("x86") {
467 "x86_64"
468 } else {
469 anyhow::bail!(
470 "Prebuilt remote servers are not yet available for {arch:?}. See https://zed.dev/docs/remote-development"
471 )
472 };
473
474 Ok(SshPlatform { os, arch })
475 }
476}
477
478const MAX_MISSED_HEARTBEATS: usize = 5;
479const HEARTBEAT_INTERVAL: Duration = Duration::from_secs(5);
480const HEARTBEAT_TIMEOUT: Duration = Duration::from_secs(5);
481
482const MAX_RECONNECT_ATTEMPTS: usize = 3;
483
484enum State {
485 Connecting,
486 Connected {
487 ssh_connection: Arc<dyn RemoteConnection>,
488 delegate: Arc<dyn SshClientDelegate>,
489
490 multiplex_task: Task<Result<()>>,
491 heartbeat_task: Task<Result<()>>,
492 },
493 HeartbeatMissed {
494 missed_heartbeats: usize,
495
496 ssh_connection: Arc<dyn RemoteConnection>,
497 delegate: Arc<dyn SshClientDelegate>,
498
499 multiplex_task: Task<Result<()>>,
500 heartbeat_task: Task<Result<()>>,
501 },
502 Reconnecting,
503 ReconnectFailed {
504 ssh_connection: Arc<dyn RemoteConnection>,
505 delegate: Arc<dyn SshClientDelegate>,
506
507 error: anyhow::Error,
508 attempts: usize,
509 },
510 ReconnectExhausted,
511 ServerNotRunning,
512}
513
514impl fmt::Display for State {
515 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
516 match self {
517 Self::Connecting => write!(f, "connecting"),
518 Self::Connected { .. } => write!(f, "connected"),
519 Self::Reconnecting => write!(f, "reconnecting"),
520 Self::ReconnectFailed { .. } => write!(f, "reconnect failed"),
521 Self::ReconnectExhausted => write!(f, "reconnect exhausted"),
522 Self::HeartbeatMissed { .. } => write!(f, "heartbeat missed"),
523 Self::ServerNotRunning { .. } => write!(f, "server not running"),
524 }
525 }
526}
527
528impl State {
529 fn ssh_connection(&self) -> Option<&dyn RemoteConnection> {
530 match self {
531 Self::Connected { ssh_connection, .. } => Some(ssh_connection.as_ref()),
532 Self::HeartbeatMissed { ssh_connection, .. } => Some(ssh_connection.as_ref()),
533 Self::ReconnectFailed { ssh_connection, .. } => Some(ssh_connection.as_ref()),
534 _ => None,
535 }
536 }
537
538 fn can_reconnect(&self) -> bool {
539 match self {
540 Self::Connected { .. }
541 | Self::HeartbeatMissed { .. }
542 | Self::ReconnectFailed { .. } => true,
543 State::Connecting
544 | State::Reconnecting
545 | State::ReconnectExhausted
546 | State::ServerNotRunning => false,
547 }
548 }
549
550 fn is_reconnect_failed(&self) -> bool {
551 matches!(self, Self::ReconnectFailed { .. })
552 }
553
554 fn is_reconnect_exhausted(&self) -> bool {
555 matches!(self, Self::ReconnectExhausted { .. })
556 }
557
558 fn is_server_not_running(&self) -> bool {
559 matches!(self, Self::ServerNotRunning)
560 }
561
562 fn is_reconnecting(&self) -> bool {
563 matches!(self, Self::Reconnecting { .. })
564 }
565
566 fn heartbeat_recovered(self) -> Self {
567 match self {
568 Self::HeartbeatMissed {
569 ssh_connection,
570 delegate,
571 multiplex_task,
572 heartbeat_task,
573 ..
574 } => Self::Connected {
575 ssh_connection,
576 delegate,
577 multiplex_task,
578 heartbeat_task,
579 },
580 _ => self,
581 }
582 }
583
584 fn heartbeat_missed(self) -> Self {
585 match self {
586 Self::Connected {
587 ssh_connection,
588 delegate,
589 multiplex_task,
590 heartbeat_task,
591 } => Self::HeartbeatMissed {
592 missed_heartbeats: 1,
593 ssh_connection,
594 delegate,
595 multiplex_task,
596 heartbeat_task,
597 },
598 Self::HeartbeatMissed {
599 missed_heartbeats,
600 ssh_connection,
601 delegate,
602 multiplex_task,
603 heartbeat_task,
604 } => Self::HeartbeatMissed {
605 missed_heartbeats: missed_heartbeats + 1,
606 ssh_connection,
607 delegate,
608 multiplex_task,
609 heartbeat_task,
610 },
611 _ => self,
612 }
613 }
614}
615
616/// The state of the ssh connection.
617#[derive(Clone, Copy, Debug, PartialEq, Eq)]
618pub enum ConnectionState {
619 Connecting,
620 Connected,
621 HeartbeatMissed,
622 Reconnecting,
623 Disconnected,
624}
625
626impl From<&State> for ConnectionState {
627 fn from(value: &State) -> Self {
628 match value {
629 State::Connecting => Self::Connecting,
630 State::Connected { .. } => Self::Connected,
631 State::Reconnecting | State::ReconnectFailed { .. } => Self::Reconnecting,
632 State::HeartbeatMissed { .. } => Self::HeartbeatMissed,
633 State::ReconnectExhausted => Self::Disconnected,
634 State::ServerNotRunning => Self::Disconnected,
635 }
636 }
637}
638
639pub struct SshRemoteClient {
640 client: Arc<ChannelClient>,
641 unique_identifier: String,
642 connection_options: SshConnectionOptions,
643 path_style: PathStyle,
644 state: Arc<Mutex<Option<State>>>,
645}
646
647#[derive(Debug)]
648pub enum SshRemoteEvent {
649 Disconnected,
650}
651
652impl EventEmitter<SshRemoteEvent> for SshRemoteClient {}
653
654// Identifies the socket on the remote server so that reconnects
655// can re-join the same project.
656pub enum ConnectionIdentifier {
657 Setup(u64),
658 Workspace(i64),
659}
660
661static NEXT_ID: AtomicU64 = AtomicU64::new(1);
662
663impl ConnectionIdentifier {
664 pub fn setup() -> Self {
665 Self::Setup(NEXT_ID.fetch_add(1, SeqCst))
666 }
667 // This string gets used in a socket name, and so must be relatively short.
668 // The total length of:
669 // /home/{username}/.local/share/zed/server_state/{name}/stdout.sock
670 // Must be less than about 100 characters
671 // https://unix.stackexchange.com/questions/367008/why-is-socket-path-length-limited-to-a-hundred-chars
672 // So our strings should be at most 20 characters or so.
673 fn to_string(&self, cx: &App) -> String {
674 let identifier_prefix = match ReleaseChannel::global(cx) {
675 ReleaseChannel::Stable => "".to_string(),
676 release_channel => format!("{}-", release_channel.dev_name()),
677 };
678 match self {
679 Self::Setup(setup_id) => format!("{identifier_prefix}setup-{setup_id}"),
680 Self::Workspace(workspace_id) => {
681 format!("{identifier_prefix}workspace-{workspace_id}",)
682 }
683 }
684 }
685}
686
687impl SshRemoteClient {
688 pub fn new(
689 unique_identifier: ConnectionIdentifier,
690 connection_options: SshConnectionOptions,
691 cancellation: oneshot::Receiver<()>,
692 delegate: Arc<dyn SshClientDelegate>,
693 cx: &mut App,
694 ) -> Task<Result<Option<Entity<Self>>>> {
695 let unique_identifier = unique_identifier.to_string(cx);
696 cx.spawn(async move |cx| {
697 let success = Box::pin(async move {
698 let (outgoing_tx, outgoing_rx) = mpsc::unbounded::<Envelope>();
699 let (incoming_tx, incoming_rx) = mpsc::unbounded::<Envelope>();
700 let (connection_activity_tx, connection_activity_rx) = mpsc::channel::<()>(1);
701
702 let client =
703 cx.update(|cx| ChannelClient::new(incoming_rx, outgoing_tx, cx, "client"))?;
704
705 let ssh_connection = cx
706 .update(|cx| {
707 cx.update_default_global(|pool: &mut ConnectionPool, cx| {
708 pool.connect(connection_options.clone(), &delegate, cx)
709 })
710 })?
711 .await
712 .map_err(|e| e.cloned())?;
713
714 let path_style = ssh_connection.path_style();
715 let this = cx.new(|_| Self {
716 client: client.clone(),
717 unique_identifier: unique_identifier.clone(),
718 connection_options,
719 path_style,
720 state: Arc::new(Mutex::new(Some(State::Connecting))),
721 })?;
722
723 let io_task = ssh_connection.start_proxy(
724 unique_identifier,
725 false,
726 incoming_tx,
727 outgoing_rx,
728 connection_activity_tx,
729 delegate.clone(),
730 cx,
731 );
732
733 let multiplex_task = Self::monitor(this.downgrade(), io_task, cx);
734
735 if let Err(error) = client.ping(HEARTBEAT_TIMEOUT).await {
736 log::error!("failed to establish connection: {}", error);
737 return Err(error);
738 }
739
740 let heartbeat_task = Self::heartbeat(this.downgrade(), connection_activity_rx, cx);
741
742 this.update(cx, |this, _| {
743 *this.state.lock() = Some(State::Connected {
744 ssh_connection,
745 delegate,
746 multiplex_task,
747 heartbeat_task,
748 });
749 })?;
750
751 Ok(Some(this))
752 });
753
754 select! {
755 _ = cancellation.fuse() => {
756 Ok(None)
757 }
758 result = success.fuse() => result
759 }
760 })
761 }
762
763 pub fn shutdown_processes<T: RequestMessage>(
764 &self,
765 shutdown_request: Option<T>,
766 executor: BackgroundExecutor,
767 ) -> Option<impl Future<Output = ()> + use<T>> {
768 let state = self.state.lock().take()?;
769 log::info!("shutting down ssh processes");
770
771 let State::Connected {
772 multiplex_task,
773 heartbeat_task,
774 ssh_connection,
775 delegate,
776 } = state
777 else {
778 return None;
779 };
780
781 let client = self.client.clone();
782
783 Some(async move {
784 if let Some(shutdown_request) = shutdown_request {
785 client.send(shutdown_request).log_err();
786 // We wait 50ms instead of waiting for a response, because
787 // waiting for a response would require us to wait on the main thread
788 // which we want to avoid in an `on_app_quit` callback.
789 executor.timer(Duration::from_millis(50)).await;
790 }
791
792 // Drop `multiplex_task` because it owns our ssh_proxy_process, which is a
793 // child of master_process.
794 drop(multiplex_task);
795 // Now drop the rest of state, which kills master process.
796 drop(heartbeat_task);
797 drop(ssh_connection);
798 drop(delegate);
799 })
800 }
801
802 fn reconnect(&mut self, cx: &mut Context<Self>) -> Result<()> {
803 let mut lock = self.state.lock();
804
805 let can_reconnect = lock
806 .as_ref()
807 .map(|state| state.can_reconnect())
808 .unwrap_or(false);
809 if !can_reconnect {
810 log::info!("aborting reconnect, because not in state that allows reconnecting");
811 let error = if let Some(state) = lock.as_ref() {
812 format!("invalid state, cannot reconnect while in state {state}")
813 } else {
814 "no state set".to_string()
815 };
816 anyhow::bail!(error);
817 }
818
819 let state = lock.take().unwrap();
820 let (attempts, ssh_connection, delegate) = match state {
821 State::Connected {
822 ssh_connection,
823 delegate,
824 multiplex_task,
825 heartbeat_task,
826 }
827 | State::HeartbeatMissed {
828 ssh_connection,
829 delegate,
830 multiplex_task,
831 heartbeat_task,
832 ..
833 } => {
834 drop(multiplex_task);
835 drop(heartbeat_task);
836 (0, ssh_connection, delegate)
837 }
838 State::ReconnectFailed {
839 attempts,
840 ssh_connection,
841 delegate,
842 ..
843 } => (attempts, ssh_connection, delegate),
844 State::Connecting
845 | State::Reconnecting
846 | State::ReconnectExhausted
847 | State::ServerNotRunning => unreachable!(),
848 };
849
850 let attempts = attempts + 1;
851 if attempts > MAX_RECONNECT_ATTEMPTS {
852 log::error!(
853 "Failed to reconnect to after {} attempts, giving up",
854 MAX_RECONNECT_ATTEMPTS
855 );
856 drop(lock);
857 self.set_state(State::ReconnectExhausted, cx);
858 return Ok(());
859 }
860 drop(lock);
861
862 self.set_state(State::Reconnecting, cx);
863
864 log::info!("Trying to reconnect to ssh server... Attempt {}", attempts);
865
866 let unique_identifier = self.unique_identifier.clone();
867 let client = self.client.clone();
868 let reconnect_task = cx.spawn(async move |this, cx| {
869 macro_rules! failed {
870 ($error:expr, $attempts:expr, $ssh_connection:expr, $delegate:expr) => {
871 return State::ReconnectFailed {
872 error: anyhow!($error),
873 attempts: $attempts,
874 ssh_connection: $ssh_connection,
875 delegate: $delegate,
876 };
877 };
878 }
879
880 if let Err(error) = ssh_connection
881 .kill()
882 .await
883 .context("Failed to kill ssh process")
884 {
885 failed!(error, attempts, ssh_connection, delegate);
886 };
887
888 let connection_options = ssh_connection.connection_options();
889
890 let (outgoing_tx, outgoing_rx) = mpsc::unbounded::<Envelope>();
891 let (incoming_tx, incoming_rx) = mpsc::unbounded::<Envelope>();
892 let (connection_activity_tx, connection_activity_rx) = mpsc::channel::<()>(1);
893
894 let (ssh_connection, io_task) = match async {
895 let ssh_connection = cx
896 .update_global(|pool: &mut ConnectionPool, cx| {
897 pool.connect(connection_options, &delegate, cx)
898 })?
899 .await
900 .map_err(|error| error.cloned())?;
901
902 let io_task = ssh_connection.start_proxy(
903 unique_identifier,
904 true,
905 incoming_tx,
906 outgoing_rx,
907 connection_activity_tx,
908 delegate.clone(),
909 cx,
910 );
911 anyhow::Ok((ssh_connection, io_task))
912 }
913 .await
914 {
915 Ok((ssh_connection, io_task)) => (ssh_connection, io_task),
916 Err(error) => {
917 failed!(error, attempts, ssh_connection, delegate);
918 }
919 };
920
921 let multiplex_task = Self::monitor(this.clone(), io_task, cx);
922 client.reconnect(incoming_rx, outgoing_tx, cx);
923
924 if let Err(error) = client.resync(HEARTBEAT_TIMEOUT).await {
925 failed!(error, attempts, ssh_connection, delegate);
926 };
927
928 State::Connected {
929 ssh_connection,
930 delegate,
931 multiplex_task,
932 heartbeat_task: Self::heartbeat(this.clone(), connection_activity_rx, cx),
933 }
934 });
935
936 cx.spawn(async move |this, cx| {
937 let new_state = reconnect_task.await;
938 this.update(cx, |this, cx| {
939 this.try_set_state(cx, |old_state| {
940 if old_state.is_reconnecting() {
941 match &new_state {
942 State::Connecting
943 | State::Reconnecting { .. }
944 | State::HeartbeatMissed { .. }
945 | State::ServerNotRunning => {}
946 State::Connected { .. } => {
947 log::info!("Successfully reconnected");
948 }
949 State::ReconnectFailed {
950 error, attempts, ..
951 } => {
952 log::error!(
953 "Reconnect attempt {} failed: {:?}. Starting new attempt...",
954 attempts,
955 error
956 );
957 }
958 State::ReconnectExhausted => {
959 log::error!("Reconnect attempt failed and all attempts exhausted");
960 }
961 }
962 Some(new_state)
963 } else {
964 None
965 }
966 });
967
968 if this.state_is(State::is_reconnect_failed) {
969 this.reconnect(cx)
970 } else if this.state_is(State::is_reconnect_exhausted) {
971 Ok(())
972 } else {
973 log::debug!("State has transition from Reconnecting into new state while attempting reconnect.");
974 Ok(())
975 }
976 })
977 })
978 .detach_and_log_err(cx);
979
980 Ok(())
981 }
982
983 fn heartbeat(
984 this: WeakEntity<Self>,
985 mut connection_activity_rx: mpsc::Receiver<()>,
986 cx: &mut AsyncApp,
987 ) -> Task<Result<()>> {
988 let Ok(client) = this.read_with(cx, |this, _| this.client.clone()) else {
989 return Task::ready(Err(anyhow!("SshRemoteClient lost")));
990 };
991
992 cx.spawn(async move |cx| {
993 let mut missed_heartbeats = 0;
994
995 let keepalive_timer = cx.background_executor().timer(HEARTBEAT_INTERVAL).fuse();
996 futures::pin_mut!(keepalive_timer);
997
998 loop {
999 select_biased! {
1000 result = connection_activity_rx.next().fuse() => {
1001 if result.is_none() {
1002 log::warn!("ssh heartbeat: connection activity channel has been dropped. stopping.");
1003 return Ok(());
1004 }
1005
1006 if missed_heartbeats != 0 {
1007 missed_heartbeats = 0;
1008 let _ =this.update(cx, |this, cx| {
1009 this.handle_heartbeat_result(missed_heartbeats, cx)
1010 })?;
1011 }
1012 }
1013 _ = keepalive_timer => {
1014 log::debug!("Sending heartbeat to server...");
1015
1016 let result = select_biased! {
1017 _ = connection_activity_rx.next().fuse() => {
1018 Ok(())
1019 }
1020 ping_result = client.ping(HEARTBEAT_TIMEOUT).fuse() => {
1021 ping_result
1022 }
1023 };
1024
1025 if result.is_err() {
1026 missed_heartbeats += 1;
1027 log::warn!(
1028 "No heartbeat from server after {:?}. Missed heartbeat {} out of {}.",
1029 HEARTBEAT_TIMEOUT,
1030 missed_heartbeats,
1031 MAX_MISSED_HEARTBEATS
1032 );
1033 } else if missed_heartbeats != 0 {
1034 missed_heartbeats = 0;
1035 } else {
1036 continue;
1037 }
1038
1039 let result = this.update(cx, |this, cx| {
1040 this.handle_heartbeat_result(missed_heartbeats, cx)
1041 })?;
1042 if result.is_break() {
1043 return Ok(());
1044 }
1045 }
1046 }
1047
1048 keepalive_timer.set(cx.background_executor().timer(HEARTBEAT_INTERVAL).fuse());
1049 }
1050
1051 })
1052 }
1053
1054 fn handle_heartbeat_result(
1055 &mut self,
1056 missed_heartbeats: usize,
1057 cx: &mut Context<Self>,
1058 ) -> ControlFlow<()> {
1059 let state = self.state.lock().take().unwrap();
1060 let next_state = if missed_heartbeats > 0 {
1061 state.heartbeat_missed()
1062 } else {
1063 state.heartbeat_recovered()
1064 };
1065
1066 self.set_state(next_state, cx);
1067
1068 if missed_heartbeats >= MAX_MISSED_HEARTBEATS {
1069 log::error!(
1070 "Missed last {} heartbeats. Reconnecting...",
1071 missed_heartbeats
1072 );
1073
1074 self.reconnect(cx)
1075 .context("failed to start reconnect process after missing heartbeats")
1076 .log_err();
1077 ControlFlow::Break(())
1078 } else {
1079 ControlFlow::Continue(())
1080 }
1081 }
1082
1083 fn monitor(
1084 this: WeakEntity<Self>,
1085 io_task: Task<Result<i32>>,
1086 cx: &AsyncApp,
1087 ) -> Task<Result<()>> {
1088 cx.spawn(async move |cx| {
1089 let result = io_task.await;
1090
1091 match result {
1092 Ok(exit_code) => {
1093 if let Some(error) = ProxyLaunchError::from_exit_code(exit_code) {
1094 match error {
1095 ProxyLaunchError::ServerNotRunning => {
1096 log::error!("failed to reconnect because server is not running");
1097 this.update(cx, |this, cx| {
1098 this.set_state(State::ServerNotRunning, cx);
1099 })?;
1100 }
1101 }
1102 } else if exit_code > 0 {
1103 log::error!("proxy process terminated unexpectedly");
1104 this.update(cx, |this, cx| {
1105 this.reconnect(cx).ok();
1106 })?;
1107 }
1108 }
1109 Err(error) => {
1110 log::warn!("ssh io task died with error: {:?}. reconnecting...", error);
1111 this.update(cx, |this, cx| {
1112 this.reconnect(cx).ok();
1113 })?;
1114 }
1115 }
1116
1117 Ok(())
1118 })
1119 }
1120
1121 fn state_is(&self, check: impl FnOnce(&State) -> bool) -> bool {
1122 self.state.lock().as_ref().map_or(false, check)
1123 }
1124
1125 fn try_set_state(&self, cx: &mut Context<Self>, map: impl FnOnce(&State) -> Option<State>) {
1126 let mut lock = self.state.lock();
1127 let new_state = lock.as_ref().and_then(map);
1128
1129 if let Some(new_state) = new_state {
1130 lock.replace(new_state);
1131 cx.notify();
1132 }
1133 }
1134
1135 fn set_state(&self, state: State, cx: &mut Context<Self>) {
1136 log::info!("setting state to '{}'", &state);
1137
1138 let is_reconnect_exhausted = state.is_reconnect_exhausted();
1139 let is_server_not_running = state.is_server_not_running();
1140 self.state.lock().replace(state);
1141
1142 if is_reconnect_exhausted || is_server_not_running {
1143 cx.emit(SshRemoteEvent::Disconnected);
1144 }
1145 cx.notify();
1146 }
1147
1148 pub fn subscribe_to_entity<E: 'static>(&self, remote_id: u64, entity: &Entity<E>) {
1149 self.client.subscribe_to_entity(remote_id, entity);
1150 }
1151
1152 pub fn ssh_info(&self) -> Option<(SshArgs, PathStyle)> {
1153 self.state
1154 .lock()
1155 .as_ref()
1156 .and_then(|state| state.ssh_connection())
1157 .map(|ssh_connection| (ssh_connection.ssh_args(), ssh_connection.path_style()))
1158 }
1159
1160 pub fn upload_directory(
1161 &self,
1162 src_path: PathBuf,
1163 dest_path: RemotePathBuf,
1164 cx: &App,
1165 ) -> Task<Result<()>> {
1166 let state = self.state.lock();
1167 let Some(connection) = state.as_ref().and_then(|state| state.ssh_connection()) else {
1168 return Task::ready(Err(anyhow!("no ssh connection")));
1169 };
1170 connection.upload_directory(src_path, dest_path, cx)
1171 }
1172
1173 pub fn proto_client(&self) -> AnyProtoClient {
1174 self.client.clone().into()
1175 }
1176
1177 pub fn connection_string(&self) -> String {
1178 self.connection_options.connection_string()
1179 }
1180
1181 pub fn connection_options(&self) -> SshConnectionOptions {
1182 self.connection_options.clone()
1183 }
1184
1185 pub fn connection_state(&self) -> ConnectionState {
1186 self.state
1187 .lock()
1188 .as_ref()
1189 .map(ConnectionState::from)
1190 .unwrap_or(ConnectionState::Disconnected)
1191 }
1192
1193 pub fn is_disconnected(&self) -> bool {
1194 self.connection_state() == ConnectionState::Disconnected
1195 }
1196
1197 pub fn path_style(&self) -> PathStyle {
1198 self.path_style
1199 }
1200
1201 #[cfg(any(test, feature = "test-support"))]
1202 pub fn simulate_disconnect(&self, client_cx: &mut App) -> Task<()> {
1203 let opts = self.connection_options();
1204 client_cx.spawn(async move |cx| {
1205 let connection = cx
1206 .update_global(|c: &mut ConnectionPool, _| {
1207 if let Some(ConnectionPoolEntry::Connecting(c)) = c.connections.get(&opts) {
1208 c.clone()
1209 } else {
1210 panic!("missing test connection")
1211 }
1212 })
1213 .unwrap()
1214 .await
1215 .unwrap();
1216
1217 connection.simulate_disconnect(cx);
1218 })
1219 }
1220
1221 #[cfg(any(test, feature = "test-support"))]
1222 pub fn fake_server(
1223 client_cx: &mut gpui::TestAppContext,
1224 server_cx: &mut gpui::TestAppContext,
1225 ) -> (SshConnectionOptions, Arc<ChannelClient>) {
1226 let port = client_cx
1227 .update(|cx| cx.default_global::<ConnectionPool>().connections.len() as u16 + 1);
1228 let opts = SshConnectionOptions {
1229 host: "<fake>".to_string(),
1230 port: Some(port),
1231 ..Default::default()
1232 };
1233 let (outgoing_tx, _) = mpsc::unbounded::<Envelope>();
1234 let (_, incoming_rx) = mpsc::unbounded::<Envelope>();
1235 let server_client =
1236 server_cx.update(|cx| ChannelClient::new(incoming_rx, outgoing_tx, cx, "fake-server"));
1237 let connection: Arc<dyn RemoteConnection> = Arc::new(fake::FakeRemoteConnection {
1238 connection_options: opts.clone(),
1239 server_cx: fake::SendableCx::new(server_cx),
1240 server_channel: server_client.clone(),
1241 });
1242
1243 client_cx.update(|cx| {
1244 cx.update_default_global(|c: &mut ConnectionPool, cx| {
1245 c.connections.insert(
1246 opts.clone(),
1247 ConnectionPoolEntry::Connecting(
1248 cx.background_spawn({
1249 let connection = connection.clone();
1250 async move { Ok(connection.clone()) }
1251 })
1252 .shared(),
1253 ),
1254 );
1255 })
1256 });
1257
1258 (opts, server_client)
1259 }
1260
1261 #[cfg(any(test, feature = "test-support"))]
1262 pub async fn fake_client(
1263 opts: SshConnectionOptions,
1264 client_cx: &mut gpui::TestAppContext,
1265 ) -> Entity<Self> {
1266 let (_tx, rx) = oneshot::channel();
1267 client_cx
1268 .update(|cx| {
1269 Self::new(
1270 ConnectionIdentifier::setup(),
1271 opts,
1272 rx,
1273 Arc::new(fake::Delegate),
1274 cx,
1275 )
1276 })
1277 .await
1278 .unwrap()
1279 .unwrap()
1280 }
1281}
1282
1283enum ConnectionPoolEntry {
1284 Connecting(Shared<Task<Result<Arc<dyn RemoteConnection>, Arc<anyhow::Error>>>>),
1285 Connected(Weak<dyn RemoteConnection>),
1286}
1287
1288#[derive(Default)]
1289struct ConnectionPool {
1290 connections: HashMap<SshConnectionOptions, ConnectionPoolEntry>,
1291}
1292
1293impl Global for ConnectionPool {}
1294
1295impl ConnectionPool {
1296 pub fn connect(
1297 &mut self,
1298 opts: SshConnectionOptions,
1299 delegate: &Arc<dyn SshClientDelegate>,
1300 cx: &mut App,
1301 ) -> Shared<Task<Result<Arc<dyn RemoteConnection>, Arc<anyhow::Error>>>> {
1302 let connection = self.connections.get(&opts);
1303 match connection {
1304 Some(ConnectionPoolEntry::Connecting(task)) => {
1305 let delegate = delegate.clone();
1306 cx.spawn(async move |cx| {
1307 delegate.set_status(Some("Waiting for existing connection attempt"), cx);
1308 })
1309 .detach();
1310 return task.clone();
1311 }
1312 Some(ConnectionPoolEntry::Connected(ssh)) => {
1313 if let Some(ssh) = ssh.upgrade()
1314 && !ssh.has_been_killed() {
1315 return Task::ready(Ok(ssh)).shared();
1316 }
1317 self.connections.remove(&opts);
1318 }
1319 None => {}
1320 }
1321
1322 let task = cx
1323 .spawn({
1324 let opts = opts.clone();
1325 let delegate = delegate.clone();
1326 async move |cx| {
1327 let connection = SshRemoteConnection::new(opts.clone(), delegate, cx)
1328 .await
1329 .map(|connection| Arc::new(connection) as Arc<dyn RemoteConnection>);
1330
1331 cx.update_global(|pool: &mut Self, _| {
1332 debug_assert!(matches!(
1333 pool.connections.get(&opts),
1334 Some(ConnectionPoolEntry::Connecting(_))
1335 ));
1336 match connection {
1337 Ok(connection) => {
1338 pool.connections.insert(
1339 opts.clone(),
1340 ConnectionPoolEntry::Connected(Arc::downgrade(&connection)),
1341 );
1342 Ok(connection)
1343 }
1344 Err(error) => {
1345 pool.connections.remove(&opts);
1346 Err(Arc::new(error))
1347 }
1348 }
1349 })?
1350 }
1351 })
1352 .shared();
1353
1354 self.connections
1355 .insert(opts.clone(), ConnectionPoolEntry::Connecting(task.clone()));
1356 task
1357 }
1358}
1359
1360impl From<SshRemoteClient> for AnyProtoClient {
1361 fn from(client: SshRemoteClient) -> Self {
1362 AnyProtoClient::new(client.client.clone())
1363 }
1364}
1365
1366#[async_trait(?Send)]
1367trait RemoteConnection: Send + Sync {
1368 fn start_proxy(
1369 &self,
1370 unique_identifier: String,
1371 reconnect: bool,
1372 incoming_tx: UnboundedSender<Envelope>,
1373 outgoing_rx: UnboundedReceiver<Envelope>,
1374 connection_activity_tx: Sender<()>,
1375 delegate: Arc<dyn SshClientDelegate>,
1376 cx: &mut AsyncApp,
1377 ) -> Task<Result<i32>>;
1378 fn upload_directory(
1379 &self,
1380 src_path: PathBuf,
1381 dest_path: RemotePathBuf,
1382 cx: &App,
1383 ) -> Task<Result<()>>;
1384 async fn kill(&self) -> Result<()>;
1385 fn has_been_killed(&self) -> bool;
1386 /// On Windows, we need to use `SSH_ASKPASS` to provide the password to ssh.
1387 /// On Linux, we use the `ControlPath` option to create a socket file that ssh can use to
1388 fn ssh_args(&self) -> SshArgs;
1389 fn connection_options(&self) -> SshConnectionOptions;
1390 fn path_style(&self) -> PathStyle;
1391
1392 #[cfg(any(test, feature = "test-support"))]
1393 fn simulate_disconnect(&self, _: &AsyncApp) {}
1394}
1395
1396struct SshRemoteConnection {
1397 socket: SshSocket,
1398 master_process: Mutex<Option<Child>>,
1399 remote_binary_path: Option<RemotePathBuf>,
1400 ssh_platform: SshPlatform,
1401 ssh_path_style: PathStyle,
1402 _temp_dir: TempDir,
1403}
1404
1405#[async_trait(?Send)]
1406impl RemoteConnection for SshRemoteConnection {
1407 async fn kill(&self) -> Result<()> {
1408 let Some(mut process) = self.master_process.lock().take() else {
1409 return Ok(());
1410 };
1411 process.kill().ok();
1412 process.status().await?;
1413 Ok(())
1414 }
1415
1416 fn has_been_killed(&self) -> bool {
1417 self.master_process.lock().is_none()
1418 }
1419
1420 fn ssh_args(&self) -> SshArgs {
1421 self.socket.ssh_args()
1422 }
1423
1424 fn connection_options(&self) -> SshConnectionOptions {
1425 self.socket.connection_options.clone()
1426 }
1427
1428 fn upload_directory(
1429 &self,
1430 src_path: PathBuf,
1431 dest_path: RemotePathBuf,
1432 cx: &App,
1433 ) -> Task<Result<()>> {
1434 let mut command = util::command::new_smol_command("scp");
1435 let output = self
1436 .socket
1437 .ssh_options(&mut command)
1438 .args(
1439 self.socket
1440 .connection_options
1441 .port
1442 .map(|port| vec!["-P".to_string(), port.to_string()])
1443 .unwrap_or_default(),
1444 )
1445 .arg("-C")
1446 .arg("-r")
1447 .arg(&src_path)
1448 .arg(format!(
1449 "{}:{}",
1450 self.socket.connection_options.scp_url(),
1451 dest_path.to_string()
1452 ))
1453 .output();
1454
1455 cx.background_spawn(async move {
1456 let output = output.await?;
1457
1458 anyhow::ensure!(
1459 output.status.success(),
1460 "failed to upload directory {} -> {}: {}",
1461 src_path.display(),
1462 dest_path.to_string(),
1463 String::from_utf8_lossy(&output.stderr)
1464 );
1465
1466 Ok(())
1467 })
1468 }
1469
1470 fn start_proxy(
1471 &self,
1472 unique_identifier: String,
1473 reconnect: bool,
1474 incoming_tx: UnboundedSender<Envelope>,
1475 outgoing_rx: UnboundedReceiver<Envelope>,
1476 connection_activity_tx: Sender<()>,
1477 delegate: Arc<dyn SshClientDelegate>,
1478 cx: &mut AsyncApp,
1479 ) -> Task<Result<i32>> {
1480 delegate.set_status(Some("Starting proxy"), cx);
1481
1482 let Some(remote_binary_path) = self.remote_binary_path.clone() else {
1483 return Task::ready(Err(anyhow!("Remote binary path not set")));
1484 };
1485
1486 let mut start_proxy_command = shell_script!(
1487 "exec {binary_path} proxy --identifier {identifier}",
1488 binary_path = &remote_binary_path.to_string(),
1489 identifier = &unique_identifier,
1490 );
1491
1492 for env_var in ["RUST_LOG", "RUST_BACKTRACE", "ZED_GENERATE_MINIDUMPS"] {
1493 if let Some(value) = std::env::var(env_var).ok() {
1494 start_proxy_command = format!(
1495 "{}={} {} ",
1496 env_var,
1497 shlex::try_quote(&value).unwrap(),
1498 start_proxy_command,
1499 );
1500 }
1501 }
1502
1503 if reconnect {
1504 start_proxy_command.push_str(" --reconnect");
1505 }
1506
1507 let ssh_proxy_process = match self
1508 .socket
1509 .ssh_command("sh", &["-c", &start_proxy_command])
1510 // IMPORTANT: we kill this process when we drop the task that uses it.
1511 .kill_on_drop(true)
1512 .spawn()
1513 {
1514 Ok(process) => process,
1515 Err(error) => {
1516 return Task::ready(Err(anyhow!("failed to spawn remote server: {}", error)));
1517 }
1518 };
1519
1520 Self::multiplex(
1521 ssh_proxy_process,
1522 incoming_tx,
1523 outgoing_rx,
1524 connection_activity_tx,
1525 cx,
1526 )
1527 }
1528
1529 fn path_style(&self) -> PathStyle {
1530 self.ssh_path_style
1531 }
1532}
1533
1534impl SshRemoteConnection {
1535 async fn new(
1536 connection_options: SshConnectionOptions,
1537 delegate: Arc<dyn SshClientDelegate>,
1538 cx: &mut AsyncApp,
1539 ) -> Result<Self> {
1540 use askpass::AskPassResult;
1541
1542 delegate.set_status(Some("Connecting"), cx);
1543
1544 let url = connection_options.ssh_url();
1545
1546 let temp_dir = tempfile::Builder::new()
1547 .prefix("zed-ssh-session")
1548 .tempdir()?;
1549 let askpass_delegate = askpass::AskPassDelegate::new(cx, {
1550 let delegate = delegate.clone();
1551 move |prompt, tx, cx| delegate.ask_password(prompt, tx, cx)
1552 });
1553
1554 let mut askpass =
1555 askpass::AskPassSession::new(cx.background_executor(), askpass_delegate).await?;
1556
1557 // Start the master SSH process, which does not do anything except for establish
1558 // the connection and keep it open, allowing other ssh commands to reuse it
1559 // via a control socket.
1560 #[cfg(not(target_os = "windows"))]
1561 let socket_path = temp_dir.path().join("ssh.sock");
1562
1563 let mut master_process = {
1564 #[cfg(not(target_os = "windows"))]
1565 let args = [
1566 "-N",
1567 "-o",
1568 "ControlPersist=no",
1569 "-o",
1570 "ControlMaster=yes",
1571 "-o",
1572 ];
1573 // On Windows, `ControlMaster` and `ControlPath` are not supported:
1574 // https://github.com/PowerShell/Win32-OpenSSH/issues/405
1575 // https://github.com/PowerShell/Win32-OpenSSH/wiki/Project-Scope
1576 #[cfg(target_os = "windows")]
1577 let args = ["-N"];
1578 let mut master_process = util::command::new_smol_command("ssh");
1579 master_process
1580 .kill_on_drop(true)
1581 .stdin(Stdio::null())
1582 .stdout(Stdio::piped())
1583 .stderr(Stdio::piped())
1584 .env("SSH_ASKPASS_REQUIRE", "force")
1585 .env("SSH_ASKPASS", askpass.script_path())
1586 .args(connection_options.additional_args())
1587 .args(args);
1588 #[cfg(not(target_os = "windows"))]
1589 master_process.arg(format!("ControlPath={}", socket_path.display()));
1590 master_process.arg(&url).spawn()?
1591 };
1592 // Wait for this ssh process to close its stdout, indicating that authentication
1593 // has completed.
1594 let mut stdout = master_process.stdout.take().unwrap();
1595 let mut output = Vec::new();
1596
1597 let result = select_biased! {
1598 result = askpass.run().fuse() => {
1599 match result {
1600 AskPassResult::CancelledByUser => {
1601 master_process.kill().ok();
1602 anyhow::bail!("SSH connection canceled")
1603 }
1604 AskPassResult::Timedout => {
1605 anyhow::bail!("connecting to host timed out")
1606 }
1607 }
1608 }
1609 _ = stdout.read_to_end(&mut output).fuse() => {
1610 anyhow::Ok(())
1611 }
1612 };
1613
1614 if let Err(e) = result {
1615 return Err(e.context("Failed to connect to host"));
1616 }
1617
1618 if master_process.try_status()?.is_some() {
1619 output.clear();
1620 let mut stderr = master_process.stderr.take().unwrap();
1621 stderr.read_to_end(&mut output).await?;
1622
1623 let error_message = format!(
1624 "failed to connect: {}",
1625 String::from_utf8_lossy(&output).trim()
1626 );
1627 anyhow::bail!(error_message);
1628 }
1629
1630 #[cfg(not(target_os = "windows"))]
1631 let socket = SshSocket::new(connection_options, socket_path)?;
1632 #[cfg(target_os = "windows")]
1633 let socket = SshSocket::new(connection_options, &temp_dir, askpass.get_password())?;
1634 drop(askpass);
1635
1636 let ssh_platform = socket.platform().await?;
1637 let ssh_path_style = match ssh_platform.os {
1638 "windows" => PathStyle::Windows,
1639 _ => PathStyle::Posix,
1640 };
1641
1642 let mut this = Self {
1643 socket,
1644 master_process: Mutex::new(Some(master_process)),
1645 _temp_dir: temp_dir,
1646 remote_binary_path: None,
1647 ssh_path_style,
1648 ssh_platform,
1649 };
1650
1651 let (release_channel, version, commit) = cx.update(|cx| {
1652 (
1653 ReleaseChannel::global(cx),
1654 AppVersion::global(cx),
1655 AppCommitSha::try_global(cx),
1656 )
1657 })?;
1658 this.remote_binary_path = Some(
1659 this.ensure_server_binary(&delegate, release_channel, version, commit, cx)
1660 .await?,
1661 );
1662
1663 Ok(this)
1664 }
1665
1666 fn multiplex(
1667 mut ssh_proxy_process: Child,
1668 incoming_tx: UnboundedSender<Envelope>,
1669 mut outgoing_rx: UnboundedReceiver<Envelope>,
1670 mut connection_activity_tx: Sender<()>,
1671 cx: &AsyncApp,
1672 ) -> Task<Result<i32>> {
1673 let mut child_stderr = ssh_proxy_process.stderr.take().unwrap();
1674 let mut child_stdout = ssh_proxy_process.stdout.take().unwrap();
1675 let mut child_stdin = ssh_proxy_process.stdin.take().unwrap();
1676
1677 let mut stdin_buffer = Vec::new();
1678 let mut stdout_buffer = Vec::new();
1679 let mut stderr_buffer = Vec::new();
1680 let mut stderr_offset = 0;
1681
1682 let stdin_task = cx.background_spawn(async move {
1683 while let Some(outgoing) = outgoing_rx.next().await {
1684 write_message(&mut child_stdin, &mut stdin_buffer, outgoing).await?;
1685 }
1686 anyhow::Ok(())
1687 });
1688
1689 let stdout_task = cx.background_spawn({
1690 let mut connection_activity_tx = connection_activity_tx.clone();
1691 async move {
1692 loop {
1693 stdout_buffer.resize(MESSAGE_LEN_SIZE, 0);
1694 let len = child_stdout.read(&mut stdout_buffer).await?;
1695
1696 if len == 0 {
1697 return anyhow::Ok(());
1698 }
1699
1700 if len < MESSAGE_LEN_SIZE {
1701 child_stdout.read_exact(&mut stdout_buffer[len..]).await?;
1702 }
1703
1704 let message_len = message_len_from_buffer(&stdout_buffer);
1705 let envelope =
1706 read_message_with_len(&mut child_stdout, &mut stdout_buffer, message_len)
1707 .await?;
1708 connection_activity_tx.try_send(()).ok();
1709 incoming_tx.unbounded_send(envelope).ok();
1710 }
1711 }
1712 });
1713
1714 let stderr_task: Task<anyhow::Result<()>> = cx.background_spawn(async move {
1715 loop {
1716 stderr_buffer.resize(stderr_offset + 1024, 0);
1717
1718 let len = child_stderr
1719 .read(&mut stderr_buffer[stderr_offset..])
1720 .await?;
1721 if len == 0 {
1722 return anyhow::Ok(());
1723 }
1724
1725 stderr_offset += len;
1726 let mut start_ix = 0;
1727 while let Some(ix) = stderr_buffer[start_ix..stderr_offset]
1728 .iter()
1729 .position(|b| b == &b'\n')
1730 {
1731 let line_ix = start_ix + ix;
1732 let content = &stderr_buffer[start_ix..line_ix];
1733 start_ix = line_ix + 1;
1734 if let Ok(record) = serde_json::from_slice::<LogRecord>(content) {
1735 record.log(log::logger())
1736 } else {
1737 eprintln!("(remote) {}", String::from_utf8_lossy(content));
1738 }
1739 }
1740 stderr_buffer.drain(0..start_ix);
1741 stderr_offset -= start_ix;
1742
1743 connection_activity_tx.try_send(()).ok();
1744 }
1745 });
1746
1747 cx.background_spawn(async move {
1748 let result = futures::select! {
1749 result = stdin_task.fuse() => {
1750 result.context("stdin")
1751 }
1752 result = stdout_task.fuse() => {
1753 result.context("stdout")
1754 }
1755 result = stderr_task.fuse() => {
1756 result.context("stderr")
1757 }
1758 };
1759
1760 let status = ssh_proxy_process.status().await?.code().unwrap_or(1);
1761 match result {
1762 Ok(_) => Ok(status),
1763 Err(error) => Err(error),
1764 }
1765 })
1766 }
1767
1768 #[allow(unused)]
1769 async fn ensure_server_binary(
1770 &self,
1771 delegate: &Arc<dyn SshClientDelegate>,
1772 release_channel: ReleaseChannel,
1773 version: SemanticVersion,
1774 commit: Option<AppCommitSha>,
1775 cx: &mut AsyncApp,
1776 ) -> Result<RemotePathBuf> {
1777 let version_str = match release_channel {
1778 ReleaseChannel::Nightly => {
1779 let commit = commit.map(|s| s.full()).unwrap_or_default();
1780 format!("{}-{}", version, commit)
1781 }
1782 ReleaseChannel::Dev => "build".to_string(),
1783 _ => version.to_string(),
1784 };
1785 let binary_name = format!(
1786 "zed-remote-server-{}-{}",
1787 release_channel.dev_name(),
1788 version_str
1789 );
1790 let dst_path = RemotePathBuf::new(
1791 paths::remote_server_dir_relative().join(binary_name),
1792 self.ssh_path_style,
1793 );
1794
1795 let build_remote_server = std::env::var("ZED_BUILD_REMOTE_SERVER").ok();
1796 #[cfg(debug_assertions)]
1797 if let Some(build_remote_server) = build_remote_server {
1798 let src_path = self.build_local(build_remote_server, delegate, cx).await?;
1799 let tmp_path = RemotePathBuf::new(
1800 paths::remote_server_dir_relative().join(format!(
1801 "download-{}-{}",
1802 std::process::id(),
1803 src_path.file_name().unwrap().to_string_lossy()
1804 )),
1805 self.ssh_path_style,
1806 );
1807 self.upload_local_server_binary(&src_path, &tmp_path, delegate, cx)
1808 .await?;
1809 self.extract_server_binary(&dst_path, &tmp_path, delegate, cx)
1810 .await?;
1811 return Ok(dst_path);
1812 }
1813
1814 if self
1815 .socket
1816 .run_command(&dst_path.to_string(), &["version"])
1817 .await
1818 .is_ok()
1819 {
1820 return Ok(dst_path);
1821 }
1822
1823 let wanted_version = cx.update(|cx| match release_channel {
1824 ReleaseChannel::Nightly => Ok(None),
1825 ReleaseChannel::Dev => {
1826 anyhow::bail!(
1827 "ZED_BUILD_REMOTE_SERVER is not set and no remote server exists at ({:?})",
1828 dst_path
1829 )
1830 }
1831 _ => Ok(Some(AppVersion::global(cx))),
1832 })??;
1833
1834 let tmp_path_gz = RemotePathBuf::new(
1835 PathBuf::from(format!(
1836 "{}-download-{}.gz",
1837 dst_path.to_string(),
1838 std::process::id()
1839 )),
1840 self.ssh_path_style,
1841 );
1842 if !self.socket.connection_options.upload_binary_over_ssh
1843 && let Some((url, body)) = delegate
1844 .get_download_params(self.ssh_platform, release_channel, wanted_version, cx)
1845 .await?
1846 {
1847 match self
1848 .download_binary_on_server(&url, &body, &tmp_path_gz, delegate, cx)
1849 .await
1850 {
1851 Ok(_) => {
1852 self.extract_server_binary(&dst_path, &tmp_path_gz, delegate, cx)
1853 .await?;
1854 return Ok(dst_path);
1855 }
1856 Err(e) => {
1857 log::error!(
1858 "Failed to download binary on server, attempting to upload server: {}",
1859 e
1860 )
1861 }
1862 }
1863 }
1864
1865 let src_path = delegate
1866 .download_server_binary_locally(self.ssh_platform, release_channel, wanted_version, cx)
1867 .await?;
1868 self.upload_local_server_binary(&src_path, &tmp_path_gz, delegate, cx)
1869 .await?;
1870 self.extract_server_binary(&dst_path, &tmp_path_gz, delegate, cx)
1871 .await?;
1872 return Ok(dst_path);
1873 }
1874
1875 async fn download_binary_on_server(
1876 &self,
1877 url: &str,
1878 body: &str,
1879 tmp_path_gz: &RemotePathBuf,
1880 delegate: &Arc<dyn SshClientDelegate>,
1881 cx: &mut AsyncApp,
1882 ) -> Result<()> {
1883 if let Some(parent) = tmp_path_gz.parent() {
1884 self.socket
1885 .run_command(
1886 "sh",
1887 &[
1888 "-c",
1889 &shell_script!("mkdir -p {parent}", parent = parent.to_string().as_ref()),
1890 ],
1891 )
1892 .await?;
1893 }
1894
1895 delegate.set_status(Some("Downloading remote development server on host"), cx);
1896
1897 match self
1898 .socket
1899 .run_command(
1900 "curl",
1901 &[
1902 "-f",
1903 "-L",
1904 "-X",
1905 "GET",
1906 "-H",
1907 "Content-Type: application/json",
1908 "-d",
1909 body,
1910 url,
1911 "-o",
1912 &tmp_path_gz.to_string(),
1913 ],
1914 )
1915 .await
1916 {
1917 Ok(_) => {}
1918 Err(e) => {
1919 if self.socket.run_command("which", &["curl"]).await.is_ok() {
1920 return Err(e);
1921 }
1922
1923 match self
1924 .socket
1925 .run_command(
1926 "wget",
1927 &[
1928 "--method=GET",
1929 "--header=Content-Type: application/json",
1930 "--body-data",
1931 body,
1932 url,
1933 "-O",
1934 &tmp_path_gz.to_string(),
1935 ],
1936 )
1937 .await
1938 {
1939 Ok(_) => {}
1940 Err(e) => {
1941 if self.socket.run_command("which", &["wget"]).await.is_ok() {
1942 return Err(e);
1943 } else {
1944 anyhow::bail!("Neither curl nor wget is available");
1945 }
1946 }
1947 }
1948 }
1949 }
1950
1951 Ok(())
1952 }
1953
1954 async fn upload_local_server_binary(
1955 &self,
1956 src_path: &Path,
1957 tmp_path_gz: &RemotePathBuf,
1958 delegate: &Arc<dyn SshClientDelegate>,
1959 cx: &mut AsyncApp,
1960 ) -> Result<()> {
1961 if let Some(parent) = tmp_path_gz.parent() {
1962 self.socket
1963 .run_command(
1964 "sh",
1965 &[
1966 "-c",
1967 &shell_script!("mkdir -p {parent}", parent = parent.to_string().as_ref()),
1968 ],
1969 )
1970 .await?;
1971 }
1972
1973 let src_stat = fs::metadata(&src_path).await?;
1974 let size = src_stat.len();
1975
1976 let t0 = Instant::now();
1977 delegate.set_status(Some("Uploading remote development server"), cx);
1978 log::info!(
1979 "uploading remote development server to {:?} ({}kb)",
1980 tmp_path_gz,
1981 size / 1024
1982 );
1983 self.upload_file(src_path, tmp_path_gz)
1984 .await
1985 .context("failed to upload server binary")?;
1986 log::info!("uploaded remote development server in {:?}", t0.elapsed());
1987 Ok(())
1988 }
1989
1990 async fn extract_server_binary(
1991 &self,
1992 dst_path: &RemotePathBuf,
1993 tmp_path: &RemotePathBuf,
1994 delegate: &Arc<dyn SshClientDelegate>,
1995 cx: &mut AsyncApp,
1996 ) -> Result<()> {
1997 delegate.set_status(Some("Extracting remote development server"), cx);
1998 let server_mode = 0o755;
1999
2000 let orig_tmp_path = tmp_path.to_string();
2001 let script = if let Some(tmp_path) = orig_tmp_path.strip_suffix(".gz") {
2002 shell_script!(
2003 "gunzip -f {orig_tmp_path} && chmod {server_mode} {tmp_path} && mv {tmp_path} {dst_path}",
2004 server_mode = &format!("{:o}", server_mode),
2005 dst_path = &dst_path.to_string(),
2006 )
2007 } else {
2008 shell_script!(
2009 "chmod {server_mode} {orig_tmp_path} && mv {orig_tmp_path} {dst_path}",
2010 server_mode = &format!("{:o}", server_mode),
2011 dst_path = &dst_path.to_string()
2012 )
2013 };
2014 self.socket.run_command("sh", &["-c", &script]).await?;
2015 Ok(())
2016 }
2017
2018 async fn upload_file(&self, src_path: &Path, dest_path: &RemotePathBuf) -> Result<()> {
2019 log::debug!("uploading file {:?} to {:?}", src_path, dest_path);
2020 let mut command = util::command::new_smol_command("scp");
2021 let output = self
2022 .socket
2023 .ssh_options(&mut command)
2024 .args(
2025 self.socket
2026 .connection_options
2027 .port
2028 .map(|port| vec!["-P".to_string(), port.to_string()])
2029 .unwrap_or_default(),
2030 )
2031 .arg(src_path)
2032 .arg(format!(
2033 "{}:{}",
2034 self.socket.connection_options.scp_url(),
2035 dest_path.to_string()
2036 ))
2037 .output()
2038 .await?;
2039
2040 anyhow::ensure!(
2041 output.status.success(),
2042 "failed to upload file {} -> {}: {}",
2043 src_path.display(),
2044 dest_path.to_string(),
2045 String::from_utf8_lossy(&output.stderr)
2046 );
2047 Ok(())
2048 }
2049
2050 #[cfg(debug_assertions)]
2051 async fn build_local(
2052 &self,
2053 build_remote_server: String,
2054 delegate: &Arc<dyn SshClientDelegate>,
2055 cx: &mut AsyncApp,
2056 ) -> Result<PathBuf> {
2057 use smol::process::{Command, Stdio};
2058 use std::env::VarError;
2059
2060 async fn run_cmd(command: &mut Command) -> Result<()> {
2061 let output = command
2062 .kill_on_drop(true)
2063 .stderr(Stdio::inherit())
2064 .output()
2065 .await?;
2066 anyhow::ensure!(
2067 output.status.success(),
2068 "Failed to run command: {command:?}"
2069 );
2070 Ok(())
2071 }
2072
2073 let use_musl = !build_remote_server.contains("nomusl");
2074 let triple = format!(
2075 "{}-{}",
2076 self.ssh_platform.arch,
2077 match self.ssh_platform.os {
2078 "linux" =>
2079 if use_musl {
2080 "unknown-linux-musl"
2081 } else {
2082 "unknown-linux-gnu"
2083 },
2084 "macos" => "apple-darwin",
2085 _ => anyhow::bail!("can't cross compile for: {:?}", self.ssh_platform),
2086 }
2087 );
2088 let mut rust_flags = match std::env::var("RUSTFLAGS") {
2089 Ok(val) => val,
2090 Err(VarError::NotPresent) => String::new(),
2091 Err(e) => {
2092 log::error!("Failed to get env var `RUSTFLAGS` value: {e}");
2093 String::new()
2094 }
2095 };
2096 if self.ssh_platform.os == "linux" && use_musl {
2097 rust_flags.push_str(" -C target-feature=+crt-static");
2098 }
2099 if build_remote_server.contains("mold") {
2100 rust_flags.push_str(" -C link-arg=-fuse-ld=mold");
2101 }
2102
2103 if self.ssh_platform.arch == std::env::consts::ARCH
2104 && self.ssh_platform.os == std::env::consts::OS
2105 {
2106 delegate.set_status(Some("Building remote server binary from source"), cx);
2107 log::info!("building remote server binary from source");
2108 run_cmd(
2109 Command::new("cargo")
2110 .args([
2111 "build",
2112 "--package",
2113 "remote_server",
2114 "--features",
2115 "debug-embed",
2116 "--target-dir",
2117 "target/remote_server",
2118 "--target",
2119 &triple,
2120 ])
2121 .env("RUSTFLAGS", &rust_flags),
2122 )
2123 .await?;
2124 } else {
2125 if build_remote_server.contains("cross") {
2126 #[cfg(target_os = "windows")]
2127 use util::paths::SanitizedPath;
2128
2129 delegate.set_status(Some("Installing cross.rs for cross-compilation"), cx);
2130 log::info!("installing cross");
2131 run_cmd(Command::new("cargo").args([
2132 "install",
2133 "cross",
2134 "--git",
2135 "https://github.com/cross-rs/cross",
2136 ]))
2137 .await?;
2138
2139 delegate.set_status(
2140 Some(&format!(
2141 "Building remote server binary from source for {} with Docker",
2142 &triple
2143 )),
2144 cx,
2145 );
2146 log::info!("building remote server binary from source for {}", &triple);
2147
2148 // On Windows, the binding needs to be set to the canonical path
2149 #[cfg(target_os = "windows")]
2150 let src =
2151 SanitizedPath::from(smol::fs::canonicalize("./target").await?).to_glob_string();
2152 #[cfg(not(target_os = "windows"))]
2153 let src = "./target";
2154 run_cmd(
2155 Command::new("cross")
2156 .args([
2157 "build",
2158 "--package",
2159 "remote_server",
2160 "--features",
2161 "debug-embed",
2162 "--target-dir",
2163 "target/remote_server",
2164 "--target",
2165 &triple,
2166 ])
2167 .env(
2168 "CROSS_CONTAINER_OPTS",
2169 format!("--mount type=bind,src={src},dst=/app/target"),
2170 )
2171 .env("RUSTFLAGS", &rust_flags),
2172 )
2173 .await?;
2174 } else {
2175 let which = cx
2176 .background_spawn(async move { which::which("zig") })
2177 .await;
2178
2179 if which.is_err() {
2180 #[cfg(not(target_os = "windows"))]
2181 {
2182 anyhow::bail!(
2183 "zig not found on $PATH, install zig (see https://ziglang.org/learn/getting-started or use zigup) or pass ZED_BUILD_REMOTE_SERVER=cross to use cross"
2184 )
2185 }
2186 #[cfg(target_os = "windows")]
2187 {
2188 anyhow::bail!(
2189 "zig not found on $PATH, install zig (use `winget install -e --id zig.zig` or see https://ziglang.org/learn/getting-started or use zigup) or pass ZED_BUILD_REMOTE_SERVER=cross to use cross"
2190 )
2191 }
2192 }
2193
2194 delegate.set_status(Some("Adding rustup target for cross-compilation"), cx);
2195 log::info!("adding rustup target");
2196 run_cmd(Command::new("rustup").args(["target", "add"]).arg(&triple)).await?;
2197
2198 delegate.set_status(Some("Installing cargo-zigbuild for cross-compilation"), cx);
2199 log::info!("installing cargo-zigbuild");
2200 run_cmd(Command::new("cargo").args(["install", "--locked", "cargo-zigbuild"]))
2201 .await?;
2202
2203 delegate.set_status(
2204 Some(&format!(
2205 "Building remote binary from source for {triple} with Zig"
2206 )),
2207 cx,
2208 );
2209 log::info!("building remote binary from source for {triple} with Zig");
2210 run_cmd(
2211 Command::new("cargo")
2212 .args([
2213 "zigbuild",
2214 "--package",
2215 "remote_server",
2216 "--features",
2217 "debug-embed",
2218 "--target-dir",
2219 "target/remote_server",
2220 "--target",
2221 &triple,
2222 ])
2223 .env("RUSTFLAGS", &rust_flags),
2224 )
2225 .await?;
2226 }
2227 };
2228 let bin_path = Path::new("target")
2229 .join("remote_server")
2230 .join(&triple)
2231 .join("debug")
2232 .join("remote_server");
2233
2234 let path = if !build_remote_server.contains("nocompress") {
2235 delegate.set_status(Some("Compressing binary"), cx);
2236
2237 #[cfg(not(target_os = "windows"))]
2238 {
2239 run_cmd(Command::new("gzip").args(["-f", &bin_path.to_string_lossy()])).await?;
2240 }
2241 #[cfg(target_os = "windows")]
2242 {
2243 // On Windows, we use 7z to compress the binary
2244 let seven_zip = which::which("7z.exe").context("7z.exe not found on $PATH, install it (e.g. with `winget install -e --id 7zip.7zip`) or, if you don't want this behaviour, set $env:ZED_BUILD_REMOTE_SERVER=\"nocompress\"")?;
2245 let gz_path = format!("target/remote_server/{}/debug/remote_server.gz", triple);
2246 if smol::fs::metadata(&gz_path).await.is_ok() {
2247 smol::fs::remove_file(&gz_path).await?;
2248 }
2249 run_cmd(Command::new(seven_zip).args([
2250 "a",
2251 "-tgzip",
2252 &gz_path,
2253 &bin_path.to_string_lossy(),
2254 ]))
2255 .await?;
2256 }
2257
2258 let mut archive_path = bin_path;
2259 archive_path.set_extension("gz");
2260 std::env::current_dir()?.join(archive_path)
2261 } else {
2262 bin_path
2263 };
2264
2265 Ok(path)
2266 }
2267}
2268
2269type ResponseChannels = Mutex<HashMap<MessageId, oneshot::Sender<(Envelope, oneshot::Sender<()>)>>>;
2270
2271pub struct ChannelClient {
2272 next_message_id: AtomicU32,
2273 outgoing_tx: Mutex<mpsc::UnboundedSender<Envelope>>,
2274 buffer: Mutex<VecDeque<Envelope>>,
2275 response_channels: ResponseChannels,
2276 message_handlers: Mutex<ProtoMessageHandlerSet>,
2277 max_received: AtomicU32,
2278 name: &'static str,
2279 task: Mutex<Task<Result<()>>>,
2280}
2281
2282impl ChannelClient {
2283 pub fn new(
2284 incoming_rx: mpsc::UnboundedReceiver<Envelope>,
2285 outgoing_tx: mpsc::UnboundedSender<Envelope>,
2286 cx: &App,
2287 name: &'static str,
2288 ) -> Arc<Self> {
2289 Arc::new_cyclic(|this| Self {
2290 outgoing_tx: Mutex::new(outgoing_tx),
2291 next_message_id: AtomicU32::new(0),
2292 max_received: AtomicU32::new(0),
2293 response_channels: ResponseChannels::default(),
2294 message_handlers: Default::default(),
2295 buffer: Mutex::new(VecDeque::new()),
2296 name,
2297 task: Mutex::new(Self::start_handling_messages(
2298 this.clone(),
2299 incoming_rx,
2300 &cx.to_async(),
2301 )),
2302 })
2303 }
2304
2305 fn start_handling_messages(
2306 this: Weak<Self>,
2307 mut incoming_rx: mpsc::UnboundedReceiver<Envelope>,
2308 cx: &AsyncApp,
2309 ) -> Task<Result<()>> {
2310 cx.spawn(async move |cx| {
2311 let peer_id = PeerId { owner_id: 0, id: 0 };
2312 while let Some(incoming) = incoming_rx.next().await {
2313 let Some(this) = this.upgrade() else {
2314 return anyhow::Ok(());
2315 };
2316 if let Some(ack_id) = incoming.ack_id {
2317 let mut buffer = this.buffer.lock();
2318 while buffer.front().is_some_and(|msg| msg.id <= ack_id) {
2319 buffer.pop_front();
2320 }
2321 }
2322 if let Some(proto::envelope::Payload::FlushBufferedMessages(_)) = &incoming.payload
2323 {
2324 log::debug!(
2325 "{}:ssh message received. name:FlushBufferedMessages",
2326 this.name
2327 );
2328 {
2329 let buffer = this.buffer.lock();
2330 for envelope in buffer.iter() {
2331 this.outgoing_tx
2332 .lock()
2333 .unbounded_send(envelope.clone())
2334 .ok();
2335 }
2336 }
2337 let mut envelope = proto::Ack {}.into_envelope(0, Some(incoming.id), None);
2338 envelope.id = this.next_message_id.fetch_add(1, SeqCst);
2339 this.outgoing_tx.lock().unbounded_send(envelope).ok();
2340 continue;
2341 }
2342
2343 this.max_received.store(incoming.id, SeqCst);
2344
2345 if let Some(request_id) = incoming.responding_to {
2346 let request_id = MessageId(request_id);
2347 let sender = this.response_channels.lock().remove(&request_id);
2348 if let Some(sender) = sender {
2349 let (tx, rx) = oneshot::channel();
2350 if incoming.payload.is_some() {
2351 sender.send((incoming, tx)).ok();
2352 }
2353 rx.await.ok();
2354 }
2355 } else if let Some(envelope) =
2356 build_typed_envelope(peer_id, Instant::now(), incoming)
2357 {
2358 let type_name = envelope.payload_type_name();
2359 if let Some(future) = ProtoMessageHandlerSet::handle_message(
2360 &this.message_handlers,
2361 envelope,
2362 this.clone().into(),
2363 cx.clone(),
2364 ) {
2365 log::debug!("{}:ssh message received. name:{type_name}", this.name);
2366 cx.foreground_executor()
2367 .spawn(async move {
2368 match future.await {
2369 Ok(_) => {
2370 log::debug!(
2371 "{}:ssh message handled. name:{type_name}",
2372 this.name
2373 );
2374 }
2375 Err(error) => {
2376 log::error!(
2377 "{}:error handling message. type:{}, error:{}",
2378 this.name,
2379 type_name,
2380 format!("{error:#}").lines().fold(
2381 String::new(),
2382 |mut message, line| {
2383 if !message.is_empty() {
2384 message.push(' ');
2385 }
2386 message.push_str(line);
2387 message
2388 }
2389 )
2390 );
2391 }
2392 }
2393 })
2394 .detach()
2395 } else {
2396 log::error!("{}:unhandled ssh message name:{type_name}", this.name);
2397 }
2398 }
2399 }
2400 anyhow::Ok(())
2401 })
2402 }
2403
2404 pub fn reconnect(
2405 self: &Arc<Self>,
2406 incoming_rx: UnboundedReceiver<Envelope>,
2407 outgoing_tx: UnboundedSender<Envelope>,
2408 cx: &AsyncApp,
2409 ) {
2410 *self.outgoing_tx.lock() = outgoing_tx;
2411 *self.task.lock() = Self::start_handling_messages(Arc::downgrade(self), incoming_rx, cx);
2412 }
2413
2414 pub fn subscribe_to_entity<E: 'static>(&self, remote_id: u64, entity: &Entity<E>) {
2415 let id = (TypeId::of::<E>(), remote_id);
2416
2417 let mut message_handlers = self.message_handlers.lock();
2418 if message_handlers
2419 .entities_by_type_and_remote_id
2420 .contains_key(&id)
2421 {
2422 panic!("already subscribed to entity");
2423 }
2424
2425 message_handlers.entities_by_type_and_remote_id.insert(
2426 id,
2427 EntityMessageSubscriber::Entity {
2428 handle: entity.downgrade().into(),
2429 },
2430 );
2431 }
2432
2433 pub fn request<T: RequestMessage>(
2434 &self,
2435 payload: T,
2436 ) -> impl 'static + Future<Output = Result<T::Response>> {
2437 self.request_internal(payload, true)
2438 }
2439
2440 fn request_internal<T: RequestMessage>(
2441 &self,
2442 payload: T,
2443 use_buffer: bool,
2444 ) -> impl 'static + Future<Output = Result<T::Response>> {
2445 log::debug!("ssh request start. name:{}", T::NAME);
2446 let response =
2447 self.request_dynamic(payload.into_envelope(0, None, None), T::NAME, use_buffer);
2448 async move {
2449 let response = response.await?;
2450 log::debug!("ssh request finish. name:{}", T::NAME);
2451 T::Response::from_envelope(response).context("received a response of the wrong type")
2452 }
2453 }
2454
2455 pub async fn resync(&self, timeout: Duration) -> Result<()> {
2456 smol::future::or(
2457 async {
2458 self.request_internal(proto::FlushBufferedMessages {}, false)
2459 .await?;
2460
2461 for envelope in self.buffer.lock().iter() {
2462 self.outgoing_tx
2463 .lock()
2464 .unbounded_send(envelope.clone())
2465 .ok();
2466 }
2467 Ok(())
2468 },
2469 async {
2470 smol::Timer::after(timeout).await;
2471 anyhow::bail!("Timed out resyncing remote client")
2472 },
2473 )
2474 .await
2475 }
2476
2477 pub async fn ping(&self, timeout: Duration) -> Result<()> {
2478 smol::future::or(
2479 async {
2480 self.request(proto::Ping {}).await?;
2481 Ok(())
2482 },
2483 async {
2484 smol::Timer::after(timeout).await;
2485 anyhow::bail!("Timed out pinging remote client")
2486 },
2487 )
2488 .await
2489 }
2490
2491 pub fn send<T: EnvelopedMessage>(&self, payload: T) -> Result<()> {
2492 log::debug!("ssh send name:{}", T::NAME);
2493 self.send_dynamic(payload.into_envelope(0, None, None))
2494 }
2495
2496 fn request_dynamic(
2497 &self,
2498 mut envelope: proto::Envelope,
2499 type_name: &'static str,
2500 use_buffer: bool,
2501 ) -> impl 'static + Future<Output = Result<proto::Envelope>> {
2502 envelope.id = self.next_message_id.fetch_add(1, SeqCst);
2503 let (tx, rx) = oneshot::channel();
2504 let mut response_channels_lock = self.response_channels.lock();
2505 response_channels_lock.insert(MessageId(envelope.id), tx);
2506 drop(response_channels_lock);
2507
2508 let result = if use_buffer {
2509 self.send_buffered(envelope)
2510 } else {
2511 self.send_unbuffered(envelope)
2512 };
2513 async move {
2514 if let Err(error) = &result {
2515 log::error!("failed to send message: {error}");
2516 anyhow::bail!("failed to send message: {error}");
2517 }
2518
2519 let response = rx.await.context("connection lost")?.0;
2520 if let Some(proto::envelope::Payload::Error(error)) = &response.payload {
2521 return Err(RpcError::from_proto(error, type_name));
2522 }
2523 Ok(response)
2524 }
2525 }
2526
2527 pub fn send_dynamic(&self, mut envelope: proto::Envelope) -> Result<()> {
2528 envelope.id = self.next_message_id.fetch_add(1, SeqCst);
2529 self.send_buffered(envelope)
2530 }
2531
2532 fn send_buffered(&self, mut envelope: proto::Envelope) -> Result<()> {
2533 envelope.ack_id = Some(self.max_received.load(SeqCst));
2534 self.buffer.lock().push_back(envelope.clone());
2535 // ignore errors on send (happen while we're reconnecting)
2536 // assume that the global "disconnected" overlay is sufficient.
2537 self.outgoing_tx.lock().unbounded_send(envelope).ok();
2538 Ok(())
2539 }
2540
2541 fn send_unbuffered(&self, mut envelope: proto::Envelope) -> Result<()> {
2542 envelope.ack_id = Some(self.max_received.load(SeqCst));
2543 self.outgoing_tx.lock().unbounded_send(envelope).ok();
2544 Ok(())
2545 }
2546}
2547
2548impl ProtoClient for ChannelClient {
2549 fn request(
2550 &self,
2551 envelope: proto::Envelope,
2552 request_type: &'static str,
2553 ) -> BoxFuture<'static, Result<proto::Envelope>> {
2554 self.request_dynamic(envelope, request_type, true).boxed()
2555 }
2556
2557 fn send(&self, envelope: proto::Envelope, _message_type: &'static str) -> Result<()> {
2558 self.send_dynamic(envelope)
2559 }
2560
2561 fn send_response(&self, envelope: Envelope, _message_type: &'static str) -> anyhow::Result<()> {
2562 self.send_dynamic(envelope)
2563 }
2564
2565 fn message_handler_set(&self) -> &Mutex<ProtoMessageHandlerSet> {
2566 &self.message_handlers
2567 }
2568
2569 fn is_via_collab(&self) -> bool {
2570 false
2571 }
2572}
2573
2574#[cfg(any(test, feature = "test-support"))]
2575mod fake {
2576 use std::{path::PathBuf, sync::Arc};
2577
2578 use anyhow::Result;
2579 use async_trait::async_trait;
2580 use futures::{
2581 FutureExt, SinkExt, StreamExt,
2582 channel::{
2583 mpsc::{self, Sender},
2584 oneshot,
2585 },
2586 select_biased,
2587 };
2588 use gpui::{App, AppContext as _, AsyncApp, SemanticVersion, Task, TestAppContext};
2589 use release_channel::ReleaseChannel;
2590 use rpc::proto::Envelope;
2591 use util::paths::{PathStyle, RemotePathBuf};
2592
2593 use super::{
2594 ChannelClient, RemoteConnection, SshArgs, SshClientDelegate, SshConnectionOptions,
2595 SshPlatform,
2596 };
2597
2598 pub(super) struct FakeRemoteConnection {
2599 pub(super) connection_options: SshConnectionOptions,
2600 pub(super) server_channel: Arc<ChannelClient>,
2601 pub(super) server_cx: SendableCx,
2602 }
2603
2604 pub(super) struct SendableCx(AsyncApp);
2605 impl SendableCx {
2606 // SAFETY: When run in test mode, GPUI is always single threaded.
2607 pub(super) fn new(cx: &TestAppContext) -> Self {
2608 Self(cx.to_async())
2609 }
2610
2611 // SAFETY: Enforce that we're on the main thread by requiring a valid AsyncApp
2612 fn get(&self, _: &AsyncApp) -> AsyncApp {
2613 self.0.clone()
2614 }
2615 }
2616
2617 // SAFETY: There is no way to access a SendableCx from a different thread, see [`SendableCx::new`] and [`SendableCx::get`]
2618 unsafe impl Send for SendableCx {}
2619 unsafe impl Sync for SendableCx {}
2620
2621 #[async_trait(?Send)]
2622 impl RemoteConnection for FakeRemoteConnection {
2623 async fn kill(&self) -> Result<()> {
2624 Ok(())
2625 }
2626
2627 fn has_been_killed(&self) -> bool {
2628 false
2629 }
2630
2631 fn ssh_args(&self) -> SshArgs {
2632 SshArgs {
2633 arguments: Vec::new(),
2634 envs: None,
2635 }
2636 }
2637
2638 fn upload_directory(
2639 &self,
2640 _src_path: PathBuf,
2641 _dest_path: RemotePathBuf,
2642 _cx: &App,
2643 ) -> Task<Result<()>> {
2644 unreachable!()
2645 }
2646
2647 fn connection_options(&self) -> SshConnectionOptions {
2648 self.connection_options.clone()
2649 }
2650
2651 fn simulate_disconnect(&self, cx: &AsyncApp) {
2652 let (outgoing_tx, _) = mpsc::unbounded::<Envelope>();
2653 let (_, incoming_rx) = mpsc::unbounded::<Envelope>();
2654 self.server_channel
2655 .reconnect(incoming_rx, outgoing_tx, &self.server_cx.get(cx));
2656 }
2657
2658 fn start_proxy(
2659 &self,
2660 _unique_identifier: String,
2661 _reconnect: bool,
2662 mut client_incoming_tx: mpsc::UnboundedSender<Envelope>,
2663 mut client_outgoing_rx: mpsc::UnboundedReceiver<Envelope>,
2664 mut connection_activity_tx: Sender<()>,
2665 _delegate: Arc<dyn SshClientDelegate>,
2666 cx: &mut AsyncApp,
2667 ) -> Task<Result<i32>> {
2668 let (mut server_incoming_tx, server_incoming_rx) = mpsc::unbounded::<Envelope>();
2669 let (server_outgoing_tx, mut server_outgoing_rx) = mpsc::unbounded::<Envelope>();
2670
2671 self.server_channel.reconnect(
2672 server_incoming_rx,
2673 server_outgoing_tx,
2674 &self.server_cx.get(cx),
2675 );
2676
2677 cx.background_spawn(async move {
2678 loop {
2679 select_biased! {
2680 server_to_client = server_outgoing_rx.next().fuse() => {
2681 let Some(server_to_client) = server_to_client else {
2682 return Ok(1)
2683 };
2684 connection_activity_tx.try_send(()).ok();
2685 client_incoming_tx.send(server_to_client).await.ok();
2686 }
2687 client_to_server = client_outgoing_rx.next().fuse() => {
2688 let Some(client_to_server) = client_to_server else {
2689 return Ok(1)
2690 };
2691 server_incoming_tx.send(client_to_server).await.ok();
2692 }
2693 }
2694 }
2695 })
2696 }
2697
2698 fn path_style(&self) -> PathStyle {
2699 PathStyle::current()
2700 }
2701 }
2702
2703 pub(super) struct Delegate;
2704
2705 impl SshClientDelegate for Delegate {
2706 fn ask_password(&self, _: String, _: oneshot::Sender<String>, _: &mut AsyncApp) {
2707 unreachable!()
2708 }
2709
2710 fn download_server_binary_locally(
2711 &self,
2712 _: SshPlatform,
2713 _: ReleaseChannel,
2714 _: Option<SemanticVersion>,
2715 _: &mut AsyncApp,
2716 ) -> Task<Result<PathBuf>> {
2717 unreachable!()
2718 }
2719
2720 fn get_download_params(
2721 &self,
2722 _platform: SshPlatform,
2723 _release_channel: ReleaseChannel,
2724 _version: Option<SemanticVersion>,
2725 _cx: &mut AsyncApp,
2726 ) -> Task<Result<Option<(String, String)>>> {
2727 unreachable!()
2728 }
2729
2730 fn set_status(&self, _: Option<&str>, _: &mut AsyncApp) {}
2731 }
2732}