blob: 228afecf47d87922b652be84a9d189889db49053 [file] [log] [blame]
Damien Miller388f6fc2010-05-21 14:57:35 +10001/* $OpenBSD: ssh.c,v 1.338 2010/05/16 12:55:51 markus Exp $ */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002/*
Damien Miller95def091999-11-25 00:26:21 +11003 * Author: Tatu Ylonen <ylo@cs.hut.fi>
4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
5 * All rights reserved
Damien Miller95def091999-11-25 00:26:21 +11006 * Ssh client program. This program can be used to log into a remote machine.
7 * The software supports strong authentication, encryption, and forwarding
8 * of X11, TCP/IP, and authentication connections.
9 *
Damien Millere4340be2000-09-16 13:29:08 +110010 * As far as I am concerned, the code I have written for this software
11 * can be used freely for any purpose. Any derived versions of this
12 * software must be clearly marked as such, and if the derived work is
13 * incompatible with the protocol description in the RFC file, it must be
14 * called by a name other than "ssh" or "Secure Shell".
15 *
16 * Copyright (c) 1999 Niels Provos. All rights reserved.
Darren Tucker0a118da2003-10-15 15:54:32 +100017 * Copyright (c) 2000, 2001, 2002, 2003 Markus Friedl. All rights reserved.
Damien Millere4340be2000-09-16 13:29:08 +110018 *
19 * Modified to work with SSL by Niels Provos <provos@citi.umich.edu>
20 * in Canada (German citizen).
21 *
22 * Redistribution and use in source and binary forms, with or without
23 * modification, are permitted provided that the following conditions
24 * are met:
25 * 1. Redistributions of source code must retain the above copyright
26 * notice, this list of conditions and the following disclaimer.
27 * 2. Redistributions in binary form must reproduce the above copyright
28 * notice, this list of conditions and the following disclaimer in the
29 * documentation and/or other materials provided with the distribution.
30 *
31 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
32 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
33 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
34 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
35 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
36 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
37 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
38 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
39 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
40 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Damien Miller95def091999-11-25 00:26:21 +110041 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100042
43#include "includes.h"
Damien Millercd4223c2006-03-15 11:22:47 +110044
Damien Millerf17883e2006-03-15 11:45:54 +110045#include <sys/types.h>
46#ifdef HAVE_SYS_STAT_H
47# include <sys/stat.h>
48#endif
Damien Millercd4223c2006-03-15 11:22:47 +110049#include <sys/resource.h>
Damien Miller17e91c02006-03-15 11:28:34 +110050#include <sys/ioctl.h>
Darren Tucker199b1342009-07-06 07:16:56 +100051#include <sys/param.h>
Damien Millere3b60b52006-07-10 21:08:03 +100052#include <sys/socket.h>
Damien Miller03e20032006-03-15 11:16:59 +110053
Damien Millerc7b06362006-03-15 11:53:45 +110054#include <ctype.h>
Darren Tuckerba724052006-07-12 22:24:22 +100055#include <errno.h>
Damien Miller57cf6382006-07-10 21:13:46 +100056#include <fcntl.h>
Damien Millerb8fe89c2006-07-24 14:51:00 +100057#include <netdb.h>
Damien Miller6645e7a2006-03-15 14:42:54 +110058#ifdef HAVE_PATHS_H
Damien Miller03e20032006-03-15 11:16:59 +110059#include <paths.h>
Damien Miller6645e7a2006-03-15 14:42:54 +110060#endif
Damien Miller9f2abc42006-07-10 20:53:08 +100061#include <pwd.h>
Damien Miller6ff3cad2006-03-15 11:52:09 +110062#include <signal.h>
Damien Millerded319c2006-09-01 15:38:36 +100063#include <stdarg.h>
Damien Miller2d00e632006-07-24 13:53:19 +100064#include <stddef.h>
Damien Millera7a73ee2006-08-05 11:37:59 +100065#include <stdio.h>
Damien Millere7a1e5c2006-08-05 11:34:19 +100066#include <stdlib.h>
Damien Millere3476ed2006-07-24 14:13:33 +100067#include <string.h>
Damien Millere6b3b612006-07-24 14:01:23 +100068#include <unistd.h>
Damien Millereba71ba2000-04-29 23:57:08 +100069
Darren Tucker46aa3e02006-09-02 15:32:40 +100070#include <netinet/in.h>
71#include <arpa/inet.h>
72
Damien Millereba71ba2000-04-29 23:57:08 +100073#include <openssl/evp.h>
Damien Miller0bc1bd82000-11-13 22:57:25 +110074#include <openssl/err.h>
Darren Tuckerbfaaf962008-02-28 19:13:52 +110075#include "openbsd-compat/openssl-compat.h"
Damien Millerb84886b2008-05-19 15:05:07 +100076#include "openbsd-compat/sys-queue.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100077
Damien Millerd7834352006-08-05 12:39:39 +100078#include "xmalloc.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100079#include "ssh.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000080#include "ssh1.h"
Damien Miller1383bd82000-04-06 12:32:37 +100081#include "ssh2.h"
82#include "compat.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000083#include "cipher.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000084#include "packet.h"
85#include "buffer.h"
Ben Lindstromc7637672001-06-09 00:36:26 +000086#include "channels.h"
Damien Millereba71ba2000-04-29 23:57:08 +100087#include "key.h"
Damien Miller994cf142000-07-21 10:19:44 +100088#include "authfd.h"
Damien Millereba71ba2000-04-29 23:57:08 +100089#include "authfile.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000090#include "pathnames.h"
Damien Miller0e220db2004-06-15 10:34:08 +100091#include "dispatch.h"
Ben Lindstrombf555ba2001-01-18 02:04:35 +000092#include "clientloop.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000093#include "log.h"
94#include "readconf.h"
95#include "sshconnect.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000096#include "misc.h"
Ben Lindstrom06b33aa2001-02-15 03:01:59 +000097#include "kex.h"
98#include "mac.h"
Darren Tucker06f2bd82004-05-13 16:06:46 +100099#include "sshpty.h"
Darren Tucker46bc0752004-05-02 22:11:30 +1000100#include "match.h"
Damien Miller0e220db2004-06-15 10:34:08 +1000101#include "msg.h"
Darren Tucker25f60a72004-08-15 17:23:34 +1000102#include "uidswap.h"
Darren Tuckerf1de4e52010-01-08 16:54:59 +1100103#include "roaming.h"
Damien Millerb7576772006-07-10 20:23:39 +1000104#include "version.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000105
Damien Miller7ea845e2010-02-12 09:21:02 +1100106#ifdef ENABLE_PKCS11
107#include "ssh-pkcs11.h"
Ben Lindstrombcc18082001-08-06 21:59:25 +0000108#endif
Ben Lindstromc5b68002001-07-04 04:52:03 +0000109
Damien Miller3f905871999-11-15 17:10:57 +1100110extern char *__progname;
Damien Miller3f905871999-11-15 17:10:57 +1100111
Darren Tuckerd6173c02008-06-13 04:52:53 +1000112/* Flag indicating whether debug mode is on. May be set on the command line. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000113int debug_flag = 0;
114
Damien Miller78928792000-04-12 20:17:38 +1000115/* Flag indicating whether a tty should be allocated */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000116int tty_flag = 0;
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000117int no_tty_flag = 0;
118int force_tty_flag = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000119
Damien Miller1383bd82000-04-06 12:32:37 +1000120/* don't exec a shell */
121int no_shell_flag = 0;
Damien Miller1383bd82000-04-06 12:32:37 +1000122
Damien Miller5428f641999-11-25 11:54:57 +1100123/*
124 * Flag indicating that nothing should be read from stdin. This can be set
125 * on the command line.
126 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000127int stdin_null_flag = 0;
128
Damien Miller5428f641999-11-25 11:54:57 +1100129/*
130 * Flag indicating that ssh should fork after authentication. This is useful
Ben Lindstromf666fec2002-06-06 19:51:58 +0000131 * so that the passphrase can be entered manually, and then ssh goes to the
Damien Miller5428f641999-11-25 11:54:57 +1100132 * background.
133 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000134int fork_after_authentication_flag = 0;
135
Darren Tucker7ad8dd22010-01-12 19:40:27 +1100136/* forward stdio to remote host and port */
137char *stdio_forward_host = NULL;
138int stdio_forward_port = 0;
139
Damien Miller5428f641999-11-25 11:54:57 +1100140/*
141 * General data structure for command line options and options configurable
142 * in configuration files. See readconf.h.
143 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000144Options options;
145
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000146/* optional user configfile */
147char *config = NULL;
148
Damien Miller5428f641999-11-25 11:54:57 +1100149/*
150 * Name of the host we are connecting to. This is the name given on the
151 * command line, or the HostName specified for the user-supplied name in a
152 * configuration file.
153 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000154char *host;
155
156/* socket address the host resolves to */
Damien Miller34132e52000-01-14 15:45:46 +1100157struct sockaddr_storage hostaddr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000158
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000159/* Private host keys. */
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000160Sensitive sensitive_data;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000161
162/* Original real UID. */
163uid_t original_real_uid;
Ben Lindstromf9c48842002-06-11 16:37:51 +0000164uid_t original_effective_uid;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000165
Damien Miller1383bd82000-04-06 12:32:37 +1000166/* command to be executed */
167Buffer command;
168
Damien Miller832562e2001-01-30 09:30:01 +1100169/* Should we execute a command or invoke a subsystem? */
170int subsystem_flag = 0;
171
Damien Miller2797f7f2002-04-23 21:09:44 +1000172/* # of replies received for global requests */
Darren Tucker9f407c42008-06-13 04:50:27 +1000173static int remote_forward_confirms_received = 0;
Damien Miller2797f7f2002-04-23 21:09:44 +1000174
Damien Miller8c4e18a2002-09-19 12:05:02 +1000175/* pid of proxycommand child process */
176pid_t proxy_command_pid = 0;
177
Damien Millerb1cbfa22008-05-19 16:00:08 +1000178/* mux.c */
179extern int muxserver_sock;
180extern u_int muxclient_command;
Damien Miller0e220db2004-06-15 10:34:08 +1000181
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000182/* Prints a help message to the user. This function never returns. */
183
Ben Lindstrombba81212001-06-25 05:01:22 +0000184static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000185usage(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000186{
Damien Miller50955102004-03-22 09:34:58 +1100187 fprintf(stderr,
Damien Millerc13c3ee2008-11-03 19:23:28 +1100188"usage: ssh [-1246AaCfgKkMNnqsTtVvXxYy] [-b bind_address] [-c cipher_spec]\n"
Darren Tucker895d6982005-10-03 18:18:05 +1000189" [-D [bind_address:]port] [-e escape_char] [-F configfile]\n"
Damien Miller048dc932010-02-12 09:22:04 +1100190" [-I pkcs11] [-i identity_file]\n"
191" [-L [bind_address:]port:host:hostport]\n"
Damien Millerf91ee4c2005-03-01 21:24:33 +1100192" [-l login_name] [-m mac_spec] [-O ctl_cmd] [-o option] [-p port]\n"
Damien Miller02faece2005-03-02 12:04:32 +1100193" [-R [bind_address:]port:host:hostport] [-S ctl_path]\n"
Darren Tucker7ad8dd22010-01-12 19:40:27 +1100194" [-W host:port] [-w local_tun[:remote_tun]]\n"
195" [user@]hostname [command]\n"
Damien Miller50955102004-03-22 09:34:58 +1100196 );
Darren Tuckere9a9b712005-12-20 16:15:51 +1100197 exit(255);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000198}
199
Ben Lindstrombba81212001-06-25 05:01:22 +0000200static int ssh_session(void);
201static int ssh_session2(void);
202static void load_public_identity_files(void);
Damien Millerb1cbfa22008-05-19 16:00:08 +1000203
204/* from muxclient.c */
205void muxclient(const char *);
206void muxserver_listen(void);
Damien Miller1383bd82000-04-06 12:32:37 +1000207
Damien Miller95def091999-11-25 00:26:21 +1100208/*
209 * Main program for the ssh client.
210 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000211int
212main(int ac, char **av)
213{
Darren Tucker199b1342009-07-06 07:16:56 +1000214 int i, r, opt, exit_status, use_syslog;
215 char *p, *cp, *line, *argv0, buf[MAXPATHLEN];
Damien Miller95def091999-11-25 00:26:21 +1100216 struct stat st;
Ben Lindstrom086cf212001-03-05 05:56:40 +0000217 struct passwd *pw;
Damien Miller67bd0622007-09-17 12:06:57 +1000218 int dummy, timeout_ms;
Ben Lindstrom5ccf63a2001-09-24 20:00:10 +0000219 extern int optind, optreset;
Damien Miller4f8e6692001-07-14 13:22:53 +1000220 extern char *optarg;
Damien Miller9651fe62005-06-26 08:55:25 +1000221 struct servent *sp;
Damien Millerf91ee4c2005-03-01 21:24:33 +1100222 Forward fwd;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000223
Darren Tuckerce321d82005-10-03 18:11:24 +1000224 /* Ensure that fds 0, 1 and 2 are open or directed to /dev/null */
225 sanitise_stdfd();
226
Damien Miller59d3d5b2003-08-22 09:34:41 +1000227 __progname = ssh_get_progname(av[0]);
Damien Millerf9b625c2000-07-09 22:42:32 +1000228 init_rng();
229
Damien Miller5428f641999-11-25 11:54:57 +1100230 /*
231 * Save the original real uid. It will be needed later (uid-swapping
232 * may clobber the real uid).
233 */
Damien Miller95def091999-11-25 00:26:21 +1100234 original_real_uid = getuid();
235 original_effective_uid = geteuid();
Damien Millera8e06ce2003-11-21 23:48:55 +1100236
Damien Miller50b9a602002-09-04 16:50:06 +1000237 /*
238 * Use uid-swapping to give up root privileges for the duration of
239 * option processing. We will re-instantiate the rights when we are
240 * ready to create the privileged port, and will permanently drop
241 * them when the port has been created (actually, when the connection
242 * has been made, as we may need to create the port several times).
243 */
244 PRIV_END;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000245
Damien Miller05dd7952000-10-01 00:42:48 +1100246#ifdef HAVE_SETRLIMIT
Damien Miller95def091999-11-25 00:26:21 +1100247 /* If we are installed setuid root be careful to not drop core. */
248 if (original_real_uid != original_effective_uid) {
249 struct rlimit rlim;
250 rlim.rlim_cur = rlim.rlim_max = 0;
251 if (setrlimit(RLIMIT_CORE, &rlim) < 0)
252 fatal("setrlimit failed: %.100s", strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000253 }
Damien Millerbac2d8a2000-09-05 16:13:06 +1100254#endif
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000255 /* Get user data. */
256 pw = getpwuid(original_real_uid);
257 if (!pw) {
Damien Miller996acd22003-04-09 20:59:48 +1000258 logit("You don't exist, go away!");
Darren Tuckere9a9b712005-12-20 16:15:51 +1100259 exit(255);
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000260 }
261 /* Take a copy of the returned structure. */
262 pw = pwcopy(pw);
263
Damien Miller5428f641999-11-25 11:54:57 +1100264 /*
Damien Miller5428f641999-11-25 11:54:57 +1100265 * Set our umask to something reasonable, as some files are created
266 * with the default umask. This will make them world-readable but
267 * writable only by the owner, which is ok for all files for which we
268 * don't set the modes explicitly.
269 */
Damien Miller95def091999-11-25 00:26:21 +1100270 umask(022);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000271
Darren Tuckerd6173c02008-06-13 04:52:53 +1000272 /*
273 * Initialize option structure to indicate that no values have been
274 * set.
275 */
Damien Miller95def091999-11-25 00:26:21 +1100276 initialize_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000277
Damien Miller95def091999-11-25 00:26:21 +1100278 /* Parse command-line arguments. */
279 host = NULL;
Damien Millere272a5b2008-11-03 19:22:37 +1100280 use_syslog = 0;
Darren Tucker72efd742009-06-21 17:48:00 +1000281 argv0 = av[0];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000282
Damien Miller2ecb6bd2006-03-15 12:03:53 +1100283 again:
Darren Tuckerd6173c02008-06-13 04:52:53 +1000284 while ((opt = getopt(ac, av, "1246ab:c:e:fgi:kl:m:no:p:qstvx"
Darren Tucker7ad8dd22010-01-12 19:40:27 +1100285 "ACD:F:I:KL:MNO:PR:S:TVw:W:XYy")) != -1) {
Damien Miller95def091999-11-25 00:26:21 +1100286 switch (opt) {
Ben Lindstrom1e7d3062001-02-09 02:36:43 +0000287 case '1':
288 options.protocol = SSH_PROTO_1;
289 break;
Damien Miller4af51302000-04-16 11:18:38 +1000290 case '2':
291 options.protocol = SSH_PROTO_2;
292 break;
Damien Miller34132e52000-01-14 15:45:46 +1100293 case '4':
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000294 options.address_family = AF_INET;
Damien Miller34132e52000-01-14 15:45:46 +1100295 break;
Damien Miller34132e52000-01-14 15:45:46 +1100296 case '6':
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000297 options.address_family = AF_INET6;
Damien Miller34132e52000-01-14 15:45:46 +1100298 break;
Damien Miller95def091999-11-25 00:26:21 +1100299 case 'n':
300 stdin_null_flag = 1;
301 break;
Damien Miller95def091999-11-25 00:26:21 +1100302 case 'f':
303 fork_after_authentication_flag = 1;
304 stdin_null_flag = 1;
305 break;
Damien Miller95def091999-11-25 00:26:21 +1100306 case 'x':
307 options.forward_x11 = 0;
308 break;
Damien Miller95def091999-11-25 00:26:21 +1100309 case 'X':
310 options.forward_x11 = 1;
311 break;
Damien Millere272a5b2008-11-03 19:22:37 +1100312 case 'y':
313 use_syslog = 1;
314 break;
Darren Tucker0a118da2003-10-15 15:54:32 +1000315 case 'Y':
316 options.forward_x11 = 1;
317 options.forward_x11_trusted = 1;
318 break;
Damien Miller95def091999-11-25 00:26:21 +1100319 case 'g':
320 options.gateway_ports = 1;
321 break;
Darren Tucker7ebfc102004-11-07 20:06:19 +1100322 case 'O':
Damien Millere1537f92010-01-26 13:26:22 +1100323 if (stdio_forward_host != NULL)
324 fatal("Cannot specify multiplexing "
325 "command with -W");
326 else if (muxclient_command != 0)
327 fatal("Multiplexing command already specified");
Darren Tucker7ebfc102004-11-07 20:06:19 +1100328 if (strcmp(optarg, "check") == 0)
Damien Millerb1cbfa22008-05-19 16:00:08 +1000329 muxclient_command = SSHMUX_COMMAND_ALIVE_CHECK;
Damien Miller388f6fc2010-05-21 14:57:35 +1000330 else if (strcmp(optarg, "forward") == 0)
331 muxclient_command = SSHMUX_COMMAND_FORWARD;
Darren Tucker7ebfc102004-11-07 20:06:19 +1100332 else if (strcmp(optarg, "exit") == 0)
Damien Millerb1cbfa22008-05-19 16:00:08 +1000333 muxclient_command = SSHMUX_COMMAND_TERMINATE;
Darren Tucker7ebfc102004-11-07 20:06:19 +1100334 else
335 fatal("Invalid multiplex command.");
336 break;
Damien Miller147bba32002-09-04 16:46:06 +1000337 case 'P': /* deprecated */
Damien Miller95def091999-11-25 00:26:21 +1100338 options.use_privileged_port = 0;
339 break;
Damien Miller95def091999-11-25 00:26:21 +1100340 case 'a':
341 options.forward_agent = 0;
342 break;
Damien Millerb1715dc2000-05-30 13:44:51 +1000343 case 'A':
344 options.forward_agent = 1;
345 break;
Damien Miller95def091999-11-25 00:26:21 +1100346 case 'k':
Damien Millere0113cc2003-11-24 13:10:09 +1100347 options.gss_deleg_creds = 0;
Damien Miller95def091999-11-25 00:26:21 +1100348 break;
Darren Tucker415bddc2007-06-12 23:43:16 +1000349 case 'K':
350 options.gss_authentication = 1;
351 options.gss_deleg_creds = 1;
352 break;
Damien Miller95def091999-11-25 00:26:21 +1100353 case 'i':
354 if (stat(optarg, &st) < 0) {
Damien Millerf4614452001-07-14 12:18:10 +1000355 fprintf(stderr, "Warning: Identity file %s "
Damien Miller3eb48b62005-03-01 21:15:46 +1100356 "not accessible: %s.\n", optarg,
357 strerror(errno));
Damien Miller95def091999-11-25 00:26:21 +1100358 break;
359 }
Damien Millerf4614452001-07-14 12:18:10 +1000360 if (options.num_identity_files >=
361 SSH_MAX_IDENTITY_FILES)
362 fatal("Too many identity files specified "
363 "(max %d)", SSH_MAX_IDENTITY_FILES);
364 options.identity_files[options.num_identity_files++] =
365 xstrdup(optarg);
Damien Miller95def091999-11-25 00:26:21 +1100366 break;
Ben Lindstromc5b68002001-07-04 04:52:03 +0000367 case 'I':
Damien Miller7ea845e2010-02-12 09:21:02 +1100368#ifdef ENABLE_PKCS11
369 options.pkcs11_provider = xstrdup(optarg);
Ben Lindstrombcc18082001-08-06 21:59:25 +0000370#else
Damien Miller7ea845e2010-02-12 09:21:02 +1100371 fprintf(stderr, "no support for PKCS#11.\n");
Ben Lindstrombcc18082001-08-06 21:59:25 +0000372#endif
Ben Lindstromc5b68002001-07-04 04:52:03 +0000373 break;
Damien Miller95def091999-11-25 00:26:21 +1100374 case 't':
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000375 if (tty_flag)
376 force_tty_flag = 1;
Damien Miller95def091999-11-25 00:26:21 +1100377 tty_flag = 1;
378 break;
Damien Miller95def091999-11-25 00:26:21 +1100379 case 'v':
Darren Tuckere98dfa32003-07-19 19:54:31 +1000380 if (debug_flag == 0) {
Damien Millere4340be2000-09-16 13:29:08 +1100381 debug_flag = 1;
382 options.log_level = SYSLOG_LEVEL_DEBUG1;
Darren Tuckere98dfa32003-07-19 19:54:31 +1000383 } else {
384 if (options.log_level < SYSLOG_LEVEL_DEBUG3)
385 options.log_level++;
Damien Millere4340be2000-09-16 13:29:08 +1100386 break;
Darren Tuckere98dfa32003-07-19 19:54:31 +1000387 }
Darren Tuckere9bf9842004-11-05 20:05:32 +1100388 /* FALLTHROUGH */
Damien Miller95def091999-11-25 00:26:21 +1100389 case 'V':
Damien Miller0c889cd2004-03-22 09:36:00 +1100390 fprintf(stderr, "%s, %s\n",
Damien Miller2aa6d3c2004-09-12 16:53:04 +1000391 SSH_RELEASE, SSLeay_version(SSLEAY_VERSION));
Damien Miller95def091999-11-25 00:26:21 +1100392 if (opt == 'V')
393 exit(0);
Damien Miller95def091999-11-25 00:26:21 +1100394 break;
Damien Millerd27b9472005-12-13 19:29:02 +1100395 case 'w':
Damien Miller7b58e802005-12-13 19:33:19 +1100396 if (options.tun_open == -1)
397 options.tun_open = SSH_TUNMODE_DEFAULT;
Damien Millerd27b9472005-12-13 19:29:02 +1100398 options.tun_local = a2tun(optarg, &options.tun_remote);
Damien Miller7b58e802005-12-13 19:33:19 +1100399 if (options.tun_local == SSH_TUNID_ERR) {
Darren Tuckerd6173c02008-06-13 04:52:53 +1000400 fprintf(stderr,
401 "Bad tun device '%s'\n", optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100402 exit(255);
Damien Millerd27b9472005-12-13 19:29:02 +1100403 }
404 break;
Darren Tucker7ad8dd22010-01-12 19:40:27 +1100405 case 'W':
Damien Millere1537f92010-01-26 13:26:22 +1100406 if (stdio_forward_host != NULL)
407 fatal("stdio forward already specified");
408 if (muxclient_command != 0)
409 fatal("Cannot specify stdio forward with -O");
Darren Tucker7ad8dd22010-01-12 19:40:27 +1100410 if (parse_forward(&fwd, optarg, 1, 0)) {
411 stdio_forward_host = fwd.listen_host;
412 stdio_forward_port = fwd.listen_port;
413 xfree(fwd.connect_host);
414 } else {
415 fprintf(stderr,
416 "Bad stdio forwarding specification '%s'\n",
417 optarg);
418 exit(255);
419 }
420 no_tty_flag = 1;
421 no_shell_flag = 1;
422 options.clear_forwardings = 1;
423 options.exit_on_forward_failure = 1;
424 break;
Damien Miller95def091999-11-25 00:26:21 +1100425 case 'q':
426 options.log_level = SYSLOG_LEVEL_QUIET;
427 break;
Damien Miller95def091999-11-25 00:26:21 +1100428 case 'e':
429 if (optarg[0] == '^' && optarg[2] == 0 &&
Damien Millerf4614452001-07-14 12:18:10 +1000430 (u_char) optarg[1] >= 64 &&
431 (u_char) optarg[1] < 128)
Ben Lindstrom46c16222000-12-22 01:43:59 +0000432 options.escape_char = (u_char) optarg[1] & 31;
Damien Miller95def091999-11-25 00:26:21 +1100433 else if (strlen(optarg) == 1)
Ben Lindstrom46c16222000-12-22 01:43:59 +0000434 options.escape_char = (u_char) optarg[0];
Damien Miller95def091999-11-25 00:26:21 +1100435 else if (strcmp(optarg, "none") == 0)
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +0000436 options.escape_char = SSH_ESCAPECHAR_NONE;
Damien Miller95def091999-11-25 00:26:21 +1100437 else {
Damien Millerf4614452001-07-14 12:18:10 +1000438 fprintf(stderr, "Bad escape character '%s'.\n",
439 optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100440 exit(255);
Damien Miller95def091999-11-25 00:26:21 +1100441 }
442 break;
Damien Miller95def091999-11-25 00:26:21 +1100443 case 'c':
Damien Millereba71ba2000-04-29 23:57:08 +1000444 if (ciphers_valid(optarg)) {
445 /* SSH2 only */
446 options.ciphers = xstrdup(optarg);
Darren Tucker5cb30ad2004-08-12 22:40:24 +1000447 options.cipher = SSH_CIPHER_INVALID;
Damien Millereba71ba2000-04-29 23:57:08 +1000448 } else {
449 /* SSH1 only */
Damien Millere39cacc2000-11-29 12:18:44 +1100450 options.cipher = cipher_number(optarg);
451 if (options.cipher == -1) {
Damien Millerf4614452001-07-14 12:18:10 +1000452 fprintf(stderr,
453 "Unknown cipher type '%s'\n",
454 optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100455 exit(255);
Damien Millereba71ba2000-04-29 23:57:08 +1000456 }
Damien Millerf4614452001-07-14 12:18:10 +1000457 if (options.cipher == SSH_CIPHER_3DES)
Damien Millere39cacc2000-11-29 12:18:44 +1100458 options.ciphers = "3des-cbc";
Damien Millerf4614452001-07-14 12:18:10 +1000459 else if (options.cipher == SSH_CIPHER_BLOWFISH)
Damien Millere39cacc2000-11-29 12:18:44 +1100460 options.ciphers = "blowfish-cbc";
Damien Millerf4614452001-07-14 12:18:10 +1000461 else
Damien Millere39cacc2000-11-29 12:18:44 +1100462 options.ciphers = (char *)-1;
Damien Miller95def091999-11-25 00:26:21 +1100463 }
464 break;
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000465 case 'm':
466 if (mac_valid(optarg))
467 options.macs = xstrdup(optarg);
468 else {
Damien Millerf4614452001-07-14 12:18:10 +1000469 fprintf(stderr, "Unknown mac type '%s'\n",
470 optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100471 exit(255);
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000472 }
473 break;
Damien Miller0e220db2004-06-15 10:34:08 +1000474 case 'M':
Damien Millerd14b1e72005-06-16 13:19:41 +1000475 if (options.control_master == SSHCTL_MASTER_YES)
476 options.control_master = SSHCTL_MASTER_ASK;
477 else
478 options.control_master = SSHCTL_MASTER_YES;
Damien Miller0e220db2004-06-15 10:34:08 +1000479 break;
Damien Miller95def091999-11-25 00:26:21 +1100480 case 'p':
Ben Lindstrom19066a12001-04-12 23:39:26 +0000481 options.port = a2port(optarg);
Damien Miller3dc71ad2009-01-28 16:31:22 +1100482 if (options.port <= 0) {
Ben Lindstrom146edb92001-04-11 23:06:28 +0000483 fprintf(stderr, "Bad port '%s'\n", optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100484 exit(255);
Ben Lindstrom146edb92001-04-11 23:06:28 +0000485 }
Damien Miller95def091999-11-25 00:26:21 +1100486 break;
Damien Miller95def091999-11-25 00:26:21 +1100487 case 'l':
488 options.user = optarg;
489 break;
Ben Lindstrom1a174712001-09-12 17:56:15 +0000490
Damien Miller95def091999-11-25 00:26:21 +1100491 case 'L':
Damien Miller4bf648f2009-02-14 16:28:21 +1100492 if (parse_forward(&fwd, optarg, 0, 0))
Damien Millerf91ee4c2005-03-01 21:24:33 +1100493 add_local_forward(&options, &fwd);
494 else {
Damien Millerf4614452001-07-14 12:18:10 +1000495 fprintf(stderr,
Damien Millerf91ee4c2005-03-01 21:24:33 +1100496 "Bad local forwarding specification '%s'\n",
Damien Millerf4614452001-07-14 12:18:10 +1000497 optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100498 exit(255);
Ben Lindstrom1a174712001-09-12 17:56:15 +0000499 }
Damien Millerf91ee4c2005-03-01 21:24:33 +1100500 break;
501
502 case 'R':
Damien Miller4bf648f2009-02-14 16:28:21 +1100503 if (parse_forward(&fwd, optarg, 0, 1)) {
Damien Millerf91ee4c2005-03-01 21:24:33 +1100504 add_remote_forward(&options, &fwd);
505 } else {
506 fprintf(stderr,
507 "Bad remote forwarding specification "
508 "'%s'\n", optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100509 exit(255);
Damien Millerf91ee4c2005-03-01 21:24:33 +1100510 }
Damien Miller95def091999-11-25 00:26:21 +1100511 break;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000512
513 case 'D':
Damien Miller4bf648f2009-02-14 16:28:21 +1100514 if (parse_forward(&fwd, optarg, 1, 0)) {
Damien Millera699d952008-11-03 19:27:34 +1100515 add_local_forward(&options, &fwd);
Damien Millerf91ee4c2005-03-01 21:24:33 +1100516 } else {
Damien Millera699d952008-11-03 19:27:34 +1100517 fprintf(stderr,
518 "Bad dynamic forwarding specification "
519 "'%s'\n", optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100520 exit(255);
Ben Lindstrom146edb92001-04-11 23:06:28 +0000521 }
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000522 break;
523
Damien Miller95def091999-11-25 00:26:21 +1100524 case 'C':
525 options.compression = 1;
526 break;
Damien Miller1383bd82000-04-06 12:32:37 +1000527 case 'N':
528 no_shell_flag = 1;
529 no_tty_flag = 1;
530 break;
Damien Miller1383bd82000-04-06 12:32:37 +1000531 case 'T':
532 no_tty_flag = 1;
533 break;
Damien Miller95def091999-11-25 00:26:21 +1100534 case 'o':
535 dummy = 1;
Damien Miller9836cf82003-12-17 16:30:06 +1100536 line = xstrdup(optarg);
Damien Millerf4614452001-07-14 12:18:10 +1000537 if (process_config_line(&options, host ? host : "",
Damien Miller9836cf82003-12-17 16:30:06 +1100538 line, "command-line", 0, &dummy) != 0)
Darren Tuckere9a9b712005-12-20 16:15:51 +1100539 exit(255);
Damien Miller9836cf82003-12-17 16:30:06 +1100540 xfree(line);
Damien Miller95def091999-11-25 00:26:21 +1100541 break;
Damien Miller832562e2001-01-30 09:30:01 +1100542 case 's':
543 subsystem_flag = 1;
544 break;
Damien Miller0e220db2004-06-15 10:34:08 +1000545 case 'S':
546 if (options.control_path != NULL)
547 free(options.control_path);
548 options.control_path = xstrdup(optarg);
Damien Miller0e220db2004-06-15 10:34:08 +1000549 break;
Ben Lindstrome0f88042001-04-30 13:06:24 +0000550 case 'b':
551 options.bind_address = optarg;
552 break;
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000553 case 'F':
554 config = optarg;
555 break;
Damien Miller95def091999-11-25 00:26:21 +1100556 default:
557 usage();
558 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000559 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000560
Damien Millerf4614452001-07-14 12:18:10 +1000561 ac -= optind;
562 av += optind;
563
Darren Tuckerb8c884a2010-01-08 18:53:43 +1100564 if (ac > 0 && !host) {
Ben Lindstromc276c122002-12-23 02:14:51 +0000565 if (strrchr(*av, '@')) {
Damien Millerf4614452001-07-14 12:18:10 +1000566 p = xstrdup(*av);
Ben Lindstromc276c122002-12-23 02:14:51 +0000567 cp = strrchr(p, '@');
Damien Millerf4614452001-07-14 12:18:10 +1000568 if (cp == NULL || cp == p)
569 usage();
570 options.user = p;
571 *cp = '\0';
572 host = ++cp;
573 } else
574 host = *av;
Ben Lindstromb9fa6912002-12-23 02:24:54 +0000575 if (ac > 1) {
576 optind = optreset = 1;
Damien Millerf4614452001-07-14 12:18:10 +1000577 goto again;
578 }
Ben Lindstromb9fa6912002-12-23 02:24:54 +0000579 ac--, av++;
Damien Millerf4614452001-07-14 12:18:10 +1000580 }
581
Damien Miller95def091999-11-25 00:26:21 +1100582 /* Check that we got a host name. */
583 if (!host)
584 usage();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000585
Damien Millercb5e44a2000-09-29 12:12:36 +1100586 SSLeay_add_all_algorithms();
Damien Miller0bc1bd82000-11-13 22:57:25 +1100587 ERR_load_crypto_strings();
Damien Millercb5e44a2000-09-29 12:12:36 +1100588
Damien Miller95def091999-11-25 00:26:21 +1100589 /* Initialize the command to execute on remote host. */
590 buffer_init(&command);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000591
Damien Miller5428f641999-11-25 11:54:57 +1100592 /*
593 * Save the command to execute on the remote host in a buffer. There
594 * is no limit on the length of the command, except by the maximum
595 * packet size. Also sets the tty flag if there is no command.
596 */
Damien Millerf4614452001-07-14 12:18:10 +1000597 if (!ac) {
Damien Miller95def091999-11-25 00:26:21 +1100598 /* No command specified - execute shell on a tty. */
599 tty_flag = 1;
Damien Miller832562e2001-01-30 09:30:01 +1100600 if (subsystem_flag) {
Damien Millerf4614452001-07-14 12:18:10 +1000601 fprintf(stderr,
602 "You must specify a subsystem to invoke.\n");
Damien Miller832562e2001-01-30 09:30:01 +1100603 usage();
604 }
Damien Miller95def091999-11-25 00:26:21 +1100605 } else {
Damien Millerf4614452001-07-14 12:18:10 +1000606 /* A command has been specified. Store it into the buffer. */
607 for (i = 0; i < ac; i++) {
608 if (i)
Damien Miller95def091999-11-25 00:26:21 +1100609 buffer_append(&command, " ", 1);
610 buffer_append(&command, av[i], strlen(av[i]));
611 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000612 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000613
Damien Miller95def091999-11-25 00:26:21 +1100614 /* Cannot fork to background if no command. */
Darren Tuckerd6173c02008-06-13 04:52:53 +1000615 if (fork_after_authentication_flag && buffer_len(&command) == 0 &&
616 !no_shell_flag)
617 fatal("Cannot fork into background without a command "
618 "to execute.");
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000619
Damien Miller95def091999-11-25 00:26:21 +1100620 /* Allocate a tty by default if no command specified. */
621 if (buffer_len(&command) == 0)
622 tty_flag = 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000623
Ben Lindstroma962c2f2002-07-04 00:14:17 +0000624 /* Force no tty */
Damien Millerdeb5a142010-04-16 15:52:43 +1000625 if (no_tty_flag || muxclient_command != 0)
Ben Lindstromc72745a2000-12-02 19:03:54 +0000626 tty_flag = 0;
Damien Miller95def091999-11-25 00:26:21 +1100627 /* Do not allocate a tty if stdin is not a tty. */
Damien Millerddee5752005-05-26 12:05:05 +1000628 if ((!isatty(fileno(stdin)) || stdin_null_flag) && !force_tty_flag) {
Damien Miller95def091999-11-25 00:26:21 +1100629 if (tty_flag)
Darren Tuckerd6173c02008-06-13 04:52:53 +1000630 logit("Pseudo-terminal will not be allocated because "
631 "stdin is not a terminal.");
Damien Miller95def091999-11-25 00:26:21 +1100632 tty_flag = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000633 }
Damien Miller1383bd82000-04-06 12:32:37 +1000634
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000635 /*
636 * Initialize "log" output. Since we are the client all output
637 * actually goes to stderr.
638 */
Darren Tucker72efd742009-06-21 17:48:00 +1000639 log_init(argv0,
Darren Tuckerd6173c02008-06-13 04:52:53 +1000640 options.log_level == -1 ? SYSLOG_LEVEL_INFO : options.log_level,
Damien Millere272a5b2008-11-03 19:22:37 +1100641 SYSLOG_FACILITY_USER, !use_syslog);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000642
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000643 /*
644 * Read per-user configuration file. Ignore the system wide config
645 * file if the user specifies a config file on the command line.
646 */
647 if (config != NULL) {
Damien Miller914420f2004-04-20 20:14:07 +1000648 if (!read_config_file(config, host, &options, 0))
Ben Lindstromedc0cf22001-09-12 18:32:20 +0000649 fatal("Can't open user config file %.100s: "
650 "%.100s", config, strerror(errno));
Damien Miller80163902007-01-05 16:30:16 +1100651 } else {
Darren Tucker199b1342009-07-06 07:16:56 +1000652 r = snprintf(buf, sizeof buf, "%s/%s", pw->pw_dir,
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000653 _PATH_SSH_USER_CONFFILE);
Darren Tucker199b1342009-07-06 07:16:56 +1000654 if (r > 0 && (size_t)r < sizeof(buf))
655 (void)read_config_file(buf, host, &options, 1);
Ben Lindstrom83f07d12001-10-03 17:22:29 +0000656
657 /* Read systemwide configuration file after use config. */
Darren Tuckerfc959702004-07-17 16:12:08 +1000658 (void)read_config_file(_PATH_HOST_CONFIG_FILE, host,
Damien Miller57a44762004-04-20 20:11:57 +1000659 &options, 0);
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000660 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000661
Damien Miller95def091999-11-25 00:26:21 +1100662 /* Fill configuration defaults. */
663 fill_default_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000664
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000665 channel_set_af(options.address_family);
666
Damien Miller95def091999-11-25 00:26:21 +1100667 /* reinit */
Darren Tucker72efd742009-06-21 17:48:00 +1000668 log_init(argv0, options.log_level, SYSLOG_FACILITY_USER, !use_syslog);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000669
Damien Miller60bc5172001-03-19 09:38:15 +1100670 seed_rng();
671
Damien Miller95def091999-11-25 00:26:21 +1100672 if (options.user == NULL)
673 options.user = xstrdup(pw->pw_name);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000674
Darren Tuckerf6b01b72008-06-13 04:56:37 +1000675 /* Get default port if port has not been set. */
676 if (options.port == 0) {
677 sp = getservbyname(SSH_SERVICE_NAME, "tcp");
678 options.port = sp ? ntohs(sp->s_port) : SSH_DEFAULT_PORT;
679 }
680
681 if (options.local_command != NULL) {
682 char thishost[NI_MAXHOST];
683
684 if (gethostname(thishost, sizeof(thishost)) == -1)
685 fatal("gethostname: %s", strerror(errno));
686 snprintf(buf, sizeof(buf), "%d", options.port);
687 debug3("expanding LocalCommand: %s", options.local_command);
688 cp = options.local_command;
689 options.local_command = percent_expand(cp, "d", pw->pw_dir,
690 "h", options.hostname? options.hostname : host,
691 "l", thishost, "n", host, "r", options.user, "p", buf,
692 "u", pw->pw_name, (char *)NULL);
693 debug3("expanded LocalCommand: %s", options.local_command);
694 xfree(cp);
695 }
696
Damien Miller95def091999-11-25 00:26:21 +1100697 if (options.hostname != NULL)
698 host = options.hostname;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000699
Darren Tucker3f521e22003-07-03 16:20:42 +1000700 /* force lowercase for hostkey matching */
701 if (options.host_key_alias != NULL) {
702 for (p = options.host_key_alias; *p; p++)
703 if (isupper(*p))
Damien Miller1d2b6702006-03-26 14:09:54 +1100704 *p = (char)tolower(*p);
Darren Tucker3f521e22003-07-03 16:20:42 +1000705 }
706
Damien Miller9f1e33a2003-02-24 11:57:32 +1100707 if (options.proxy_command != NULL &&
Darren Tucker32e42c72007-12-02 23:01:03 +1100708 strcmp(options.proxy_command, "none") == 0) {
709 xfree(options.proxy_command);
Damien Miller9f1e33a2003-02-24 11:57:32 +1100710 options.proxy_command = NULL;
Darren Tucker32e42c72007-12-02 23:01:03 +1100711 }
Damien Miller8f74c8f2005-06-26 08:56:03 +1000712 if (options.control_path != NULL &&
Darren Tucker32e42c72007-12-02 23:01:03 +1100713 strcmp(options.control_path, "none") == 0) {
714 xfree(options.control_path);
Damien Miller8f74c8f2005-06-26 08:56:03 +1000715 options.control_path = NULL;
Darren Tucker32e42c72007-12-02 23:01:03 +1100716 }
Damien Miller9f1e33a2003-02-24 11:57:32 +1100717
Damien Miller0e220db2004-06-15 10:34:08 +1000718 if (options.control_path != NULL) {
Damien Miller6b1d53c2006-03-31 23:13:21 +1100719 char thishost[NI_MAXHOST];
Damien Miller3ec54c72006-03-15 11:30:13 +1100720
Damien Miller6b1d53c2006-03-31 23:13:21 +1100721 if (gethostname(thishost, sizeof(thishost)) == -1)
Damien Miller3ec54c72006-03-15 11:30:13 +1100722 fatal("gethostname: %s", strerror(errno));
Damien Miller6476cad2005-06-16 13:18:34 +1000723 snprintf(buf, sizeof(buf), "%d", options.port);
724 cp = tilde_expand_filename(options.control_path,
725 original_real_uid);
Darren Tucker32e42c72007-12-02 23:01:03 +1100726 xfree(options.control_path);
Damien Miller6476cad2005-06-16 13:18:34 +1000727 options.control_path = percent_expand(cp, "p", buf, "h", host,
Damien Miller6b1d53c2006-03-31 23:13:21 +1100728 "r", options.user, "l", thishost, (char *)NULL);
Damien Miller6476cad2005-06-16 13:18:34 +1000729 xfree(cp);
Damien Miller0e220db2004-06-15 10:34:08 +1000730 }
Damien Millerb1cbfa22008-05-19 16:00:08 +1000731 if (muxclient_command != 0 && options.control_path == NULL)
Darren Tucker0814d312005-06-01 23:08:51 +1000732 fatal("No ControlPath specified for \"-O\" command");
Damien Millerd14b1e72005-06-16 13:19:41 +1000733 if (options.control_path != NULL)
Damien Millerb1cbfa22008-05-19 16:00:08 +1000734 muxclient(options.control_path);
Damien Miller0e220db2004-06-15 10:34:08 +1000735
Damien Miller67bd0622007-09-17 12:06:57 +1000736 timeout_ms = options.connection_timeout * 1000;
737
Kevin Stevesfcec7f82000-12-15 19:55:48 +0000738 /* Open a connection to the remote host. */
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000739 if (ssh_connect(host, &hostaddr, options.port,
Damien Miller67bd0622007-09-17 12:06:57 +1000740 options.address_family, options.connection_attempts, &timeout_ms,
741 options.tcp_keep_alive,
Ben Lindstrom1aa64272002-06-11 20:28:05 +0000742#ifdef HAVE_CYGWIN
743 options.use_privileged_port,
744#else
Ben Lindstromf9c48842002-06-11 16:37:51 +0000745 original_effective_uid == 0 && options.use_privileged_port,
Ben Lindstrom1aa64272002-06-11 20:28:05 +0000746#endif
Ben Lindstromda394ca2002-06-12 16:11:12 +0000747 options.proxy_command) != 0)
Darren Tuckere9a9b712005-12-20 16:15:51 +1100748 exit(255);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000749
Damien Miller67bd0622007-09-17 12:06:57 +1000750 if (timeout_ms > 0)
751 debug3("timeout: %d ms remain after connect", timeout_ms);
752
Damien Miller5428f641999-11-25 11:54:57 +1100753 /*
754 * If we successfully made the connection, load the host private key
755 * in case we will need it later for combined rsa-rhosts
756 * authentication. This must be done before releasing extra
757 * privileges, because the file is only readable by root.
Ben Lindstrom9e5bb572002-06-06 19:58:27 +0000758 * If we cannot access the private keys, load the public keys
759 * instead and try to execute the ssh-keysign helper instead.
Damien Miller5428f641999-11-25 11:54:57 +1100760 */
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000761 sensitive_data.nkeys = 0;
762 sensitive_data.keys = NULL;
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000763 sensitive_data.external_keysign = 0;
Ben Lindstrom24157572002-06-12 16:09:39 +0000764 if (options.rhosts_rsa_authentication ||
765 options.hostbased_authentication) {
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000766 sensitive_data.nkeys = 3;
Damien Millerddd63ab2006-03-31 23:10:51 +1100767 sensitive_data.keys = xcalloc(sensitive_data.nkeys,
Ben Lindstroma962c2f2002-07-04 00:14:17 +0000768 sizeof(Key));
Ben Lindstromf9c48842002-06-11 16:37:51 +0000769
770 PRIV_START;
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000771 sensitive_data.keys[0] = key_load_private_type(KEY_RSA1,
Darren Tucker232b76f2006-05-06 17:41:51 +1000772 _PATH_HOST_KEY_FILE, "", NULL, NULL);
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000773 sensitive_data.keys[1] = key_load_private_type(KEY_DSA,
Darren Tucker232b76f2006-05-06 17:41:51 +1000774 _PATH_HOST_DSA_KEY_FILE, "", NULL, NULL);
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000775 sensitive_data.keys[2] = key_load_private_type(KEY_RSA,
Darren Tucker232b76f2006-05-06 17:41:51 +1000776 _PATH_HOST_RSA_KEY_FILE, "", NULL, NULL);
Ben Lindstromf9c48842002-06-11 16:37:51 +0000777 PRIV_END;
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000778
Ben Lindstrom5d35a2f2002-07-04 00:19:40 +0000779 if (options.hostbased_authentication == 1 &&
780 sensitive_data.keys[0] == NULL &&
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000781 sensitive_data.keys[1] == NULL &&
782 sensitive_data.keys[2] == NULL) {
783 sensitive_data.keys[1] = key_load_public(
784 _PATH_HOST_DSA_KEY_FILE, NULL);
785 sensitive_data.keys[2] = key_load_public(
786 _PATH_HOST_RSA_KEY_FILE, NULL);
787 sensitive_data.external_keysign = 1;
788 }
Damien Miller95def091999-11-25 00:26:21 +1100789 }
Damien Miller5428f641999-11-25 11:54:57 +1100790 /*
791 * Get rid of any extra privileges that we may have. We will no
792 * longer need them. Also, extra privileges could make it very hard
793 * to read identity files and other non-world-readable files from the
794 * user's home directory if it happens to be on a NFS volume where
795 * root is mapped to nobody.
796 */
Darren Tucker25f60a72004-08-15 17:23:34 +1000797 if (original_effective_uid == 0) {
798 PRIV_START;
799 permanently_set_uid(pw);
800 }
Damien Miller95def091999-11-25 00:26:21 +1100801
Damien Miller5428f641999-11-25 11:54:57 +1100802 /*
803 * Now that we are back to our own permissions, create ~/.ssh
Damien Miller788f2122005-11-05 15:14:59 +1100804 * directory if it doesn't already exist.
Damien Miller5428f641999-11-25 11:54:57 +1100805 */
Darren Tucker199b1342009-07-06 07:16:56 +1000806 r = snprintf(buf, sizeof buf, "%s%s%s", pw->pw_dir,
Darren Tuckerd6173c02008-06-13 04:52:53 +1000807 strcmp(pw->pw_dir, "/") ? "/" : "", _PATH_SSH_USER_DIR);
Darren Tucker199b1342009-07-06 07:16:56 +1000808 if (r > 0 && (size_t)r < sizeof(buf) && stat(buf, &st) < 0)
Damien Millerbe484b52000-07-15 14:14:16 +1000809 if (mkdir(buf, 0700) < 0)
Damien Miller95def091999-11-25 00:26:21 +1100810 error("Could not create directory '%.200s'.", buf);
811
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000812 /* load options.identity_files */
813 load_public_identity_files();
814
815 /* Expand ~ in known host file names. */
816 /* XXX mem-leaks: */
Damien Miller0bc1bd82000-11-13 22:57:25 +1100817 options.system_hostfile =
818 tilde_expand_filename(options.system_hostfile, original_real_uid);
819 options.user_hostfile =
820 tilde_expand_filename(options.user_hostfile, original_real_uid);
821 options.system_hostfile2 =
822 tilde_expand_filename(options.system_hostfile2, original_real_uid);
823 options.user_hostfile2 =
824 tilde_expand_filename(options.user_hostfile2, original_real_uid);
Damien Miller95def091999-11-25 00:26:21 +1100825
Damien Miller07cd5892001-11-12 10:52:03 +1100826 signal(SIGPIPE, SIG_IGN); /* ignore SIGPIPE early */
827
Darren Tuckerd6173c02008-06-13 04:52:53 +1000828 /* Log into the remote system. Never returns if the login fails. */
Damien Miller67bd0622007-09-17 12:06:57 +1000829 ssh_login(&sensitive_data, host, (struct sockaddr *)&hostaddr,
830 pw, timeout_ms);
Damien Miller95def091999-11-25 00:26:21 +1100831
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000832 /* We no longer need the private host keys. Clear them now. */
833 if (sensitive_data.nkeys != 0) {
834 for (i = 0; i < sensitive_data.nkeys; i++) {
835 if (sensitive_data.keys[i] != NULL) {
836 /* Destroys contents safely */
837 debug3("clear hostkey %d", i);
838 key_free(sensitive_data.keys[i]);
839 sensitive_data.keys[i] = NULL;
840 }
841 }
842 xfree(sensitive_data.keys);
843 }
Ben Lindstroma6c8a8d2001-08-06 21:42:00 +0000844 for (i = 0; i < options.num_identity_files; i++) {
845 if (options.identity_files[i]) {
846 xfree(options.identity_files[i]);
847 options.identity_files[i] = NULL;
848 }
849 if (options.identity_keys[i]) {
850 key_free(options.identity_keys[i]);
851 options.identity_keys[i] = NULL;
852 }
853 }
Damien Miller95def091999-11-25 00:26:21 +1100854
Damien Miller1383bd82000-04-06 12:32:37 +1000855 exit_status = compat20 ? ssh_session2() : ssh_session();
856 packet_close();
Damien Miller8c4e18a2002-09-19 12:05:02 +1000857
Damien Millerb1cbfa22008-05-19 16:00:08 +1000858 if (options.control_path != NULL && muxserver_sock != -1)
Damien Miller0e220db2004-06-15 10:34:08 +1000859 unlink(options.control_path);
860
Damien Miller8c4e18a2002-09-19 12:05:02 +1000861 /*
Damien Millera8e06ce2003-11-21 23:48:55 +1100862 * Send SIGHUP to proxy command if used. We don't wait() in
Damien Miller8c4e18a2002-09-19 12:05:02 +1000863 * case it hangs and instead rely on init to reap the child
864 */
865 if (proxy_command_pid > 1)
866 kill(proxy_command_pid, SIGHUP);
867
Damien Miller1383bd82000-04-06 12:32:37 +1000868 return exit_status;
869}
870
Darren Tucker9f407c42008-06-13 04:50:27 +1000871/* Callback for remote forward global requests */
872static void
873ssh_confirm_remote_forward(int type, u_int32_t seq, void *ctxt)
874{
875 Forward *rfwd = (Forward *)ctxt;
876
Damien Miller4bf648f2009-02-14 16:28:21 +1100877 /* XXX verbose() on failure? */
Darren Tucker9f407c42008-06-13 04:50:27 +1000878 debug("remote forward %s for: listen %d, connect %s:%d",
879 type == SSH2_MSG_REQUEST_SUCCESS ? "success" : "failure",
880 rfwd->listen_port, rfwd->connect_host, rfwd->connect_port);
Damien Miller4bf648f2009-02-14 16:28:21 +1100881 if (type == SSH2_MSG_REQUEST_SUCCESS && rfwd->listen_port == 0) {
Damien Miller388f6fc2010-05-21 14:57:35 +1000882 rfwd->allocated_port = packet_get_int();
Damien Miller4bf648f2009-02-14 16:28:21 +1100883 logit("Allocated port %u for remote forward to %s:%d",
Damien Miller388f6fc2010-05-21 14:57:35 +1000884 rfwd->allocated_port,
885 rfwd->connect_host, rfwd->connect_port);
Damien Miller4bf648f2009-02-14 16:28:21 +1100886 }
887
Darren Tucker9f407c42008-06-13 04:50:27 +1000888 if (type == SSH2_MSG_REQUEST_FAILURE) {
889 if (options.exit_on_forward_failure)
890 fatal("Error: remote port forwarding failed for "
891 "listen port %d", rfwd->listen_port);
892 else
893 logit("Warning: remote port forwarding failed for "
894 "listen port %d", rfwd->listen_port);
895 }
Darren Tucker9a2a6092008-07-04 12:53:50 +1000896 if (++remote_forward_confirms_received == options.num_remote_forwards) {
Darren Tucker9f407c42008-06-13 04:50:27 +1000897 debug("All remote forwarding requests processed");
Darren Tucker9a2a6092008-07-04 12:53:50 +1000898 if (fork_after_authentication_flag) {
899 fork_after_authentication_flag = 0;
900 if (daemon(1, 1) < 0)
901 fatal("daemon() failed: %.200s",
902 strerror(errno));
903 }
904 }
Darren Tucker9f407c42008-06-13 04:50:27 +1000905}
906
Ben Lindstrombba81212001-06-25 05:01:22 +0000907static void
Darren Tucker7ad8dd22010-01-12 19:40:27 +1100908client_cleanup_stdio_fwd(int id, void *arg)
909{
910 debug("stdio forwarding: done");
911 cleanup_exit(0);
912}
913
914static int
915client_setup_stdio_fwd(const char *host_to_connect, u_short port_to_connect)
916{
917 Channel *c;
Damien Millere1537f92010-01-26 13:26:22 +1100918 int in, out;
Darren Tucker7ad8dd22010-01-12 19:40:27 +1100919
920 debug3("client_setup_stdio_fwd %s:%d", host_to_connect,
921 port_to_connect);
Damien Millere1537f92010-01-26 13:26:22 +1100922
923 in = dup(STDIN_FILENO);
924 out = dup(STDOUT_FILENO);
925 if (in < 0 || out < 0)
926 fatal("channel_connect_stdio_fwd: dup() in/out failed");
927
928 if ((c = channel_connect_stdio_fwd(host_to_connect, port_to_connect,
929 in, out)) == NULL)
Darren Tucker7ad8dd22010-01-12 19:40:27 +1100930 return 0;
931 channel_register_cleanup(c->self, client_cleanup_stdio_fwd, 0);
932 return 1;
933}
934
935static void
Damien Miller0bc1bd82000-11-13 22:57:25 +1100936ssh_init_forwarding(void)
937{
Kevin Steves12057502001-02-05 14:54:34 +0000938 int success = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100939 int i;
Kevin Steves12057502001-02-05 14:54:34 +0000940
Darren Tucker7ad8dd22010-01-12 19:40:27 +1100941 if (stdio_forward_host != NULL) {
942 if (!compat20) {
943 fatal("stdio forwarding require Protocol 2");
944 }
945 if (!client_setup_stdio_fwd(stdio_forward_host,
946 stdio_forward_port))
947 fatal("Failed to connect in stdio forward mode.");
948 }
949
Damien Miller0bc1bd82000-11-13 22:57:25 +1100950 /* Initiate local TCP/IP port forwardings. */
951 for (i = 0; i < options.num_local_forwards; i++) {
Damien Millerf91ee4c2005-03-01 21:24:33 +1100952 debug("Local connections to %.200s:%d forwarded to remote "
953 "address %.200s:%d",
Darren Tucker47eede72005-03-14 23:08:12 +1100954 (options.local_forwards[i].listen_host == NULL) ?
955 (options.gateway_ports ? "*" : "LOCALHOST") :
Damien Millerf91ee4c2005-03-01 21:24:33 +1100956 options.local_forwards[i].listen_host,
957 options.local_forwards[i].listen_port,
958 options.local_forwards[i].connect_host,
959 options.local_forwards[i].connect_port);
Damien Millerb16461c2002-01-22 23:29:22 +1100960 success += channel_setup_local_fwd_listener(
Damien Millerf91ee4c2005-03-01 21:24:33 +1100961 options.local_forwards[i].listen_host,
962 options.local_forwards[i].listen_port,
963 options.local_forwards[i].connect_host,
964 options.local_forwards[i].connect_port,
Damien Miller0bc1bd82000-11-13 22:57:25 +1100965 options.gateway_ports);
966 }
Darren Tuckere7d4b192006-07-12 22:17:10 +1000967 if (i > 0 && success != i && options.exit_on_forward_failure)
968 fatal("Could not request local forwarding.");
Kevin Steves12057502001-02-05 14:54:34 +0000969 if (i > 0 && success == 0)
970 error("Could not request local forwarding.");
Damien Miller0bc1bd82000-11-13 22:57:25 +1100971
972 /* Initiate remote TCP/IP port forwardings. */
973 for (i = 0; i < options.num_remote_forwards; i++) {
Damien Millerf91ee4c2005-03-01 21:24:33 +1100974 debug("Remote connections from %.200s:%d forwarded to "
975 "local address %.200s:%d",
Damien Miller46d38de2005-07-17 17:02:09 +1000976 (options.remote_forwards[i].listen_host == NULL) ?
Damien Milleraa3bb102005-11-05 15:12:59 +1100977 "LOCALHOST" : options.remote_forwards[i].listen_host,
Damien Millerf91ee4c2005-03-01 21:24:33 +1100978 options.remote_forwards[i].listen_port,
979 options.remote_forwards[i].connect_host,
980 options.remote_forwards[i].connect_port);
Darren Tuckere7d4b192006-07-12 22:17:10 +1000981 if (channel_request_remote_forwarding(
Damien Millerf91ee4c2005-03-01 21:24:33 +1100982 options.remote_forwards[i].listen_host,
983 options.remote_forwards[i].listen_port,
984 options.remote_forwards[i].connect_host,
Darren Tuckere7d4b192006-07-12 22:17:10 +1000985 options.remote_forwards[i].connect_port) < 0) {
986 if (options.exit_on_forward_failure)
987 fatal("Could not request remote forwarding.");
988 else
989 logit("Warning: Could not request remote "
990 "forwarding.");
991 }
Darren Tucker9f407c42008-06-13 04:50:27 +1000992 client_register_global_confirm(ssh_confirm_remote_forward,
993 &options.remote_forwards[i]);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100994 }
Damien Millerb3ce9fe2007-08-08 14:32:41 +1000995
996 /* Initiate tunnel forwarding. */
997 if (options.tun_open != SSH_TUNMODE_NO) {
998 if (client_request_tun_fwd(options.tun_open,
999 options.tun_local, options.tun_remote) == -1) {
1000 if (options.exit_on_forward_failure)
1001 fatal("Could not request tunnel forwarding.");
1002 else
1003 error("Could not request tunnel forwarding.");
1004 }
1005 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11001006}
1007
Ben Lindstrombba81212001-06-25 05:01:22 +00001008static void
Damien Miller0bc1bd82000-11-13 22:57:25 +11001009check_agent_present(void)
1010{
1011 if (options.forward_agent) {
Damien Miller788f2122005-11-05 15:14:59 +11001012 /* Clear agent forwarding if we don't have an agent. */
Damien Miller789e95d2002-09-12 09:52:46 +10001013 if (!ssh_agent_present())
Damien Miller0bc1bd82000-11-13 22:57:25 +11001014 options.forward_agent = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001015 }
1016}
1017
Ben Lindstrombba81212001-06-25 05:01:22 +00001018static int
Damien Miller1383bd82000-04-06 12:32:37 +10001019ssh_session(void)
1020{
1021 int type;
Damien Miller1383bd82000-04-06 12:32:37 +10001022 int interactive = 0;
1023 int have_tty = 0;
1024 struct winsize ws;
Damien Miller1383bd82000-04-06 12:32:37 +10001025 char *cp;
Damien Miller17e7ed02005-06-17 12:54:33 +10001026 const char *display;
Damien Miller1383bd82000-04-06 12:32:37 +10001027
Damien Miller95def091999-11-25 00:26:21 +11001028 /* Enable compression if requested. */
1029 if (options.compression) {
Darren Tuckerd6173c02008-06-13 04:52:53 +10001030 debug("Requesting compression at level %d.",
1031 options.compression_level);
Damien Miller95def091999-11-25 00:26:21 +11001032
Darren Tuckerd6173c02008-06-13 04:52:53 +10001033 if (options.compression_level < 1 ||
1034 options.compression_level > 9)
1035 fatal("Compression level must be from 1 (fast) to "
1036 "9 (slow, best).");
Damien Miller95def091999-11-25 00:26:21 +11001037
1038 /* Send the request. */
1039 packet_start(SSH_CMSG_REQUEST_COMPRESSION);
1040 packet_put_int(options.compression_level);
1041 packet_send();
1042 packet_write_wait();
Damien Millerdff50992002-01-22 23:16:32 +11001043 type = packet_read();
Damien Miller95def091999-11-25 00:26:21 +11001044 if (type == SSH_SMSG_SUCCESS)
1045 packet_start_compression(options.compression_level);
1046 else if (type == SSH_SMSG_FAILURE)
Damien Miller996acd22003-04-09 20:59:48 +10001047 logit("Warning: Remote host refused compression.");
Damien Miller95def091999-11-25 00:26:21 +11001048 else
Darren Tuckerd6173c02008-06-13 04:52:53 +10001049 packet_disconnect("Protocol error waiting for "
1050 "compression response.");
Damien Miller95def091999-11-25 00:26:21 +11001051 }
1052 /* Allocate a pseudo tty if appropriate. */
1053 if (tty_flag) {
1054 debug("Requesting pty.");
1055
1056 /* Start the packet. */
1057 packet_start(SSH_CMSG_REQUEST_PTY);
1058
1059 /* Store TERM in the packet. There is no limit on the
1060 length of the string. */
1061 cp = getenv("TERM");
1062 if (!cp)
1063 cp = "";
Ben Lindstrom664408d2001-06-09 01:42:01 +00001064 packet_put_cstring(cp);
Damien Miller95def091999-11-25 00:26:21 +11001065
1066 /* Store window size in the packet. */
1067 if (ioctl(fileno(stdin), TIOCGWINSZ, &ws) < 0)
1068 memset(&ws, 0, sizeof(ws));
Damien Miller71a73672006-03-26 14:04:36 +11001069 packet_put_int((u_int)ws.ws_row);
1070 packet_put_int((u_int)ws.ws_col);
1071 packet_put_int((u_int)ws.ws_xpixel);
1072 packet_put_int((u_int)ws.ws_ypixel);
Damien Miller95def091999-11-25 00:26:21 +11001073
1074 /* Store tty modes in the packet. */
Ben Lindstromae8e2d32001-04-14 23:13:02 +00001075 tty_make_modes(fileno(stdin), NULL);
Damien Miller95def091999-11-25 00:26:21 +11001076
1077 /* Send the packet, and wait for it to leave. */
1078 packet_send();
1079 packet_write_wait();
1080
1081 /* Read response from the server. */
Damien Millerdff50992002-01-22 23:16:32 +11001082 type = packet_read();
Damien Miller450a7a12000-03-26 13:04:51 +10001083 if (type == SSH_SMSG_SUCCESS) {
Damien Miller95def091999-11-25 00:26:21 +11001084 interactive = 1;
Damien Miller1383bd82000-04-06 12:32:37 +10001085 have_tty = 1;
Damien Miller450a7a12000-03-26 13:04:51 +10001086 } else if (type == SSH_SMSG_FAILURE)
Darren Tuckerd6173c02008-06-13 04:52:53 +10001087 logit("Warning: Remote host failed or refused to "
1088 "allocate a pseudo tty.");
Damien Miller95def091999-11-25 00:26:21 +11001089 else
Darren Tuckerd6173c02008-06-13 04:52:53 +10001090 packet_disconnect("Protocol error waiting for pty "
1091 "request response.");
Damien Miller95def091999-11-25 00:26:21 +11001092 }
1093 /* Request X11 forwarding if enabled and DISPLAY is set. */
Damien Miller17e7ed02005-06-17 12:54:33 +10001094 display = getenv("DISPLAY");
1095 if (options.forward_x11 && display != NULL) {
Ben Lindstrom4a4bd712001-12-06 17:45:19 +00001096 char *proto, *data;
Damien Millerbd483e72000-04-30 10:00:53 +10001097 /* Get reasonable local authentication information. */
Damien Miller17e7ed02005-06-17 12:54:33 +10001098 client_x11_get_proto(display, options.xauth_location,
1099 options.forward_x11_trusted, &proto, &data);
Damien Millerbd483e72000-04-30 10:00:53 +10001100 /* Request forwarding with authentication spoofing. */
Darren Tuckerd6173c02008-06-13 04:52:53 +10001101 debug("Requesting X11 forwarding with authentication "
1102 "spoofing.");
Damien Miller17e7ed02005-06-17 12:54:33 +10001103 x11_request_forwarding_with_spoofing(0, display, proto, data);
Damien Miller95def091999-11-25 00:26:21 +11001104
1105 /* Read response from the server. */
Damien Millerdff50992002-01-22 23:16:32 +11001106 type = packet_read();
Damien Miller95def091999-11-25 00:26:21 +11001107 if (type == SSH_SMSG_SUCCESS) {
Damien Miller95def091999-11-25 00:26:21 +11001108 interactive = 1;
Damien Millerbd483e72000-04-30 10:00:53 +10001109 } else if (type == SSH_SMSG_FAILURE) {
Damien Miller996acd22003-04-09 20:59:48 +10001110 logit("Warning: Remote host denied X11 forwarding.");
Damien Millerbd483e72000-04-30 10:00:53 +10001111 } else {
Darren Tuckerd6173c02008-06-13 04:52:53 +10001112 packet_disconnect("Protocol error waiting for X11 "
1113 "forwarding");
Damien Millerbd483e72000-04-30 10:00:53 +10001114 }
Damien Miller95def091999-11-25 00:26:21 +11001115 }
1116 /* Tell the packet module whether this is an interactive session. */
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001117 packet_set_interactive(interactive);
Damien Miller95def091999-11-25 00:26:21 +11001118
1119 /* Request authentication agent forwarding if appropriate. */
Damien Miller0bc1bd82000-11-13 22:57:25 +11001120 check_agent_present();
1121
Damien Miller95def091999-11-25 00:26:21 +11001122 if (options.forward_agent) {
1123 debug("Requesting authentication agent forwarding.");
1124 auth_request_forwarding();
1125
1126 /* Read response from the server. */
Damien Millerdff50992002-01-22 23:16:32 +11001127 type = packet_read();
Damien Miller48b03fc2002-01-22 23:11:40 +11001128 packet_check_eom();
Damien Miller95def091999-11-25 00:26:21 +11001129 if (type != SSH_SMSG_SUCCESS)
Damien Miller996acd22003-04-09 20:59:48 +10001130 logit("Warning: Remote host denied authentication agent forwarding.");
Damien Miller95def091999-11-25 00:26:21 +11001131 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001132
Damien Miller0bc1bd82000-11-13 22:57:25 +11001133 /* Initiate port forwardings. */
1134 ssh_init_forwarding();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001135
Darren Tuckerb776c852007-12-02 23:06:35 +11001136 /* Execute a local command */
1137 if (options.local_command != NULL &&
1138 options.permit_local_command)
1139 ssh_local_cmd(options.local_command);
1140
Darren Tucker9a2a6092008-07-04 12:53:50 +10001141 /*
1142 * If requested and we are not interested in replies to remote
1143 * forwarding requests, then let ssh continue in the background.
1144 */
1145 if (fork_after_authentication_flag &&
1146 (!options.exit_on_forward_failure ||
1147 options.num_remote_forwards == 0)) {
1148 fork_after_authentication_flag = 0;
Damien Miller5428f641999-11-25 11:54:57 +11001149 if (daemon(1, 1) < 0)
1150 fatal("daemon() failed: %.200s", strerror(errno));
Darren Tucker9a2a6092008-07-04 12:53:50 +10001151 }
Damien Miller5428f641999-11-25 11:54:57 +11001152
1153 /*
1154 * If a command was specified on the command line, execute the
1155 * command now. Otherwise request the server to start a shell.
1156 */
Damien Miller95def091999-11-25 00:26:21 +11001157 if (buffer_len(&command) > 0) {
1158 int len = buffer_len(&command);
1159 if (len > 900)
1160 len = 900;
Darren Tuckerd6173c02008-06-13 04:52:53 +10001161 debug("Sending command: %.*s", len,
1162 (u_char *)buffer_ptr(&command));
Damien Miller95def091999-11-25 00:26:21 +11001163 packet_start(SSH_CMSG_EXEC_CMD);
1164 packet_put_string(buffer_ptr(&command), buffer_len(&command));
1165 packet_send();
1166 packet_write_wait();
1167 } else {
1168 debug("Requesting shell.");
1169 packet_start(SSH_CMSG_EXEC_SHELL);
1170 packet_send();
1171 packet_write_wait();
1172 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001173
Damien Miller95def091999-11-25 00:26:21 +11001174 /* Enter the interactive session. */
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +00001175 return client_loop(have_tty, tty_flag ?
1176 options.escape_char : SSH_ESCAPECHAR_NONE, 0);
Damien Miller1383bd82000-04-06 12:32:37 +10001177}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001178
Ben Lindstromf558cf62001-09-20 23:13:49 +00001179/* request pty/x11/agent/tcpfwd/shell for channel */
Ben Lindstrombba81212001-06-25 05:01:22 +00001180static void
Damien Millerd530f5f2010-05-21 14:57:10 +10001181ssh_session2_setup(int id, int success, void *arg)
Damien Miller1383bd82000-04-06 12:32:37 +10001182{
Damien Miller3756dce2004-06-18 01:17:29 +10001183 extern char **environ;
Damien Miller17e7ed02005-06-17 12:54:33 +10001184 const char *display;
Damien Miller0e220db2004-06-15 10:34:08 +10001185 int interactive = tty_flag;
Damien Miller17e7ed02005-06-17 12:54:33 +10001186
Damien Millerd530f5f2010-05-21 14:57:10 +10001187 if (!success)
1188 return; /* No need for error message, channels code sens one */
1189
Damien Miller46d38de2005-07-17 17:02:09 +10001190 display = getenv("DISPLAY");
Damien Miller17e7ed02005-06-17 12:54:33 +10001191 if (options.forward_x11 && display != NULL) {
Ben Lindstrom4a4bd712001-12-06 17:45:19 +00001192 char *proto, *data;
Damien Millerbd483e72000-04-30 10:00:53 +10001193 /* Get reasonable local authentication information. */
Damien Miller17e7ed02005-06-17 12:54:33 +10001194 client_x11_get_proto(display, options.xauth_location,
1195 options.forward_x11_trusted, &proto, &data);
Damien Millerbd483e72000-04-30 10:00:53 +10001196 /* Request forwarding with authentication spoofing. */
Darren Tuckerd6173c02008-06-13 04:52:53 +10001197 debug("Requesting X11 forwarding with authentication "
1198 "spoofing.");
Damien Miller17e7ed02005-06-17 12:54:33 +10001199 x11_request_forwarding_with_spoofing(id, display, proto, data);
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001200 interactive = 1;
Damien Millerbd483e72000-04-30 10:00:53 +10001201 /* XXX wait for reply */
1202 }
1203
Damien Miller0bc1bd82000-11-13 22:57:25 +11001204 check_agent_present();
1205 if (options.forward_agent) {
1206 debug("Requesting authentication agent forwarding.");
1207 channel_request_start(id, "auth-agent-req@openssh.com", 0);
1208 packet_send();
1209 }
1210
Damien Miller0e220db2004-06-15 10:34:08 +10001211 client_session2_setup(id, tty_flag, subsystem_flag, getenv("TERM"),
Damien Miller5771ed72008-05-19 15:35:33 +10001212 NULL, fileno(stdin), &command, environ);
Ben Lindstrom1e7d3062001-02-09 02:36:43 +00001213
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001214 packet_set_interactive(interactive);
Damien Miller1383bd82000-04-06 12:32:37 +10001215}
1216
Ben Lindstromf558cf62001-09-20 23:13:49 +00001217/* open new channel for a session */
Ben Lindstrombba81212001-06-25 05:01:22 +00001218static int
Ben Lindstromf558cf62001-09-20 23:13:49 +00001219ssh_session2_open(void)
Damien Miller1383bd82000-04-06 12:32:37 +10001220{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001221 Channel *c;
1222 int window, packetmax, in, out, err;
Damien Millerad833b32000-08-23 10:46:23 +10001223
Damien Millercaf6dd62000-08-29 11:33:50 +11001224 if (stdin_null_flag) {
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001225 in = open(_PATH_DEVNULL, O_RDONLY);
Damien Millercaf6dd62000-08-29 11:33:50 +11001226 } else {
1227 in = dup(STDIN_FILENO);
1228 }
1229 out = dup(STDOUT_FILENO);
1230 err = dup(STDERR_FILENO);
1231
1232 if (in < 0 || out < 0 || err < 0)
1233 fatal("dup() in/out/err failed");
1234
Damien Miller69b69aa2000-10-28 14:19:58 +11001235 /* enable nonblocking unless tty */
1236 if (!isatty(in))
1237 set_nonblock(in);
1238 if (!isatty(out))
1239 set_nonblock(out);
1240 if (!isatty(err))
1241 set_nonblock(err);
1242
Damien Millere4340be2000-09-16 13:29:08 +11001243 window = CHAN_SES_WINDOW_DEFAULT;
1244 packetmax = CHAN_SES_PACKET_DEFAULT;
Damien Miller19a59452002-02-19 15:20:57 +11001245 if (tty_flag) {
1246 window >>= 1;
1247 packetmax >>= 1;
Damien Miller1383bd82000-04-06 12:32:37 +10001248 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001249 c = channel_new(
Damien Miller1383bd82000-04-06 12:32:37 +10001250 "session", SSH_CHANNEL_OPENING, in, out, err,
Damien Millere4340be2000-09-16 13:29:08 +11001251 window, packetmax, CHAN_EXTENDED_WRITE,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001252 "client-session", /*nonblock*/0);
Damien Miller1383bd82000-04-06 12:32:37 +10001253
Ben Lindstromf558cf62001-09-20 23:13:49 +00001254 debug3("ssh_session2_open: channel_new: %d", c->self);
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001255
Ben Lindstrom5ec26452001-06-09 00:18:51 +00001256 channel_send_open(c->self);
Ben Lindstromf558cf62001-09-20 23:13:49 +00001257 if (!no_shell_flag)
Damien Millerb84886b2008-05-19 15:05:07 +10001258 channel_register_open_confirm(c->self,
1259 ssh_session2_setup, NULL);
Damien Miller1383bd82000-04-06 12:32:37 +10001260
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001261 return c->self;
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001262}
1263
Ben Lindstrombba81212001-06-25 05:01:22 +00001264static int
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001265ssh_session2(void)
1266{
Ben Lindstromf558cf62001-09-20 23:13:49 +00001267 int id = -1;
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001268
1269 /* XXX should be pre-session */
1270 ssh_init_forwarding();
1271
Ben Lindstromf558cf62001-09-20 23:13:49 +00001272 if (!no_shell_flag || (datafellows & SSH_BUG_DUMMYCHAN))
1273 id = ssh_session2_open();
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001274
Darren Tucker8901fa92008-06-11 09:34:01 +10001275 /* If we don't expect to open a new session, then disallow it */
Damien Miller456e6f02008-11-03 19:20:10 +11001276 if (options.control_master == SSHCTL_MASTER_NO &&
1277 (datafellows & SSH_NEW_OPENSSH)) {
Darren Tucker8901fa92008-06-11 09:34:01 +10001278 debug("Requesting no-more-sessions@openssh.com");
1279 packet_start(SSH2_MSG_GLOBAL_REQUEST);
1280 packet_put_cstring("no-more-sessions@openssh.com");
1281 packet_put_char(0);
1282 packet_send();
1283 }
1284
Damien Millerd27b9472005-12-13 19:29:02 +11001285 /* Execute a local command */
1286 if (options.local_command != NULL &&
1287 options.permit_local_command)
1288 ssh_local_cmd(options.local_command);
1289
Damien Millerb3ce9fe2007-08-08 14:32:41 +10001290 /* Start listening for multiplex clients */
Damien Millerb1cbfa22008-05-19 16:00:08 +10001291 muxserver_listen();
Damien Millerb3ce9fe2007-08-08 14:32:41 +10001292
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001293 /* If requested, let ssh continue in the background. */
Darren Tucker9a2a6092008-07-04 12:53:50 +10001294 if (fork_after_authentication_flag) {
1295 fork_after_authentication_flag = 0;
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001296 if (daemon(1, 1) < 0)
1297 fatal("daemon() failed: %.200s", strerror(errno));
Darren Tucker9a2a6092008-07-04 12:53:50 +10001298 }
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001299
Darren Tuckerf1de4e52010-01-08 16:54:59 +11001300 if (options.use_roaming)
1301 request_roaming();
1302
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +00001303 return client_loop(tty_flag, tty_flag ?
1304 options.escape_char : SSH_ESCAPECHAR_NONE, id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001305}
Damien Miller0bc1bd82000-11-13 22:57:25 +11001306
Ben Lindstrombba81212001-06-25 05:01:22 +00001307static void
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001308load_public_identity_files(void)
1309{
Damien Miller6b1d53c2006-03-31 23:13:21 +11001310 char *filename, *cp, thishost[NI_MAXHOST];
Darren Tuckerb4fbbc62007-12-02 23:16:32 +11001311 char *pwdir = NULL, *pwname = NULL;
Ben Lindstrom711b04a2001-08-06 21:12:42 +00001312 int i = 0;
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001313 Key *public;
Damien Miller6b1d53c2006-03-31 23:13:21 +11001314 struct passwd *pw;
Damien Miller0a80ca12010-02-27 07:55:05 +11001315 u_int n_ids;
1316 char *identity_files[SSH_MAX_IDENTITY_FILES];
1317 Key *identity_keys[SSH_MAX_IDENTITY_FILES];
Damien Miller7ea845e2010-02-12 09:21:02 +11001318#ifdef ENABLE_PKCS11
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001319 Key **keys;
Damien Miller7ea845e2010-02-12 09:21:02 +11001320 int nkeys;
Damien Miller0a80ca12010-02-27 07:55:05 +11001321#endif /* PKCS11 */
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001322
Damien Miller0a80ca12010-02-27 07:55:05 +11001323 n_ids = 0;
1324 bzero(identity_files, sizeof(identity_files));
1325 bzero(identity_keys, sizeof(identity_keys));
1326
1327#ifdef ENABLE_PKCS11
Damien Miller7ea845e2010-02-12 09:21:02 +11001328 if (options.pkcs11_provider != NULL &&
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001329 options.num_identity_files < SSH_MAX_IDENTITY_FILES &&
Damien Miller7ea845e2010-02-12 09:21:02 +11001330 (pkcs11_init(!options.batch_mode) == 0) &&
1331 (nkeys = pkcs11_add_provider(options.pkcs11_provider, NULL,
1332 &keys)) > 0) {
Damien Miller7ea845e2010-02-12 09:21:02 +11001333 for (i = 0; i < nkeys; i++) {
Damien Miller0a80ca12010-02-27 07:55:05 +11001334 if (n_ids >= SSH_MAX_IDENTITY_FILES) {
1335 key_free(keys[i]);
1336 continue;
1337 }
1338 identity_keys[n_ids] = keys[i];
1339 identity_files[n_ids] =
Damien Miller7ea845e2010-02-12 09:21:02 +11001340 xstrdup(options.pkcs11_provider); /* XXX */
Damien Miller0a80ca12010-02-27 07:55:05 +11001341 n_ids++;
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001342 }
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001343 xfree(keys);
Ben Lindstrom711b04a2001-08-06 21:12:42 +00001344 }
Damien Miller7ea845e2010-02-12 09:21:02 +11001345#endif /* ENABLE_PKCS11 */
Damien Miller6b1d53c2006-03-31 23:13:21 +11001346 if ((pw = getpwuid(original_real_uid)) == NULL)
1347 fatal("load_public_identity_files: getpwuid failed");
Darren Tuckere143f062007-12-02 23:21:16 +11001348 pwname = xstrdup(pw->pw_name);
1349 pwdir = xstrdup(pw->pw_dir);
Damien Miller6b1d53c2006-03-31 23:13:21 +11001350 if (gethostname(thishost, sizeof(thishost)) == -1)
1351 fatal("load_public_identity_files: gethostname: %s",
1352 strerror(errno));
Damien Miller0a80ca12010-02-27 07:55:05 +11001353 for (i = 0; i < options.num_identity_files; i++) {
1354 if (n_ids >= SSH_MAX_IDENTITY_FILES) {
1355 xfree(options.identity_files[i]);
1356 continue;
1357 }
Damien Miller6b1d53c2006-03-31 23:13:21 +11001358 cp = tilde_expand_filename(options.identity_files[i],
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001359 original_real_uid);
Darren Tuckerb4fbbc62007-12-02 23:16:32 +11001360 filename = percent_expand(cp, "d", pwdir,
1361 "u", pwname, "l", thishost, "h", host,
Damien Miller6b1d53c2006-03-31 23:13:21 +11001362 "r", options.user, (char *)NULL);
1363 xfree(cp);
Ben Lindstromd0fca422001-03-26 13:44:06 +00001364 public = key_load_public(filename, NULL);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001365 debug("identity file %s type %d", filename,
1366 public ? public->type : -1);
1367 xfree(options.identity_files[i]);
Damien Miller0a80ca12010-02-27 07:55:05 +11001368 identity_files[n_ids] = filename;
1369 identity_keys[n_ids] = public;
1370
1371 if (++n_ids >= SSH_MAX_IDENTITY_FILES)
1372 continue;
1373
1374 /* Try to add the certificate variant too */
1375 xasprintf(&cp, "%s-cert", filename);
1376 public = key_load_public(cp, NULL);
1377 debug("identity file %s type %d", cp,
1378 public ? public->type : -1);
1379 if (public == NULL) {
1380 xfree(cp);
1381 continue;
1382 }
1383 if (!key_is_cert(public)) {
1384 debug("%s: key %s type %s is not a certificate",
1385 __func__, cp, key_type(public));
1386 key_free(public);
1387 xfree(cp);
1388 continue;
1389 }
1390 identity_keys[n_ids] = public;
1391 /* point to the original path, most likely the private key */
1392 identity_files[n_ids] = xstrdup(filename);
1393 n_ids++;
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001394 }
Damien Miller0a80ca12010-02-27 07:55:05 +11001395 options.num_identity_files = n_ids;
1396 memcpy(options.identity_files, identity_files, sizeof(identity_files));
1397 memcpy(options.identity_keys, identity_keys, sizeof(identity_keys));
1398
Darren Tuckerb4fbbc62007-12-02 23:16:32 +11001399 bzero(pwname, strlen(pwname));
Darren Tuckere143f062007-12-02 23:21:16 +11001400 xfree(pwname);
Darren Tuckerb4fbbc62007-12-02 23:16:32 +11001401 bzero(pwdir, strlen(pwdir));
Darren Tuckere143f062007-12-02 23:21:16 +11001402 xfree(pwdir);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001403}