blob: f9c6252d39f8e29e93cd2ea6c7b250cff141e410 [file] [log] [blame]
Darren Tuckerb4fbbc62007-12-02 23:16:32 +11001/* $OpenBSD: ssh.c,v 1.306 2007/11/03 01:24:06 deraadt Exp $ */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002/*
Damien Miller95def091999-11-25 00:26:21 +11003 * Author: Tatu Ylonen <ylo@cs.hut.fi>
4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
5 * All rights reserved
Damien Miller95def091999-11-25 00:26:21 +11006 * Ssh client program. This program can be used to log into a remote machine.
7 * The software supports strong authentication, encryption, and forwarding
8 * of X11, TCP/IP, and authentication connections.
9 *
Damien Millere4340be2000-09-16 13:29:08 +110010 * As far as I am concerned, the code I have written for this software
11 * can be used freely for any purpose. Any derived versions of this
12 * software must be clearly marked as such, and if the derived work is
13 * incompatible with the protocol description in the RFC file, it must be
14 * called by a name other than "ssh" or "Secure Shell".
15 *
16 * Copyright (c) 1999 Niels Provos. All rights reserved.
Darren Tucker0a118da2003-10-15 15:54:32 +100017 * Copyright (c) 2000, 2001, 2002, 2003 Markus Friedl. All rights reserved.
Damien Millere4340be2000-09-16 13:29:08 +110018 *
19 * Modified to work with SSL by Niels Provos <provos@citi.umich.edu>
20 * in Canada (German citizen).
21 *
22 * Redistribution and use in source and binary forms, with or without
23 * modification, are permitted provided that the following conditions
24 * are met:
25 * 1. Redistributions of source code must retain the above copyright
26 * notice, this list of conditions and the following disclaimer.
27 * 2. Redistributions in binary form must reproduce the above copyright
28 * notice, this list of conditions and the following disclaimer in the
29 * documentation and/or other materials provided with the distribution.
30 *
31 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
32 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
33 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
34 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
35 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
36 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
37 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
38 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
39 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
40 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Damien Miller95def091999-11-25 00:26:21 +110041 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100042
43#include "includes.h"
Damien Millercd4223c2006-03-15 11:22:47 +110044
Damien Millerf17883e2006-03-15 11:45:54 +110045#include <sys/types.h>
46#ifdef HAVE_SYS_STAT_H
47# include <sys/stat.h>
48#endif
Damien Millercd4223c2006-03-15 11:22:47 +110049#include <sys/resource.h>
Damien Miller17e91c02006-03-15 11:28:34 +110050#include <sys/ioctl.h>
Damien Millere3b60b52006-07-10 21:08:03 +100051#include <sys/socket.h>
Damien Miller574c41f2006-03-15 11:40:10 +110052#include <sys/un.h>
Damien Miller03e20032006-03-15 11:16:59 +110053
Damien Millerc7b06362006-03-15 11:53:45 +110054#include <ctype.h>
Darren Tuckerba724052006-07-12 22:24:22 +100055#include <errno.h>
Damien Miller57cf6382006-07-10 21:13:46 +100056#include <fcntl.h>
Damien Millerb8fe89c2006-07-24 14:51:00 +100057#include <netdb.h>
Damien Miller6645e7a2006-03-15 14:42:54 +110058#ifdef HAVE_PATHS_H
Damien Miller03e20032006-03-15 11:16:59 +110059#include <paths.h>
Damien Miller6645e7a2006-03-15 14:42:54 +110060#endif
Damien Miller9f2abc42006-07-10 20:53:08 +100061#include <pwd.h>
Damien Miller6ff3cad2006-03-15 11:52:09 +110062#include <signal.h>
Damien Millerded319c2006-09-01 15:38:36 +100063#include <stdarg.h>
Damien Miller2d00e632006-07-24 13:53:19 +100064#include <stddef.h>
Damien Millera7a73ee2006-08-05 11:37:59 +100065#include <stdio.h>
Damien Millere7a1e5c2006-08-05 11:34:19 +100066#include <stdlib.h>
Damien Millere3476ed2006-07-24 14:13:33 +100067#include <string.h>
Damien Millere6b3b612006-07-24 14:01:23 +100068#include <unistd.h>
Damien Millereba71ba2000-04-29 23:57:08 +100069
Darren Tucker46aa3e02006-09-02 15:32:40 +100070#include <netinet/in.h>
71#include <arpa/inet.h>
72
Damien Millereba71ba2000-04-29 23:57:08 +100073#include <openssl/evp.h>
Damien Miller0bc1bd82000-11-13 22:57:25 +110074#include <openssl/err.h>
Damien Millerd4a8b7e1999-10-27 13:42:43 +100075
Damien Millerd7834352006-08-05 12:39:39 +100076#include "xmalloc.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100077#include "ssh.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000078#include "ssh1.h"
Damien Miller1383bd82000-04-06 12:32:37 +100079#include "ssh2.h"
80#include "compat.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000081#include "cipher.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000082#include "packet.h"
83#include "buffer.h"
Ben Lindstromc7637672001-06-09 00:36:26 +000084#include "channels.h"
Damien Millereba71ba2000-04-29 23:57:08 +100085#include "key.h"
Damien Miller994cf142000-07-21 10:19:44 +100086#include "authfd.h"
Damien Millereba71ba2000-04-29 23:57:08 +100087#include "authfile.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000088#include "pathnames.h"
Damien Miller0e220db2004-06-15 10:34:08 +100089#include "dispatch.h"
Ben Lindstrombf555ba2001-01-18 02:04:35 +000090#include "clientloop.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000091#include "log.h"
92#include "readconf.h"
93#include "sshconnect.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000094#include "misc.h"
Ben Lindstrom06b33aa2001-02-15 03:01:59 +000095#include "kex.h"
96#include "mac.h"
Darren Tucker06f2bd82004-05-13 16:06:46 +100097#include "sshpty.h"
Darren Tucker46bc0752004-05-02 22:11:30 +100098#include "match.h"
Damien Miller0e220db2004-06-15 10:34:08 +100099#include "msg.h"
100#include "monitor_fdpass.h"
Darren Tucker25f60a72004-08-15 17:23:34 +1000101#include "uidswap.h"
Damien Millerb7576772006-07-10 20:23:39 +1000102#include "version.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000103
Ben Lindstromc5b68002001-07-04 04:52:03 +0000104#ifdef SMARTCARD
Ben Lindstromc5b68002001-07-04 04:52:03 +0000105#include "scard.h"
Ben Lindstrombcc18082001-08-06 21:59:25 +0000106#endif
Ben Lindstromc5b68002001-07-04 04:52:03 +0000107
Damien Miller3f905871999-11-15 17:10:57 +1100108extern char *__progname;
Damien Miller3f905871999-11-15 17:10:57 +1100109
Damien Miller95def091999-11-25 00:26:21 +1100110/* Flag indicating whether debug mode is on. This can be set on the command line. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000111int debug_flag = 0;
112
Damien Miller78928792000-04-12 20:17:38 +1000113/* Flag indicating whether a tty should be allocated */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000114int tty_flag = 0;
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000115int no_tty_flag = 0;
116int force_tty_flag = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000117
Damien Miller1383bd82000-04-06 12:32:37 +1000118/* don't exec a shell */
119int no_shell_flag = 0;
Damien Miller1383bd82000-04-06 12:32:37 +1000120
Damien Miller5428f641999-11-25 11:54:57 +1100121/*
122 * Flag indicating that nothing should be read from stdin. This can be set
123 * on the command line.
124 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000125int stdin_null_flag = 0;
126
Damien Miller5428f641999-11-25 11:54:57 +1100127/*
128 * Flag indicating that ssh should fork after authentication. This is useful
Ben Lindstromf666fec2002-06-06 19:51:58 +0000129 * so that the passphrase can be entered manually, and then ssh goes to the
Damien Miller5428f641999-11-25 11:54:57 +1100130 * background.
131 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000132int fork_after_authentication_flag = 0;
133
Damien Miller5428f641999-11-25 11:54:57 +1100134/*
135 * General data structure for command line options and options configurable
136 * in configuration files. See readconf.h.
137 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000138Options options;
139
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000140/* optional user configfile */
141char *config = NULL;
142
Damien Miller5428f641999-11-25 11:54:57 +1100143/*
144 * Name of the host we are connecting to. This is the name given on the
145 * command line, or the HostName specified for the user-supplied name in a
146 * configuration file.
147 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000148char *host;
149
150/* socket address the host resolves to */
Damien Miller34132e52000-01-14 15:45:46 +1100151struct sockaddr_storage hostaddr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000152
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000153/* Private host keys. */
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000154Sensitive sensitive_data;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000155
156/* Original real UID. */
157uid_t original_real_uid;
Ben Lindstromf9c48842002-06-11 16:37:51 +0000158uid_t original_effective_uid;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000159
Damien Miller1383bd82000-04-06 12:32:37 +1000160/* command to be executed */
161Buffer command;
162
Damien Miller832562e2001-01-30 09:30:01 +1100163/* Should we execute a command or invoke a subsystem? */
164int subsystem_flag = 0;
165
Damien Miller2797f7f2002-04-23 21:09:44 +1000166/* # of replies received for global requests */
167static int client_global_request_id = 0;
168
Damien Miller8c4e18a2002-09-19 12:05:02 +1000169/* pid of proxycommand child process */
170pid_t proxy_command_pid = 0;
171
Damien Miller0e220db2004-06-15 10:34:08 +1000172/* fd to control socket */
173int control_fd = -1;
174
Darren Tucker7ebfc102004-11-07 20:06:19 +1100175/* Multiplexing control command */
Darren Tucker0814d312005-06-01 23:08:51 +1000176static u_int mux_command = 0;
Darren Tucker7ebfc102004-11-07 20:06:19 +1100177
Damien Miller0e220db2004-06-15 10:34:08 +1000178/* Only used in control client mode */
179volatile sig_atomic_t control_client_terminate = 0;
180u_int control_server_pid = 0;
181
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000182/* Prints a help message to the user. This function never returns. */
183
Ben Lindstrombba81212001-06-25 05:01:22 +0000184static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000185usage(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000186{
Damien Miller50955102004-03-22 09:34:58 +1100187 fprintf(stderr,
Darren Tucker415bddc2007-06-12 23:43:16 +1000188"usage: ssh [-1246AaCfgKkMNnqsTtVvXxY] [-b bind_address] [-c cipher_spec]\n"
Darren Tucker895d6982005-10-03 18:18:05 +1000189" [-D [bind_address:]port] [-e escape_char] [-F configfile]\n"
Damien Miller02faece2005-03-02 12:04:32 +1100190" [-i identity_file] [-L [bind_address:]port:host:hostport]\n"
Damien Millerf91ee4c2005-03-01 21:24:33 +1100191" [-l login_name] [-m mac_spec] [-O ctl_cmd] [-o option] [-p port]\n"
Damien Miller02faece2005-03-02 12:04:32 +1100192" [-R [bind_address:]port:host:hostport] [-S ctl_path]\n"
Damien Miller991dba42006-07-10 20:16:27 +1000193" [-w local_tun[:remote_tun]] [user@]hostname [command]\n"
Damien Miller50955102004-03-22 09:34:58 +1100194 );
Darren Tuckere9a9b712005-12-20 16:15:51 +1100195 exit(255);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000196}
197
Ben Lindstrombba81212001-06-25 05:01:22 +0000198static int ssh_session(void);
199static int ssh_session2(void);
200static void load_public_identity_files(void);
Damien Miller0e220db2004-06-15 10:34:08 +1000201static void control_client(const char *path);
Damien Miller1383bd82000-04-06 12:32:37 +1000202
Damien Miller95def091999-11-25 00:26:21 +1100203/*
204 * Main program for the ssh client.
205 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000206int
207main(int ac, char **av)
208{
Ben Lindstrom24157572002-06-12 16:09:39 +0000209 int i, opt, exit_status;
Damien Miller9836cf82003-12-17 16:30:06 +1100210 char *p, *cp, *line, buf[256];
Damien Miller95def091999-11-25 00:26:21 +1100211 struct stat st;
Ben Lindstrom086cf212001-03-05 05:56:40 +0000212 struct passwd *pw;
Damien Miller67bd0622007-09-17 12:06:57 +1000213 int dummy, timeout_ms;
Ben Lindstrom5ccf63a2001-09-24 20:00:10 +0000214 extern int optind, optreset;
Damien Miller4f8e6692001-07-14 13:22:53 +1000215 extern char *optarg;
Damien Miller9651fe62005-06-26 08:55:25 +1000216 struct servent *sp;
Damien Millerf91ee4c2005-03-01 21:24:33 +1100217 Forward fwd;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000218
Darren Tuckerce321d82005-10-03 18:11:24 +1000219 /* Ensure that fds 0, 1 and 2 are open or directed to /dev/null */
220 sanitise_stdfd();
221
Damien Miller59d3d5b2003-08-22 09:34:41 +1000222 __progname = ssh_get_progname(av[0]);
Damien Millerf9b625c2000-07-09 22:42:32 +1000223 init_rng();
224
Damien Miller5428f641999-11-25 11:54:57 +1100225 /*
226 * Save the original real uid. It will be needed later (uid-swapping
227 * may clobber the real uid).
228 */
Damien Miller95def091999-11-25 00:26:21 +1100229 original_real_uid = getuid();
230 original_effective_uid = geteuid();
Damien Millera8e06ce2003-11-21 23:48:55 +1100231
Damien Miller50b9a602002-09-04 16:50:06 +1000232 /*
233 * Use uid-swapping to give up root privileges for the duration of
234 * option processing. We will re-instantiate the rights when we are
235 * ready to create the privileged port, and will permanently drop
236 * them when the port has been created (actually, when the connection
237 * has been made, as we may need to create the port several times).
238 */
239 PRIV_END;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000240
Damien Miller05dd7952000-10-01 00:42:48 +1100241#ifdef HAVE_SETRLIMIT
Damien Miller95def091999-11-25 00:26:21 +1100242 /* If we are installed setuid root be careful to not drop core. */
243 if (original_real_uid != original_effective_uid) {
244 struct rlimit rlim;
245 rlim.rlim_cur = rlim.rlim_max = 0;
246 if (setrlimit(RLIMIT_CORE, &rlim) < 0)
247 fatal("setrlimit failed: %.100s", strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000248 }
Damien Millerbac2d8a2000-09-05 16:13:06 +1100249#endif
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000250 /* Get user data. */
251 pw = getpwuid(original_real_uid);
252 if (!pw) {
Damien Miller996acd22003-04-09 20:59:48 +1000253 logit("You don't exist, go away!");
Darren Tuckere9a9b712005-12-20 16:15:51 +1100254 exit(255);
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000255 }
256 /* Take a copy of the returned structure. */
257 pw = pwcopy(pw);
258
Damien Miller5428f641999-11-25 11:54:57 +1100259 /*
Damien Miller5428f641999-11-25 11:54:57 +1100260 * Set our umask to something reasonable, as some files are created
261 * with the default umask. This will make them world-readable but
262 * writable only by the owner, which is ok for all files for which we
263 * don't set the modes explicitly.
264 */
Damien Miller95def091999-11-25 00:26:21 +1100265 umask(022);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000266
Damien Miller95def091999-11-25 00:26:21 +1100267 /* Initialize option structure to indicate that no values have been set. */
268 initialize_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000269
Damien Miller95def091999-11-25 00:26:21 +1100270 /* Parse command-line arguments. */
271 host = NULL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000272
Damien Miller2ecb6bd2006-03-15 12:03:53 +1100273 again:
Damien Millerf4614452001-07-14 12:18:10 +1000274 while ((opt = getopt(ac, av,
Darren Tucker415bddc2007-06-12 23:43:16 +1000275 "1246ab:c:e:fgi:kl:m:no:p:qstvxACD:F:I:KL:MNO:PR:S:TVw:XY")) != -1) {
Damien Miller95def091999-11-25 00:26:21 +1100276 switch (opt) {
Ben Lindstrom1e7d3062001-02-09 02:36:43 +0000277 case '1':
278 options.protocol = SSH_PROTO_1;
279 break;
Damien Miller4af51302000-04-16 11:18:38 +1000280 case '2':
281 options.protocol = SSH_PROTO_2;
282 break;
Damien Miller34132e52000-01-14 15:45:46 +1100283 case '4':
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000284 options.address_family = AF_INET;
Damien Miller34132e52000-01-14 15:45:46 +1100285 break;
Damien Miller34132e52000-01-14 15:45:46 +1100286 case '6':
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000287 options.address_family = AF_INET6;
Damien Miller34132e52000-01-14 15:45:46 +1100288 break;
Damien Miller95def091999-11-25 00:26:21 +1100289 case 'n':
290 stdin_null_flag = 1;
291 break;
Damien Miller95def091999-11-25 00:26:21 +1100292 case 'f':
293 fork_after_authentication_flag = 1;
294 stdin_null_flag = 1;
295 break;
Damien Miller95def091999-11-25 00:26:21 +1100296 case 'x':
297 options.forward_x11 = 0;
298 break;
Damien Miller95def091999-11-25 00:26:21 +1100299 case 'X':
300 options.forward_x11 = 1;
301 break;
Darren Tucker0a118da2003-10-15 15:54:32 +1000302 case 'Y':
303 options.forward_x11 = 1;
304 options.forward_x11_trusted = 1;
305 break;
Damien Miller95def091999-11-25 00:26:21 +1100306 case 'g':
307 options.gateway_ports = 1;
308 break;
Darren Tucker7ebfc102004-11-07 20:06:19 +1100309 case 'O':
310 if (strcmp(optarg, "check") == 0)
311 mux_command = SSHMUX_COMMAND_ALIVE_CHECK;
312 else if (strcmp(optarg, "exit") == 0)
313 mux_command = SSHMUX_COMMAND_TERMINATE;
314 else
315 fatal("Invalid multiplex command.");
316 break;
Damien Miller147bba32002-09-04 16:46:06 +1000317 case 'P': /* deprecated */
Damien Miller95def091999-11-25 00:26:21 +1100318 options.use_privileged_port = 0;
319 break;
Damien Miller95def091999-11-25 00:26:21 +1100320 case 'a':
321 options.forward_agent = 0;
322 break;
Damien Millerb1715dc2000-05-30 13:44:51 +1000323 case 'A':
324 options.forward_agent = 1;
325 break;
Damien Miller95def091999-11-25 00:26:21 +1100326 case 'k':
Damien Millere0113cc2003-11-24 13:10:09 +1100327 options.gss_deleg_creds = 0;
Damien Miller95def091999-11-25 00:26:21 +1100328 break;
Darren Tucker415bddc2007-06-12 23:43:16 +1000329 case 'K':
330 options.gss_authentication = 1;
331 options.gss_deleg_creds = 1;
332 break;
Damien Miller95def091999-11-25 00:26:21 +1100333 case 'i':
334 if (stat(optarg, &st) < 0) {
Damien Millerf4614452001-07-14 12:18:10 +1000335 fprintf(stderr, "Warning: Identity file %s "
Damien Miller3eb48b62005-03-01 21:15:46 +1100336 "not accessible: %s.\n", optarg,
337 strerror(errno));
Damien Miller95def091999-11-25 00:26:21 +1100338 break;
339 }
Damien Millerf4614452001-07-14 12:18:10 +1000340 if (options.num_identity_files >=
341 SSH_MAX_IDENTITY_FILES)
342 fatal("Too many identity files specified "
343 "(max %d)", SSH_MAX_IDENTITY_FILES);
344 options.identity_files[options.num_identity_files++] =
345 xstrdup(optarg);
Damien Miller95def091999-11-25 00:26:21 +1100346 break;
Ben Lindstromc5b68002001-07-04 04:52:03 +0000347 case 'I':
348#ifdef SMARTCARD
Ben Lindstromf7db3bb2001-08-06 21:35:51 +0000349 options.smartcard_device = xstrdup(optarg);
Ben Lindstrombcc18082001-08-06 21:59:25 +0000350#else
Ben Lindstromc5b68002001-07-04 04:52:03 +0000351 fprintf(stderr, "no support for smartcards.\n");
Ben Lindstrombcc18082001-08-06 21:59:25 +0000352#endif
Ben Lindstromc5b68002001-07-04 04:52:03 +0000353 break;
Damien Miller95def091999-11-25 00:26:21 +1100354 case 't':
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000355 if (tty_flag)
356 force_tty_flag = 1;
Damien Miller95def091999-11-25 00:26:21 +1100357 tty_flag = 1;
358 break;
Damien Miller95def091999-11-25 00:26:21 +1100359 case 'v':
Darren Tuckere98dfa32003-07-19 19:54:31 +1000360 if (debug_flag == 0) {
Damien Millere4340be2000-09-16 13:29:08 +1100361 debug_flag = 1;
362 options.log_level = SYSLOG_LEVEL_DEBUG1;
Darren Tuckere98dfa32003-07-19 19:54:31 +1000363 } else {
364 if (options.log_level < SYSLOG_LEVEL_DEBUG3)
365 options.log_level++;
Damien Millere4340be2000-09-16 13:29:08 +1100366 break;
Darren Tuckere98dfa32003-07-19 19:54:31 +1000367 }
Darren Tuckere9bf9842004-11-05 20:05:32 +1100368 /* FALLTHROUGH */
Damien Miller95def091999-11-25 00:26:21 +1100369 case 'V':
Damien Miller0c889cd2004-03-22 09:36:00 +1100370 fprintf(stderr, "%s, %s\n",
Damien Miller2aa6d3c2004-09-12 16:53:04 +1000371 SSH_RELEASE, SSLeay_version(SSLEAY_VERSION));
Damien Miller95def091999-11-25 00:26:21 +1100372 if (opt == 'V')
373 exit(0);
Damien Miller95def091999-11-25 00:26:21 +1100374 break;
Damien Millerd27b9472005-12-13 19:29:02 +1100375 case 'w':
Damien Miller7b58e802005-12-13 19:33:19 +1100376 if (options.tun_open == -1)
377 options.tun_open = SSH_TUNMODE_DEFAULT;
Damien Millerd27b9472005-12-13 19:29:02 +1100378 options.tun_local = a2tun(optarg, &options.tun_remote);
Damien Miller7b58e802005-12-13 19:33:19 +1100379 if (options.tun_local == SSH_TUNID_ERR) {
Damien Millerd27b9472005-12-13 19:29:02 +1100380 fprintf(stderr, "Bad tun device '%s'\n", optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100381 exit(255);
Damien Millerd27b9472005-12-13 19:29:02 +1100382 }
383 break;
Damien Miller95def091999-11-25 00:26:21 +1100384 case 'q':
385 options.log_level = SYSLOG_LEVEL_QUIET;
386 break;
Damien Miller95def091999-11-25 00:26:21 +1100387 case 'e':
388 if (optarg[0] == '^' && optarg[2] == 0 &&
Damien Millerf4614452001-07-14 12:18:10 +1000389 (u_char) optarg[1] >= 64 &&
390 (u_char) optarg[1] < 128)
Ben Lindstrom46c16222000-12-22 01:43:59 +0000391 options.escape_char = (u_char) optarg[1] & 31;
Damien Miller95def091999-11-25 00:26:21 +1100392 else if (strlen(optarg) == 1)
Ben Lindstrom46c16222000-12-22 01:43:59 +0000393 options.escape_char = (u_char) optarg[0];
Damien Miller95def091999-11-25 00:26:21 +1100394 else if (strcmp(optarg, "none") == 0)
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +0000395 options.escape_char = SSH_ESCAPECHAR_NONE;
Damien Miller95def091999-11-25 00:26:21 +1100396 else {
Damien Millerf4614452001-07-14 12:18:10 +1000397 fprintf(stderr, "Bad escape character '%s'.\n",
398 optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100399 exit(255);
Damien Miller95def091999-11-25 00:26:21 +1100400 }
401 break;
Damien Miller95def091999-11-25 00:26:21 +1100402 case 'c':
Damien Millereba71ba2000-04-29 23:57:08 +1000403 if (ciphers_valid(optarg)) {
404 /* SSH2 only */
405 options.ciphers = xstrdup(optarg);
Darren Tucker5cb30ad2004-08-12 22:40:24 +1000406 options.cipher = SSH_CIPHER_INVALID;
Damien Millereba71ba2000-04-29 23:57:08 +1000407 } else {
408 /* SSH1 only */
Damien Millere39cacc2000-11-29 12:18:44 +1100409 options.cipher = cipher_number(optarg);
410 if (options.cipher == -1) {
Damien Millerf4614452001-07-14 12:18:10 +1000411 fprintf(stderr,
412 "Unknown cipher type '%s'\n",
413 optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100414 exit(255);
Damien Millereba71ba2000-04-29 23:57:08 +1000415 }
Damien Millerf4614452001-07-14 12:18:10 +1000416 if (options.cipher == SSH_CIPHER_3DES)
Damien Millere39cacc2000-11-29 12:18:44 +1100417 options.ciphers = "3des-cbc";
Damien Millerf4614452001-07-14 12:18:10 +1000418 else if (options.cipher == SSH_CIPHER_BLOWFISH)
Damien Millere39cacc2000-11-29 12:18:44 +1100419 options.ciphers = "blowfish-cbc";
Damien Millerf4614452001-07-14 12:18:10 +1000420 else
Damien Millere39cacc2000-11-29 12:18:44 +1100421 options.ciphers = (char *)-1;
Damien Miller95def091999-11-25 00:26:21 +1100422 }
423 break;
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000424 case 'm':
425 if (mac_valid(optarg))
426 options.macs = xstrdup(optarg);
427 else {
Damien Millerf4614452001-07-14 12:18:10 +1000428 fprintf(stderr, "Unknown mac type '%s'\n",
429 optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100430 exit(255);
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000431 }
432 break;
Damien Miller0e220db2004-06-15 10:34:08 +1000433 case 'M':
Damien Millerd14b1e72005-06-16 13:19:41 +1000434 if (options.control_master == SSHCTL_MASTER_YES)
435 options.control_master = SSHCTL_MASTER_ASK;
436 else
437 options.control_master = SSHCTL_MASTER_YES;
Damien Miller0e220db2004-06-15 10:34:08 +1000438 break;
Damien Miller95def091999-11-25 00:26:21 +1100439 case 'p':
Ben Lindstrom19066a12001-04-12 23:39:26 +0000440 options.port = a2port(optarg);
441 if (options.port == 0) {
Ben Lindstrom146edb92001-04-11 23:06:28 +0000442 fprintf(stderr, "Bad port '%s'\n", optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100443 exit(255);
Ben Lindstrom146edb92001-04-11 23:06:28 +0000444 }
Damien Miller95def091999-11-25 00:26:21 +1100445 break;
Damien Miller95def091999-11-25 00:26:21 +1100446 case 'l':
447 options.user = optarg;
448 break;
Ben Lindstrom1a174712001-09-12 17:56:15 +0000449
Damien Miller95def091999-11-25 00:26:21 +1100450 case 'L':
Damien Millerf91ee4c2005-03-01 21:24:33 +1100451 if (parse_forward(&fwd, optarg))
452 add_local_forward(&options, &fwd);
453 else {
Damien Millerf4614452001-07-14 12:18:10 +1000454 fprintf(stderr,
Damien Millerf91ee4c2005-03-01 21:24:33 +1100455 "Bad local forwarding specification '%s'\n",
Damien Millerf4614452001-07-14 12:18:10 +1000456 optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100457 exit(255);
Ben Lindstrom1a174712001-09-12 17:56:15 +0000458 }
Damien Millerf91ee4c2005-03-01 21:24:33 +1100459 break;
460
461 case 'R':
462 if (parse_forward(&fwd, optarg)) {
463 add_remote_forward(&options, &fwd);
464 } else {
465 fprintf(stderr,
466 "Bad remote forwarding specification "
467 "'%s'\n", optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100468 exit(255);
Damien Millerf91ee4c2005-03-01 21:24:33 +1100469 }
Damien Miller95def091999-11-25 00:26:21 +1100470 break;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000471
472 case 'D':
Damien Millerf91ee4c2005-03-01 21:24:33 +1100473 cp = p = xstrdup(optarg);
474 memset(&fwd, '\0', sizeof(fwd));
475 fwd.connect_host = "socks";
476 if ((fwd.listen_host = hpdelim(&cp)) == NULL) {
477 fprintf(stderr, "Bad dynamic forwarding "
478 "specification '%.100s'\n", optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100479 exit(255);
Damien Millerf91ee4c2005-03-01 21:24:33 +1100480 }
481 if (cp != NULL) {
482 fwd.listen_port = a2port(cp);
483 fwd.listen_host = cleanhostname(fwd.listen_host);
484 } else {
485 fwd.listen_port = a2port(fwd.listen_host);
Damien Millerbe1045d2005-08-12 22:10:56 +1000486 fwd.listen_host = NULL;
Damien Millerf91ee4c2005-03-01 21:24:33 +1100487 }
488
489 if (fwd.listen_port == 0) {
Damien Millerf4614452001-07-14 12:18:10 +1000490 fprintf(stderr, "Bad dynamic port '%s'\n",
491 optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100492 exit(255);
Ben Lindstrom146edb92001-04-11 23:06:28 +0000493 }
Damien Millerf91ee4c2005-03-01 21:24:33 +1100494 add_local_forward(&options, &fwd);
495 xfree(p);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000496 break;
497
Damien Miller95def091999-11-25 00:26:21 +1100498 case 'C':
499 options.compression = 1;
500 break;
Damien Miller1383bd82000-04-06 12:32:37 +1000501 case 'N':
502 no_shell_flag = 1;
503 no_tty_flag = 1;
504 break;
Damien Miller1383bd82000-04-06 12:32:37 +1000505 case 'T':
506 no_tty_flag = 1;
507 break;
Damien Miller95def091999-11-25 00:26:21 +1100508 case 'o':
509 dummy = 1;
Damien Miller9836cf82003-12-17 16:30:06 +1100510 line = xstrdup(optarg);
Damien Millerf4614452001-07-14 12:18:10 +1000511 if (process_config_line(&options, host ? host : "",
Damien Miller9836cf82003-12-17 16:30:06 +1100512 line, "command-line", 0, &dummy) != 0)
Darren Tuckere9a9b712005-12-20 16:15:51 +1100513 exit(255);
Damien Miller9836cf82003-12-17 16:30:06 +1100514 xfree(line);
Damien Miller95def091999-11-25 00:26:21 +1100515 break;
Damien Miller832562e2001-01-30 09:30:01 +1100516 case 's':
517 subsystem_flag = 1;
518 break;
Damien Miller0e220db2004-06-15 10:34:08 +1000519 case 'S':
520 if (options.control_path != NULL)
521 free(options.control_path);
522 options.control_path = xstrdup(optarg);
Damien Miller0e220db2004-06-15 10:34:08 +1000523 break;
Ben Lindstrome0f88042001-04-30 13:06:24 +0000524 case 'b':
525 options.bind_address = optarg;
526 break;
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000527 case 'F':
528 config = optarg;
529 break;
Damien Miller95def091999-11-25 00:26:21 +1100530 default:
531 usage();
532 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000533 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000534
Damien Millerf4614452001-07-14 12:18:10 +1000535 ac -= optind;
536 av += optind;
537
538 if (ac > 0 && !host && **av != '-') {
Ben Lindstromc276c122002-12-23 02:14:51 +0000539 if (strrchr(*av, '@')) {
Damien Millerf4614452001-07-14 12:18:10 +1000540 p = xstrdup(*av);
Ben Lindstromc276c122002-12-23 02:14:51 +0000541 cp = strrchr(p, '@');
Damien Millerf4614452001-07-14 12:18:10 +1000542 if (cp == NULL || cp == p)
543 usage();
544 options.user = p;
545 *cp = '\0';
546 host = ++cp;
547 } else
548 host = *av;
Ben Lindstromb9fa6912002-12-23 02:24:54 +0000549 if (ac > 1) {
550 optind = optreset = 1;
Damien Millerf4614452001-07-14 12:18:10 +1000551 goto again;
552 }
Ben Lindstromb9fa6912002-12-23 02:24:54 +0000553 ac--, av++;
Damien Millerf4614452001-07-14 12:18:10 +1000554 }
555
Damien Miller95def091999-11-25 00:26:21 +1100556 /* Check that we got a host name. */
557 if (!host)
558 usage();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000559
Damien Millercb5e44a2000-09-29 12:12:36 +1100560 SSLeay_add_all_algorithms();
Damien Miller0bc1bd82000-11-13 22:57:25 +1100561 ERR_load_crypto_strings();
Damien Millercb5e44a2000-09-29 12:12:36 +1100562
Damien Miller95def091999-11-25 00:26:21 +1100563 /* Initialize the command to execute on remote host. */
564 buffer_init(&command);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000565
Damien Miller5428f641999-11-25 11:54:57 +1100566 /*
567 * Save the command to execute on the remote host in a buffer. There
568 * is no limit on the length of the command, except by the maximum
569 * packet size. Also sets the tty flag if there is no command.
570 */
Damien Millerf4614452001-07-14 12:18:10 +1000571 if (!ac) {
Damien Miller95def091999-11-25 00:26:21 +1100572 /* No command specified - execute shell on a tty. */
573 tty_flag = 1;
Damien Miller832562e2001-01-30 09:30:01 +1100574 if (subsystem_flag) {
Damien Millerf4614452001-07-14 12:18:10 +1000575 fprintf(stderr,
576 "You must specify a subsystem to invoke.\n");
Damien Miller832562e2001-01-30 09:30:01 +1100577 usage();
578 }
Damien Miller95def091999-11-25 00:26:21 +1100579 } else {
Damien Millerf4614452001-07-14 12:18:10 +1000580 /* A command has been specified. Store it into the buffer. */
581 for (i = 0; i < ac; i++) {
582 if (i)
Damien Miller95def091999-11-25 00:26:21 +1100583 buffer_append(&command, " ", 1);
584 buffer_append(&command, av[i], strlen(av[i]));
585 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000586 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000587
Damien Miller95def091999-11-25 00:26:21 +1100588 /* Cannot fork to background if no command. */
Damien Millercaf6dd62000-08-29 11:33:50 +1100589 if (fork_after_authentication_flag && buffer_len(&command) == 0 && !no_shell_flag)
Damien Miller95def091999-11-25 00:26:21 +1100590 fatal("Cannot fork into background without a command to execute.");
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000591
Damien Miller95def091999-11-25 00:26:21 +1100592 /* Allocate a tty by default if no command specified. */
593 if (buffer_len(&command) == 0)
594 tty_flag = 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000595
Ben Lindstroma962c2f2002-07-04 00:14:17 +0000596 /* Force no tty */
Ben Lindstromc72745a2000-12-02 19:03:54 +0000597 if (no_tty_flag)
598 tty_flag = 0;
Damien Miller95def091999-11-25 00:26:21 +1100599 /* Do not allocate a tty if stdin is not a tty. */
Damien Millerddee5752005-05-26 12:05:05 +1000600 if ((!isatty(fileno(stdin)) || stdin_null_flag) && !force_tty_flag) {
Damien Miller95def091999-11-25 00:26:21 +1100601 if (tty_flag)
Damien Miller996acd22003-04-09 20:59:48 +1000602 logit("Pseudo-terminal will not be allocated because stdin is not a terminal.");
Damien Miller95def091999-11-25 00:26:21 +1100603 tty_flag = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000604 }
Damien Miller1383bd82000-04-06 12:32:37 +1000605
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000606 /*
607 * Initialize "log" output. Since we are the client all output
608 * actually goes to stderr.
609 */
Ben Lindstrom2b646522001-04-12 16:16:57 +0000610 log_init(av[0], options.log_level == -1 ? SYSLOG_LEVEL_INFO : options.log_level,
611 SYSLOG_FACILITY_USER, 1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000612
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000613 /*
614 * Read per-user configuration file. Ignore the system wide config
615 * file if the user specifies a config file on the command line.
616 */
617 if (config != NULL) {
Damien Miller914420f2004-04-20 20:14:07 +1000618 if (!read_config_file(config, host, &options, 0))
Ben Lindstromedc0cf22001-09-12 18:32:20 +0000619 fatal("Can't open user config file %.100s: "
620 "%.100s", config, strerror(errno));
Damien Miller80163902007-01-05 16:30:16 +1100621 } else {
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000622 snprintf(buf, sizeof buf, "%.100s/%.100s", pw->pw_dir,
623 _PATH_SSH_USER_CONFFILE);
Damien Miller57a44762004-04-20 20:11:57 +1000624 (void)read_config_file(buf, host, &options, 1);
Ben Lindstrom83f07d12001-10-03 17:22:29 +0000625
626 /* Read systemwide configuration file after use config. */
Darren Tuckerfc959702004-07-17 16:12:08 +1000627 (void)read_config_file(_PATH_HOST_CONFIG_FILE, host,
Damien Miller57a44762004-04-20 20:11:57 +1000628 &options, 0);
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000629 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000630
Damien Miller95def091999-11-25 00:26:21 +1100631 /* Fill configuration defaults. */
632 fill_default_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000633
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000634 channel_set_af(options.address_family);
635
Damien Miller95def091999-11-25 00:26:21 +1100636 /* reinit */
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000637 log_init(av[0], options.log_level, SYSLOG_FACILITY_USER, 1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000638
Damien Miller60bc5172001-03-19 09:38:15 +1100639 seed_rng();
640
Damien Miller95def091999-11-25 00:26:21 +1100641 if (options.user == NULL)
642 options.user = xstrdup(pw->pw_name);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000643
Damien Miller95def091999-11-25 00:26:21 +1100644 if (options.hostname != NULL)
645 host = options.hostname;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000646
Darren Tucker3f521e22003-07-03 16:20:42 +1000647 /* force lowercase for hostkey matching */
648 if (options.host_key_alias != NULL) {
649 for (p = options.host_key_alias; *p; p++)
650 if (isupper(*p))
Damien Miller1d2b6702006-03-26 14:09:54 +1100651 *p = (char)tolower(*p);
Darren Tucker3f521e22003-07-03 16:20:42 +1000652 }
653
Damien Miller7c71cc72005-06-26 08:56:31 +1000654 /* Get default port if port has not been set. */
655 if (options.port == 0) {
656 sp = getservbyname(SSH_SERVICE_NAME, "tcp");
657 options.port = sp ? ntohs(sp->s_port) : SSH_DEFAULT_PORT;
658 }
659
Damien Miller9f1e33a2003-02-24 11:57:32 +1100660 if (options.proxy_command != NULL &&
Darren Tucker32e42c72007-12-02 23:01:03 +1100661 strcmp(options.proxy_command, "none") == 0) {
662 xfree(options.proxy_command);
Damien Miller9f1e33a2003-02-24 11:57:32 +1100663 options.proxy_command = NULL;
Darren Tucker32e42c72007-12-02 23:01:03 +1100664 }
Damien Miller8f74c8f2005-06-26 08:56:03 +1000665 if (options.control_path != NULL &&
Darren Tucker32e42c72007-12-02 23:01:03 +1100666 strcmp(options.control_path, "none") == 0) {
667 xfree(options.control_path);
Damien Miller8f74c8f2005-06-26 08:56:03 +1000668 options.control_path = NULL;
Darren Tucker32e42c72007-12-02 23:01:03 +1100669 }
Damien Miller9f1e33a2003-02-24 11:57:32 +1100670
Damien Miller0e220db2004-06-15 10:34:08 +1000671 if (options.control_path != NULL) {
Damien Miller6b1d53c2006-03-31 23:13:21 +1100672 char thishost[NI_MAXHOST];
Damien Miller3ec54c72006-03-15 11:30:13 +1100673
Damien Miller6b1d53c2006-03-31 23:13:21 +1100674 if (gethostname(thishost, sizeof(thishost)) == -1)
Damien Miller3ec54c72006-03-15 11:30:13 +1100675 fatal("gethostname: %s", strerror(errno));
Damien Miller6476cad2005-06-16 13:18:34 +1000676 snprintf(buf, sizeof(buf), "%d", options.port);
677 cp = tilde_expand_filename(options.control_path,
678 original_real_uid);
Darren Tucker32e42c72007-12-02 23:01:03 +1100679 xfree(options.control_path);
Damien Miller6476cad2005-06-16 13:18:34 +1000680 options.control_path = percent_expand(cp, "p", buf, "h", host,
Damien Miller6b1d53c2006-03-31 23:13:21 +1100681 "r", options.user, "l", thishost, (char *)NULL);
Damien Miller6476cad2005-06-16 13:18:34 +1000682 xfree(cp);
Damien Miller0e220db2004-06-15 10:34:08 +1000683 }
Darren Tucker0814d312005-06-01 23:08:51 +1000684 if (mux_command != 0 && options.control_path == NULL)
685 fatal("No ControlPath specified for \"-O\" command");
Damien Millerd14b1e72005-06-16 13:19:41 +1000686 if (options.control_path != NULL)
Damien Millerdadfd4d2005-05-26 12:07:13 +1000687 control_client(options.control_path);
Damien Miller0e220db2004-06-15 10:34:08 +1000688
Damien Miller67bd0622007-09-17 12:06:57 +1000689 timeout_ms = options.connection_timeout * 1000;
690
Kevin Stevesfcec7f82000-12-15 19:55:48 +0000691 /* Open a connection to the remote host. */
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000692 if (ssh_connect(host, &hostaddr, options.port,
Damien Miller67bd0622007-09-17 12:06:57 +1000693 options.address_family, options.connection_attempts, &timeout_ms,
694 options.tcp_keep_alive,
Ben Lindstrom1aa64272002-06-11 20:28:05 +0000695#ifdef HAVE_CYGWIN
696 options.use_privileged_port,
697#else
Ben Lindstromf9c48842002-06-11 16:37:51 +0000698 original_effective_uid == 0 && options.use_privileged_port,
Ben Lindstrom1aa64272002-06-11 20:28:05 +0000699#endif
Ben Lindstromda394ca2002-06-12 16:11:12 +0000700 options.proxy_command) != 0)
Darren Tuckere9a9b712005-12-20 16:15:51 +1100701 exit(255);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000702
Damien Miller67bd0622007-09-17 12:06:57 +1000703 if (timeout_ms > 0)
704 debug3("timeout: %d ms remain after connect", timeout_ms);
705
Damien Miller5428f641999-11-25 11:54:57 +1100706 /*
707 * If we successfully made the connection, load the host private key
708 * in case we will need it later for combined rsa-rhosts
709 * authentication. This must be done before releasing extra
710 * privileges, because the file is only readable by root.
Ben Lindstrom9e5bb572002-06-06 19:58:27 +0000711 * If we cannot access the private keys, load the public keys
712 * instead and try to execute the ssh-keysign helper instead.
Damien Miller5428f641999-11-25 11:54:57 +1100713 */
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000714 sensitive_data.nkeys = 0;
715 sensitive_data.keys = NULL;
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000716 sensitive_data.external_keysign = 0;
Ben Lindstrom24157572002-06-12 16:09:39 +0000717 if (options.rhosts_rsa_authentication ||
718 options.hostbased_authentication) {
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000719 sensitive_data.nkeys = 3;
Damien Millerddd63ab2006-03-31 23:10:51 +1100720 sensitive_data.keys = xcalloc(sensitive_data.nkeys,
Ben Lindstroma962c2f2002-07-04 00:14:17 +0000721 sizeof(Key));
Ben Lindstromf9c48842002-06-11 16:37:51 +0000722
723 PRIV_START;
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000724 sensitive_data.keys[0] = key_load_private_type(KEY_RSA1,
Darren Tucker232b76f2006-05-06 17:41:51 +1000725 _PATH_HOST_KEY_FILE, "", NULL, NULL);
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000726 sensitive_data.keys[1] = key_load_private_type(KEY_DSA,
Darren Tucker232b76f2006-05-06 17:41:51 +1000727 _PATH_HOST_DSA_KEY_FILE, "", NULL, NULL);
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000728 sensitive_data.keys[2] = key_load_private_type(KEY_RSA,
Darren Tucker232b76f2006-05-06 17:41:51 +1000729 _PATH_HOST_RSA_KEY_FILE, "", NULL, NULL);
Ben Lindstromf9c48842002-06-11 16:37:51 +0000730 PRIV_END;
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000731
Ben Lindstrom5d35a2f2002-07-04 00:19:40 +0000732 if (options.hostbased_authentication == 1 &&
733 sensitive_data.keys[0] == NULL &&
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000734 sensitive_data.keys[1] == NULL &&
735 sensitive_data.keys[2] == NULL) {
736 sensitive_data.keys[1] = key_load_public(
737 _PATH_HOST_DSA_KEY_FILE, NULL);
738 sensitive_data.keys[2] = key_load_public(
739 _PATH_HOST_RSA_KEY_FILE, NULL);
740 sensitive_data.external_keysign = 1;
741 }
Damien Miller95def091999-11-25 00:26:21 +1100742 }
Damien Miller5428f641999-11-25 11:54:57 +1100743 /*
744 * Get rid of any extra privileges that we may have. We will no
745 * longer need them. Also, extra privileges could make it very hard
746 * to read identity files and other non-world-readable files from the
747 * user's home directory if it happens to be on a NFS volume where
748 * root is mapped to nobody.
749 */
Darren Tucker25f60a72004-08-15 17:23:34 +1000750 if (original_effective_uid == 0) {
751 PRIV_START;
752 permanently_set_uid(pw);
753 }
Damien Miller95def091999-11-25 00:26:21 +1100754
Damien Miller5428f641999-11-25 11:54:57 +1100755 /*
756 * Now that we are back to our own permissions, create ~/.ssh
Damien Miller788f2122005-11-05 15:14:59 +1100757 * directory if it doesn't already exist.
Damien Miller5428f641999-11-25 11:54:57 +1100758 */
Ben Lindstrom930b14a2001-08-15 23:19:21 +0000759 snprintf(buf, sizeof buf, "%.100s%s%.100s", pw->pw_dir, strcmp(pw->pw_dir, "/") ? "/" : "", _PATH_SSH_USER_DIR);
Damien Miller95def091999-11-25 00:26:21 +1100760 if (stat(buf, &st) < 0)
Damien Millerbe484b52000-07-15 14:14:16 +1000761 if (mkdir(buf, 0700) < 0)
Damien Miller95def091999-11-25 00:26:21 +1100762 error("Could not create directory '%.200s'.", buf);
763
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000764 /* load options.identity_files */
765 load_public_identity_files();
766
767 /* Expand ~ in known host file names. */
768 /* XXX mem-leaks: */
Damien Miller0bc1bd82000-11-13 22:57:25 +1100769 options.system_hostfile =
770 tilde_expand_filename(options.system_hostfile, original_real_uid);
771 options.user_hostfile =
772 tilde_expand_filename(options.user_hostfile, original_real_uid);
773 options.system_hostfile2 =
774 tilde_expand_filename(options.system_hostfile2, original_real_uid);
775 options.user_hostfile2 =
776 tilde_expand_filename(options.user_hostfile2, original_real_uid);
Damien Miller95def091999-11-25 00:26:21 +1100777
Damien Miller07cd5892001-11-12 10:52:03 +1100778 signal(SIGPIPE, SIG_IGN); /* ignore SIGPIPE early */
779
Damien Miller95def091999-11-25 00:26:21 +1100780 /* Log into the remote system. This never returns if the login fails. */
Damien Miller67bd0622007-09-17 12:06:57 +1000781 ssh_login(&sensitive_data, host, (struct sockaddr *)&hostaddr,
782 pw, timeout_ms);
Damien Miller95def091999-11-25 00:26:21 +1100783
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000784 /* We no longer need the private host keys. Clear them now. */
785 if (sensitive_data.nkeys != 0) {
786 for (i = 0; i < sensitive_data.nkeys; i++) {
787 if (sensitive_data.keys[i] != NULL) {
788 /* Destroys contents safely */
789 debug3("clear hostkey %d", i);
790 key_free(sensitive_data.keys[i]);
791 sensitive_data.keys[i] = NULL;
792 }
793 }
794 xfree(sensitive_data.keys);
795 }
Ben Lindstroma6c8a8d2001-08-06 21:42:00 +0000796 for (i = 0; i < options.num_identity_files; i++) {
797 if (options.identity_files[i]) {
798 xfree(options.identity_files[i]);
799 options.identity_files[i] = NULL;
800 }
801 if (options.identity_keys[i]) {
802 key_free(options.identity_keys[i]);
803 options.identity_keys[i] = NULL;
804 }
805 }
Damien Miller95def091999-11-25 00:26:21 +1100806
Damien Miller1383bd82000-04-06 12:32:37 +1000807 exit_status = compat20 ? ssh_session2() : ssh_session();
808 packet_close();
Damien Miller8c4e18a2002-09-19 12:05:02 +1000809
Damien Miller0e220db2004-06-15 10:34:08 +1000810 if (options.control_path != NULL && control_fd != -1)
811 unlink(options.control_path);
812
Damien Miller8c4e18a2002-09-19 12:05:02 +1000813 /*
Damien Millera8e06ce2003-11-21 23:48:55 +1100814 * Send SIGHUP to proxy command if used. We don't wait() in
Damien Miller8c4e18a2002-09-19 12:05:02 +1000815 * case it hangs and instead rely on init to reap the child
816 */
817 if (proxy_command_pid > 1)
818 kill(proxy_command_pid, SIGHUP);
819
Damien Miller1383bd82000-04-06 12:32:37 +1000820 return exit_status;
821}
822
Ben Lindstrombba81212001-06-25 05:01:22 +0000823static void
Damien Miller0bc1bd82000-11-13 22:57:25 +1100824ssh_init_forwarding(void)
825{
Kevin Steves12057502001-02-05 14:54:34 +0000826 int success = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100827 int i;
Kevin Steves12057502001-02-05 14:54:34 +0000828
Damien Miller0bc1bd82000-11-13 22:57:25 +1100829 /* Initiate local TCP/IP port forwardings. */
830 for (i = 0; i < options.num_local_forwards; i++) {
Damien Millerf91ee4c2005-03-01 21:24:33 +1100831 debug("Local connections to %.200s:%d forwarded to remote "
832 "address %.200s:%d",
Darren Tucker47eede72005-03-14 23:08:12 +1100833 (options.local_forwards[i].listen_host == NULL) ?
834 (options.gateway_ports ? "*" : "LOCALHOST") :
Damien Millerf91ee4c2005-03-01 21:24:33 +1100835 options.local_forwards[i].listen_host,
836 options.local_forwards[i].listen_port,
837 options.local_forwards[i].connect_host,
838 options.local_forwards[i].connect_port);
Damien Millerb16461c2002-01-22 23:29:22 +1100839 success += channel_setup_local_fwd_listener(
Damien Millerf91ee4c2005-03-01 21:24:33 +1100840 options.local_forwards[i].listen_host,
841 options.local_forwards[i].listen_port,
842 options.local_forwards[i].connect_host,
843 options.local_forwards[i].connect_port,
Damien Miller0bc1bd82000-11-13 22:57:25 +1100844 options.gateway_ports);
845 }
Darren Tuckere7d4b192006-07-12 22:17:10 +1000846 if (i > 0 && success != i && options.exit_on_forward_failure)
847 fatal("Could not request local forwarding.");
Kevin Steves12057502001-02-05 14:54:34 +0000848 if (i > 0 && success == 0)
849 error("Could not request local forwarding.");
Damien Miller0bc1bd82000-11-13 22:57:25 +1100850
851 /* Initiate remote TCP/IP port forwardings. */
852 for (i = 0; i < options.num_remote_forwards; i++) {
Damien Millerf91ee4c2005-03-01 21:24:33 +1100853 debug("Remote connections from %.200s:%d forwarded to "
854 "local address %.200s:%d",
Damien Miller46d38de2005-07-17 17:02:09 +1000855 (options.remote_forwards[i].listen_host == NULL) ?
Damien Milleraa3bb102005-11-05 15:12:59 +1100856 "LOCALHOST" : options.remote_forwards[i].listen_host,
Damien Millerf91ee4c2005-03-01 21:24:33 +1100857 options.remote_forwards[i].listen_port,
858 options.remote_forwards[i].connect_host,
859 options.remote_forwards[i].connect_port);
Darren Tuckere7d4b192006-07-12 22:17:10 +1000860 if (channel_request_remote_forwarding(
Damien Millerf91ee4c2005-03-01 21:24:33 +1100861 options.remote_forwards[i].listen_host,
862 options.remote_forwards[i].listen_port,
863 options.remote_forwards[i].connect_host,
Darren Tuckere7d4b192006-07-12 22:17:10 +1000864 options.remote_forwards[i].connect_port) < 0) {
865 if (options.exit_on_forward_failure)
866 fatal("Could not request remote forwarding.");
867 else
868 logit("Warning: Could not request remote "
869 "forwarding.");
870 }
Damien Miller0bc1bd82000-11-13 22:57:25 +1100871 }
Damien Millerb3ce9fe2007-08-08 14:32:41 +1000872
873 /* Initiate tunnel forwarding. */
874 if (options.tun_open != SSH_TUNMODE_NO) {
875 if (client_request_tun_fwd(options.tun_open,
876 options.tun_local, options.tun_remote) == -1) {
877 if (options.exit_on_forward_failure)
878 fatal("Could not request tunnel forwarding.");
879 else
880 error("Could not request tunnel forwarding.");
881 }
882 }
Damien Miller0bc1bd82000-11-13 22:57:25 +1100883}
884
Ben Lindstrombba81212001-06-25 05:01:22 +0000885static void
Damien Miller0bc1bd82000-11-13 22:57:25 +1100886check_agent_present(void)
887{
888 if (options.forward_agent) {
Damien Miller788f2122005-11-05 15:14:59 +1100889 /* Clear agent forwarding if we don't have an agent. */
Damien Miller789e95d2002-09-12 09:52:46 +1000890 if (!ssh_agent_present())
Damien Miller0bc1bd82000-11-13 22:57:25 +1100891 options.forward_agent = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100892 }
893}
894
Ben Lindstrombba81212001-06-25 05:01:22 +0000895static int
Damien Miller1383bd82000-04-06 12:32:37 +1000896ssh_session(void)
897{
898 int type;
Damien Miller1383bd82000-04-06 12:32:37 +1000899 int interactive = 0;
900 int have_tty = 0;
901 struct winsize ws;
Damien Miller1383bd82000-04-06 12:32:37 +1000902 char *cp;
Damien Miller17e7ed02005-06-17 12:54:33 +1000903 const char *display;
Damien Miller1383bd82000-04-06 12:32:37 +1000904
Damien Miller95def091999-11-25 00:26:21 +1100905 /* Enable compression if requested. */
906 if (options.compression) {
907 debug("Requesting compression at level %d.", options.compression_level);
908
909 if (options.compression_level < 1 || options.compression_level > 9)
910 fatal("Compression level must be from 1 (fast) to 9 (slow, best).");
911
912 /* Send the request. */
913 packet_start(SSH_CMSG_REQUEST_COMPRESSION);
914 packet_put_int(options.compression_level);
915 packet_send();
916 packet_write_wait();
Damien Millerdff50992002-01-22 23:16:32 +1100917 type = packet_read();
Damien Miller95def091999-11-25 00:26:21 +1100918 if (type == SSH_SMSG_SUCCESS)
919 packet_start_compression(options.compression_level);
920 else if (type == SSH_SMSG_FAILURE)
Damien Miller996acd22003-04-09 20:59:48 +1000921 logit("Warning: Remote host refused compression.");
Damien Miller95def091999-11-25 00:26:21 +1100922 else
923 packet_disconnect("Protocol error waiting for compression response.");
924 }
925 /* Allocate a pseudo tty if appropriate. */
926 if (tty_flag) {
927 debug("Requesting pty.");
928
929 /* Start the packet. */
930 packet_start(SSH_CMSG_REQUEST_PTY);
931
932 /* Store TERM in the packet. There is no limit on the
933 length of the string. */
934 cp = getenv("TERM");
935 if (!cp)
936 cp = "";
Ben Lindstrom664408d2001-06-09 01:42:01 +0000937 packet_put_cstring(cp);
Damien Miller95def091999-11-25 00:26:21 +1100938
939 /* Store window size in the packet. */
940 if (ioctl(fileno(stdin), TIOCGWINSZ, &ws) < 0)
941 memset(&ws, 0, sizeof(ws));
Damien Miller71a73672006-03-26 14:04:36 +1100942 packet_put_int((u_int)ws.ws_row);
943 packet_put_int((u_int)ws.ws_col);
944 packet_put_int((u_int)ws.ws_xpixel);
945 packet_put_int((u_int)ws.ws_ypixel);
Damien Miller95def091999-11-25 00:26:21 +1100946
947 /* Store tty modes in the packet. */
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000948 tty_make_modes(fileno(stdin), NULL);
Damien Miller95def091999-11-25 00:26:21 +1100949
950 /* Send the packet, and wait for it to leave. */
951 packet_send();
952 packet_write_wait();
953
954 /* Read response from the server. */
Damien Millerdff50992002-01-22 23:16:32 +1100955 type = packet_read();
Damien Miller450a7a12000-03-26 13:04:51 +1000956 if (type == SSH_SMSG_SUCCESS) {
Damien Miller95def091999-11-25 00:26:21 +1100957 interactive = 1;
Damien Miller1383bd82000-04-06 12:32:37 +1000958 have_tty = 1;
Damien Miller450a7a12000-03-26 13:04:51 +1000959 } else if (type == SSH_SMSG_FAILURE)
Damien Miller996acd22003-04-09 20:59:48 +1000960 logit("Warning: Remote host failed or refused to allocate a pseudo tty.");
Damien Miller95def091999-11-25 00:26:21 +1100961 else
962 packet_disconnect("Protocol error waiting for pty request response.");
963 }
964 /* Request X11 forwarding if enabled and DISPLAY is set. */
Damien Miller17e7ed02005-06-17 12:54:33 +1000965 display = getenv("DISPLAY");
966 if (options.forward_x11 && display != NULL) {
Ben Lindstrom4a4bd712001-12-06 17:45:19 +0000967 char *proto, *data;
Damien Millerbd483e72000-04-30 10:00:53 +1000968 /* Get reasonable local authentication information. */
Damien Miller17e7ed02005-06-17 12:54:33 +1000969 client_x11_get_proto(display, options.xauth_location,
970 options.forward_x11_trusted, &proto, &data);
Damien Millerbd483e72000-04-30 10:00:53 +1000971 /* Request forwarding with authentication spoofing. */
Damien Miller95def091999-11-25 00:26:21 +1100972 debug("Requesting X11 forwarding with authentication spoofing.");
Damien Miller17e7ed02005-06-17 12:54:33 +1000973 x11_request_forwarding_with_spoofing(0, display, proto, data);
Damien Miller95def091999-11-25 00:26:21 +1100974
975 /* Read response from the server. */
Damien Millerdff50992002-01-22 23:16:32 +1100976 type = packet_read();
Damien Miller95def091999-11-25 00:26:21 +1100977 if (type == SSH_SMSG_SUCCESS) {
Damien Miller95def091999-11-25 00:26:21 +1100978 interactive = 1;
Damien Millerbd483e72000-04-30 10:00:53 +1000979 } else if (type == SSH_SMSG_FAILURE) {
Damien Miller996acd22003-04-09 20:59:48 +1000980 logit("Warning: Remote host denied X11 forwarding.");
Damien Millerbd483e72000-04-30 10:00:53 +1000981 } else {
Damien Miller95def091999-11-25 00:26:21 +1100982 packet_disconnect("Protocol error waiting for X11 forwarding");
Damien Millerbd483e72000-04-30 10:00:53 +1000983 }
Damien Miller95def091999-11-25 00:26:21 +1100984 }
985 /* Tell the packet module whether this is an interactive session. */
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000986 packet_set_interactive(interactive);
Damien Miller95def091999-11-25 00:26:21 +1100987
988 /* Request authentication agent forwarding if appropriate. */
Damien Miller0bc1bd82000-11-13 22:57:25 +1100989 check_agent_present();
990
Damien Miller95def091999-11-25 00:26:21 +1100991 if (options.forward_agent) {
992 debug("Requesting authentication agent forwarding.");
993 auth_request_forwarding();
994
995 /* Read response from the server. */
Damien Millerdff50992002-01-22 23:16:32 +1100996 type = packet_read();
Damien Miller48b03fc2002-01-22 23:11:40 +1100997 packet_check_eom();
Damien Miller95def091999-11-25 00:26:21 +1100998 if (type != SSH_SMSG_SUCCESS)
Damien Miller996acd22003-04-09 20:59:48 +1000999 logit("Warning: Remote host denied authentication agent forwarding.");
Damien Miller95def091999-11-25 00:26:21 +11001000 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001001
Damien Miller0bc1bd82000-11-13 22:57:25 +11001002 /* Initiate port forwardings. */
1003 ssh_init_forwarding();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001004
Darren Tuckerb776c852007-12-02 23:06:35 +11001005 /* Execute a local command */
1006 if (options.local_command != NULL &&
1007 options.permit_local_command)
1008 ssh_local_cmd(options.local_command);
1009
Damien Miller5428f641999-11-25 11:54:57 +11001010 /* If requested, let ssh continue in the background. */
Damien Miller4af51302000-04-16 11:18:38 +10001011 if (fork_after_authentication_flag)
Damien Miller5428f641999-11-25 11:54:57 +11001012 if (daemon(1, 1) < 0)
1013 fatal("daemon() failed: %.200s", strerror(errno));
1014
1015 /*
1016 * If a command was specified on the command line, execute the
1017 * command now. Otherwise request the server to start a shell.
1018 */
Damien Miller95def091999-11-25 00:26:21 +11001019 if (buffer_len(&command) > 0) {
1020 int len = buffer_len(&command);
1021 if (len > 900)
1022 len = 900;
Damien Miller5a6b4fe2001-12-21 14:56:54 +11001023 debug("Sending command: %.*s", len, (u_char *)buffer_ptr(&command));
Damien Miller95def091999-11-25 00:26:21 +11001024 packet_start(SSH_CMSG_EXEC_CMD);
1025 packet_put_string(buffer_ptr(&command), buffer_len(&command));
1026 packet_send();
1027 packet_write_wait();
1028 } else {
1029 debug("Requesting shell.");
1030 packet_start(SSH_CMSG_EXEC_SHELL);
1031 packet_send();
1032 packet_write_wait();
1033 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001034
Damien Miller95def091999-11-25 00:26:21 +11001035 /* Enter the interactive session. */
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +00001036 return client_loop(have_tty, tty_flag ?
1037 options.escape_char : SSH_ESCAPECHAR_NONE, 0);
Damien Miller1383bd82000-04-06 12:32:37 +10001038}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001039
Ben Lindstrombba81212001-06-25 05:01:22 +00001040static void
Damien Miller0e220db2004-06-15 10:34:08 +10001041ssh_subsystem_reply(int type, u_int32_t seq, void *ctxt)
Ben Lindstrom1e7d3062001-02-09 02:36:43 +00001042{
1043 int id, len;
1044
1045 id = packet_get_int();
1046 len = buffer_len(&command);
Ben Lindstrom4040fe12001-03-05 06:52:57 +00001047 if (len > 900)
1048 len = 900;
Damien Miller48b03fc2002-01-22 23:11:40 +11001049 packet_check_eom();
Ben Lindstrom1e7d3062001-02-09 02:36:43 +00001050 if (type == SSH2_MSG_CHANNEL_FAILURE)
1051 fatal("Request for subsystem '%.*s' failed on channel %d",
Damien Miller5a6b4fe2001-12-21 14:56:54 +11001052 len, (u_char *)buffer_ptr(&command), id);
Ben Lindstrom1e7d3062001-02-09 02:36:43 +00001053}
1054
Damien Miller2797f7f2002-04-23 21:09:44 +10001055void
Damien Miller509b0102003-12-17 16:33:10 +11001056client_global_request_reply_fwd(int type, u_int32_t seq, void *ctxt)
Damien Miller2797f7f2002-04-23 21:09:44 +10001057{
1058 int i;
1059
1060 i = client_global_request_id++;
Damien Miller509b0102003-12-17 16:33:10 +11001061 if (i >= options.num_remote_forwards)
Damien Miller2797f7f2002-04-23 21:09:44 +10001062 return;
Damien Miller2797f7f2002-04-23 21:09:44 +10001063 debug("remote forward %s for: listen %d, connect %s:%d",
1064 type == SSH2_MSG_REQUEST_SUCCESS ? "success" : "failure",
Damien Millerf91ee4c2005-03-01 21:24:33 +11001065 options.remote_forwards[i].listen_port,
1066 options.remote_forwards[i].connect_host,
1067 options.remote_forwards[i].connect_port);
Darren Tuckere7d4b192006-07-12 22:17:10 +10001068 if (type == SSH2_MSG_REQUEST_FAILURE) {
1069 if (options.exit_on_forward_failure)
1070 fatal("Error: remote port forwarding failed for "
1071 "listen port %d",
1072 options.remote_forwards[i].listen_port);
1073 else
1074 logit("Warning: remote port forwarding failed for "
1075 "listen port %d",
1076 options.remote_forwards[i].listen_port);
1077 }
Damien Miller2797f7f2002-04-23 21:09:44 +10001078}
1079
Damien Miller0e220db2004-06-15 10:34:08 +10001080static void
1081ssh_control_listener(void)
1082{
1083 struct sockaddr_un addr;
1084 mode_t old_umask;
Damien Miller07b6ff12004-06-15 11:14:45 +10001085 int addr_len;
1086
Damien Millerd14b1e72005-06-16 13:19:41 +10001087 if (options.control_path == NULL ||
1088 options.control_master == SSHCTL_MASTER_NO)
Damien Miller0e220db2004-06-15 10:34:08 +10001089 return;
1090
Damien Millerd14b1e72005-06-16 13:19:41 +10001091 debug("setting up multiplex master socket");
1092
Damien Miller0e220db2004-06-15 10:34:08 +10001093 memset(&addr, '\0', sizeof(addr));
1094 addr.sun_family = AF_UNIX;
Damien Miller07b6ff12004-06-15 11:14:45 +10001095 addr_len = offsetof(struct sockaddr_un, sun_path) +
Damien Miller0e220db2004-06-15 10:34:08 +10001096 strlen(options.control_path) + 1;
1097
1098 if (strlcpy(addr.sun_path, options.control_path,
1099 sizeof(addr.sun_path)) >= sizeof(addr.sun_path))
1100 fatal("ControlPath too long");
1101
1102 if ((control_fd = socket(PF_UNIX, SOCK_STREAM, 0)) < 0)
Damien Miller15d72a02005-11-05 15:07:33 +11001103 fatal("%s socket(): %s", __func__, strerror(errno));
Damien Miller0e220db2004-06-15 10:34:08 +10001104
1105 old_umask = umask(0177);
Damien Miller90967402006-03-26 14:07:26 +11001106 if (bind(control_fd, (struct sockaddr *)&addr, addr_len) == -1) {
Damien Miller0e220db2004-06-15 10:34:08 +10001107 control_fd = -1;
Damien Miller4f10e252005-05-04 15:33:09 +10001108 if (errno == EINVAL || errno == EADDRINUSE)
Damien Miller0e220db2004-06-15 10:34:08 +10001109 fatal("ControlSocket %s already exists",
1110 options.control_path);
1111 else
Damien Miller15d72a02005-11-05 15:07:33 +11001112 fatal("%s bind(): %s", __func__, strerror(errno));
Damien Miller0e220db2004-06-15 10:34:08 +10001113 }
1114 umask(old_umask);
1115
1116 if (listen(control_fd, 64) == -1)
Damien Miller15d72a02005-11-05 15:07:33 +11001117 fatal("%s listen(): %s", __func__, strerror(errno));
Damien Miller0e220db2004-06-15 10:34:08 +10001118
1119 set_nonblock(control_fd);
1120}
1121
Ben Lindstromf558cf62001-09-20 23:13:49 +00001122/* request pty/x11/agent/tcpfwd/shell for channel */
Ben Lindstrombba81212001-06-25 05:01:22 +00001123static void
Ben Lindstromf558cf62001-09-20 23:13:49 +00001124ssh_session2_setup(int id, void *arg)
Damien Miller1383bd82000-04-06 12:32:37 +10001125{
Damien Miller3756dce2004-06-18 01:17:29 +10001126 extern char **environ;
Damien Miller17e7ed02005-06-17 12:54:33 +10001127 const char *display;
Damien Miller0e220db2004-06-15 10:34:08 +10001128 int interactive = tty_flag;
Damien Miller17e7ed02005-06-17 12:54:33 +10001129
Damien Miller46d38de2005-07-17 17:02:09 +10001130 display = getenv("DISPLAY");
Damien Miller17e7ed02005-06-17 12:54:33 +10001131 if (options.forward_x11 && display != NULL) {
Ben Lindstrom4a4bd712001-12-06 17:45:19 +00001132 char *proto, *data;
Damien Millerbd483e72000-04-30 10:00:53 +10001133 /* Get reasonable local authentication information. */
Damien Miller17e7ed02005-06-17 12:54:33 +10001134 client_x11_get_proto(display, options.xauth_location,
1135 options.forward_x11_trusted, &proto, &data);
Damien Millerbd483e72000-04-30 10:00:53 +10001136 /* Request forwarding with authentication spoofing. */
1137 debug("Requesting X11 forwarding with authentication spoofing.");
Damien Miller17e7ed02005-06-17 12:54:33 +10001138 x11_request_forwarding_with_spoofing(id, display, proto, data);
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001139 interactive = 1;
Damien Millerbd483e72000-04-30 10:00:53 +10001140 /* XXX wait for reply */
1141 }
1142
Damien Miller0bc1bd82000-11-13 22:57:25 +11001143 check_agent_present();
1144 if (options.forward_agent) {
1145 debug("Requesting authentication agent forwarding.");
1146 channel_request_start(id, "auth-agent-req@openssh.com", 0);
1147 packet_send();
1148 }
1149
Damien Miller0e220db2004-06-15 10:34:08 +10001150 client_session2_setup(id, tty_flag, subsystem_flag, getenv("TERM"),
Damien Miller3756dce2004-06-18 01:17:29 +10001151 NULL, fileno(stdin), &command, environ, &ssh_subsystem_reply);
Ben Lindstrom1e7d3062001-02-09 02:36:43 +00001152
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001153 packet_set_interactive(interactive);
Damien Miller1383bd82000-04-06 12:32:37 +10001154}
1155
Ben Lindstromf558cf62001-09-20 23:13:49 +00001156/* open new channel for a session */
Ben Lindstrombba81212001-06-25 05:01:22 +00001157static int
Ben Lindstromf558cf62001-09-20 23:13:49 +00001158ssh_session2_open(void)
Damien Miller1383bd82000-04-06 12:32:37 +10001159{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001160 Channel *c;
1161 int window, packetmax, in, out, err;
Damien Millerad833b32000-08-23 10:46:23 +10001162
Damien Millercaf6dd62000-08-29 11:33:50 +11001163 if (stdin_null_flag) {
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001164 in = open(_PATH_DEVNULL, O_RDONLY);
Damien Millercaf6dd62000-08-29 11:33:50 +11001165 } else {
1166 in = dup(STDIN_FILENO);
1167 }
1168 out = dup(STDOUT_FILENO);
1169 err = dup(STDERR_FILENO);
1170
1171 if (in < 0 || out < 0 || err < 0)
1172 fatal("dup() in/out/err failed");
1173
Damien Miller69b69aa2000-10-28 14:19:58 +11001174 /* enable nonblocking unless tty */
1175 if (!isatty(in))
1176 set_nonblock(in);
1177 if (!isatty(out))
1178 set_nonblock(out);
1179 if (!isatty(err))
1180 set_nonblock(err);
1181
Damien Millere4340be2000-09-16 13:29:08 +11001182 window = CHAN_SES_WINDOW_DEFAULT;
1183 packetmax = CHAN_SES_PACKET_DEFAULT;
Damien Miller19a59452002-02-19 15:20:57 +11001184 if (tty_flag) {
1185 window >>= 1;
1186 packetmax >>= 1;
Damien Miller1383bd82000-04-06 12:32:37 +10001187 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001188 c = channel_new(
Damien Miller1383bd82000-04-06 12:32:37 +10001189 "session", SSH_CHANNEL_OPENING, in, out, err,
Damien Millere4340be2000-09-16 13:29:08 +11001190 window, packetmax, CHAN_EXTENDED_WRITE,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001191 "client-session", /*nonblock*/0);
Damien Miller1383bd82000-04-06 12:32:37 +10001192
Ben Lindstromf558cf62001-09-20 23:13:49 +00001193 debug3("ssh_session2_open: channel_new: %d", c->self);
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001194
Ben Lindstrom5ec26452001-06-09 00:18:51 +00001195 channel_send_open(c->self);
Ben Lindstromf558cf62001-09-20 23:13:49 +00001196 if (!no_shell_flag)
Damien Miller0e220db2004-06-15 10:34:08 +10001197 channel_register_confirm(c->self, ssh_session2_setup, NULL);
Damien Miller1383bd82000-04-06 12:32:37 +10001198
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001199 return c->self;
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001200}
1201
Ben Lindstrombba81212001-06-25 05:01:22 +00001202static int
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001203ssh_session2(void)
1204{
Ben Lindstromf558cf62001-09-20 23:13:49 +00001205 int id = -1;
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001206
1207 /* XXX should be pre-session */
1208 ssh_init_forwarding();
1209
Ben Lindstromf558cf62001-09-20 23:13:49 +00001210 if (!no_shell_flag || (datafellows & SSH_BUG_DUMMYCHAN))
1211 id = ssh_session2_open();
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001212
Damien Millerd27b9472005-12-13 19:29:02 +11001213 /* Execute a local command */
1214 if (options.local_command != NULL &&
1215 options.permit_local_command)
1216 ssh_local_cmd(options.local_command);
1217
Damien Millerb3ce9fe2007-08-08 14:32:41 +10001218 /* Start listening for multiplex clients */
1219 ssh_control_listener();
1220
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001221 /* If requested, let ssh continue in the background. */
1222 if (fork_after_authentication_flag)
1223 if (daemon(1, 1) < 0)
1224 fatal("daemon() failed: %.200s", strerror(errno));
1225
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +00001226 return client_loop(tty_flag, tty_flag ?
1227 options.escape_char : SSH_ESCAPECHAR_NONE, id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001228}
Damien Miller0bc1bd82000-11-13 22:57:25 +11001229
Ben Lindstrombba81212001-06-25 05:01:22 +00001230static void
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001231load_public_identity_files(void)
1232{
Damien Miller6b1d53c2006-03-31 23:13:21 +11001233 char *filename, *cp, thishost[NI_MAXHOST];
Darren Tuckerb4fbbc62007-12-02 23:16:32 +11001234 char *pwdir = NULL, *pwname = NULL;
Ben Lindstrom711b04a2001-08-06 21:12:42 +00001235 int i = 0;
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001236 Key *public;
Damien Miller6b1d53c2006-03-31 23:13:21 +11001237 struct passwd *pw;
Ben Lindstrom711b04a2001-08-06 21:12:42 +00001238#ifdef SMARTCARD
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001239 Key **keys;
1240
Ben Lindstromf7db3bb2001-08-06 21:35:51 +00001241 if (options.smartcard_device != NULL &&
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001242 options.num_identity_files < SSH_MAX_IDENTITY_FILES &&
Damien Miller4dec5d72006-08-05 11:38:40 +10001243 (keys = sc_get_keys(options.smartcard_device, NULL)) != NULL) {
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001244 int count = 0;
1245 for (i = 0; keys[i] != NULL; i++) {
1246 count++;
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001247 memmove(&options.identity_files[1], &options.identity_files[0],
1248 sizeof(char *) * (SSH_MAX_IDENTITY_FILES - 1));
1249 memmove(&options.identity_keys[1], &options.identity_keys[0],
1250 sizeof(Key *) * (SSH_MAX_IDENTITY_FILES - 1));
1251 options.num_identity_files++;
1252 options.identity_keys[0] = keys[i];
Damien Miller56a0bb02003-06-18 20:28:40 +10001253 options.identity_files[0] = sc_get_key_label(keys[i]);
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001254 }
Ben Lindstrom4f054602002-03-26 03:23:00 +00001255 if (options.num_identity_files > SSH_MAX_IDENTITY_FILES)
1256 options.num_identity_files = SSH_MAX_IDENTITY_FILES;
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001257 i = count;
1258 xfree(keys);
Ben Lindstrom711b04a2001-08-06 21:12:42 +00001259 }
Ben Lindstromffce1472001-08-06 21:57:31 +00001260#endif /* SMARTCARD */
Damien Miller6b1d53c2006-03-31 23:13:21 +11001261 if ((pw = getpwuid(original_real_uid)) == NULL)
1262 fatal("load_public_identity_files: getpwuid failed");
Darren Tuckerb4fbbc62007-12-02 23:16:32 +11001263 pwname = strdup(pw->pw_name);
1264 pwdir = strdup(pw->pw_dir);
Damien Miller6b1d53c2006-03-31 23:13:21 +11001265 if (gethostname(thishost, sizeof(thishost)) == -1)
1266 fatal("load_public_identity_files: gethostname: %s",
1267 strerror(errno));
Ben Lindstrom711b04a2001-08-06 21:12:42 +00001268 for (; i < options.num_identity_files; i++) {
Damien Miller6b1d53c2006-03-31 23:13:21 +11001269 cp = tilde_expand_filename(options.identity_files[i],
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001270 original_real_uid);
Darren Tuckerb4fbbc62007-12-02 23:16:32 +11001271 filename = percent_expand(cp, "d", pwdir,
1272 "u", pwname, "l", thishost, "h", host,
Damien Miller6b1d53c2006-03-31 23:13:21 +11001273 "r", options.user, (char *)NULL);
1274 xfree(cp);
Ben Lindstromd0fca422001-03-26 13:44:06 +00001275 public = key_load_public(filename, NULL);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001276 debug("identity file %s type %d", filename,
1277 public ? public->type : -1);
1278 xfree(options.identity_files[i]);
1279 options.identity_files[i] = filename;
1280 options.identity_keys[i] = public;
1281 }
Darren Tuckerb4fbbc62007-12-02 23:16:32 +11001282 bzero(pwname, strlen(pwname));
1283 free(pwname);
1284 bzero(pwdir, strlen(pwdir));
1285 free(pwdir);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001286}
Damien Miller0e220db2004-06-15 10:34:08 +10001287
1288static void
1289control_client_sighandler(int signo)
1290{
1291 control_client_terminate = signo;
1292}
1293
1294static void
1295control_client_sigrelay(int signo)
1296{
1297 if (control_server_pid > 1)
1298 kill(control_server_pid, signo);
1299}
1300
Darren Tucker365433f2004-06-22 12:29:23 +10001301static int
1302env_permitted(char *env)
1303{
Darren Tucker284706a2006-07-12 22:16:23 +10001304 int i, ret;
Darren Tucker365433f2004-06-22 12:29:23 +10001305 char name[1024], *cp;
1306
Darren Tucker284706a2006-07-12 22:16:23 +10001307 if ((cp = strchr(env, '=')) == NULL || cp == env)
Darren Tucker365433f2004-06-22 12:29:23 +10001308 return (0);
Darren Tucker57f42242006-07-12 22:23:35 +10001309 ret = snprintf(name, sizeof(name), "%.*s", (int)(cp - env), env);
Darren Tucker284706a2006-07-12 22:16:23 +10001310 if (ret <= 0 || (size_t)ret >= sizeof(name))
1311 fatal("env_permitted: name '%.100s...' too long", env);
Darren Tucker365433f2004-06-22 12:29:23 +10001312
1313 for (i = 0; i < options.num_send_env; i++)
1314 if (match_pattern(name, options.send_env[i]))
1315 return (1);
1316
1317 return (0);
1318}
1319
Damien Miller0e220db2004-06-15 10:34:08 +10001320static void
1321control_client(const char *path)
1322{
1323 struct sockaddr_un addr;
Darren Tucker132367f2007-06-25 18:59:17 +10001324 int i, r, fd, sock, exitval[2], num_env, addr_len;
Damien Miller0e220db2004-06-15 10:34:08 +10001325 Buffer m;
Darren Tucker7ebfc102004-11-07 20:06:19 +11001326 char *term;
Damien Miller3756dce2004-06-18 01:17:29 +10001327 extern char **environ;
Darren Tucker7ebfc102004-11-07 20:06:19 +11001328 u_int flags;
Darren Tuckerfc959702004-07-17 16:12:08 +10001329
Damien Millerd14b1e72005-06-16 13:19:41 +10001330 if (mux_command == 0)
1331 mux_command = SSHMUX_COMMAND_OPEN;
1332
1333 switch (options.control_master) {
1334 case SSHCTL_MASTER_AUTO:
1335 case SSHCTL_MASTER_AUTO_ASK:
1336 debug("auto-mux: Trying existing master");
1337 /* FALLTHROUGH */
1338 case SSHCTL_MASTER_NO:
1339 break;
1340 default:
1341 return;
1342 }
1343
Damien Miller0e220db2004-06-15 10:34:08 +10001344 memset(&addr, '\0', sizeof(addr));
1345 addr.sun_family = AF_UNIX;
Damien Miller07b6ff12004-06-15 11:14:45 +10001346 addr_len = offsetof(struct sockaddr_un, sun_path) +
Damien Miller0e220db2004-06-15 10:34:08 +10001347 strlen(path) + 1;
1348
1349 if (strlcpy(addr.sun_path, path,
1350 sizeof(addr.sun_path)) >= sizeof(addr.sun_path))
1351 fatal("ControlPath too long");
1352
1353 if ((sock = socket(PF_UNIX, SOCK_STREAM, 0)) < 0)
1354 fatal("%s socket(): %s", __func__, strerror(errno));
1355
Damien Miller90967402006-03-26 14:07:26 +11001356 if (connect(sock, (struct sockaddr *)&addr, addr_len) == -1) {
Darren Tucker0814d312005-06-01 23:08:51 +10001357 if (mux_command != SSHMUX_COMMAND_OPEN) {
1358 fatal("Control socket connect(%.100s): %s", path,
1359 strerror(errno));
1360 }
Damien Miller538c9b72005-05-26 12:11:28 +10001361 if (errno == ENOENT)
Damien Miller4662d342006-03-26 13:59:59 +11001362 debug("Control socket \"%.100s\" does not exist", path);
Damien Miller538c9b72005-05-26 12:11:28 +10001363 else {
Damien Miller4662d342006-03-26 13:59:59 +11001364 error("Control socket connect(%.100s): %s", path,
Damien Miller538c9b72005-05-26 12:11:28 +10001365 strerror(errno));
1366 }
Damien Miller4662d342006-03-26 13:59:59 +11001367 close(sock);
1368 return;
1369 }
Damien Miller46d38de2005-07-17 17:02:09 +10001370
Damien Miller4662d342006-03-26 13:59:59 +11001371 if (stdin_null_flag) {
1372 if ((fd = open(_PATH_DEVNULL, O_RDONLY)) == -1)
1373 fatal("open(/dev/null): %s", strerror(errno));
1374 if (dup2(fd, STDIN_FILENO) == -1)
1375 fatal("dup2: %s", strerror(errno));
1376 if (fd > STDERR_FILENO)
1377 close(fd);
1378 }
Damien Miller46d38de2005-07-17 17:02:09 +10001379
Damien Miller13390022005-07-06 09:44:19 +10001380 term = getenv("TERM");
Darren Tucker7ebfc102004-11-07 20:06:19 +11001381
1382 flags = 0;
1383 if (tty_flag)
1384 flags |= SSHMUX_FLAG_TTY;
1385 if (subsystem_flag)
1386 flags |= SSHMUX_FLAG_SUBSYS;
Damien Miller13390022005-07-06 09:44:19 +10001387 if (options.forward_x11)
1388 flags |= SSHMUX_FLAG_X11_FWD;
1389 if (options.forward_agent)
1390 flags |= SSHMUX_FLAG_AGENT_FWD;
Damien Miller0e220db2004-06-15 10:34:08 +10001391
Damien Miller0e220db2004-06-15 10:34:08 +10001392 buffer_init(&m);
1393
Darren Tucker7ebfc102004-11-07 20:06:19 +11001394 /* Send our command to server */
1395 buffer_put_int(&m, mux_command);
1396 buffer_put_int(&m, flags);
Damien Miller13390022005-07-06 09:44:19 +10001397 if (ssh_msg_send(sock, SSHMUX_VER, &m) == -1)
Darren Tucker7ebfc102004-11-07 20:06:19 +11001398 fatal("%s: msg_send", __func__);
1399 buffer_clear(&m);
1400
1401 /* Get authorisation status and PID of controlee */
Damien Miller0e220db2004-06-15 10:34:08 +10001402 if (ssh_msg_recv(sock, &m) == -1)
1403 fatal("%s: msg_recv", __func__);
Damien Miller13390022005-07-06 09:44:19 +10001404 if (buffer_get_char(&m) != SSHMUX_VER)
Damien Miller0e220db2004-06-15 10:34:08 +10001405 fatal("%s: wrong version", __func__);
Damien Miller23f07702004-06-18 01:19:03 +10001406 if (buffer_get_int(&m) != 1)
1407 fatal("Connection to master denied");
Damien Miller0e220db2004-06-15 10:34:08 +10001408 control_server_pid = buffer_get_int(&m);
1409
Damien Miller0e220db2004-06-15 10:34:08 +10001410 buffer_clear(&m);
Damien Miller0e220db2004-06-15 10:34:08 +10001411
Darren Tucker7ebfc102004-11-07 20:06:19 +11001412 switch (mux_command) {
1413 case SSHMUX_COMMAND_ALIVE_CHECK:
Darren Tucker47eede72005-03-14 23:08:12 +11001414 fprintf(stderr, "Master running (pid=%d)\r\n",
Darren Tucker7ebfc102004-11-07 20:06:19 +11001415 control_server_pid);
1416 exit(0);
1417 case SSHMUX_COMMAND_TERMINATE:
1418 fprintf(stderr, "Exit request sent.\r\n");
1419 exit(0);
1420 case SSHMUX_COMMAND_OPEN:
1421 /* continue below */
1422 break;
1423 default:
1424 fatal("silly mux_command %d", mux_command);
1425 }
1426
1427 /* SSHMUX_COMMAND_OPEN */
Damien Miller13390022005-07-06 09:44:19 +10001428 buffer_put_cstring(&m, term ? term : "");
Damien Miller0e220db2004-06-15 10:34:08 +10001429 buffer_append(&command, "\0", 1);
1430 buffer_put_cstring(&m, buffer_ptr(&command));
1431
Darren Tucker365433f2004-06-22 12:29:23 +10001432 if (options.num_send_env == 0 || environ == NULL) {
1433 buffer_put_int(&m, 0);
Darren Tuckerfc959702004-07-17 16:12:08 +10001434 } else {
Darren Tucker365433f2004-06-22 12:29:23 +10001435 /* Pass environment */
1436 num_env = 0;
1437 for (i = 0; environ[i] != NULL; i++)
1438 if (env_permitted(environ[i]))
1439 num_env++; /* Count */
Darren Tuckerfc959702004-07-17 16:12:08 +10001440
Darren Tucker365433f2004-06-22 12:29:23 +10001441 buffer_put_int(&m, num_env);
1442
Darren Tuckerb5bc1a62004-06-24 00:34:53 +10001443 for (i = 0; environ[i] != NULL && num_env >= 0; i++)
1444 if (env_permitted(environ[i])) {
1445 num_env--;
Darren Tucker365433f2004-06-22 12:29:23 +10001446 buffer_put_cstring(&m, environ[i]);
Darren Tuckerb5bc1a62004-06-24 00:34:53 +10001447 }
Darren Tucker365433f2004-06-22 12:29:23 +10001448 }
Damien Miller3756dce2004-06-18 01:17:29 +10001449
Damien Miller13390022005-07-06 09:44:19 +10001450 if (ssh_msg_send(sock, SSHMUX_VER, &m) == -1)
Damien Miller0e220db2004-06-15 10:34:08 +10001451 fatal("%s: msg_send", __func__);
1452
Damien Miller54fd7cf2007-09-17 12:04:08 +10001453 if (mm_send_fd(sock, STDIN_FILENO) == -1 ||
1454 mm_send_fd(sock, STDOUT_FILENO) == -1 ||
1455 mm_send_fd(sock, STDERR_FILENO) == -1)
1456 fatal("%s: send fds failed", __func__);
Damien Miller0e220db2004-06-15 10:34:08 +10001457
1458 /* Wait for reply, so master has a chance to gather ttymodes */
1459 buffer_clear(&m);
1460 if (ssh_msg_recv(sock, &m) == -1)
1461 fatal("%s: msg_recv", __func__);
Damien Miller13390022005-07-06 09:44:19 +10001462 if (buffer_get_char(&m) != SSHMUX_VER)
Darren Tucker7ebfc102004-11-07 20:06:19 +11001463 fatal("%s: wrong version", __func__);
Damien Miller0e220db2004-06-15 10:34:08 +10001464 buffer_free(&m);
1465
Darren Tucker07336da2004-11-05 20:02:16 +11001466 signal(SIGHUP, control_client_sighandler);
Damien Miller0809e232004-06-18 22:20:57 +10001467 signal(SIGINT, control_client_sighandler);
1468 signal(SIGTERM, control_client_sighandler);
1469 signal(SIGWINCH, control_client_sigrelay);
1470
Damien Miller0e220db2004-06-15 10:34:08 +10001471 if (tty_flag)
1472 enter_raw_mode();
1473
Darren Tucker132367f2007-06-25 18:59:17 +10001474 /*
1475 * Stick around until the controlee closes the client_fd.
1476 * Before it does, it is expected to write this process' exit
1477 * value (one int). This process must read the value and wait for
1478 * the closure of the client_fd; if this one closes early, the
1479 * multiplex master will terminate early too (possibly losing data).
1480 */
1481 exitval[0] = 0;
Darren Tucker2cbec742007-06-12 23:41:33 +10001482 for (i = 0; !control_client_terminate && i < (int)sizeof(exitval);) {
Darren Tucker132367f2007-06-25 18:59:17 +10001483 r = read(sock, (char *)exitval + i, sizeof(exitval) - i);
Damien Miller0e220db2004-06-15 10:34:08 +10001484 if (r == 0) {
1485 debug2("Received EOF from master");
1486 break;
1487 }
Darren Tuckerd989ada2007-06-25 18:34:43 +10001488 if (r == -1) {
1489 if (errno == EINTR)
1490 continue;
Damien Miller0e220db2004-06-15 10:34:08 +10001491 fatal("%s: read %s", __func__, strerror(errno));
Darren Tuckerd989ada2007-06-25 18:34:43 +10001492 }
Darren Tucker2cbec742007-06-12 23:41:33 +10001493 i += r;
Damien Miller0e220db2004-06-15 10:34:08 +10001494 }
Darren Tucker132367f2007-06-25 18:59:17 +10001495
Damien Miller0e220db2004-06-15 10:34:08 +10001496 close(sock);
Damien Miller0e220db2004-06-15 10:34:08 +10001497 leave_raw_mode();
Darren Tucker132367f2007-06-25 18:59:17 +10001498 if (i > (int)sizeof(int))
1499 fatal("%s: master returned too much data (%d > %lu)",
1500 __func__, i, sizeof(int));
Darren Tucker2cbec742007-06-12 23:41:33 +10001501 if (control_client_terminate) {
1502 debug2("Exiting on signal %d", control_client_terminate);
Darren Tucker132367f2007-06-25 18:59:17 +10001503 exitval[0] = 255;
1504 } else if (i < (int)sizeof(int)) {
Darren Tucker2cbec742007-06-12 23:41:33 +10001505 debug2("Control master terminated unexpectedly");
Darren Tucker132367f2007-06-25 18:59:17 +10001506 exitval[0] = 255;
Darren Tucker2cbec742007-06-12 23:41:33 +10001507 } else
Darren Tucker132367f2007-06-25 18:59:17 +10001508 debug2("Received exit status from master %d", exitval[0]);
Darren Tucker2cbec742007-06-12 23:41:33 +10001509
Damien Miller0e220db2004-06-15 10:34:08 +10001510 if (tty_flag && options.log_level != SYSLOG_LEVEL_QUIET)
Darren Tucker132367f2007-06-25 18:59:17 +10001511 fprintf(stderr, "Shared connection to %s closed.\r\n", host);
Damien Miller0e220db2004-06-15 10:34:08 +10001512
Darren Tucker132367f2007-06-25 18:59:17 +10001513 exit(exitval[0]);
Damien Miller0e220db2004-06-15 10:34:08 +10001514}