blob: 5d53cd6804bf29077b711f6e9d1fa7b588205591 [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 Miller17e7ed02005-06-17 12:54:33 +100043RCSID("$OpenBSD: ssh.c,v 1.243 2005/06/16 03:38:36 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 Millerf91ee4c2005-03-01 21:24:33 +1100188 Forward fwd;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000189
Damien Miller59d3d5b2003-08-22 09:34:41 +1000190 __progname = ssh_get_progname(av[0]);
Damien Millerf9b625c2000-07-09 22:42:32 +1000191 init_rng();
192
Damien Miller5428f641999-11-25 11:54:57 +1100193 /*
194 * Save the original real uid. It will be needed later (uid-swapping
195 * may clobber the real uid).
196 */
Damien Miller95def091999-11-25 00:26:21 +1100197 original_real_uid = getuid();
198 original_effective_uid = geteuid();
Damien Millera8e06ce2003-11-21 23:48:55 +1100199
Damien Miller50b9a602002-09-04 16:50:06 +1000200 /*
201 * Use uid-swapping to give up root privileges for the duration of
202 * option processing. We will re-instantiate the rights when we are
203 * ready to create the privileged port, and will permanently drop
204 * them when the port has been created (actually, when the connection
205 * has been made, as we may need to create the port several times).
206 */
207 PRIV_END;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000208
Damien Miller05dd7952000-10-01 00:42:48 +1100209#ifdef HAVE_SETRLIMIT
Damien Miller95def091999-11-25 00:26:21 +1100210 /* If we are installed setuid root be careful to not drop core. */
211 if (original_real_uid != original_effective_uid) {
212 struct rlimit rlim;
213 rlim.rlim_cur = rlim.rlim_max = 0;
214 if (setrlimit(RLIMIT_CORE, &rlim) < 0)
215 fatal("setrlimit failed: %.100s", strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000216 }
Damien Millerbac2d8a2000-09-05 16:13:06 +1100217#endif
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000218 /* Get user data. */
219 pw = getpwuid(original_real_uid);
220 if (!pw) {
Damien Miller996acd22003-04-09 20:59:48 +1000221 logit("You don't exist, go away!");
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000222 exit(1);
223 }
224 /* Take a copy of the returned structure. */
225 pw = pwcopy(pw);
226
Damien Miller5428f641999-11-25 11:54:57 +1100227 /*
Damien Miller5428f641999-11-25 11:54:57 +1100228 * Set our umask to something reasonable, as some files are created
229 * with the default umask. This will make them world-readable but
230 * writable only by the owner, which is ok for all files for which we
231 * don't set the modes explicitly.
232 */
Damien Miller95def091999-11-25 00:26:21 +1100233 umask(022);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000234
Damien Miller95def091999-11-25 00:26:21 +1100235 /* Initialize option structure to indicate that no values have been set. */
236 initialize_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000237
Damien Miller95def091999-11-25 00:26:21 +1100238 /* Parse command-line arguments. */
239 host = NULL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000240
Damien Millerf4614452001-07-14 12:18:10 +1000241again:
242 while ((opt = getopt(ac, av,
Darren Tucker7ebfc102004-11-07 20:06:19 +1100243 "1246ab:c:e:fgi:kl:m:no:p:qstvxACD:F:I:L:MNO:PR:S:TVXY")) != -1) {
Damien Miller95def091999-11-25 00:26:21 +1100244 switch (opt) {
Ben Lindstrom1e7d3062001-02-09 02:36:43 +0000245 case '1':
246 options.protocol = SSH_PROTO_1;
247 break;
Damien Miller4af51302000-04-16 11:18:38 +1000248 case '2':
249 options.protocol = SSH_PROTO_2;
250 break;
Damien Miller34132e52000-01-14 15:45:46 +1100251 case '4':
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000252 options.address_family = AF_INET;
Damien Miller34132e52000-01-14 15:45:46 +1100253 break;
Damien Miller34132e52000-01-14 15:45:46 +1100254 case '6':
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000255 options.address_family = AF_INET6;
Damien Miller34132e52000-01-14 15:45:46 +1100256 break;
Damien Miller95def091999-11-25 00:26:21 +1100257 case 'n':
258 stdin_null_flag = 1;
259 break;
Damien Miller95def091999-11-25 00:26:21 +1100260 case 'f':
261 fork_after_authentication_flag = 1;
262 stdin_null_flag = 1;
263 break;
Damien Miller95def091999-11-25 00:26:21 +1100264 case 'x':
265 options.forward_x11 = 0;
266 break;
Damien Miller95def091999-11-25 00:26:21 +1100267 case 'X':
268 options.forward_x11 = 1;
269 break;
Darren Tucker0a118da2003-10-15 15:54:32 +1000270 case 'Y':
271 options.forward_x11 = 1;
272 options.forward_x11_trusted = 1;
273 break;
Damien Miller95def091999-11-25 00:26:21 +1100274 case 'g':
275 options.gateway_ports = 1;
276 break;
Darren Tucker7ebfc102004-11-07 20:06:19 +1100277 case 'O':
278 if (strcmp(optarg, "check") == 0)
279 mux_command = SSHMUX_COMMAND_ALIVE_CHECK;
280 else if (strcmp(optarg, "exit") == 0)
281 mux_command = SSHMUX_COMMAND_TERMINATE;
282 else
283 fatal("Invalid multiplex command.");
284 break;
Damien Miller147bba32002-09-04 16:46:06 +1000285 case 'P': /* deprecated */
Damien Miller95def091999-11-25 00:26:21 +1100286 options.use_privileged_port = 0;
287 break;
Damien Miller95def091999-11-25 00:26:21 +1100288 case 'a':
289 options.forward_agent = 0;
290 break;
Damien Millerb1715dc2000-05-30 13:44:51 +1000291 case 'A':
292 options.forward_agent = 1;
293 break;
Damien Miller95def091999-11-25 00:26:21 +1100294 case 'k':
Damien Millere0113cc2003-11-24 13:10:09 +1100295 options.gss_deleg_creds = 0;
Damien Miller95def091999-11-25 00:26:21 +1100296 break;
Damien Miller95def091999-11-25 00:26:21 +1100297 case 'i':
298 if (stat(optarg, &st) < 0) {
Damien Millerf4614452001-07-14 12:18:10 +1000299 fprintf(stderr, "Warning: Identity file %s "
Damien Miller3eb48b62005-03-01 21:15:46 +1100300 "not accessible: %s.\n", optarg,
301 strerror(errno));
Damien Miller95def091999-11-25 00:26:21 +1100302 break;
303 }
Damien Millerf4614452001-07-14 12:18:10 +1000304 if (options.num_identity_files >=
305 SSH_MAX_IDENTITY_FILES)
306 fatal("Too many identity files specified "
307 "(max %d)", SSH_MAX_IDENTITY_FILES);
308 options.identity_files[options.num_identity_files++] =
309 xstrdup(optarg);
Damien Miller95def091999-11-25 00:26:21 +1100310 break;
Ben Lindstromc5b68002001-07-04 04:52:03 +0000311 case 'I':
312#ifdef SMARTCARD
Ben Lindstromf7db3bb2001-08-06 21:35:51 +0000313 options.smartcard_device = xstrdup(optarg);
Ben Lindstrombcc18082001-08-06 21:59:25 +0000314#else
Ben Lindstromc5b68002001-07-04 04:52:03 +0000315 fprintf(stderr, "no support for smartcards.\n");
Ben Lindstrombcc18082001-08-06 21:59:25 +0000316#endif
Ben Lindstromc5b68002001-07-04 04:52:03 +0000317 break;
Damien Miller95def091999-11-25 00:26:21 +1100318 case 't':
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000319 if (tty_flag)
320 force_tty_flag = 1;
Damien Miller95def091999-11-25 00:26:21 +1100321 tty_flag = 1;
322 break;
Damien Miller95def091999-11-25 00:26:21 +1100323 case 'v':
Darren Tuckere98dfa32003-07-19 19:54:31 +1000324 if (debug_flag == 0) {
Damien Millere4340be2000-09-16 13:29:08 +1100325 debug_flag = 1;
326 options.log_level = SYSLOG_LEVEL_DEBUG1;
Darren Tuckere98dfa32003-07-19 19:54:31 +1000327 } else {
328 if (options.log_level < SYSLOG_LEVEL_DEBUG3)
329 options.log_level++;
Damien Millere4340be2000-09-16 13:29:08 +1100330 break;
Darren Tuckere98dfa32003-07-19 19:54:31 +1000331 }
Darren Tuckere9bf9842004-11-05 20:05:32 +1100332 /* FALLTHROUGH */
Damien Miller95def091999-11-25 00:26:21 +1100333 case 'V':
Damien Miller0c889cd2004-03-22 09:36:00 +1100334 fprintf(stderr, "%s, %s\n",
Damien Miller2aa6d3c2004-09-12 16:53:04 +1000335 SSH_RELEASE, SSLeay_version(SSLEAY_VERSION));
Damien Miller95def091999-11-25 00:26:21 +1100336 if (opt == 'V')
337 exit(0);
Damien Miller95def091999-11-25 00:26:21 +1100338 break;
Damien Miller95def091999-11-25 00:26:21 +1100339 case 'q':
340 options.log_level = SYSLOG_LEVEL_QUIET;
341 break;
Damien Miller95def091999-11-25 00:26:21 +1100342 case 'e':
343 if (optarg[0] == '^' && optarg[2] == 0 &&
Damien Millerf4614452001-07-14 12:18:10 +1000344 (u_char) optarg[1] >= 64 &&
345 (u_char) optarg[1] < 128)
Ben Lindstrom46c16222000-12-22 01:43:59 +0000346 options.escape_char = (u_char) optarg[1] & 31;
Damien Miller95def091999-11-25 00:26:21 +1100347 else if (strlen(optarg) == 1)
Ben Lindstrom46c16222000-12-22 01:43:59 +0000348 options.escape_char = (u_char) optarg[0];
Damien Miller95def091999-11-25 00:26:21 +1100349 else if (strcmp(optarg, "none") == 0)
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +0000350 options.escape_char = SSH_ESCAPECHAR_NONE;
Damien Miller95def091999-11-25 00:26:21 +1100351 else {
Damien Millerf4614452001-07-14 12:18:10 +1000352 fprintf(stderr, "Bad escape character '%s'.\n",
353 optarg);
Damien Miller95def091999-11-25 00:26:21 +1100354 exit(1);
355 }
356 break;
Damien Miller95def091999-11-25 00:26:21 +1100357 case 'c':
Damien Millereba71ba2000-04-29 23:57:08 +1000358 if (ciphers_valid(optarg)) {
359 /* SSH2 only */
360 options.ciphers = xstrdup(optarg);
Darren Tucker5cb30ad2004-08-12 22:40:24 +1000361 options.cipher = SSH_CIPHER_INVALID;
Damien Millereba71ba2000-04-29 23:57:08 +1000362 } else {
363 /* SSH1 only */
Damien Millere39cacc2000-11-29 12:18:44 +1100364 options.cipher = cipher_number(optarg);
365 if (options.cipher == -1) {
Damien Millerf4614452001-07-14 12:18:10 +1000366 fprintf(stderr,
367 "Unknown cipher type '%s'\n",
368 optarg);
Damien Millereba71ba2000-04-29 23:57:08 +1000369 exit(1);
370 }
Damien Millerf4614452001-07-14 12:18:10 +1000371 if (options.cipher == SSH_CIPHER_3DES)
Damien Millere39cacc2000-11-29 12:18:44 +1100372 options.ciphers = "3des-cbc";
Damien Millerf4614452001-07-14 12:18:10 +1000373 else if (options.cipher == SSH_CIPHER_BLOWFISH)
Damien Millere39cacc2000-11-29 12:18:44 +1100374 options.ciphers = "blowfish-cbc";
Damien Millerf4614452001-07-14 12:18:10 +1000375 else
Damien Millere39cacc2000-11-29 12:18:44 +1100376 options.ciphers = (char *)-1;
Damien Miller95def091999-11-25 00:26:21 +1100377 }
378 break;
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000379 case 'm':
380 if (mac_valid(optarg))
381 options.macs = xstrdup(optarg);
382 else {
Damien Millerf4614452001-07-14 12:18:10 +1000383 fprintf(stderr, "Unknown mac type '%s'\n",
384 optarg);
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000385 exit(1);
386 }
387 break;
Damien Miller0e220db2004-06-15 10:34:08 +1000388 case 'M':
Damien Millerd14b1e72005-06-16 13:19:41 +1000389 if (options.control_master == SSHCTL_MASTER_YES)
390 options.control_master = SSHCTL_MASTER_ASK;
391 else
392 options.control_master = SSHCTL_MASTER_YES;
Damien Miller0e220db2004-06-15 10:34:08 +1000393 break;
Damien Miller95def091999-11-25 00:26:21 +1100394 case 'p':
Ben Lindstrom19066a12001-04-12 23:39:26 +0000395 options.port = a2port(optarg);
396 if (options.port == 0) {
Ben Lindstrom146edb92001-04-11 23:06:28 +0000397 fprintf(stderr, "Bad port '%s'\n", optarg);
398 exit(1);
399 }
Damien Miller95def091999-11-25 00:26:21 +1100400 break;
Damien Miller95def091999-11-25 00:26:21 +1100401 case 'l':
402 options.user = optarg;
403 break;
Ben Lindstrom1a174712001-09-12 17:56:15 +0000404
Damien Miller95def091999-11-25 00:26:21 +1100405 case 'L':
Damien Millerf91ee4c2005-03-01 21:24:33 +1100406 if (parse_forward(&fwd, optarg))
407 add_local_forward(&options, &fwd);
408 else {
Damien Millerf4614452001-07-14 12:18:10 +1000409 fprintf(stderr,
Damien Millerf91ee4c2005-03-01 21:24:33 +1100410 "Bad local forwarding specification '%s'\n",
Damien Millerf4614452001-07-14 12:18:10 +1000411 optarg);
Ben Lindstrom1a174712001-09-12 17:56:15 +0000412 exit(1);
413 }
Damien Millerf91ee4c2005-03-01 21:24:33 +1100414 break;
415
416 case 'R':
417 if (parse_forward(&fwd, optarg)) {
418 add_remote_forward(&options, &fwd);
419 } else {
420 fprintf(stderr,
421 "Bad remote forwarding specification "
422 "'%s'\n", optarg);
423 exit(1);
424 }
Damien Miller95def091999-11-25 00:26:21 +1100425 break;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000426
427 case 'D':
Damien Millerf91ee4c2005-03-01 21:24:33 +1100428 cp = p = xstrdup(optarg);
429 memset(&fwd, '\0', sizeof(fwd));
430 fwd.connect_host = "socks";
431 if ((fwd.listen_host = hpdelim(&cp)) == NULL) {
432 fprintf(stderr, "Bad dynamic forwarding "
433 "specification '%.100s'\n", optarg);
434 exit(1);
435 }
436 if (cp != NULL) {
437 fwd.listen_port = a2port(cp);
438 fwd.listen_host = cleanhostname(fwd.listen_host);
439 } else {
440 fwd.listen_port = a2port(fwd.listen_host);
441 fwd.listen_host = "";
442 }
443
444 if (fwd.listen_port == 0) {
Damien Millerf4614452001-07-14 12:18:10 +1000445 fprintf(stderr, "Bad dynamic port '%s'\n",
446 optarg);
Ben Lindstrom146edb92001-04-11 23:06:28 +0000447 exit(1);
448 }
Damien Millerf91ee4c2005-03-01 21:24:33 +1100449 add_local_forward(&options, &fwd);
450 xfree(p);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000451 break;
452
Damien Miller95def091999-11-25 00:26:21 +1100453 case 'C':
454 options.compression = 1;
455 break;
Damien Miller1383bd82000-04-06 12:32:37 +1000456 case 'N':
457 no_shell_flag = 1;
458 no_tty_flag = 1;
459 break;
Damien Miller1383bd82000-04-06 12:32:37 +1000460 case 'T':
461 no_tty_flag = 1;
462 break;
Damien Miller95def091999-11-25 00:26:21 +1100463 case 'o':
464 dummy = 1;
Damien Miller9836cf82003-12-17 16:30:06 +1100465 line = xstrdup(optarg);
Damien Millerf4614452001-07-14 12:18:10 +1000466 if (process_config_line(&options, host ? host : "",
Damien Miller9836cf82003-12-17 16:30:06 +1100467 line, "command-line", 0, &dummy) != 0)
Damien Miller95def091999-11-25 00:26:21 +1100468 exit(1);
Damien Miller9836cf82003-12-17 16:30:06 +1100469 xfree(line);
Damien Miller95def091999-11-25 00:26:21 +1100470 break;
Damien Miller832562e2001-01-30 09:30:01 +1100471 case 's':
472 subsystem_flag = 1;
473 break;
Damien Miller0e220db2004-06-15 10:34:08 +1000474 case 'S':
475 if (options.control_path != NULL)
476 free(options.control_path);
477 options.control_path = xstrdup(optarg);
Damien Miller0e220db2004-06-15 10:34:08 +1000478 break;
Ben Lindstrome0f88042001-04-30 13:06:24 +0000479 case 'b':
480 options.bind_address = optarg;
481 break;
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000482 case 'F':
483 config = optarg;
484 break;
Damien Miller95def091999-11-25 00:26:21 +1100485 default:
486 usage();
487 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000488 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000489
Damien Millerf4614452001-07-14 12:18:10 +1000490 ac -= optind;
491 av += optind;
492
493 if (ac > 0 && !host && **av != '-') {
Ben Lindstromc276c122002-12-23 02:14:51 +0000494 if (strrchr(*av, '@')) {
Damien Millerf4614452001-07-14 12:18:10 +1000495 p = xstrdup(*av);
Ben Lindstromc276c122002-12-23 02:14:51 +0000496 cp = strrchr(p, '@');
Damien Millerf4614452001-07-14 12:18:10 +1000497 if (cp == NULL || cp == p)
498 usage();
499 options.user = p;
500 *cp = '\0';
501 host = ++cp;
502 } else
503 host = *av;
Ben Lindstromb9fa6912002-12-23 02:24:54 +0000504 if (ac > 1) {
505 optind = optreset = 1;
Damien Millerf4614452001-07-14 12:18:10 +1000506 goto again;
507 }
Ben Lindstromb9fa6912002-12-23 02:24:54 +0000508 ac--, av++;
Damien Millerf4614452001-07-14 12:18:10 +1000509 }
510
Damien Miller95def091999-11-25 00:26:21 +1100511 /* Check that we got a host name. */
512 if (!host)
513 usage();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000514
Damien Millercb5e44a2000-09-29 12:12:36 +1100515 SSLeay_add_all_algorithms();
Damien Miller0bc1bd82000-11-13 22:57:25 +1100516 ERR_load_crypto_strings();
Damien Millercb5e44a2000-09-29 12:12:36 +1100517
Damien Miller95def091999-11-25 00:26:21 +1100518 /* Initialize the command to execute on remote host. */
519 buffer_init(&command);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000520
Damien Miller5428f641999-11-25 11:54:57 +1100521 /*
522 * Save the command to execute on the remote host in a buffer. There
523 * is no limit on the length of the command, except by the maximum
524 * packet size. Also sets the tty flag if there is no command.
525 */
Damien Millerf4614452001-07-14 12:18:10 +1000526 if (!ac) {
Damien Miller95def091999-11-25 00:26:21 +1100527 /* No command specified - execute shell on a tty. */
528 tty_flag = 1;
Damien Miller832562e2001-01-30 09:30:01 +1100529 if (subsystem_flag) {
Damien Millerf4614452001-07-14 12:18:10 +1000530 fprintf(stderr,
531 "You must specify a subsystem to invoke.\n");
Damien Miller832562e2001-01-30 09:30:01 +1100532 usage();
533 }
Damien Miller95def091999-11-25 00:26:21 +1100534 } else {
Damien Millerf4614452001-07-14 12:18:10 +1000535 /* A command has been specified. Store it into the buffer. */
536 for (i = 0; i < ac; i++) {
537 if (i)
Damien Miller95def091999-11-25 00:26:21 +1100538 buffer_append(&command, " ", 1);
539 buffer_append(&command, av[i], strlen(av[i]));
540 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000541 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000542
Damien Miller95def091999-11-25 00:26:21 +1100543 /* Cannot fork to background if no command. */
Damien Millercaf6dd62000-08-29 11:33:50 +1100544 if (fork_after_authentication_flag && buffer_len(&command) == 0 && !no_shell_flag)
Damien Miller95def091999-11-25 00:26:21 +1100545 fatal("Cannot fork into background without a command to execute.");
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000546
Damien Miller95def091999-11-25 00:26:21 +1100547 /* Allocate a tty by default if no command specified. */
548 if (buffer_len(&command) == 0)
549 tty_flag = 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000550
Ben Lindstroma962c2f2002-07-04 00:14:17 +0000551 /* Force no tty */
Ben Lindstromc72745a2000-12-02 19:03:54 +0000552 if (no_tty_flag)
553 tty_flag = 0;
Damien Miller95def091999-11-25 00:26:21 +1100554 /* Do not allocate a tty if stdin is not a tty. */
Damien Millerddee5752005-05-26 12:05:05 +1000555 if ((!isatty(fileno(stdin)) || stdin_null_flag) && !force_tty_flag) {
Damien Miller95def091999-11-25 00:26:21 +1100556 if (tty_flag)
Damien Miller996acd22003-04-09 20:59:48 +1000557 logit("Pseudo-terminal will not be allocated because stdin is not a terminal.");
Damien Miller95def091999-11-25 00:26:21 +1100558 tty_flag = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000559 }
Damien Miller1383bd82000-04-06 12:32:37 +1000560
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000561 /*
562 * Initialize "log" output. Since we are the client all output
563 * actually goes to stderr.
564 */
Ben Lindstrom2b646522001-04-12 16:16:57 +0000565 log_init(av[0], options.log_level == -1 ? SYSLOG_LEVEL_INFO : options.log_level,
566 SYSLOG_FACILITY_USER, 1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000567
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000568 /*
569 * Read per-user configuration file. Ignore the system wide config
570 * file if the user specifies a config file on the command line.
571 */
572 if (config != NULL) {
Damien Miller914420f2004-04-20 20:14:07 +1000573 if (!read_config_file(config, host, &options, 0))
Ben Lindstromedc0cf22001-09-12 18:32:20 +0000574 fatal("Can't open user config file %.100s: "
575 "%.100s", config, strerror(errno));
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000576 } else {
577 snprintf(buf, sizeof buf, "%.100s/%.100s", pw->pw_dir,
578 _PATH_SSH_USER_CONFFILE);
Damien Miller57a44762004-04-20 20:11:57 +1000579 (void)read_config_file(buf, host, &options, 1);
Ben Lindstrom83f07d12001-10-03 17:22:29 +0000580
581 /* Read systemwide configuration file after use config. */
Darren Tuckerfc959702004-07-17 16:12:08 +1000582 (void)read_config_file(_PATH_HOST_CONFIG_FILE, host,
Damien Miller57a44762004-04-20 20:11:57 +1000583 &options, 0);
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000584 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000585
Damien Miller95def091999-11-25 00:26:21 +1100586 /* Fill configuration defaults. */
587 fill_default_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000588
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000589 channel_set_af(options.address_family);
590
Damien Miller95def091999-11-25 00:26:21 +1100591 /* reinit */
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000592 log_init(av[0], options.log_level, SYSLOG_FACILITY_USER, 1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000593
Damien Miller60bc5172001-03-19 09:38:15 +1100594 seed_rng();
595
Damien Miller95def091999-11-25 00:26:21 +1100596 if (options.user == NULL)
597 options.user = xstrdup(pw->pw_name);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000598
Damien Miller95def091999-11-25 00:26:21 +1100599 if (options.hostname != NULL)
600 host = options.hostname;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000601
Darren Tucker3f521e22003-07-03 16:20:42 +1000602 /* force lowercase for hostkey matching */
603 if (options.host_key_alias != NULL) {
604 for (p = options.host_key_alias; *p; p++)
605 if (isupper(*p))
606 *p = tolower(*p);
607 }
608
Damien Miller9f1e33a2003-02-24 11:57:32 +1100609 if (options.proxy_command != NULL &&
610 strcmp(options.proxy_command, "none") == 0)
611 options.proxy_command = NULL;
612
Damien Miller0e220db2004-06-15 10:34:08 +1000613 if (options.control_path != NULL) {
Damien Miller6476cad2005-06-16 13:18:34 +1000614 snprintf(buf, sizeof(buf), "%d", options.port);
615 cp = tilde_expand_filename(options.control_path,
616 original_real_uid);
617 options.control_path = percent_expand(cp, "p", buf, "h", host,
618 "r", options.user, (char *)NULL);
619 xfree(cp);
Damien Miller0e220db2004-06-15 10:34:08 +1000620 }
Darren Tucker0814d312005-06-01 23:08:51 +1000621 if (mux_command != 0 && options.control_path == NULL)
622 fatal("No ControlPath specified for \"-O\" command");
Damien Millerd14b1e72005-06-16 13:19:41 +1000623 if (options.control_path != NULL)
Damien Millerdadfd4d2005-05-26 12:07:13 +1000624 control_client(options.control_path);
Damien Miller0e220db2004-06-15 10:34:08 +1000625
Kevin Stevesfcec7f82000-12-15 19:55:48 +0000626 /* Open a connection to the remote host. */
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000627 if (ssh_connect(host, &hostaddr, options.port,
628 options.address_family, options.connection_attempts,
Ben Lindstrom1aa64272002-06-11 20:28:05 +0000629#ifdef HAVE_CYGWIN
630 options.use_privileged_port,
631#else
Ben Lindstromf9c48842002-06-11 16:37:51 +0000632 original_effective_uid == 0 && options.use_privileged_port,
Ben Lindstrom1aa64272002-06-11 20:28:05 +0000633#endif
Ben Lindstromda394ca2002-06-12 16:11:12 +0000634 options.proxy_command) != 0)
Ben Lindstrom24157572002-06-12 16:09:39 +0000635 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000636
Damien Miller5428f641999-11-25 11:54:57 +1100637 /*
638 * If we successfully made the connection, load the host private key
639 * in case we will need it later for combined rsa-rhosts
640 * authentication. This must be done before releasing extra
641 * privileges, because the file is only readable by root.
Ben Lindstrom9e5bb572002-06-06 19:58:27 +0000642 * If we cannot access the private keys, load the public keys
643 * instead and try to execute the ssh-keysign helper instead.
Damien Miller5428f641999-11-25 11:54:57 +1100644 */
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000645 sensitive_data.nkeys = 0;
646 sensitive_data.keys = NULL;
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000647 sensitive_data.external_keysign = 0;
Ben Lindstrom24157572002-06-12 16:09:39 +0000648 if (options.rhosts_rsa_authentication ||
649 options.hostbased_authentication) {
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000650 sensitive_data.nkeys = 3;
Ben Lindstroma962c2f2002-07-04 00:14:17 +0000651 sensitive_data.keys = xmalloc(sensitive_data.nkeys *
652 sizeof(Key));
Ben Lindstromf9c48842002-06-11 16:37:51 +0000653
654 PRIV_START;
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000655 sensitive_data.keys[0] = key_load_private_type(KEY_RSA1,
Ben Lindstromd0fca422001-03-26 13:44:06 +0000656 _PATH_HOST_KEY_FILE, "", NULL);
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000657 sensitive_data.keys[1] = key_load_private_type(KEY_DSA,
658 _PATH_HOST_DSA_KEY_FILE, "", NULL);
659 sensitive_data.keys[2] = key_load_private_type(KEY_RSA,
660 _PATH_HOST_RSA_KEY_FILE, "", NULL);
Ben Lindstromf9c48842002-06-11 16:37:51 +0000661 PRIV_END;
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000662
Ben Lindstrom5d35a2f2002-07-04 00:19:40 +0000663 if (options.hostbased_authentication == 1 &&
664 sensitive_data.keys[0] == NULL &&
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000665 sensitive_data.keys[1] == NULL &&
666 sensitive_data.keys[2] == NULL) {
667 sensitive_data.keys[1] = key_load_public(
668 _PATH_HOST_DSA_KEY_FILE, NULL);
669 sensitive_data.keys[2] = key_load_public(
670 _PATH_HOST_RSA_KEY_FILE, NULL);
671 sensitive_data.external_keysign = 1;
672 }
Damien Miller95def091999-11-25 00:26:21 +1100673 }
Damien Miller5428f641999-11-25 11:54:57 +1100674 /*
675 * Get rid of any extra privileges that we may have. We will no
676 * longer need them. Also, extra privileges could make it very hard
677 * to read identity files and other non-world-readable files from the
678 * user's home directory if it happens to be on a NFS volume where
679 * root is mapped to nobody.
680 */
Darren Tucker25f60a72004-08-15 17:23:34 +1000681 if (original_effective_uid == 0) {
682 PRIV_START;
683 permanently_set_uid(pw);
684 }
Damien Miller95def091999-11-25 00:26:21 +1100685
Damien Miller5428f641999-11-25 11:54:57 +1100686 /*
687 * Now that we are back to our own permissions, create ~/.ssh
688 * directory if it doesn\'t already exist.
689 */
Ben Lindstrom930b14a2001-08-15 23:19:21 +0000690 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 +1100691 if (stat(buf, &st) < 0)
Damien Millerbe484b52000-07-15 14:14:16 +1000692 if (mkdir(buf, 0700) < 0)
Damien Miller95def091999-11-25 00:26:21 +1100693 error("Could not create directory '%.200s'.", buf);
694
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000695 /* load options.identity_files */
696 load_public_identity_files();
697
698 /* Expand ~ in known host file names. */
699 /* XXX mem-leaks: */
Damien Miller0bc1bd82000-11-13 22:57:25 +1100700 options.system_hostfile =
701 tilde_expand_filename(options.system_hostfile, original_real_uid);
702 options.user_hostfile =
703 tilde_expand_filename(options.user_hostfile, original_real_uid);
704 options.system_hostfile2 =
705 tilde_expand_filename(options.system_hostfile2, original_real_uid);
706 options.user_hostfile2 =
707 tilde_expand_filename(options.user_hostfile2, original_real_uid);
Damien Miller95def091999-11-25 00:26:21 +1100708
Damien Miller07cd5892001-11-12 10:52:03 +1100709 signal(SIGPIPE, SIG_IGN); /* ignore SIGPIPE early */
710
Damien Miller95def091999-11-25 00:26:21 +1100711 /* Log into the remote system. This never returns if the login fails. */
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000712 ssh_login(&sensitive_data, host, (struct sockaddr *)&hostaddr, pw);
Damien Miller95def091999-11-25 00:26:21 +1100713
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000714 /* We no longer need the private host keys. Clear them now. */
715 if (sensitive_data.nkeys != 0) {
716 for (i = 0; i < sensitive_data.nkeys; i++) {
717 if (sensitive_data.keys[i] != NULL) {
718 /* Destroys contents safely */
719 debug3("clear hostkey %d", i);
720 key_free(sensitive_data.keys[i]);
721 sensitive_data.keys[i] = NULL;
722 }
723 }
724 xfree(sensitive_data.keys);
725 }
Ben Lindstroma6c8a8d2001-08-06 21:42:00 +0000726 for (i = 0; i < options.num_identity_files; i++) {
727 if (options.identity_files[i]) {
728 xfree(options.identity_files[i]);
729 options.identity_files[i] = NULL;
730 }
731 if (options.identity_keys[i]) {
732 key_free(options.identity_keys[i]);
733 options.identity_keys[i] = NULL;
734 }
735 }
Damien Miller95def091999-11-25 00:26:21 +1100736
Damien Miller1383bd82000-04-06 12:32:37 +1000737 exit_status = compat20 ? ssh_session2() : ssh_session();
738 packet_close();
Damien Miller8c4e18a2002-09-19 12:05:02 +1000739
Damien Miller0e220db2004-06-15 10:34:08 +1000740 if (options.control_path != NULL && control_fd != -1)
741 unlink(options.control_path);
742
Damien Miller8c4e18a2002-09-19 12:05:02 +1000743 /*
Damien Millera8e06ce2003-11-21 23:48:55 +1100744 * Send SIGHUP to proxy command if used. We don't wait() in
Damien Miller8c4e18a2002-09-19 12:05:02 +1000745 * case it hangs and instead rely on init to reap the child
746 */
747 if (proxy_command_pid > 1)
748 kill(proxy_command_pid, SIGHUP);
749
Damien Miller1383bd82000-04-06 12:32:37 +1000750 return exit_status;
751}
752
Ben Lindstrombba81212001-06-25 05:01:22 +0000753static void
Damien Miller0bc1bd82000-11-13 22:57:25 +1100754ssh_init_forwarding(void)
755{
Kevin Steves12057502001-02-05 14:54:34 +0000756 int success = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100757 int i;
Kevin Steves12057502001-02-05 14:54:34 +0000758
Damien Miller0bc1bd82000-11-13 22:57:25 +1100759 /* Initiate local TCP/IP port forwardings. */
760 for (i = 0; i < options.num_local_forwards; i++) {
Damien Millerf91ee4c2005-03-01 21:24:33 +1100761 debug("Local connections to %.200s:%d forwarded to remote "
762 "address %.200s:%d",
Darren Tucker47eede72005-03-14 23:08:12 +1100763 (options.local_forwards[i].listen_host == NULL) ?
764 (options.gateway_ports ? "*" : "LOCALHOST") :
Damien Millerf91ee4c2005-03-01 21:24:33 +1100765 options.local_forwards[i].listen_host,
766 options.local_forwards[i].listen_port,
767 options.local_forwards[i].connect_host,
768 options.local_forwards[i].connect_port);
Damien Millerb16461c2002-01-22 23:29:22 +1100769 success += channel_setup_local_fwd_listener(
Damien Millerf91ee4c2005-03-01 21:24:33 +1100770 options.local_forwards[i].listen_host,
771 options.local_forwards[i].listen_port,
772 options.local_forwards[i].connect_host,
773 options.local_forwards[i].connect_port,
Damien Miller0bc1bd82000-11-13 22:57:25 +1100774 options.gateway_ports);
775 }
Kevin Steves12057502001-02-05 14:54:34 +0000776 if (i > 0 && success == 0)
777 error("Could not request local forwarding.");
Damien Miller0bc1bd82000-11-13 22:57:25 +1100778
779 /* Initiate remote TCP/IP port forwardings. */
780 for (i = 0; i < options.num_remote_forwards; i++) {
Damien Millerf91ee4c2005-03-01 21:24:33 +1100781 debug("Remote connections from %.200s:%d forwarded to "
782 "local address %.200s:%d",
Darren Tucker73ba4372005-03-31 21:51:54 +1000783 (options.remote_forwards[i].listen_host == NULL) ?
784 (options.gateway_ports ? "*" : "LOCALHOST") :
Damien Millerf91ee4c2005-03-01 21:24:33 +1100785 options.remote_forwards[i].listen_host,
786 options.remote_forwards[i].listen_port,
787 options.remote_forwards[i].connect_host,
788 options.remote_forwards[i].connect_port);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100789 channel_request_remote_forwarding(
Damien Millerf91ee4c2005-03-01 21:24:33 +1100790 options.remote_forwards[i].listen_host,
791 options.remote_forwards[i].listen_port,
792 options.remote_forwards[i].connect_host,
793 options.remote_forwards[i].connect_port);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100794 }
795}
796
Ben Lindstrombba81212001-06-25 05:01:22 +0000797static void
Damien Miller0bc1bd82000-11-13 22:57:25 +1100798check_agent_present(void)
799{
800 if (options.forward_agent) {
801 /* Clear agent forwarding if we don\'t have an agent. */
Damien Miller789e95d2002-09-12 09:52:46 +1000802 if (!ssh_agent_present())
Damien Miller0bc1bd82000-11-13 22:57:25 +1100803 options.forward_agent = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100804 }
805}
806
Ben Lindstrombba81212001-06-25 05:01:22 +0000807static int
Damien Miller1383bd82000-04-06 12:32:37 +1000808ssh_session(void)
809{
810 int type;
Damien Miller1383bd82000-04-06 12:32:37 +1000811 int interactive = 0;
812 int have_tty = 0;
813 struct winsize ws;
Damien Miller1383bd82000-04-06 12:32:37 +1000814 char *cp;
Damien Miller17e7ed02005-06-17 12:54:33 +1000815 const char *display;
Damien Miller1383bd82000-04-06 12:32:37 +1000816
Damien Miller95def091999-11-25 00:26:21 +1100817 /* Enable compression if requested. */
818 if (options.compression) {
819 debug("Requesting compression at level %d.", options.compression_level);
820
821 if (options.compression_level < 1 || options.compression_level > 9)
822 fatal("Compression level must be from 1 (fast) to 9 (slow, best).");
823
824 /* Send the request. */
825 packet_start(SSH_CMSG_REQUEST_COMPRESSION);
826 packet_put_int(options.compression_level);
827 packet_send();
828 packet_write_wait();
Damien Millerdff50992002-01-22 23:16:32 +1100829 type = packet_read();
Damien Miller95def091999-11-25 00:26:21 +1100830 if (type == SSH_SMSG_SUCCESS)
831 packet_start_compression(options.compression_level);
832 else if (type == SSH_SMSG_FAILURE)
Damien Miller996acd22003-04-09 20:59:48 +1000833 logit("Warning: Remote host refused compression.");
Damien Miller95def091999-11-25 00:26:21 +1100834 else
835 packet_disconnect("Protocol error waiting for compression response.");
836 }
837 /* Allocate a pseudo tty if appropriate. */
838 if (tty_flag) {
839 debug("Requesting pty.");
840
841 /* Start the packet. */
842 packet_start(SSH_CMSG_REQUEST_PTY);
843
844 /* Store TERM in the packet. There is no limit on the
845 length of the string. */
846 cp = getenv("TERM");
847 if (!cp)
848 cp = "";
Ben Lindstrom664408d2001-06-09 01:42:01 +0000849 packet_put_cstring(cp);
Damien Miller95def091999-11-25 00:26:21 +1100850
851 /* Store window size in the packet. */
852 if (ioctl(fileno(stdin), TIOCGWINSZ, &ws) < 0)
853 memset(&ws, 0, sizeof(ws));
854 packet_put_int(ws.ws_row);
855 packet_put_int(ws.ws_col);
856 packet_put_int(ws.ws_xpixel);
857 packet_put_int(ws.ws_ypixel);
858
859 /* Store tty modes in the packet. */
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000860 tty_make_modes(fileno(stdin), NULL);
Damien Miller95def091999-11-25 00:26:21 +1100861
862 /* Send the packet, and wait for it to leave. */
863 packet_send();
864 packet_write_wait();
865
866 /* Read response from the server. */
Damien Millerdff50992002-01-22 23:16:32 +1100867 type = packet_read();
Damien Miller450a7a12000-03-26 13:04:51 +1000868 if (type == SSH_SMSG_SUCCESS) {
Damien Miller95def091999-11-25 00:26:21 +1100869 interactive = 1;
Damien Miller1383bd82000-04-06 12:32:37 +1000870 have_tty = 1;
Damien Miller450a7a12000-03-26 13:04:51 +1000871 } else if (type == SSH_SMSG_FAILURE)
Damien Miller996acd22003-04-09 20:59:48 +1000872 logit("Warning: Remote host failed or refused to allocate a pseudo tty.");
Damien Miller95def091999-11-25 00:26:21 +1100873 else
874 packet_disconnect("Protocol error waiting for pty request response.");
875 }
876 /* Request X11 forwarding if enabled and DISPLAY is set. */
Damien Miller17e7ed02005-06-17 12:54:33 +1000877 display = getenv("DISPLAY");
878 if (options.forward_x11 && display != NULL) {
Ben Lindstrom4a4bd712001-12-06 17:45:19 +0000879 char *proto, *data;
Damien Millerbd483e72000-04-30 10:00:53 +1000880 /* Get reasonable local authentication information. */
Damien Miller17e7ed02005-06-17 12:54:33 +1000881 client_x11_get_proto(display, options.xauth_location,
882 options.forward_x11_trusted, &proto, &data);
Damien Millerbd483e72000-04-30 10:00:53 +1000883 /* Request forwarding with authentication spoofing. */
Damien Miller95def091999-11-25 00:26:21 +1100884 debug("Requesting X11 forwarding with authentication spoofing.");
Damien Miller17e7ed02005-06-17 12:54:33 +1000885 x11_request_forwarding_with_spoofing(0, display, proto, data);
Damien Miller95def091999-11-25 00:26:21 +1100886
887 /* Read response from the server. */
Damien Millerdff50992002-01-22 23:16:32 +1100888 type = packet_read();
Damien Miller95def091999-11-25 00:26:21 +1100889 if (type == SSH_SMSG_SUCCESS) {
Damien Miller95def091999-11-25 00:26:21 +1100890 interactive = 1;
Damien Millerbd483e72000-04-30 10:00:53 +1000891 } else if (type == SSH_SMSG_FAILURE) {
Damien Miller996acd22003-04-09 20:59:48 +1000892 logit("Warning: Remote host denied X11 forwarding.");
Damien Millerbd483e72000-04-30 10:00:53 +1000893 } else {
Damien Miller95def091999-11-25 00:26:21 +1100894 packet_disconnect("Protocol error waiting for X11 forwarding");
Damien Millerbd483e72000-04-30 10:00:53 +1000895 }
Damien Miller95def091999-11-25 00:26:21 +1100896 }
897 /* Tell the packet module whether this is an interactive session. */
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000898 packet_set_interactive(interactive);
Damien Miller95def091999-11-25 00:26:21 +1100899
900 /* Request authentication agent forwarding if appropriate. */
Damien Miller0bc1bd82000-11-13 22:57:25 +1100901 check_agent_present();
902
Damien Miller95def091999-11-25 00:26:21 +1100903 if (options.forward_agent) {
904 debug("Requesting authentication agent forwarding.");
905 auth_request_forwarding();
906
907 /* Read response from the server. */
Damien Millerdff50992002-01-22 23:16:32 +1100908 type = packet_read();
Damien Miller48b03fc2002-01-22 23:11:40 +1100909 packet_check_eom();
Damien Miller95def091999-11-25 00:26:21 +1100910 if (type != SSH_SMSG_SUCCESS)
Damien Miller996acd22003-04-09 20:59:48 +1000911 logit("Warning: Remote host denied authentication agent forwarding.");
Damien Miller95def091999-11-25 00:26:21 +1100912 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000913
Damien Miller0bc1bd82000-11-13 22:57:25 +1100914 /* Initiate port forwardings. */
915 ssh_init_forwarding();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000916
Damien Miller5428f641999-11-25 11:54:57 +1100917 /* If requested, let ssh continue in the background. */
Damien Miller4af51302000-04-16 11:18:38 +1000918 if (fork_after_authentication_flag)
Damien Miller5428f641999-11-25 11:54:57 +1100919 if (daemon(1, 1) < 0)
920 fatal("daemon() failed: %.200s", strerror(errno));
921
922 /*
923 * If a command was specified on the command line, execute the
924 * command now. Otherwise request the server to start a shell.
925 */
Damien Miller95def091999-11-25 00:26:21 +1100926 if (buffer_len(&command) > 0) {
927 int len = buffer_len(&command);
928 if (len > 900)
929 len = 900;
Damien Miller5a6b4fe2001-12-21 14:56:54 +1100930 debug("Sending command: %.*s", len, (u_char *)buffer_ptr(&command));
Damien Miller95def091999-11-25 00:26:21 +1100931 packet_start(SSH_CMSG_EXEC_CMD);
932 packet_put_string(buffer_ptr(&command), buffer_len(&command));
933 packet_send();
934 packet_write_wait();
935 } else {
936 debug("Requesting shell.");
937 packet_start(SSH_CMSG_EXEC_SHELL);
938 packet_send();
939 packet_write_wait();
940 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000941
Damien Miller95def091999-11-25 00:26:21 +1100942 /* Enter the interactive session. */
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +0000943 return client_loop(have_tty, tty_flag ?
944 options.escape_char : SSH_ESCAPECHAR_NONE, 0);
Damien Miller1383bd82000-04-06 12:32:37 +1000945}
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000946
Ben Lindstrombba81212001-06-25 05:01:22 +0000947static void
Damien Miller0e220db2004-06-15 10:34:08 +1000948ssh_subsystem_reply(int type, u_int32_t seq, void *ctxt)
Ben Lindstrom1e7d3062001-02-09 02:36:43 +0000949{
950 int id, len;
951
952 id = packet_get_int();
953 len = buffer_len(&command);
Ben Lindstrom4040fe12001-03-05 06:52:57 +0000954 if (len > 900)
955 len = 900;
Damien Miller48b03fc2002-01-22 23:11:40 +1100956 packet_check_eom();
Ben Lindstrom1e7d3062001-02-09 02:36:43 +0000957 if (type == SSH2_MSG_CHANNEL_FAILURE)
958 fatal("Request for subsystem '%.*s' failed on channel %d",
Damien Miller5a6b4fe2001-12-21 14:56:54 +1100959 len, (u_char *)buffer_ptr(&command), id);
Ben Lindstrom1e7d3062001-02-09 02:36:43 +0000960}
961
Damien Miller2797f7f2002-04-23 21:09:44 +1000962void
Damien Miller509b0102003-12-17 16:33:10 +1100963client_global_request_reply_fwd(int type, u_int32_t seq, void *ctxt)
Damien Miller2797f7f2002-04-23 21:09:44 +1000964{
965 int i;
966
967 i = client_global_request_id++;
Damien Miller509b0102003-12-17 16:33:10 +1100968 if (i >= options.num_remote_forwards)
Damien Miller2797f7f2002-04-23 21:09:44 +1000969 return;
Damien Miller2797f7f2002-04-23 21:09:44 +1000970 debug("remote forward %s for: listen %d, connect %s:%d",
971 type == SSH2_MSG_REQUEST_SUCCESS ? "success" : "failure",
Damien Millerf91ee4c2005-03-01 21:24:33 +1100972 options.remote_forwards[i].listen_port,
973 options.remote_forwards[i].connect_host,
974 options.remote_forwards[i].connect_port);
Damien Miller2797f7f2002-04-23 21:09:44 +1000975 if (type == SSH2_MSG_REQUEST_FAILURE)
Damien Millerf91ee4c2005-03-01 21:24:33 +1100976 logit("Warning: remote port forwarding failed for listen "
977 "port %d", options.remote_forwards[i].listen_port);
Damien Miller2797f7f2002-04-23 21:09:44 +1000978}
979
Damien Miller0e220db2004-06-15 10:34:08 +1000980static void
981ssh_control_listener(void)
982{
983 struct sockaddr_un addr;
984 mode_t old_umask;
Damien Miller07b6ff12004-06-15 11:14:45 +1000985 int addr_len;
986
Damien Millerd14b1e72005-06-16 13:19:41 +1000987 if (options.control_path == NULL ||
988 options.control_master == SSHCTL_MASTER_NO)
Damien Miller0e220db2004-06-15 10:34:08 +1000989 return;
990
Damien Millerd14b1e72005-06-16 13:19:41 +1000991 debug("setting up multiplex master socket");
992
Damien Miller0e220db2004-06-15 10:34:08 +1000993 memset(&addr, '\0', sizeof(addr));
994 addr.sun_family = AF_UNIX;
Damien Miller07b6ff12004-06-15 11:14:45 +1000995 addr_len = offsetof(struct sockaddr_un, sun_path) +
Damien Miller0e220db2004-06-15 10:34:08 +1000996 strlen(options.control_path) + 1;
997
998 if (strlcpy(addr.sun_path, options.control_path,
999 sizeof(addr.sun_path)) >= sizeof(addr.sun_path))
1000 fatal("ControlPath too long");
1001
1002 if ((control_fd = socket(PF_UNIX, SOCK_STREAM, 0)) < 0)
1003 fatal("%s socket(): %s\n", __func__, strerror(errno));
1004
1005 old_umask = umask(0177);
Damien Miller07b6ff12004-06-15 11:14:45 +10001006 if (bind(control_fd, (struct sockaddr*)&addr, addr_len) == -1) {
Damien Miller0e220db2004-06-15 10:34:08 +10001007 control_fd = -1;
Damien Miller4f10e252005-05-04 15:33:09 +10001008 if (errno == EINVAL || errno == EADDRINUSE)
Damien Miller0e220db2004-06-15 10:34:08 +10001009 fatal("ControlSocket %s already exists",
1010 options.control_path);
1011 else
1012 fatal("%s bind(): %s\n", __func__, strerror(errno));
1013 }
1014 umask(old_umask);
1015
1016 if (listen(control_fd, 64) == -1)
1017 fatal("%s listen(): %s\n", __func__, strerror(errno));
1018
1019 set_nonblock(control_fd);
1020}
1021
Ben Lindstromf558cf62001-09-20 23:13:49 +00001022/* request pty/x11/agent/tcpfwd/shell for channel */
Ben Lindstrombba81212001-06-25 05:01:22 +00001023static void
Ben Lindstromf558cf62001-09-20 23:13:49 +00001024ssh_session2_setup(int id, void *arg)
Damien Miller1383bd82000-04-06 12:32:37 +10001025{
Damien Miller3756dce2004-06-18 01:17:29 +10001026 extern char **environ;
Damien Miller17e7ed02005-06-17 12:54:33 +10001027 const char *display;
Damien Miller0e220db2004-06-15 10:34:08 +10001028 int interactive = tty_flag;
Damien Miller17e7ed02005-06-17 12:54:33 +10001029
1030 display = getenv("DISPLAY");
1031 if (options.forward_x11 && display != NULL) {
Ben Lindstrom4a4bd712001-12-06 17:45:19 +00001032 char *proto, *data;
Damien Millerbd483e72000-04-30 10:00:53 +10001033 /* Get reasonable local authentication information. */
Damien Miller17e7ed02005-06-17 12:54:33 +10001034 client_x11_get_proto(display, options.xauth_location,
1035 options.forward_x11_trusted, &proto, &data);
Damien Millerbd483e72000-04-30 10:00:53 +10001036 /* Request forwarding with authentication spoofing. */
1037 debug("Requesting X11 forwarding with authentication spoofing.");
Damien Miller17e7ed02005-06-17 12:54:33 +10001038 x11_request_forwarding_with_spoofing(id, display, proto, data);
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001039 interactive = 1;
Damien Millerbd483e72000-04-30 10:00:53 +10001040 /* XXX wait for reply */
1041 }
1042
Damien Miller0bc1bd82000-11-13 22:57:25 +11001043 check_agent_present();
1044 if (options.forward_agent) {
1045 debug("Requesting authentication agent forwarding.");
1046 channel_request_start(id, "auth-agent-req@openssh.com", 0);
1047 packet_send();
1048 }
1049
Damien Miller0e220db2004-06-15 10:34:08 +10001050 client_session2_setup(id, tty_flag, subsystem_flag, getenv("TERM"),
Damien Miller3756dce2004-06-18 01:17:29 +10001051 NULL, fileno(stdin), &command, environ, &ssh_subsystem_reply);
Ben Lindstrom1e7d3062001-02-09 02:36:43 +00001052
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001053 packet_set_interactive(interactive);
Damien Miller1383bd82000-04-06 12:32:37 +10001054}
1055
Ben Lindstromf558cf62001-09-20 23:13:49 +00001056/* open new channel for a session */
Ben Lindstrombba81212001-06-25 05:01:22 +00001057static int
Ben Lindstromf558cf62001-09-20 23:13:49 +00001058ssh_session2_open(void)
Damien Miller1383bd82000-04-06 12:32:37 +10001059{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001060 Channel *c;
1061 int window, packetmax, in, out, err;
Damien Millerad833b32000-08-23 10:46:23 +10001062
Damien Millercaf6dd62000-08-29 11:33:50 +11001063 if (stdin_null_flag) {
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001064 in = open(_PATH_DEVNULL, O_RDONLY);
Damien Millercaf6dd62000-08-29 11:33:50 +11001065 } else {
1066 in = dup(STDIN_FILENO);
1067 }
1068 out = dup(STDOUT_FILENO);
1069 err = dup(STDERR_FILENO);
1070
1071 if (in < 0 || out < 0 || err < 0)
1072 fatal("dup() in/out/err failed");
1073
Damien Miller69b69aa2000-10-28 14:19:58 +11001074 /* enable nonblocking unless tty */
1075 if (!isatty(in))
1076 set_nonblock(in);
1077 if (!isatty(out))
1078 set_nonblock(out);
1079 if (!isatty(err))
1080 set_nonblock(err);
1081
Damien Millere4340be2000-09-16 13:29:08 +11001082 window = CHAN_SES_WINDOW_DEFAULT;
1083 packetmax = CHAN_SES_PACKET_DEFAULT;
Damien Miller19a59452002-02-19 15:20:57 +11001084 if (tty_flag) {
1085 window >>= 1;
1086 packetmax >>= 1;
Damien Miller1383bd82000-04-06 12:32:37 +10001087 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001088 c = channel_new(
Damien Miller1383bd82000-04-06 12:32:37 +10001089 "session", SSH_CHANNEL_OPENING, in, out, err,
Damien Millere4340be2000-09-16 13:29:08 +11001090 window, packetmax, CHAN_EXTENDED_WRITE,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001091 "client-session", /*nonblock*/0);
Damien Miller1383bd82000-04-06 12:32:37 +10001092
Ben Lindstromf558cf62001-09-20 23:13:49 +00001093 debug3("ssh_session2_open: channel_new: %d", c->self);
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001094
Ben Lindstrom5ec26452001-06-09 00:18:51 +00001095 channel_send_open(c->self);
Ben Lindstromf558cf62001-09-20 23:13:49 +00001096 if (!no_shell_flag)
Damien Miller0e220db2004-06-15 10:34:08 +10001097 channel_register_confirm(c->self, ssh_session2_setup, NULL);
Damien Miller1383bd82000-04-06 12:32:37 +10001098
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001099 return c->self;
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001100}
1101
Ben Lindstrombba81212001-06-25 05:01:22 +00001102static int
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001103ssh_session2(void)
1104{
Ben Lindstromf558cf62001-09-20 23:13:49 +00001105 int id = -1;
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001106
1107 /* XXX should be pre-session */
1108 ssh_init_forwarding();
Damien Miller0e220db2004-06-15 10:34:08 +10001109 ssh_control_listener();
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001110
Ben Lindstromf558cf62001-09-20 23:13:49 +00001111 if (!no_shell_flag || (datafellows & SSH_BUG_DUMMYCHAN))
1112 id = ssh_session2_open();
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001113
1114 /* If requested, let ssh continue in the background. */
1115 if (fork_after_authentication_flag)
1116 if (daemon(1, 1) < 0)
1117 fatal("daemon() failed: %.200s", strerror(errno));
1118
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +00001119 return client_loop(tty_flag, tty_flag ?
1120 options.escape_char : SSH_ESCAPECHAR_NONE, id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001121}
Damien Miller0bc1bd82000-11-13 22:57:25 +11001122
Ben Lindstrombba81212001-06-25 05:01:22 +00001123static void
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001124load_public_identity_files(void)
1125{
1126 char *filename;
Ben Lindstrom711b04a2001-08-06 21:12:42 +00001127 int i = 0;
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001128 Key *public;
Ben Lindstrom711b04a2001-08-06 21:12:42 +00001129#ifdef SMARTCARD
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001130 Key **keys;
1131
Ben Lindstromf7db3bb2001-08-06 21:35:51 +00001132 if (options.smartcard_device != NULL &&
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001133 options.num_identity_files < SSH_MAX_IDENTITY_FILES &&
1134 (keys = sc_get_keys(options.smartcard_device, NULL)) != NULL ) {
1135 int count = 0;
1136 for (i = 0; keys[i] != NULL; i++) {
1137 count++;
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001138 memmove(&options.identity_files[1], &options.identity_files[0],
1139 sizeof(char *) * (SSH_MAX_IDENTITY_FILES - 1));
1140 memmove(&options.identity_keys[1], &options.identity_keys[0],
1141 sizeof(Key *) * (SSH_MAX_IDENTITY_FILES - 1));
1142 options.num_identity_files++;
1143 options.identity_keys[0] = keys[i];
Damien Miller56a0bb02003-06-18 20:28:40 +10001144 options.identity_files[0] = sc_get_key_label(keys[i]);
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001145 }
Ben Lindstrom4f054602002-03-26 03:23:00 +00001146 if (options.num_identity_files > SSH_MAX_IDENTITY_FILES)
1147 options.num_identity_files = SSH_MAX_IDENTITY_FILES;
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001148 i = count;
1149 xfree(keys);
Ben Lindstrom711b04a2001-08-06 21:12:42 +00001150 }
Ben Lindstromffce1472001-08-06 21:57:31 +00001151#endif /* SMARTCARD */
Ben Lindstrom711b04a2001-08-06 21:12:42 +00001152 for (; i < options.num_identity_files; i++) {
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001153 filename = tilde_expand_filename(options.identity_files[i],
1154 original_real_uid);
Ben Lindstromd0fca422001-03-26 13:44:06 +00001155 public = key_load_public(filename, NULL);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001156 debug("identity file %s type %d", filename,
1157 public ? public->type : -1);
1158 xfree(options.identity_files[i]);
1159 options.identity_files[i] = filename;
1160 options.identity_keys[i] = public;
1161 }
1162}
Damien Miller0e220db2004-06-15 10:34:08 +10001163
1164static void
1165control_client_sighandler(int signo)
1166{
1167 control_client_terminate = signo;
1168}
1169
1170static void
1171control_client_sigrelay(int signo)
1172{
1173 if (control_server_pid > 1)
1174 kill(control_server_pid, signo);
1175}
1176
Darren Tucker365433f2004-06-22 12:29:23 +10001177static int
1178env_permitted(char *env)
1179{
1180 int i;
1181 char name[1024], *cp;
1182
1183 strlcpy(name, env, sizeof(name));
1184 if ((cp = strchr(name, '=')) == NULL)
1185 return (0);
1186
1187 *cp = '\0';
1188
1189 for (i = 0; i < options.num_send_env; i++)
1190 if (match_pattern(name, options.send_env[i]))
1191 return (1);
1192
1193 return (0);
1194}
1195
Damien Miller0e220db2004-06-15 10:34:08 +10001196static void
1197control_client(const char *path)
1198{
1199 struct sockaddr_un addr;
Darren Tucker39207a42004-11-05 20:19:51 +11001200 int i, r, fd, sock, exitval, num_env, addr_len;
Damien Miller0e220db2004-06-15 10:34:08 +10001201 Buffer m;
Darren Tucker7ebfc102004-11-07 20:06:19 +11001202 char *term;
Damien Miller3756dce2004-06-18 01:17:29 +10001203 extern char **environ;
Darren Tucker7ebfc102004-11-07 20:06:19 +11001204 u_int flags;
Darren Tuckerfc959702004-07-17 16:12:08 +10001205
Damien Millerd14b1e72005-06-16 13:19:41 +10001206 if (mux_command == 0)
1207 mux_command = SSHMUX_COMMAND_OPEN;
1208
1209 switch (options.control_master) {
1210 case SSHCTL_MASTER_AUTO:
1211 case SSHCTL_MASTER_AUTO_ASK:
1212 debug("auto-mux: Trying existing master");
1213 /* FALLTHROUGH */
1214 case SSHCTL_MASTER_NO:
1215 break;
1216 default:
1217 return;
1218 }
1219
Damien Miller0e220db2004-06-15 10:34:08 +10001220 memset(&addr, '\0', sizeof(addr));
1221 addr.sun_family = AF_UNIX;
Damien Miller07b6ff12004-06-15 11:14:45 +10001222 addr_len = offsetof(struct sockaddr_un, sun_path) +
Damien Miller0e220db2004-06-15 10:34:08 +10001223 strlen(path) + 1;
1224
1225 if (strlcpy(addr.sun_path, path,
1226 sizeof(addr.sun_path)) >= sizeof(addr.sun_path))
1227 fatal("ControlPath too long");
1228
1229 if ((sock = socket(PF_UNIX, SOCK_STREAM, 0)) < 0)
1230 fatal("%s socket(): %s", __func__, strerror(errno));
1231
Damien Millerdadfd4d2005-05-26 12:07:13 +10001232 if (connect(sock, (struct sockaddr*)&addr, addr_len) == -1) {
Darren Tucker0814d312005-06-01 23:08:51 +10001233 if (mux_command != SSHMUX_COMMAND_OPEN) {
1234 fatal("Control socket connect(%.100s): %s", path,
1235 strerror(errno));
1236 }
Damien Miller538c9b72005-05-26 12:11:28 +10001237 if (errno == ENOENT)
1238 debug("Control socket \"%.100s\" does not exist", path);
1239 else {
1240 error("Control socket connect(%.100s): %s", path,
1241 strerror(errno));
1242 }
Damien Millerdadfd4d2005-05-26 12:07:13 +10001243 close(sock);
1244 return;
1245 }
1246
1247 if (stdin_null_flag) {
1248 if ((fd = open(_PATH_DEVNULL, O_RDONLY)) == -1)
1249 fatal("open(/dev/null): %s", strerror(errno));
1250 if (dup2(fd, STDIN_FILENO) == -1)
1251 fatal("dup2: %s", strerror(errno));
1252 if (fd > STDERR_FILENO)
1253 close(fd);
1254 }
Damien Miller0e220db2004-06-15 10:34:08 +10001255
Darren Tucker7ebfc102004-11-07 20:06:19 +11001256 if ((term = getenv("TERM")) == NULL)
1257 term = "";
1258
1259 flags = 0;
1260 if (tty_flag)
1261 flags |= SSHMUX_FLAG_TTY;
1262 if (subsystem_flag)
1263 flags |= SSHMUX_FLAG_SUBSYS;
Damien Miller0e220db2004-06-15 10:34:08 +10001264
Damien Miller0e220db2004-06-15 10:34:08 +10001265 buffer_init(&m);
1266
Darren Tucker7ebfc102004-11-07 20:06:19 +11001267 /* Send our command to server */
1268 buffer_put_int(&m, mux_command);
1269 buffer_put_int(&m, flags);
1270 if (ssh_msg_send(sock, /* version */1, &m) == -1)
1271 fatal("%s: msg_send", __func__);
1272 buffer_clear(&m);
1273
1274 /* Get authorisation status and PID of controlee */
Damien Miller0e220db2004-06-15 10:34:08 +10001275 if (ssh_msg_recv(sock, &m) == -1)
1276 fatal("%s: msg_recv", __func__);
Darren Tucker7ebfc102004-11-07 20:06:19 +11001277 if (buffer_get_char(&m) != 1)
Damien Miller0e220db2004-06-15 10:34:08 +10001278 fatal("%s: wrong version", __func__);
Damien Miller23f07702004-06-18 01:19:03 +10001279 if (buffer_get_int(&m) != 1)
1280 fatal("Connection to master denied");
Damien Miller0e220db2004-06-15 10:34:08 +10001281 control_server_pid = buffer_get_int(&m);
1282
Damien Miller0e220db2004-06-15 10:34:08 +10001283 buffer_clear(&m);
Damien Miller0e220db2004-06-15 10:34:08 +10001284
Darren Tucker7ebfc102004-11-07 20:06:19 +11001285 switch (mux_command) {
1286 case SSHMUX_COMMAND_ALIVE_CHECK:
Darren Tucker47eede72005-03-14 23:08:12 +11001287 fprintf(stderr, "Master running (pid=%d)\r\n",
Darren Tucker7ebfc102004-11-07 20:06:19 +11001288 control_server_pid);
1289 exit(0);
1290 case SSHMUX_COMMAND_TERMINATE:
1291 fprintf(stderr, "Exit request sent.\r\n");
1292 exit(0);
1293 case SSHMUX_COMMAND_OPEN:
1294 /* continue below */
1295 break;
1296 default:
1297 fatal("silly mux_command %d", mux_command);
1298 }
1299
1300 /* SSHMUX_COMMAND_OPEN */
1301 buffer_put_cstring(&m, term);
Damien Miller0e220db2004-06-15 10:34:08 +10001302 buffer_append(&command, "\0", 1);
1303 buffer_put_cstring(&m, buffer_ptr(&command));
1304
Darren Tucker365433f2004-06-22 12:29:23 +10001305 if (options.num_send_env == 0 || environ == NULL) {
1306 buffer_put_int(&m, 0);
Darren Tuckerfc959702004-07-17 16:12:08 +10001307 } else {
Darren Tucker365433f2004-06-22 12:29:23 +10001308 /* Pass environment */
1309 num_env = 0;
1310 for (i = 0; environ[i] != NULL; i++)
1311 if (env_permitted(environ[i]))
1312 num_env++; /* Count */
Darren Tuckerfc959702004-07-17 16:12:08 +10001313
Darren Tucker365433f2004-06-22 12:29:23 +10001314 buffer_put_int(&m, num_env);
1315
Darren Tuckerb5bc1a62004-06-24 00:34:53 +10001316 for (i = 0; environ[i] != NULL && num_env >= 0; i++)
1317 if (env_permitted(environ[i])) {
1318 num_env--;
Darren Tucker365433f2004-06-22 12:29:23 +10001319 buffer_put_cstring(&m, environ[i]);
Darren Tuckerb5bc1a62004-06-24 00:34:53 +10001320 }
Darren Tucker365433f2004-06-22 12:29:23 +10001321 }
Damien Miller3756dce2004-06-18 01:17:29 +10001322
Darren Tucker7ebfc102004-11-07 20:06:19 +11001323 if (ssh_msg_send(sock, /* version */1, &m) == -1)
Damien Miller0e220db2004-06-15 10:34:08 +10001324 fatal("%s: msg_send", __func__);
1325
1326 mm_send_fd(sock, STDIN_FILENO);
1327 mm_send_fd(sock, STDOUT_FILENO);
1328 mm_send_fd(sock, STDERR_FILENO);
1329
1330 /* Wait for reply, so master has a chance to gather ttymodes */
1331 buffer_clear(&m);
1332 if (ssh_msg_recv(sock, &m) == -1)
1333 fatal("%s: msg_recv", __func__);
Darren Tucker7ebfc102004-11-07 20:06:19 +11001334 if (buffer_get_char(&m) != 1)
1335 fatal("%s: wrong version", __func__);
Damien Miller0e220db2004-06-15 10:34:08 +10001336 buffer_free(&m);
1337
Darren Tucker07336da2004-11-05 20:02:16 +11001338 signal(SIGHUP, control_client_sighandler);
Damien Miller0809e232004-06-18 22:20:57 +10001339 signal(SIGINT, control_client_sighandler);
1340 signal(SIGTERM, control_client_sighandler);
1341 signal(SIGWINCH, control_client_sigrelay);
1342
Damien Miller0e220db2004-06-15 10:34:08 +10001343 if (tty_flag)
1344 enter_raw_mode();
1345
1346 /* Stick around until the controlee closes the client_fd */
1347 exitval = 0;
1348 for (;!control_client_terminate;) {
1349 r = read(sock, &exitval, sizeof(exitval));
1350 if (r == 0) {
1351 debug2("Received EOF from master");
1352 break;
1353 }
1354 if (r > 0)
1355 debug2("Received exit status from master %d", exitval);
1356 if (r == -1 && errno != EINTR)
1357 fatal("%s: read %s", __func__, strerror(errno));
1358 }
1359
1360 if (control_client_terminate)
1361 debug2("Exiting on signal %d", control_client_terminate);
1362
1363 close(sock);
1364
1365 leave_raw_mode();
1366
1367 if (tty_flag && options.log_level != SYSLOG_LEVEL_QUIET)
1368 fprintf(stderr, "Connection to master closed.\r\n");
1369
1370 exit(exitval);
1371}