summaryrefslogtreecommitdiff
path: root/usr.bin/ssh/ssh.c
diff options
context:
space:
mode:
authorJakob Schlyter <jakob@cvs.openbsd.org>2005-04-26 13:08:38 +0000
committerJakob Schlyter <jakob@cvs.openbsd.org>2005-04-26 13:08:38 +0000
commitbec74eb591527484a3f81e85e975f7e4ef0822c3 (patch)
tree8885c200624cd8f5d69560a13c9eafaaa2f2a455 /usr.bin/ssh/ssh.c
parent3aa793b25177de50df503d9577dd9c06cc0dfdfe (diff)
fallback gracefully if client cannot connect to ControlPath. ok djm@
Diffstat (limited to 'usr.bin/ssh/ssh.c')
-rw-r--r--usr.bin/ssh/ssh.c31
1 files changed, 17 insertions, 14 deletions
diff --git a/usr.bin/ssh/ssh.c b/usr.bin/ssh/ssh.c
index cc74ddda878..7910830f07e 100644
--- a/usr.bin/ssh/ssh.c
+++ b/usr.bin/ssh/ssh.c
@@ -40,7 +40,7 @@
*/
#include "includes.h"
-RCSID("$OpenBSD: ssh.c,v 1.236 2005/04/21 11:47:19 djm Exp $");
+RCSID("$OpenBSD: ssh.c,v 1.237 2005/04/26 13:08:37 jakob Exp $");
#include <openssl/evp.h>
#include <openssl/err.h>
@@ -606,7 +606,7 @@ again:
options.control_path, original_real_uid);
}
if (options.control_path != NULL && options.control_master == 0)
- control_client(options.control_path); /* This doesn't return */
+ control_client(options.control_path);
/* Open a connection to the remote host. */
if (ssh_connect(host, &hostaddr, options.port,
@@ -1278,15 +1278,6 @@ control_client(const char *path)
extern char **environ;
u_int flags;
- if (stdin_null_flag) {
- if ((fd = open(_PATH_DEVNULL, O_RDONLY)) == -1)
- fatal("open(/dev/null): %s", strerror(errno));
- if (dup2(fd, STDIN_FILENO) == -1)
- fatal("dup2: %s", strerror(errno));
- if (fd > STDERR_FILENO)
- close(fd);
- }
-
memset(&addr, '\0', sizeof(addr));
addr.sun_family = AF_UNIX;
addr.sun_len = offsetof(struct sockaddr_un, sun_path) +
@@ -1299,9 +1290,21 @@ control_client(const char *path)
if ((sock = socket(PF_UNIX, SOCK_STREAM, 0)) < 0)
fatal("%s socket(): %s", __func__, strerror(errno));
- if (connect(sock, (struct sockaddr*)&addr, addr.sun_len) == -1)
- fatal("Couldn't connect to %s: %s", path, strerror(errno));
-
+ if (connect(sock, (struct sockaddr*)&addr, addr.sun_len) == -1) {
+ debug("Couldn't connect to %s: %s", path, strerror(errno));
+ close(sock);
+ return;
+ }
+
+ if (stdin_null_flag) {
+ if ((fd = open(_PATH_DEVNULL, O_RDONLY)) == -1)
+ fatal("open(/dev/null): %s", strerror(errno));
+ if (dup2(fd, STDIN_FILENO) == -1)
+ fatal("dup2: %s", strerror(errno));
+ if (fd > STDERR_FILENO)
+ close(fd);
+ }
+
if ((term = getenv("TERM")) == NULL)
term = "";