blob: c9e5aac7a9af4e7c4e4e412c7f384ca270cbce20 [file] [log] [blame]
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001/*
Damien Miller95def091999-11-25 00:26:21 +11002 * Author: Tatu Ylonen <ylo@cs.hut.fi>
3 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
4 * All rights reserved
Damien Miller95def091999-11-25 00:26:21 +11005 * Ssh client program. This program can be used to log into a remote machine.
6 * The software supports strong authentication, encryption, and forwarding
7 * of X11, TCP/IP, and authentication connections.
8 *
Damien Millere4340be2000-09-16 13:29:08 +11009 * As far as I am concerned, the code I have written for this software
10 * can be used freely for any purpose. Any derived versions of this
11 * software must be clearly marked as such, and if the derived work is
12 * incompatible with the protocol description in the RFC file, it must be
13 * called by a name other than "ssh" or "Secure Shell".
14 *
15 * Copyright (c) 1999 Niels Provos. All rights reserved.
Darren Tucker0a118da2003-10-15 15:54:32 +100016 * Copyright (c) 2000, 2001, 2002, 2003 Markus Friedl. All rights reserved.
Damien Millere4340be2000-09-16 13:29:08 +110017 *
18 * Modified to work with SSL by Niels Provos <provos@citi.umich.edu>
19 * in Canada (German citizen).
20 *
21 * Redistribution and use in source and binary forms, with or without
22 * modification, are permitted provided that the following conditions
23 * are met:
24 * 1. Redistributions of source code must retain the above copyright
25 * notice, this list of conditions and the following disclaimer.
26 * 2. Redistributions in binary form must reproduce the above copyright
27 * notice, this list of conditions and the following disclaimer in the
28 * documentation and/or other materials provided with the distribution.
29 *
30 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
31 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
32 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
33 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
34 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
35 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
36 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
37 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
38 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
39 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Damien Miller95def091999-11-25 00:26:21 +110040 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100041
42#include "includes.h"
Damien Millerbe1045d2005-08-12 22:10:56 +100043RCSID("$OpenBSD: ssh.c,v 1.249 2005/07/30 01:26:16 djm Exp $");
Damien Millereba71ba2000-04-29 23:57:08 +100044
45#include <openssl/evp.h>
Damien Miller0bc1bd82000-11-13 22:57:25 +110046#include <openssl/err.h>
Damien Millerd4a8b7e1999-10-27 13:42:43 +100047
Damien Millerd4a8b7e1999-10-27 13:42:43 +100048#include "ssh.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000049#include "ssh1.h"
Damien Miller1383bd82000-04-06 12:32:37 +100050#include "ssh2.h"
51#include "compat.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000052#include "cipher.h"
53#include "xmalloc.h"
54#include "packet.h"
55#include "buffer.h"
Damien Miller0e220db2004-06-15 10:34:08 +100056#include "bufaux.h"
Ben Lindstromc7637672001-06-09 00:36:26 +000057#include "channels.h"
Damien Millereba71ba2000-04-29 23:57:08 +100058#include "key.h"
Damien Miller994cf142000-07-21 10:19:44 +100059#include "authfd.h"
Damien Millereba71ba2000-04-29 23:57:08 +100060#include "authfile.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000061#include "pathnames.h"
Damien Miller0e220db2004-06-15 10:34:08 +100062#include "dispatch.h"
Ben Lindstrombf555ba2001-01-18 02:04:35 +000063#include "clientloop.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000064#include "log.h"
65#include "readconf.h"
66#include "sshconnect.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000067#include "misc.h"
Ben Lindstrom06b33aa2001-02-15 03:01:59 +000068#include "kex.h"
69#include "mac.h"
Darren Tucker06f2bd82004-05-13 16:06:46 +100070#include "sshpty.h"
Darren Tucker46bc0752004-05-02 22:11:30 +100071#include "match.h"
Damien Miller0e220db2004-06-15 10:34:08 +100072#include "msg.h"
73#include "monitor_fdpass.h"
Darren Tucker25f60a72004-08-15 17:23:34 +100074#include "uidswap.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100075
Ben Lindstromc5b68002001-07-04 04:52:03 +000076#ifdef SMARTCARD
Ben Lindstromc5b68002001-07-04 04:52:03 +000077#include "scard.h"
Ben Lindstrombcc18082001-08-06 21:59:25 +000078#endif
Ben Lindstromc5b68002001-07-04 04:52:03 +000079
Damien Miller3f905871999-11-15 17:10:57 +110080extern char *__progname;
Damien Miller3f905871999-11-15 17:10:57 +110081
Damien Miller95def091999-11-25 00:26:21 +110082/* Flag indicating whether debug mode is on. This can be set on the command line. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100083int debug_flag = 0;
84
Damien Miller78928792000-04-12 20:17:38 +100085/* Flag indicating whether a tty should be allocated */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100086int tty_flag = 0;
Ben Lindstrom4dccfa52000-12-28 16:40:05 +000087int no_tty_flag = 0;
88int force_tty_flag = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100089
Damien Miller1383bd82000-04-06 12:32:37 +100090/* don't exec a shell */
91int no_shell_flag = 0;
Damien Miller1383bd82000-04-06 12:32:37 +100092
Damien Miller5428f641999-11-25 11:54:57 +110093/*
94 * Flag indicating that nothing should be read from stdin. This can be set
95 * on the command line.
96 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100097int stdin_null_flag = 0;
98
Damien Miller5428f641999-11-25 11:54:57 +110099/*
100 * Flag indicating that ssh should fork after authentication. This is useful
Ben Lindstromf666fec2002-06-06 19:51:58 +0000101 * so that the passphrase can be entered manually, and then ssh goes to the
Damien Miller5428f641999-11-25 11:54:57 +1100102 * background.
103 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000104int fork_after_authentication_flag = 0;
105
Damien Miller5428f641999-11-25 11:54:57 +1100106/*
107 * General data structure for command line options and options configurable
108 * in configuration files. See readconf.h.
109 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000110Options options;
111
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000112/* optional user configfile */
113char *config = NULL;
114
Damien Miller5428f641999-11-25 11:54:57 +1100115/*
116 * Name of the host we are connecting to. This is the name given on the
117 * command line, or the HostName specified for the user-supplied name in a
118 * configuration file.
119 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000120char *host;
121
122/* socket address the host resolves to */
Damien Miller34132e52000-01-14 15:45:46 +1100123struct sockaddr_storage hostaddr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000124
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000125/* Private host keys. */
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000126Sensitive sensitive_data;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000127
128/* Original real UID. */
129uid_t original_real_uid;
Ben Lindstromf9c48842002-06-11 16:37:51 +0000130uid_t original_effective_uid;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000131
Damien Miller1383bd82000-04-06 12:32:37 +1000132/* command to be executed */
133Buffer command;
134
Damien Miller832562e2001-01-30 09:30:01 +1100135/* Should we execute a command or invoke a subsystem? */
136int subsystem_flag = 0;
137
Damien Miller2797f7f2002-04-23 21:09:44 +1000138/* # of replies received for global requests */
139static int client_global_request_id = 0;
140
Damien Miller8c4e18a2002-09-19 12:05:02 +1000141/* pid of proxycommand child process */
142pid_t proxy_command_pid = 0;
143
Damien Miller0e220db2004-06-15 10:34:08 +1000144/* fd to control socket */
145int control_fd = -1;
146
Darren Tucker7ebfc102004-11-07 20:06:19 +1100147/* Multiplexing control command */
Darren Tucker0814d312005-06-01 23:08:51 +1000148static u_int mux_command = 0;
Darren Tucker7ebfc102004-11-07 20:06:19 +1100149
Damien Miller0e220db2004-06-15 10:34:08 +1000150/* Only used in control client mode */
151volatile sig_atomic_t control_client_terminate = 0;
152u_int control_server_pid = 0;
153
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000154/* Prints a help message to the user. This function never returns. */
155
Ben Lindstrombba81212001-06-25 05:01:22 +0000156static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000157usage(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000158{
Damien Miller50955102004-03-22 09:34:58 +1100159 fprintf(stderr,
Darren Tucker9c6bf322004-12-03 14:10:19 +1100160"usage: ssh [-1246AaCfgkMNnqsTtVvXxY] [-b bind_address] [-c cipher_spec]\n"
Damien Miller02faece2005-03-02 12:04:32 +1100161" [-D port] [-e escape_char] [-F configfile]\n"
162" [-i identity_file] [-L [bind_address:]port:host:hostport]\n"
Damien Millerf91ee4c2005-03-01 21:24:33 +1100163" [-l login_name] [-m mac_spec] [-O ctl_cmd] [-o option] [-p port]\n"
Damien Miller02faece2005-03-02 12:04:32 +1100164" [-R [bind_address:]port:host:hostport] [-S ctl_path]\n"
Darren Tucker9c6bf322004-12-03 14:10:19 +1100165" [user@]hostname [command]\n"
Damien Miller50955102004-03-22 09:34:58 +1100166 );
Damien Miller95def091999-11-25 00:26:21 +1100167 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000168}
169
Ben Lindstrombba81212001-06-25 05:01:22 +0000170static int ssh_session(void);
171static int ssh_session2(void);
172static void load_public_identity_files(void);
Damien Miller0e220db2004-06-15 10:34:08 +1000173static void control_client(const char *path);
Damien Miller1383bd82000-04-06 12:32:37 +1000174
Damien Miller95def091999-11-25 00:26:21 +1100175/*
176 * Main program for the ssh client.
177 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000178int
179main(int ac, char **av)
180{
Ben Lindstrom24157572002-06-12 16:09:39 +0000181 int i, opt, exit_status;
Damien Miller9836cf82003-12-17 16:30:06 +1100182 char *p, *cp, *line, buf[256];
Damien Miller95def091999-11-25 00:26:21 +1100183 struct stat st;
Ben Lindstrom086cf212001-03-05 05:56:40 +0000184 struct passwd *pw;
Damien Miller1383bd82000-04-06 12:32:37 +1000185 int dummy;
Ben Lindstrom5ccf63a2001-09-24 20:00:10 +0000186 extern int optind, optreset;
Damien Miller4f8e6692001-07-14 13:22:53 +1000187 extern char *optarg;
Damien Miller9651fe62005-06-26 08:55:25 +1000188 struct servent *sp;
Damien Millerf91ee4c2005-03-01 21:24:33 +1100189 Forward fwd;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000190
Damien Miller59d3d5b2003-08-22 09:34:41 +1000191 __progname = ssh_get_progname(av[0]);
Damien Millerf9b625c2000-07-09 22:42:32 +1000192 init_rng();
193
Damien Miller5428f641999-11-25 11:54:57 +1100194 /*
195 * Save the original real uid. It will be needed later (uid-swapping
196 * may clobber the real uid).
197 */
Damien Miller95def091999-11-25 00:26:21 +1100198 original_real_uid = getuid();
199 original_effective_uid = geteuid();
Damien Millera8e06ce2003-11-21 23:48:55 +1100200
Damien Miller50b9a602002-09-04 16:50:06 +1000201 /*
202 * Use uid-swapping to give up root privileges for the duration of
203 * option processing. We will re-instantiate the rights when we are
204 * ready to create the privileged port, and will permanently drop
205 * them when the port has been created (actually, when the connection
206 * has been made, as we may need to create the port several times).
207 */
208 PRIV_END;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000209
Damien Miller05dd7952000-10-01 00:42:48 +1100210#ifdef HAVE_SETRLIMIT
Damien Miller95def091999-11-25 00:26:21 +1100211 /* If we are installed setuid root be careful to not drop core. */
212 if (original_real_uid != original_effective_uid) {
213 struct rlimit rlim;
214 rlim.rlim_cur = rlim.rlim_max = 0;
215 if (setrlimit(RLIMIT_CORE, &rlim) < 0)
216 fatal("setrlimit failed: %.100s", strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000217 }
Damien Millerbac2d8a2000-09-05 16:13:06 +1100218#endif
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000219 /* Get user data. */
220 pw = getpwuid(original_real_uid);
221 if (!pw) {
Damien Miller996acd22003-04-09 20:59:48 +1000222 logit("You don't exist, go away!");
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000223 exit(1);
224 }
225 /* Take a copy of the returned structure. */
226 pw = pwcopy(pw);
227
Damien Miller5428f641999-11-25 11:54:57 +1100228 /*
Damien Miller5428f641999-11-25 11:54:57 +1100229 * Set our umask to something reasonable, as some files are created
230 * with the default umask. This will make them world-readable but
231 * writable only by the owner, which is ok for all files for which we
232 * don't set the modes explicitly.
233 */
Damien Miller95def091999-11-25 00:26:21 +1100234 umask(022);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000235
Damien Miller95def091999-11-25 00:26:21 +1100236 /* Initialize option structure to indicate that no values have been set. */
237 initialize_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000238
Damien Miller95def091999-11-25 00:26:21 +1100239 /* Parse command-line arguments. */
240 host = NULL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000241
Damien Millerf4614452001-07-14 12:18:10 +1000242again:
243 while ((opt = getopt(ac, av,
Darren Tucker7ebfc102004-11-07 20:06:19 +1100244 "1246ab:c:e:fgi:kl:m:no:p:qstvxACD:F:I:L:MNO:PR:S:TVXY")) != -1) {
Damien Miller95def091999-11-25 00:26:21 +1100245 switch (opt) {
Ben Lindstrom1e7d3062001-02-09 02:36:43 +0000246 case '1':
247 options.protocol = SSH_PROTO_1;
248 break;
Damien Miller4af51302000-04-16 11:18:38 +1000249 case '2':
250 options.protocol = SSH_PROTO_2;
251 break;
Damien Miller34132e52000-01-14 15:45:46 +1100252 case '4':
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000253 options.address_family = AF_INET;
Damien Miller34132e52000-01-14 15:45:46 +1100254 break;
Damien Miller34132e52000-01-14 15:45:46 +1100255 case '6':
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000256 options.address_family = AF_INET6;
Damien Miller34132e52000-01-14 15:45:46 +1100257 break;
Damien Miller95def091999-11-25 00:26:21 +1100258 case 'n':
259 stdin_null_flag = 1;
260 break;
Damien Miller95def091999-11-25 00:26:21 +1100261 case 'f':
262 fork_after_authentication_flag = 1;
263 stdin_null_flag = 1;
264 break;
Damien Miller95def091999-11-25 00:26:21 +1100265 case 'x':
266 options.forward_x11 = 0;
267 break;
Damien Miller95def091999-11-25 00:26:21 +1100268 case 'X':
269 options.forward_x11 = 1;
270 break;
Darren Tucker0a118da2003-10-15 15:54:32 +1000271 case 'Y':
272 options.forward_x11 = 1;
273 options.forward_x11_trusted = 1;
274 break;
Damien Miller95def091999-11-25 00:26:21 +1100275 case 'g':
276 options.gateway_ports = 1;
277 break;
Darren Tucker7ebfc102004-11-07 20:06:19 +1100278 case 'O':
279 if (strcmp(optarg, "check") == 0)
280 mux_command = SSHMUX_COMMAND_ALIVE_CHECK;
281 else if (strcmp(optarg, "exit") == 0)
282 mux_command = SSHMUX_COMMAND_TERMINATE;
283 else
284 fatal("Invalid multiplex command.");
285 break;
Damien Miller147bba32002-09-04 16:46:06 +1000286 case 'P': /* deprecated */
Damien Miller95def091999-11-25 00:26:21 +1100287 options.use_privileged_port = 0;
288 break;
Damien Miller95def091999-11-25 00:26:21 +1100289 case 'a':
290 options.forward_agent = 0;
291 break;
Damien Millerb1715dc2000-05-30 13:44:51 +1000292 case 'A':
293 options.forward_agent = 1;
294 break;
Damien Miller95def091999-11-25 00:26:21 +1100295 case 'k':
Damien Millere0113cc2003-11-24 13:10:09 +1100296 options.gss_deleg_creds = 0;
Damien Miller95def091999-11-25 00:26:21 +1100297 break;
Damien Miller95def091999-11-25 00:26:21 +1100298 case 'i':
299 if (stat(optarg, &st) < 0) {
Damien Millerf4614452001-07-14 12:18:10 +1000300 fprintf(stderr, "Warning: Identity file %s "
Damien Miller3eb48b62005-03-01 21:15:46 +1100301 "not accessible: %s.\n", optarg,
302 strerror(errno));
Damien Miller95def091999-11-25 00:26:21 +1100303 break;
304 }
Damien Millerf4614452001-07-14 12:18:10 +1000305 if (options.num_identity_files >=
306 SSH_MAX_IDENTITY_FILES)
307 fatal("Too many identity files specified "
308 "(max %d)", SSH_MAX_IDENTITY_FILES);
309 options.identity_files[options.num_identity_files++] =
310 xstrdup(optarg);
Damien Miller95def091999-11-25 00:26:21 +1100311 break;
Ben Lindstromc5b68002001-07-04 04:52:03 +0000312 case 'I':
313#ifdef SMARTCARD
Ben Lindstromf7db3bb2001-08-06 21:35:51 +0000314 options.smartcard_device = xstrdup(optarg);
Ben Lindstrombcc18082001-08-06 21:59:25 +0000315#else
Ben Lindstromc5b68002001-07-04 04:52:03 +0000316 fprintf(stderr, "no support for smartcards.\n");
Ben Lindstrombcc18082001-08-06 21:59:25 +0000317#endif
Ben Lindstromc5b68002001-07-04 04:52:03 +0000318 break;
Damien Miller95def091999-11-25 00:26:21 +1100319 case 't':
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000320 if (tty_flag)
321 force_tty_flag = 1;
Damien Miller95def091999-11-25 00:26:21 +1100322 tty_flag = 1;
323 break;
Damien Miller95def091999-11-25 00:26:21 +1100324 case 'v':
Darren Tuckere98dfa32003-07-19 19:54:31 +1000325 if (debug_flag == 0) {
Damien Millere4340be2000-09-16 13:29:08 +1100326 debug_flag = 1;
327 options.log_level = SYSLOG_LEVEL_DEBUG1;
Darren Tuckere98dfa32003-07-19 19:54:31 +1000328 } else {
329 if (options.log_level < SYSLOG_LEVEL_DEBUG3)
330 options.log_level++;
Damien Millere4340be2000-09-16 13:29:08 +1100331 break;
Darren Tuckere98dfa32003-07-19 19:54:31 +1000332 }
Darren Tuckere9bf9842004-11-05 20:05:32 +1100333 /* FALLTHROUGH */
Damien Miller95def091999-11-25 00:26:21 +1100334 case 'V':
Damien Miller0c889cd2004-03-22 09:36:00 +1100335 fprintf(stderr, "%s, %s\n",
Damien Miller2aa6d3c2004-09-12 16:53:04 +1000336 SSH_RELEASE, SSLeay_version(SSLEAY_VERSION));
Damien Miller95def091999-11-25 00:26:21 +1100337 if (opt == 'V')
338 exit(0);
Damien Miller95def091999-11-25 00:26:21 +1100339 break;
Damien Miller95def091999-11-25 00:26:21 +1100340 case 'q':
341 options.log_level = SYSLOG_LEVEL_QUIET;
342 break;
Damien Miller95def091999-11-25 00:26:21 +1100343 case 'e':
344 if (optarg[0] == '^' && optarg[2] == 0 &&
Damien Millerf4614452001-07-14 12:18:10 +1000345 (u_char) optarg[1] >= 64 &&
346 (u_char) optarg[1] < 128)
Ben Lindstrom46c16222000-12-22 01:43:59 +0000347 options.escape_char = (u_char) optarg[1] & 31;
Damien Miller95def091999-11-25 00:26:21 +1100348 else if (strlen(optarg) == 1)
Ben Lindstrom46c16222000-12-22 01:43:59 +0000349 options.escape_char = (u_char) optarg[0];
Damien Miller95def091999-11-25 00:26:21 +1100350 else if (strcmp(optarg, "none") == 0)
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +0000351 options.escape_char = SSH_ESCAPECHAR_NONE;
Damien Miller95def091999-11-25 00:26:21 +1100352 else {
Damien Millerf4614452001-07-14 12:18:10 +1000353 fprintf(stderr, "Bad escape character '%s'.\n",
354 optarg);
Damien Miller95def091999-11-25 00:26:21 +1100355 exit(1);
356 }
357 break;
Damien Miller95def091999-11-25 00:26:21 +1100358 case 'c':
Damien Millereba71ba2000-04-29 23:57:08 +1000359 if (ciphers_valid(optarg)) {
360 /* SSH2 only */
361 options.ciphers = xstrdup(optarg);
Darren Tucker5cb30ad2004-08-12 22:40:24 +1000362 options.cipher = SSH_CIPHER_INVALID;
Damien Millereba71ba2000-04-29 23:57:08 +1000363 } else {
364 /* SSH1 only */
Damien Millere39cacc2000-11-29 12:18:44 +1100365 options.cipher = cipher_number(optarg);
366 if (options.cipher == -1) {
Damien Millerf4614452001-07-14 12:18:10 +1000367 fprintf(stderr,
368 "Unknown cipher type '%s'\n",
369 optarg);
Damien Millereba71ba2000-04-29 23:57:08 +1000370 exit(1);
371 }
Damien Millerf4614452001-07-14 12:18:10 +1000372 if (options.cipher == SSH_CIPHER_3DES)
Damien Millere39cacc2000-11-29 12:18:44 +1100373 options.ciphers = "3des-cbc";
Damien Millerf4614452001-07-14 12:18:10 +1000374 else if (options.cipher == SSH_CIPHER_BLOWFISH)
Damien Millere39cacc2000-11-29 12:18:44 +1100375 options.ciphers = "blowfish-cbc";
Damien Millerf4614452001-07-14 12:18:10 +1000376 else
Damien Millere39cacc2000-11-29 12:18:44 +1100377 options.ciphers = (char *)-1;
Damien Miller95def091999-11-25 00:26:21 +1100378 }
379 break;
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000380 case 'm':
381 if (mac_valid(optarg))
382 options.macs = xstrdup(optarg);
383 else {
Damien Millerf4614452001-07-14 12:18:10 +1000384 fprintf(stderr, "Unknown mac type '%s'\n",
385 optarg);
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000386 exit(1);
387 }
388 break;
Damien Miller0e220db2004-06-15 10:34:08 +1000389 case 'M':
Damien Millerd14b1e72005-06-16 13:19:41 +1000390 if (options.control_master == SSHCTL_MASTER_YES)
391 options.control_master = SSHCTL_MASTER_ASK;
392 else
393 options.control_master = SSHCTL_MASTER_YES;
Damien Miller0e220db2004-06-15 10:34:08 +1000394 break;
Damien Miller95def091999-11-25 00:26:21 +1100395 case 'p':
Ben Lindstrom19066a12001-04-12 23:39:26 +0000396 options.port = a2port(optarg);
397 if (options.port == 0) {
Ben Lindstrom146edb92001-04-11 23:06:28 +0000398 fprintf(stderr, "Bad port '%s'\n", optarg);
399 exit(1);
400 }
Damien Miller95def091999-11-25 00:26:21 +1100401 break;
Damien Miller95def091999-11-25 00:26:21 +1100402 case 'l':
403 options.user = optarg;
404 break;
Ben Lindstrom1a174712001-09-12 17:56:15 +0000405
Damien Miller95def091999-11-25 00:26:21 +1100406 case 'L':
Damien Millerf91ee4c2005-03-01 21:24:33 +1100407 if (parse_forward(&fwd, optarg))
408 add_local_forward(&options, &fwd);
409 else {
Damien Millerf4614452001-07-14 12:18:10 +1000410 fprintf(stderr,
Damien Millerf91ee4c2005-03-01 21:24:33 +1100411 "Bad local forwarding specification '%s'\n",
Damien Millerf4614452001-07-14 12:18:10 +1000412 optarg);
Ben Lindstrom1a174712001-09-12 17:56:15 +0000413 exit(1);
414 }
Damien Millerf91ee4c2005-03-01 21:24:33 +1100415 break;
416
417 case 'R':
418 if (parse_forward(&fwd, optarg)) {
419 add_remote_forward(&options, &fwd);
420 } else {
421 fprintf(stderr,
422 "Bad remote forwarding specification "
423 "'%s'\n", optarg);
424 exit(1);
425 }
Damien Miller95def091999-11-25 00:26:21 +1100426 break;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000427
428 case 'D':
Damien Millerf91ee4c2005-03-01 21:24:33 +1100429 cp = p = xstrdup(optarg);
430 memset(&fwd, '\0', sizeof(fwd));
431 fwd.connect_host = "socks";
432 if ((fwd.listen_host = hpdelim(&cp)) == NULL) {
433 fprintf(stderr, "Bad dynamic forwarding "
434 "specification '%.100s'\n", optarg);
435 exit(1);
436 }
437 if (cp != NULL) {
438 fwd.listen_port = a2port(cp);
439 fwd.listen_host = cleanhostname(fwd.listen_host);
440 } else {
441 fwd.listen_port = a2port(fwd.listen_host);
Damien Millerbe1045d2005-08-12 22:10:56 +1000442 fwd.listen_host = NULL;
Damien Millerf91ee4c2005-03-01 21:24:33 +1100443 }
444
445 if (fwd.listen_port == 0) {
Damien Millerf4614452001-07-14 12:18:10 +1000446 fprintf(stderr, "Bad dynamic port '%s'\n",
447 optarg);
Ben Lindstrom146edb92001-04-11 23:06:28 +0000448 exit(1);
449 }
Damien Millerf91ee4c2005-03-01 21:24:33 +1100450 add_local_forward(&options, &fwd);
451 xfree(p);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000452 break;
453
Damien Miller95def091999-11-25 00:26:21 +1100454 case 'C':
455 options.compression = 1;
456 break;
Damien Miller1383bd82000-04-06 12:32:37 +1000457 case 'N':
458 no_shell_flag = 1;
459 no_tty_flag = 1;
460 break;
Damien Miller1383bd82000-04-06 12:32:37 +1000461 case 'T':
462 no_tty_flag = 1;
463 break;
Damien Miller95def091999-11-25 00:26:21 +1100464 case 'o':
465 dummy = 1;
Damien Miller9836cf82003-12-17 16:30:06 +1100466 line = xstrdup(optarg);
Damien Millerf4614452001-07-14 12:18:10 +1000467 if (process_config_line(&options, host ? host : "",
Damien Miller9836cf82003-12-17 16:30:06 +1100468 line, "command-line", 0, &dummy) != 0)
Damien Miller95def091999-11-25 00:26:21 +1100469 exit(1);
Damien Miller9836cf82003-12-17 16:30:06 +1100470 xfree(line);
Damien Miller95def091999-11-25 00:26:21 +1100471 break;
Damien Miller832562e2001-01-30 09:30:01 +1100472 case 's':
473 subsystem_flag = 1;
474 break;
Damien Miller0e220db2004-06-15 10:34:08 +1000475 case 'S':
476 if (options.control_path != NULL)
477 free(options.control_path);
478 options.control_path = xstrdup(optarg);
Damien Miller0e220db2004-06-15 10:34:08 +1000479 break;
Ben Lindstrome0f88042001-04-30 13:06:24 +0000480 case 'b':
481 options.bind_address = optarg;
482 break;
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000483 case 'F':
484 config = optarg;
485 break;
Damien Miller95def091999-11-25 00:26:21 +1100486 default:
487 usage();
488 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000489 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000490
Damien Millerf4614452001-07-14 12:18:10 +1000491 ac -= optind;
492 av += optind;
493
494 if (ac > 0 && !host && **av != '-') {
Ben Lindstromc276c122002-12-23 02:14:51 +0000495 if (strrchr(*av, '@')) {
Damien Millerf4614452001-07-14 12:18:10 +1000496 p = xstrdup(*av);
Ben Lindstromc276c122002-12-23 02:14:51 +0000497 cp = strrchr(p, '@');
Damien Millerf4614452001-07-14 12:18:10 +1000498 if (cp == NULL || cp == p)
499 usage();
500 options.user = p;
501 *cp = '\0';
502 host = ++cp;
503 } else
504 host = *av;
Ben Lindstromb9fa6912002-12-23 02:24:54 +0000505 if (ac > 1) {
506 optind = optreset = 1;
Damien Millerf4614452001-07-14 12:18:10 +1000507 goto again;
508 }
Ben Lindstromb9fa6912002-12-23 02:24:54 +0000509 ac--, av++;
Damien Millerf4614452001-07-14 12:18:10 +1000510 }
511
Damien Miller95def091999-11-25 00:26:21 +1100512 /* Check that we got a host name. */
513 if (!host)
514 usage();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000515
Damien Millercb5e44a2000-09-29 12:12:36 +1100516 SSLeay_add_all_algorithms();
Damien Miller0bc1bd82000-11-13 22:57:25 +1100517 ERR_load_crypto_strings();
Damien Millercb5e44a2000-09-29 12:12:36 +1100518
Damien Miller95def091999-11-25 00:26:21 +1100519 /* Initialize the command to execute on remote host. */
520 buffer_init(&command);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000521
Damien Miller5428f641999-11-25 11:54:57 +1100522 /*
523 * Save the command to execute on the remote host in a buffer. There
524 * is no limit on the length of the command, except by the maximum
525 * packet size. Also sets the tty flag if there is no command.
526 */
Damien Millerf4614452001-07-14 12:18:10 +1000527 if (!ac) {
Damien Miller95def091999-11-25 00:26:21 +1100528 /* No command specified - execute shell on a tty. */
529 tty_flag = 1;
Damien Miller832562e2001-01-30 09:30:01 +1100530 if (subsystem_flag) {
Damien Millerf4614452001-07-14 12:18:10 +1000531 fprintf(stderr,
532 "You must specify a subsystem to invoke.\n");
Damien Miller832562e2001-01-30 09:30:01 +1100533 usage();
534 }
Damien Miller95def091999-11-25 00:26:21 +1100535 } else {
Damien Millerf4614452001-07-14 12:18:10 +1000536 /* A command has been specified. Store it into the buffer. */
537 for (i = 0; i < ac; i++) {
538 if (i)
Damien Miller95def091999-11-25 00:26:21 +1100539 buffer_append(&command, " ", 1);
540 buffer_append(&command, av[i], strlen(av[i]));
541 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000542 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000543
Damien Miller95def091999-11-25 00:26:21 +1100544 /* Cannot fork to background if no command. */
Damien Millercaf6dd62000-08-29 11:33:50 +1100545 if (fork_after_authentication_flag && buffer_len(&command) == 0 && !no_shell_flag)
Damien Miller95def091999-11-25 00:26:21 +1100546 fatal("Cannot fork into background without a command to execute.");
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000547
Damien Miller95def091999-11-25 00:26:21 +1100548 /* Allocate a tty by default if no command specified. */
549 if (buffer_len(&command) == 0)
550 tty_flag = 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000551
Ben Lindstroma962c2f2002-07-04 00:14:17 +0000552 /* Force no tty */
Ben Lindstromc72745a2000-12-02 19:03:54 +0000553 if (no_tty_flag)
554 tty_flag = 0;
Damien Miller95def091999-11-25 00:26:21 +1100555 /* Do not allocate a tty if stdin is not a tty. */
Damien Millerddee5752005-05-26 12:05:05 +1000556 if ((!isatty(fileno(stdin)) || stdin_null_flag) && !force_tty_flag) {
Damien Miller95def091999-11-25 00:26:21 +1100557 if (tty_flag)
Damien Miller996acd22003-04-09 20:59:48 +1000558 logit("Pseudo-terminal will not be allocated because stdin is not a terminal.");
Damien Miller95def091999-11-25 00:26:21 +1100559 tty_flag = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000560 }
Damien Miller1383bd82000-04-06 12:32:37 +1000561
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000562 /*
563 * Initialize "log" output. Since we are the client all output
564 * actually goes to stderr.
565 */
Ben Lindstrom2b646522001-04-12 16:16:57 +0000566 log_init(av[0], options.log_level == -1 ? SYSLOG_LEVEL_INFO : options.log_level,
567 SYSLOG_FACILITY_USER, 1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000568
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000569 /*
570 * Read per-user configuration file. Ignore the system wide config
571 * file if the user specifies a config file on the command line.
572 */
573 if (config != NULL) {
Damien Miller914420f2004-04-20 20:14:07 +1000574 if (!read_config_file(config, host, &options, 0))
Ben Lindstromedc0cf22001-09-12 18:32:20 +0000575 fatal("Can't open user config file %.100s: "
576 "%.100s", config, strerror(errno));
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000577 } else {
578 snprintf(buf, sizeof buf, "%.100s/%.100s", pw->pw_dir,
579 _PATH_SSH_USER_CONFFILE);
Damien Miller57a44762004-04-20 20:11:57 +1000580 (void)read_config_file(buf, host, &options, 1);
Ben Lindstrom83f07d12001-10-03 17:22:29 +0000581
582 /* Read systemwide configuration file after use config. */
Darren Tuckerfc959702004-07-17 16:12:08 +1000583 (void)read_config_file(_PATH_HOST_CONFIG_FILE, host,
Damien Miller57a44762004-04-20 20:11:57 +1000584 &options, 0);
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000585 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000586
Damien Miller95def091999-11-25 00:26:21 +1100587 /* Fill configuration defaults. */
588 fill_default_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000589
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000590 channel_set_af(options.address_family);
591
Damien Miller95def091999-11-25 00:26:21 +1100592 /* reinit */
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000593 log_init(av[0], options.log_level, SYSLOG_FACILITY_USER, 1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000594
Damien Miller60bc5172001-03-19 09:38:15 +1100595 seed_rng();
596
Damien Miller95def091999-11-25 00:26:21 +1100597 if (options.user == NULL)
598 options.user = xstrdup(pw->pw_name);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000599
Damien Miller95def091999-11-25 00:26:21 +1100600 if (options.hostname != NULL)
601 host = options.hostname;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000602
Darren Tucker3f521e22003-07-03 16:20:42 +1000603 /* force lowercase for hostkey matching */
604 if (options.host_key_alias != NULL) {
605 for (p = options.host_key_alias; *p; p++)
606 if (isupper(*p))
607 *p = tolower(*p);
608 }
609
Damien Miller7c71cc72005-06-26 08:56:31 +1000610 /* Get default port if port has not been set. */
611 if (options.port == 0) {
612 sp = getservbyname(SSH_SERVICE_NAME, "tcp");
613 options.port = sp ? ntohs(sp->s_port) : SSH_DEFAULT_PORT;
614 }
615
Damien Miller9f1e33a2003-02-24 11:57:32 +1100616 if (options.proxy_command != NULL &&
617 strcmp(options.proxy_command, "none") == 0)
618 options.proxy_command = NULL;
Damien Miller8f74c8f2005-06-26 08:56:03 +1000619 if (options.control_path != NULL &&
620 strcmp(options.control_path, "none") == 0)
621 options.control_path = NULL;
Damien Miller9f1e33a2003-02-24 11:57:32 +1100622
Damien Miller0e220db2004-06-15 10:34:08 +1000623 if (options.control_path != NULL) {
Damien Miller6476cad2005-06-16 13:18:34 +1000624 snprintf(buf, sizeof(buf), "%d", options.port);
625 cp = tilde_expand_filename(options.control_path,
626 original_real_uid);
627 options.control_path = percent_expand(cp, "p", buf, "h", host,
628 "r", options.user, (char *)NULL);
629 xfree(cp);
Damien Miller0e220db2004-06-15 10:34:08 +1000630 }
Darren Tucker0814d312005-06-01 23:08:51 +1000631 if (mux_command != 0 && options.control_path == NULL)
632 fatal("No ControlPath specified for \"-O\" command");
Damien Millerd14b1e72005-06-16 13:19:41 +1000633 if (options.control_path != NULL)
Damien Millerdadfd4d2005-05-26 12:07:13 +1000634 control_client(options.control_path);
Damien Miller0e220db2004-06-15 10:34:08 +1000635
Kevin Stevesfcec7f82000-12-15 19:55:48 +0000636 /* Open a connection to the remote host. */
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000637 if (ssh_connect(host, &hostaddr, options.port,
638 options.address_family, options.connection_attempts,
Ben Lindstrom1aa64272002-06-11 20:28:05 +0000639#ifdef HAVE_CYGWIN
640 options.use_privileged_port,
641#else
Ben Lindstromf9c48842002-06-11 16:37:51 +0000642 original_effective_uid == 0 && options.use_privileged_port,
Ben Lindstrom1aa64272002-06-11 20:28:05 +0000643#endif
Ben Lindstromda394ca2002-06-12 16:11:12 +0000644 options.proxy_command) != 0)
Ben Lindstrom24157572002-06-12 16:09:39 +0000645 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000646
Damien Miller5428f641999-11-25 11:54:57 +1100647 /*
648 * If we successfully made the connection, load the host private key
649 * in case we will need it later for combined rsa-rhosts
650 * authentication. This must be done before releasing extra
651 * privileges, because the file is only readable by root.
Ben Lindstrom9e5bb572002-06-06 19:58:27 +0000652 * If we cannot access the private keys, load the public keys
653 * instead and try to execute the ssh-keysign helper instead.
Damien Miller5428f641999-11-25 11:54:57 +1100654 */
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000655 sensitive_data.nkeys = 0;
656 sensitive_data.keys = NULL;
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000657 sensitive_data.external_keysign = 0;
Ben Lindstrom24157572002-06-12 16:09:39 +0000658 if (options.rhosts_rsa_authentication ||
659 options.hostbased_authentication) {
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000660 sensitive_data.nkeys = 3;
Ben Lindstroma962c2f2002-07-04 00:14:17 +0000661 sensitive_data.keys = xmalloc(sensitive_data.nkeys *
662 sizeof(Key));
Ben Lindstromf9c48842002-06-11 16:37:51 +0000663
664 PRIV_START;
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000665 sensitive_data.keys[0] = key_load_private_type(KEY_RSA1,
Ben Lindstromd0fca422001-03-26 13:44:06 +0000666 _PATH_HOST_KEY_FILE, "", NULL);
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000667 sensitive_data.keys[1] = key_load_private_type(KEY_DSA,
668 _PATH_HOST_DSA_KEY_FILE, "", NULL);
669 sensitive_data.keys[2] = key_load_private_type(KEY_RSA,
670 _PATH_HOST_RSA_KEY_FILE, "", NULL);
Ben Lindstromf9c48842002-06-11 16:37:51 +0000671 PRIV_END;
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000672
Ben Lindstrom5d35a2f2002-07-04 00:19:40 +0000673 if (options.hostbased_authentication == 1 &&
674 sensitive_data.keys[0] == NULL &&
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000675 sensitive_data.keys[1] == NULL &&
676 sensitive_data.keys[2] == NULL) {
677 sensitive_data.keys[1] = key_load_public(
678 _PATH_HOST_DSA_KEY_FILE, NULL);
679 sensitive_data.keys[2] = key_load_public(
680 _PATH_HOST_RSA_KEY_FILE, NULL);
681 sensitive_data.external_keysign = 1;
682 }
Damien Miller95def091999-11-25 00:26:21 +1100683 }
Damien Miller5428f641999-11-25 11:54:57 +1100684 /*
685 * Get rid of any extra privileges that we may have. We will no
686 * longer need them. Also, extra privileges could make it very hard
687 * to read identity files and other non-world-readable files from the
688 * user's home directory if it happens to be on a NFS volume where
689 * root is mapped to nobody.
690 */
Darren Tucker25f60a72004-08-15 17:23:34 +1000691 if (original_effective_uid == 0) {
692 PRIV_START;
693 permanently_set_uid(pw);
694 }
Damien Miller95def091999-11-25 00:26:21 +1100695
Damien Miller5428f641999-11-25 11:54:57 +1100696 /*
697 * Now that we are back to our own permissions, create ~/.ssh
698 * directory if it doesn\'t already exist.
699 */
Ben Lindstrom930b14a2001-08-15 23:19:21 +0000700 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 +1100701 if (stat(buf, &st) < 0)
Damien Millerbe484b52000-07-15 14:14:16 +1000702 if (mkdir(buf, 0700) < 0)
Damien Miller95def091999-11-25 00:26:21 +1100703 error("Could not create directory '%.200s'.", buf);
704
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000705 /* load options.identity_files */
706 load_public_identity_files();
707
708 /* Expand ~ in known host file names. */
709 /* XXX mem-leaks: */
Damien Miller0bc1bd82000-11-13 22:57:25 +1100710 options.system_hostfile =
711 tilde_expand_filename(options.system_hostfile, original_real_uid);
712 options.user_hostfile =
713 tilde_expand_filename(options.user_hostfile, original_real_uid);
714 options.system_hostfile2 =
715 tilde_expand_filename(options.system_hostfile2, original_real_uid);
716 options.user_hostfile2 =
717 tilde_expand_filename(options.user_hostfile2, original_real_uid);
Damien Miller95def091999-11-25 00:26:21 +1100718
Damien Miller07cd5892001-11-12 10:52:03 +1100719 signal(SIGPIPE, SIG_IGN); /* ignore SIGPIPE early */
720
Damien Miller95def091999-11-25 00:26:21 +1100721 /* Log into the remote system. This never returns if the login fails. */
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000722 ssh_login(&sensitive_data, host, (struct sockaddr *)&hostaddr, pw);
Damien Miller95def091999-11-25 00:26:21 +1100723
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000724 /* We no longer need the private host keys. Clear them now. */
725 if (sensitive_data.nkeys != 0) {
726 for (i = 0; i < sensitive_data.nkeys; i++) {
727 if (sensitive_data.keys[i] != NULL) {
728 /* Destroys contents safely */
729 debug3("clear hostkey %d", i);
730 key_free(sensitive_data.keys[i]);
731 sensitive_data.keys[i] = NULL;
732 }
733 }
734 xfree(sensitive_data.keys);
735 }
Ben Lindstroma6c8a8d2001-08-06 21:42:00 +0000736 for (i = 0; i < options.num_identity_files; i++) {
737 if (options.identity_files[i]) {
738 xfree(options.identity_files[i]);
739 options.identity_files[i] = NULL;
740 }
741 if (options.identity_keys[i]) {
742 key_free(options.identity_keys[i]);
743 options.identity_keys[i] = NULL;
744 }
745 }
Damien Miller95def091999-11-25 00:26:21 +1100746
Damien Miller1383bd82000-04-06 12:32:37 +1000747 exit_status = compat20 ? ssh_session2() : ssh_session();
748 packet_close();
Damien Miller8c4e18a2002-09-19 12:05:02 +1000749
Damien Miller0e220db2004-06-15 10:34:08 +1000750 if (options.control_path != NULL && control_fd != -1)
751 unlink(options.control_path);
752
Damien Miller8c4e18a2002-09-19 12:05:02 +1000753 /*
Damien Millera8e06ce2003-11-21 23:48:55 +1100754 * Send SIGHUP to proxy command if used. We don't wait() in
Damien Miller8c4e18a2002-09-19 12:05:02 +1000755 * case it hangs and instead rely on init to reap the child
756 */
757 if (proxy_command_pid > 1)
758 kill(proxy_command_pid, SIGHUP);
759
Damien Miller1383bd82000-04-06 12:32:37 +1000760 return exit_status;
761}
762
Ben Lindstrombba81212001-06-25 05:01:22 +0000763static void
Damien Miller0bc1bd82000-11-13 22:57:25 +1100764ssh_init_forwarding(void)
765{
Kevin Steves12057502001-02-05 14:54:34 +0000766 int success = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100767 int i;
Kevin Steves12057502001-02-05 14:54:34 +0000768
Damien Miller0bc1bd82000-11-13 22:57:25 +1100769 /* Initiate local TCP/IP port forwardings. */
770 for (i = 0; i < options.num_local_forwards; i++) {
Damien Millerf91ee4c2005-03-01 21:24:33 +1100771 debug("Local connections to %.200s:%d forwarded to remote "
772 "address %.200s:%d",
Darren Tucker47eede72005-03-14 23:08:12 +1100773 (options.local_forwards[i].listen_host == NULL) ?
774 (options.gateway_ports ? "*" : "LOCALHOST") :
Damien Millerf91ee4c2005-03-01 21:24:33 +1100775 options.local_forwards[i].listen_host,
776 options.local_forwards[i].listen_port,
777 options.local_forwards[i].connect_host,
778 options.local_forwards[i].connect_port);
Damien Millerb16461c2002-01-22 23:29:22 +1100779 success += channel_setup_local_fwd_listener(
Damien Millerf91ee4c2005-03-01 21:24:33 +1100780 options.local_forwards[i].listen_host,
781 options.local_forwards[i].listen_port,
782 options.local_forwards[i].connect_host,
783 options.local_forwards[i].connect_port,
Damien Miller0bc1bd82000-11-13 22:57:25 +1100784 options.gateway_ports);
785 }
Kevin Steves12057502001-02-05 14:54:34 +0000786 if (i > 0 && success == 0)
787 error("Could not request local forwarding.");
Damien Miller0bc1bd82000-11-13 22:57:25 +1100788
789 /* Initiate remote TCP/IP port forwardings. */
790 for (i = 0; i < options.num_remote_forwards; i++) {
Damien Millerf91ee4c2005-03-01 21:24:33 +1100791 debug("Remote connections from %.200s:%d forwarded to "
792 "local address %.200s:%d",
Damien Miller46d38de2005-07-17 17:02:09 +1000793 (options.remote_forwards[i].listen_host == NULL) ?
794 (options.gateway_ports ? "*" : "LOCALHOST") :
Damien Millerf91ee4c2005-03-01 21:24:33 +1100795 options.remote_forwards[i].listen_host,
796 options.remote_forwards[i].listen_port,
797 options.remote_forwards[i].connect_host,
798 options.remote_forwards[i].connect_port);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100799 channel_request_remote_forwarding(
Damien Millerf91ee4c2005-03-01 21:24:33 +1100800 options.remote_forwards[i].listen_host,
801 options.remote_forwards[i].listen_port,
802 options.remote_forwards[i].connect_host,
803 options.remote_forwards[i].connect_port);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100804 }
805}
806
Ben Lindstrombba81212001-06-25 05:01:22 +0000807static void
Damien Miller0bc1bd82000-11-13 22:57:25 +1100808check_agent_present(void)
809{
810 if (options.forward_agent) {
811 /* Clear agent forwarding if we don\'t have an agent. */
Damien Miller789e95d2002-09-12 09:52:46 +1000812 if (!ssh_agent_present())
Damien Miller0bc1bd82000-11-13 22:57:25 +1100813 options.forward_agent = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100814 }
815}
816
Ben Lindstrombba81212001-06-25 05:01:22 +0000817static int
Damien Miller1383bd82000-04-06 12:32:37 +1000818ssh_session(void)
819{
820 int type;
Damien Miller1383bd82000-04-06 12:32:37 +1000821 int interactive = 0;
822 int have_tty = 0;
823 struct winsize ws;
Damien Miller1383bd82000-04-06 12:32:37 +1000824 char *cp;
Damien Miller17e7ed02005-06-17 12:54:33 +1000825 const char *display;
Damien Miller1383bd82000-04-06 12:32:37 +1000826
Damien Miller95def091999-11-25 00:26:21 +1100827 /* Enable compression if requested. */
828 if (options.compression) {
829 debug("Requesting compression at level %d.", options.compression_level);
830
831 if (options.compression_level < 1 || options.compression_level > 9)
832 fatal("Compression level must be from 1 (fast) to 9 (slow, best).");
833
834 /* Send the request. */
835 packet_start(SSH_CMSG_REQUEST_COMPRESSION);
836 packet_put_int(options.compression_level);
837 packet_send();
838 packet_write_wait();
Damien Millerdff50992002-01-22 23:16:32 +1100839 type = packet_read();
Damien Miller95def091999-11-25 00:26:21 +1100840 if (type == SSH_SMSG_SUCCESS)
841 packet_start_compression(options.compression_level);
842 else if (type == SSH_SMSG_FAILURE)
Damien Miller996acd22003-04-09 20:59:48 +1000843 logit("Warning: Remote host refused compression.");
Damien Miller95def091999-11-25 00:26:21 +1100844 else
845 packet_disconnect("Protocol error waiting for compression response.");
846 }
847 /* Allocate a pseudo tty if appropriate. */
848 if (tty_flag) {
849 debug("Requesting pty.");
850
851 /* Start the packet. */
852 packet_start(SSH_CMSG_REQUEST_PTY);
853
854 /* Store TERM in the packet. There is no limit on the
855 length of the string. */
856 cp = getenv("TERM");
857 if (!cp)
858 cp = "";
Ben Lindstrom664408d2001-06-09 01:42:01 +0000859 packet_put_cstring(cp);
Damien Miller95def091999-11-25 00:26:21 +1100860
861 /* Store window size in the packet. */
862 if (ioctl(fileno(stdin), TIOCGWINSZ, &ws) < 0)
863 memset(&ws, 0, sizeof(ws));
864 packet_put_int(ws.ws_row);
865 packet_put_int(ws.ws_col);
866 packet_put_int(ws.ws_xpixel);
867 packet_put_int(ws.ws_ypixel);
868
869 /* Store tty modes in the packet. */
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000870 tty_make_modes(fileno(stdin), NULL);
Damien Miller95def091999-11-25 00:26:21 +1100871
872 /* Send the packet, and wait for it to leave. */
873 packet_send();
874 packet_write_wait();
875
876 /* Read response from the server. */
Damien Millerdff50992002-01-22 23:16:32 +1100877 type = packet_read();
Damien Miller450a7a12000-03-26 13:04:51 +1000878 if (type == SSH_SMSG_SUCCESS) {
Damien Miller95def091999-11-25 00:26:21 +1100879 interactive = 1;
Damien Miller1383bd82000-04-06 12:32:37 +1000880 have_tty = 1;
Damien Miller450a7a12000-03-26 13:04:51 +1000881 } else if (type == SSH_SMSG_FAILURE)
Damien Miller996acd22003-04-09 20:59:48 +1000882 logit("Warning: Remote host failed or refused to allocate a pseudo tty.");
Damien Miller95def091999-11-25 00:26:21 +1100883 else
884 packet_disconnect("Protocol error waiting for pty request response.");
885 }
886 /* Request X11 forwarding if enabled and DISPLAY is set. */
Damien Miller17e7ed02005-06-17 12:54:33 +1000887 display = getenv("DISPLAY");
888 if (options.forward_x11 && display != NULL) {
Ben Lindstrom4a4bd712001-12-06 17:45:19 +0000889 char *proto, *data;
Damien Millerbd483e72000-04-30 10:00:53 +1000890 /* Get reasonable local authentication information. */
Damien Miller17e7ed02005-06-17 12:54:33 +1000891 client_x11_get_proto(display, options.xauth_location,
892 options.forward_x11_trusted, &proto, &data);
Damien Millerbd483e72000-04-30 10:00:53 +1000893 /* Request forwarding with authentication spoofing. */
Damien Miller95def091999-11-25 00:26:21 +1100894 debug("Requesting X11 forwarding with authentication spoofing.");
Damien Miller17e7ed02005-06-17 12:54:33 +1000895 x11_request_forwarding_with_spoofing(0, display, proto, data);
Damien Miller95def091999-11-25 00:26:21 +1100896
897 /* Read response from the server. */
Damien Millerdff50992002-01-22 23:16:32 +1100898 type = packet_read();
Damien Miller95def091999-11-25 00:26:21 +1100899 if (type == SSH_SMSG_SUCCESS) {
Damien Miller95def091999-11-25 00:26:21 +1100900 interactive = 1;
Damien Millerbd483e72000-04-30 10:00:53 +1000901 } else if (type == SSH_SMSG_FAILURE) {
Damien Miller996acd22003-04-09 20:59:48 +1000902 logit("Warning: Remote host denied X11 forwarding.");
Damien Millerbd483e72000-04-30 10:00:53 +1000903 } else {
Damien Miller95def091999-11-25 00:26:21 +1100904 packet_disconnect("Protocol error waiting for X11 forwarding");
Damien Millerbd483e72000-04-30 10:00:53 +1000905 }
Damien Miller95def091999-11-25 00:26:21 +1100906 }
907 /* Tell the packet module whether this is an interactive session. */
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000908 packet_set_interactive(interactive);
Damien Miller95def091999-11-25 00:26:21 +1100909
910 /* Request authentication agent forwarding if appropriate. */
Damien Miller0bc1bd82000-11-13 22:57:25 +1100911 check_agent_present();
912
Damien Miller95def091999-11-25 00:26:21 +1100913 if (options.forward_agent) {
914 debug("Requesting authentication agent forwarding.");
915 auth_request_forwarding();
916
917 /* Read response from the server. */
Damien Millerdff50992002-01-22 23:16:32 +1100918 type = packet_read();
Damien Miller48b03fc2002-01-22 23:11:40 +1100919 packet_check_eom();
Damien Miller95def091999-11-25 00:26:21 +1100920 if (type != SSH_SMSG_SUCCESS)
Damien Miller996acd22003-04-09 20:59:48 +1000921 logit("Warning: Remote host denied authentication agent forwarding.");
Damien Miller95def091999-11-25 00:26:21 +1100922 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000923
Damien Miller0bc1bd82000-11-13 22:57:25 +1100924 /* Initiate port forwardings. */
925 ssh_init_forwarding();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000926
Damien Miller5428f641999-11-25 11:54:57 +1100927 /* If requested, let ssh continue in the background. */
Damien Miller4af51302000-04-16 11:18:38 +1000928 if (fork_after_authentication_flag)
Damien Miller5428f641999-11-25 11:54:57 +1100929 if (daemon(1, 1) < 0)
930 fatal("daemon() failed: %.200s", strerror(errno));
931
932 /*
933 * If a command was specified on the command line, execute the
934 * command now. Otherwise request the server to start a shell.
935 */
Damien Miller95def091999-11-25 00:26:21 +1100936 if (buffer_len(&command) > 0) {
937 int len = buffer_len(&command);
938 if (len > 900)
939 len = 900;
Damien Miller5a6b4fe2001-12-21 14:56:54 +1100940 debug("Sending command: %.*s", len, (u_char *)buffer_ptr(&command));
Damien Miller95def091999-11-25 00:26:21 +1100941 packet_start(SSH_CMSG_EXEC_CMD);
942 packet_put_string(buffer_ptr(&command), buffer_len(&command));
943 packet_send();
944 packet_write_wait();
945 } else {
946 debug("Requesting shell.");
947 packet_start(SSH_CMSG_EXEC_SHELL);
948 packet_send();
949 packet_write_wait();
950 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000951
Damien Miller95def091999-11-25 00:26:21 +1100952 /* Enter the interactive session. */
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +0000953 return client_loop(have_tty, tty_flag ?
954 options.escape_char : SSH_ESCAPECHAR_NONE, 0);
Damien Miller1383bd82000-04-06 12:32:37 +1000955}
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000956
Ben Lindstrombba81212001-06-25 05:01:22 +0000957static void
Damien Miller0e220db2004-06-15 10:34:08 +1000958ssh_subsystem_reply(int type, u_int32_t seq, void *ctxt)
Ben Lindstrom1e7d3062001-02-09 02:36:43 +0000959{
960 int id, len;
961
962 id = packet_get_int();
963 len = buffer_len(&command);
Ben Lindstrom4040fe12001-03-05 06:52:57 +0000964 if (len > 900)
965 len = 900;
Damien Miller48b03fc2002-01-22 23:11:40 +1100966 packet_check_eom();
Ben Lindstrom1e7d3062001-02-09 02:36:43 +0000967 if (type == SSH2_MSG_CHANNEL_FAILURE)
968 fatal("Request for subsystem '%.*s' failed on channel %d",
Damien Miller5a6b4fe2001-12-21 14:56:54 +1100969 len, (u_char *)buffer_ptr(&command), id);
Ben Lindstrom1e7d3062001-02-09 02:36:43 +0000970}
971
Damien Miller2797f7f2002-04-23 21:09:44 +1000972void
Damien Miller509b0102003-12-17 16:33:10 +1100973client_global_request_reply_fwd(int type, u_int32_t seq, void *ctxt)
Damien Miller2797f7f2002-04-23 21:09:44 +1000974{
975 int i;
976
977 i = client_global_request_id++;
Damien Miller509b0102003-12-17 16:33:10 +1100978 if (i >= options.num_remote_forwards)
Damien Miller2797f7f2002-04-23 21:09:44 +1000979 return;
Damien Miller2797f7f2002-04-23 21:09:44 +1000980 debug("remote forward %s for: listen %d, connect %s:%d",
981 type == SSH2_MSG_REQUEST_SUCCESS ? "success" : "failure",
Damien Millerf91ee4c2005-03-01 21:24:33 +1100982 options.remote_forwards[i].listen_port,
983 options.remote_forwards[i].connect_host,
984 options.remote_forwards[i].connect_port);
Damien Miller2797f7f2002-04-23 21:09:44 +1000985 if (type == SSH2_MSG_REQUEST_FAILURE)
Damien Millerf91ee4c2005-03-01 21:24:33 +1100986 logit("Warning: remote port forwarding failed for listen "
987 "port %d", options.remote_forwards[i].listen_port);
Damien Miller2797f7f2002-04-23 21:09:44 +1000988}
989
Damien Miller0e220db2004-06-15 10:34:08 +1000990static void
991ssh_control_listener(void)
992{
993 struct sockaddr_un addr;
994 mode_t old_umask;
Damien Miller07b6ff12004-06-15 11:14:45 +1000995 int addr_len;
996
Damien Millerd14b1e72005-06-16 13:19:41 +1000997 if (options.control_path == NULL ||
998 options.control_master == SSHCTL_MASTER_NO)
Damien Miller0e220db2004-06-15 10:34:08 +1000999 return;
1000
Damien Millerd14b1e72005-06-16 13:19:41 +10001001 debug("setting up multiplex master socket");
1002
Damien Miller0e220db2004-06-15 10:34:08 +10001003 memset(&addr, '\0', sizeof(addr));
1004 addr.sun_family = AF_UNIX;
Damien Miller07b6ff12004-06-15 11:14:45 +10001005 addr_len = offsetof(struct sockaddr_un, sun_path) +
Damien Miller0e220db2004-06-15 10:34:08 +10001006 strlen(options.control_path) + 1;
1007
1008 if (strlcpy(addr.sun_path, options.control_path,
1009 sizeof(addr.sun_path)) >= sizeof(addr.sun_path))
1010 fatal("ControlPath too long");
1011
1012 if ((control_fd = socket(PF_UNIX, SOCK_STREAM, 0)) < 0)
1013 fatal("%s socket(): %s\n", __func__, strerror(errno));
1014
1015 old_umask = umask(0177);
Damien Miller07b6ff12004-06-15 11:14:45 +10001016 if (bind(control_fd, (struct sockaddr*)&addr, addr_len) == -1) {
Damien Miller0e220db2004-06-15 10:34:08 +10001017 control_fd = -1;
Damien Miller4f10e252005-05-04 15:33:09 +10001018 if (errno == EINVAL || errno == EADDRINUSE)
Damien Miller0e220db2004-06-15 10:34:08 +10001019 fatal("ControlSocket %s already exists",
1020 options.control_path);
1021 else
1022 fatal("%s bind(): %s\n", __func__, strerror(errno));
1023 }
1024 umask(old_umask);
1025
1026 if (listen(control_fd, 64) == -1)
1027 fatal("%s listen(): %s\n", __func__, strerror(errno));
1028
1029 set_nonblock(control_fd);
1030}
1031
Ben Lindstromf558cf62001-09-20 23:13:49 +00001032/* request pty/x11/agent/tcpfwd/shell for channel */
Ben Lindstrombba81212001-06-25 05:01:22 +00001033static void
Ben Lindstromf558cf62001-09-20 23:13:49 +00001034ssh_session2_setup(int id, void *arg)
Damien Miller1383bd82000-04-06 12:32:37 +10001035{
Damien Miller3756dce2004-06-18 01:17:29 +10001036 extern char **environ;
Damien Miller17e7ed02005-06-17 12:54:33 +10001037 const char *display;
Damien Miller0e220db2004-06-15 10:34:08 +10001038 int interactive = tty_flag;
Damien Miller17e7ed02005-06-17 12:54:33 +10001039
Damien Miller46d38de2005-07-17 17:02:09 +10001040 display = getenv("DISPLAY");
Damien Miller17e7ed02005-06-17 12:54:33 +10001041 if (options.forward_x11 && display != NULL) {
Ben Lindstrom4a4bd712001-12-06 17:45:19 +00001042 char *proto, *data;
Damien Millerbd483e72000-04-30 10:00:53 +10001043 /* Get reasonable local authentication information. */
Damien Miller17e7ed02005-06-17 12:54:33 +10001044 client_x11_get_proto(display, options.xauth_location,
1045 options.forward_x11_trusted, &proto, &data);
Damien Millerbd483e72000-04-30 10:00:53 +10001046 /* Request forwarding with authentication spoofing. */
1047 debug("Requesting X11 forwarding with authentication spoofing.");
Damien Miller17e7ed02005-06-17 12:54:33 +10001048 x11_request_forwarding_with_spoofing(id, display, proto, data);
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001049 interactive = 1;
Damien Millerbd483e72000-04-30 10:00:53 +10001050 /* XXX wait for reply */
1051 }
1052
Damien Miller0bc1bd82000-11-13 22:57:25 +11001053 check_agent_present();
1054 if (options.forward_agent) {
1055 debug("Requesting authentication agent forwarding.");
1056 channel_request_start(id, "auth-agent-req@openssh.com", 0);
1057 packet_send();
1058 }
1059
Damien Miller0e220db2004-06-15 10:34:08 +10001060 client_session2_setup(id, tty_flag, subsystem_flag, getenv("TERM"),
Damien Miller3756dce2004-06-18 01:17:29 +10001061 NULL, fileno(stdin), &command, environ, &ssh_subsystem_reply);
Ben Lindstrom1e7d3062001-02-09 02:36:43 +00001062
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001063 packet_set_interactive(interactive);
Damien Miller1383bd82000-04-06 12:32:37 +10001064}
1065
Ben Lindstromf558cf62001-09-20 23:13:49 +00001066/* open new channel for a session */
Ben Lindstrombba81212001-06-25 05:01:22 +00001067static int
Ben Lindstromf558cf62001-09-20 23:13:49 +00001068ssh_session2_open(void)
Damien Miller1383bd82000-04-06 12:32:37 +10001069{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001070 Channel *c;
1071 int window, packetmax, in, out, err;
Damien Millerad833b32000-08-23 10:46:23 +10001072
Damien Millercaf6dd62000-08-29 11:33:50 +11001073 if (stdin_null_flag) {
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001074 in = open(_PATH_DEVNULL, O_RDONLY);
Damien Millercaf6dd62000-08-29 11:33:50 +11001075 } else {
1076 in = dup(STDIN_FILENO);
1077 }
1078 out = dup(STDOUT_FILENO);
1079 err = dup(STDERR_FILENO);
1080
1081 if (in < 0 || out < 0 || err < 0)
1082 fatal("dup() in/out/err failed");
1083
Damien Miller69b69aa2000-10-28 14:19:58 +11001084 /* enable nonblocking unless tty */
1085 if (!isatty(in))
1086 set_nonblock(in);
1087 if (!isatty(out))
1088 set_nonblock(out);
1089 if (!isatty(err))
1090 set_nonblock(err);
1091
Damien Millere4340be2000-09-16 13:29:08 +11001092 window = CHAN_SES_WINDOW_DEFAULT;
1093 packetmax = CHAN_SES_PACKET_DEFAULT;
Damien Miller19a59452002-02-19 15:20:57 +11001094 if (tty_flag) {
1095 window >>= 1;
1096 packetmax >>= 1;
Damien Miller1383bd82000-04-06 12:32:37 +10001097 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001098 c = channel_new(
Damien Miller1383bd82000-04-06 12:32:37 +10001099 "session", SSH_CHANNEL_OPENING, in, out, err,
Damien Millere4340be2000-09-16 13:29:08 +11001100 window, packetmax, CHAN_EXTENDED_WRITE,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001101 "client-session", /*nonblock*/0);
Damien Miller1383bd82000-04-06 12:32:37 +10001102
Ben Lindstromf558cf62001-09-20 23:13:49 +00001103 debug3("ssh_session2_open: channel_new: %d", c->self);
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001104
Ben Lindstrom5ec26452001-06-09 00:18:51 +00001105 channel_send_open(c->self);
Ben Lindstromf558cf62001-09-20 23:13:49 +00001106 if (!no_shell_flag)
Damien Miller0e220db2004-06-15 10:34:08 +10001107 channel_register_confirm(c->self, ssh_session2_setup, NULL);
Damien Miller1383bd82000-04-06 12:32:37 +10001108
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001109 return c->self;
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001110}
1111
Ben Lindstrombba81212001-06-25 05:01:22 +00001112static int
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001113ssh_session2(void)
1114{
Ben Lindstromf558cf62001-09-20 23:13:49 +00001115 int id = -1;
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001116
1117 /* XXX should be pre-session */
1118 ssh_init_forwarding();
Damien Miller0e220db2004-06-15 10:34:08 +10001119 ssh_control_listener();
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001120
Ben Lindstromf558cf62001-09-20 23:13:49 +00001121 if (!no_shell_flag || (datafellows & SSH_BUG_DUMMYCHAN))
1122 id = ssh_session2_open();
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001123
1124 /* If requested, let ssh continue in the background. */
1125 if (fork_after_authentication_flag)
1126 if (daemon(1, 1) < 0)
1127 fatal("daemon() failed: %.200s", strerror(errno));
1128
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +00001129 return client_loop(tty_flag, tty_flag ?
1130 options.escape_char : SSH_ESCAPECHAR_NONE, id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001131}
Damien Miller0bc1bd82000-11-13 22:57:25 +11001132
Ben Lindstrombba81212001-06-25 05:01:22 +00001133static void
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001134load_public_identity_files(void)
1135{
1136 char *filename;
Ben Lindstrom711b04a2001-08-06 21:12:42 +00001137 int i = 0;
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001138 Key *public;
Ben Lindstrom711b04a2001-08-06 21:12:42 +00001139#ifdef SMARTCARD
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001140 Key **keys;
1141
Ben Lindstromf7db3bb2001-08-06 21:35:51 +00001142 if (options.smartcard_device != NULL &&
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001143 options.num_identity_files < SSH_MAX_IDENTITY_FILES &&
1144 (keys = sc_get_keys(options.smartcard_device, NULL)) != NULL ) {
1145 int count = 0;
1146 for (i = 0; keys[i] != NULL; i++) {
1147 count++;
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001148 memmove(&options.identity_files[1], &options.identity_files[0],
1149 sizeof(char *) * (SSH_MAX_IDENTITY_FILES - 1));
1150 memmove(&options.identity_keys[1], &options.identity_keys[0],
1151 sizeof(Key *) * (SSH_MAX_IDENTITY_FILES - 1));
1152 options.num_identity_files++;
1153 options.identity_keys[0] = keys[i];
Damien Miller56a0bb02003-06-18 20:28:40 +10001154 options.identity_files[0] = sc_get_key_label(keys[i]);
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001155 }
Ben Lindstrom4f054602002-03-26 03:23:00 +00001156 if (options.num_identity_files > SSH_MAX_IDENTITY_FILES)
1157 options.num_identity_files = SSH_MAX_IDENTITY_FILES;
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001158 i = count;
1159 xfree(keys);
Ben Lindstrom711b04a2001-08-06 21:12:42 +00001160 }
Ben Lindstromffce1472001-08-06 21:57:31 +00001161#endif /* SMARTCARD */
Ben Lindstrom711b04a2001-08-06 21:12:42 +00001162 for (; i < options.num_identity_files; i++) {
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001163 filename = tilde_expand_filename(options.identity_files[i],
1164 original_real_uid);
Ben Lindstromd0fca422001-03-26 13:44:06 +00001165 public = key_load_public(filename, NULL);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001166 debug("identity file %s type %d", filename,
1167 public ? public->type : -1);
1168 xfree(options.identity_files[i]);
1169 options.identity_files[i] = filename;
1170 options.identity_keys[i] = public;
1171 }
1172}
Damien Miller0e220db2004-06-15 10:34:08 +10001173
1174static void
1175control_client_sighandler(int signo)
1176{
1177 control_client_terminate = signo;
1178}
1179
1180static void
1181control_client_sigrelay(int signo)
1182{
1183 if (control_server_pid > 1)
1184 kill(control_server_pid, signo);
1185}
1186
Darren Tucker365433f2004-06-22 12:29:23 +10001187static int
1188env_permitted(char *env)
1189{
1190 int i;
1191 char name[1024], *cp;
1192
1193 strlcpy(name, env, sizeof(name));
1194 if ((cp = strchr(name, '=')) == NULL)
1195 return (0);
1196
1197 *cp = '\0';
1198
1199 for (i = 0; i < options.num_send_env; i++)
1200 if (match_pattern(name, options.send_env[i]))
1201 return (1);
1202
1203 return (0);
1204}
1205
Damien Miller0e220db2004-06-15 10:34:08 +10001206static void
1207control_client(const char *path)
1208{
1209 struct sockaddr_un addr;
Darren Tucker39207a42004-11-05 20:19:51 +11001210 int i, r, fd, sock, exitval, num_env, addr_len;
Damien Miller0e220db2004-06-15 10:34:08 +10001211 Buffer m;
Darren Tucker7ebfc102004-11-07 20:06:19 +11001212 char *term;
Damien Miller3756dce2004-06-18 01:17:29 +10001213 extern char **environ;
Darren Tucker7ebfc102004-11-07 20:06:19 +11001214 u_int flags;
Darren Tuckerfc959702004-07-17 16:12:08 +10001215
Damien Millerd14b1e72005-06-16 13:19:41 +10001216 if (mux_command == 0)
1217 mux_command = SSHMUX_COMMAND_OPEN;
1218
1219 switch (options.control_master) {
1220 case SSHCTL_MASTER_AUTO:
1221 case SSHCTL_MASTER_AUTO_ASK:
1222 debug("auto-mux: Trying existing master");
1223 /* FALLTHROUGH */
1224 case SSHCTL_MASTER_NO:
1225 break;
1226 default:
1227 return;
1228 }
1229
Damien Miller0e220db2004-06-15 10:34:08 +10001230 memset(&addr, '\0', sizeof(addr));
1231 addr.sun_family = AF_UNIX;
Damien Miller07b6ff12004-06-15 11:14:45 +10001232 addr_len = offsetof(struct sockaddr_un, sun_path) +
Damien Miller0e220db2004-06-15 10:34:08 +10001233 strlen(path) + 1;
1234
1235 if (strlcpy(addr.sun_path, path,
1236 sizeof(addr.sun_path)) >= sizeof(addr.sun_path))
1237 fatal("ControlPath too long");
1238
1239 if ((sock = socket(PF_UNIX, SOCK_STREAM, 0)) < 0)
1240 fatal("%s socket(): %s", __func__, strerror(errno));
1241
Damien Millerdadfd4d2005-05-26 12:07:13 +10001242 if (connect(sock, (struct sockaddr*)&addr, addr_len) == -1) {
Darren Tucker0814d312005-06-01 23:08:51 +10001243 if (mux_command != SSHMUX_COMMAND_OPEN) {
1244 fatal("Control socket connect(%.100s): %s", path,
1245 strerror(errno));
1246 }
Damien Miller538c9b72005-05-26 12:11:28 +10001247 if (errno == ENOENT)
1248 debug("Control socket \"%.100s\" does not exist", path);
1249 else {
1250 error("Control socket connect(%.100s): %s", path,
1251 strerror(errno));
1252 }
Damien Miller13390022005-07-06 09:44:19 +10001253 close(sock);
1254 return;
1255 }
Damien Miller46d38de2005-07-17 17:02:09 +10001256
Damien Miller13390022005-07-06 09:44:19 +10001257 if (stdin_null_flag) {
1258 if ((fd = open(_PATH_DEVNULL, O_RDONLY)) == -1)
1259 fatal("open(/dev/null): %s", strerror(errno));
1260 if (dup2(fd, STDIN_FILENO) == -1)
1261 fatal("dup2: %s", strerror(errno));
1262 if (fd > STDERR_FILENO)
1263 close(fd);
1264 }
Damien Miller46d38de2005-07-17 17:02:09 +10001265
Damien Miller13390022005-07-06 09:44:19 +10001266 term = getenv("TERM");
Darren Tucker7ebfc102004-11-07 20:06:19 +11001267
1268 flags = 0;
1269 if (tty_flag)
1270 flags |= SSHMUX_FLAG_TTY;
1271 if (subsystem_flag)
1272 flags |= SSHMUX_FLAG_SUBSYS;
Damien Miller13390022005-07-06 09:44:19 +10001273 if (options.forward_x11)
1274 flags |= SSHMUX_FLAG_X11_FWD;
1275 if (options.forward_agent)
1276 flags |= SSHMUX_FLAG_AGENT_FWD;
Damien Miller0e220db2004-06-15 10:34:08 +10001277
Damien Miller0e220db2004-06-15 10:34:08 +10001278 buffer_init(&m);
1279
Darren Tucker7ebfc102004-11-07 20:06:19 +11001280 /* Send our command to server */
1281 buffer_put_int(&m, mux_command);
1282 buffer_put_int(&m, flags);
Damien Miller13390022005-07-06 09:44:19 +10001283 if (ssh_msg_send(sock, SSHMUX_VER, &m) == -1)
Darren Tucker7ebfc102004-11-07 20:06:19 +11001284 fatal("%s: msg_send", __func__);
1285 buffer_clear(&m);
1286
1287 /* Get authorisation status and PID of controlee */
Damien Miller0e220db2004-06-15 10:34:08 +10001288 if (ssh_msg_recv(sock, &m) == -1)
1289 fatal("%s: msg_recv", __func__);
Damien Miller13390022005-07-06 09:44:19 +10001290 if (buffer_get_char(&m) != SSHMUX_VER)
Damien Miller0e220db2004-06-15 10:34:08 +10001291 fatal("%s: wrong version", __func__);
Damien Miller23f07702004-06-18 01:19:03 +10001292 if (buffer_get_int(&m) != 1)
1293 fatal("Connection to master denied");
Damien Miller0e220db2004-06-15 10:34:08 +10001294 control_server_pid = buffer_get_int(&m);
1295
Damien Miller0e220db2004-06-15 10:34:08 +10001296 buffer_clear(&m);
Damien Miller0e220db2004-06-15 10:34:08 +10001297
Darren Tucker7ebfc102004-11-07 20:06:19 +11001298 switch (mux_command) {
1299 case SSHMUX_COMMAND_ALIVE_CHECK:
Darren Tucker47eede72005-03-14 23:08:12 +11001300 fprintf(stderr, "Master running (pid=%d)\r\n",
Darren Tucker7ebfc102004-11-07 20:06:19 +11001301 control_server_pid);
1302 exit(0);
1303 case SSHMUX_COMMAND_TERMINATE:
1304 fprintf(stderr, "Exit request sent.\r\n");
1305 exit(0);
1306 case SSHMUX_COMMAND_OPEN:
1307 /* continue below */
1308 break;
1309 default:
1310 fatal("silly mux_command %d", mux_command);
1311 }
1312
1313 /* SSHMUX_COMMAND_OPEN */
Damien Miller13390022005-07-06 09:44:19 +10001314 buffer_put_cstring(&m, term ? term : "");
Damien Miller0e220db2004-06-15 10:34:08 +10001315 buffer_append(&command, "\0", 1);
1316 buffer_put_cstring(&m, buffer_ptr(&command));
1317
Darren Tucker365433f2004-06-22 12:29:23 +10001318 if (options.num_send_env == 0 || environ == NULL) {
1319 buffer_put_int(&m, 0);
Darren Tuckerfc959702004-07-17 16:12:08 +10001320 } else {
Darren Tucker365433f2004-06-22 12:29:23 +10001321 /* Pass environment */
1322 num_env = 0;
1323 for (i = 0; environ[i] != NULL; i++)
1324 if (env_permitted(environ[i]))
1325 num_env++; /* Count */
Darren Tuckerfc959702004-07-17 16:12:08 +10001326
Darren Tucker365433f2004-06-22 12:29:23 +10001327 buffer_put_int(&m, num_env);
1328
Darren Tuckerb5bc1a62004-06-24 00:34:53 +10001329 for (i = 0; environ[i] != NULL && num_env >= 0; i++)
1330 if (env_permitted(environ[i])) {
1331 num_env--;
Darren Tucker365433f2004-06-22 12:29:23 +10001332 buffer_put_cstring(&m, environ[i]);
Darren Tuckerb5bc1a62004-06-24 00:34:53 +10001333 }
Darren Tucker365433f2004-06-22 12:29:23 +10001334 }
Damien Miller3756dce2004-06-18 01:17:29 +10001335
Damien Miller13390022005-07-06 09:44:19 +10001336 if (ssh_msg_send(sock, SSHMUX_VER, &m) == -1)
Damien Miller0e220db2004-06-15 10:34:08 +10001337 fatal("%s: msg_send", __func__);
1338
1339 mm_send_fd(sock, STDIN_FILENO);
1340 mm_send_fd(sock, STDOUT_FILENO);
1341 mm_send_fd(sock, STDERR_FILENO);
1342
1343 /* Wait for reply, so master has a chance to gather ttymodes */
1344 buffer_clear(&m);
1345 if (ssh_msg_recv(sock, &m) == -1)
1346 fatal("%s: msg_recv", __func__);
Damien Miller13390022005-07-06 09:44:19 +10001347 if (buffer_get_char(&m) != SSHMUX_VER)
Darren Tucker7ebfc102004-11-07 20:06:19 +11001348 fatal("%s: wrong version", __func__);
Damien Miller0e220db2004-06-15 10:34:08 +10001349 buffer_free(&m);
1350
Darren Tucker07336da2004-11-05 20:02:16 +11001351 signal(SIGHUP, control_client_sighandler);
Damien Miller0809e232004-06-18 22:20:57 +10001352 signal(SIGINT, control_client_sighandler);
1353 signal(SIGTERM, control_client_sighandler);
1354 signal(SIGWINCH, control_client_sigrelay);
1355
Damien Miller0e220db2004-06-15 10:34:08 +10001356 if (tty_flag)
1357 enter_raw_mode();
1358
1359 /* Stick around until the controlee closes the client_fd */
1360 exitval = 0;
1361 for (;!control_client_terminate;) {
1362 r = read(sock, &exitval, sizeof(exitval));
1363 if (r == 0) {
1364 debug2("Received EOF from master");
1365 break;
1366 }
1367 if (r > 0)
1368 debug2("Received exit status from master %d", exitval);
1369 if (r == -1 && errno != EINTR)
1370 fatal("%s: read %s", __func__, strerror(errno));
1371 }
1372
1373 if (control_client_terminate)
1374 debug2("Exiting on signal %d", control_client_terminate);
1375
1376 close(sock);
1377
1378 leave_raw_mode();
1379
1380 if (tty_flag && options.log_level != SYSLOG_LEVEL_QUIET)
1381 fprintf(stderr, "Connection to master closed.\r\n");
1382
1383 exit(exitval);
1384}