blob: b9553d3e12e34ea98511ca64218ec9fb31a62101 [file] [log] [blame]
Damien Miller0a80ca12010-02-27 07:55:05 +11001/* $OpenBSD: ssh.c,v 1.335 2010/02/26 20:29:54 djm 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;
Darren Tucker7ebfc102004-11-07 20:06:19 +1100330 else if (strcmp(optarg, "exit") == 0)
Damien Millerb1cbfa22008-05-19 16:00:08 +1000331 muxclient_command = SSHMUX_COMMAND_TERMINATE;
Darren Tucker7ebfc102004-11-07 20:06:19 +1100332 else
333 fatal("Invalid multiplex command.");
334 break;
Damien Miller147bba32002-09-04 16:46:06 +1000335 case 'P': /* deprecated */
Damien Miller95def091999-11-25 00:26:21 +1100336 options.use_privileged_port = 0;
337 break;
Damien Miller95def091999-11-25 00:26:21 +1100338 case 'a':
339 options.forward_agent = 0;
340 break;
Damien Millerb1715dc2000-05-30 13:44:51 +1000341 case 'A':
342 options.forward_agent = 1;
343 break;
Damien Miller95def091999-11-25 00:26:21 +1100344 case 'k':
Damien Millere0113cc2003-11-24 13:10:09 +1100345 options.gss_deleg_creds = 0;
Damien Miller95def091999-11-25 00:26:21 +1100346 break;
Darren Tucker415bddc2007-06-12 23:43:16 +1000347 case 'K':
348 options.gss_authentication = 1;
349 options.gss_deleg_creds = 1;
350 break;
Damien Miller95def091999-11-25 00:26:21 +1100351 case 'i':
352 if (stat(optarg, &st) < 0) {
Damien Millerf4614452001-07-14 12:18:10 +1000353 fprintf(stderr, "Warning: Identity file %s "
Damien Miller3eb48b62005-03-01 21:15:46 +1100354 "not accessible: %s.\n", optarg,
355 strerror(errno));
Damien Miller95def091999-11-25 00:26:21 +1100356 break;
357 }
Damien Millerf4614452001-07-14 12:18:10 +1000358 if (options.num_identity_files >=
359 SSH_MAX_IDENTITY_FILES)
360 fatal("Too many identity files specified "
361 "(max %d)", SSH_MAX_IDENTITY_FILES);
362 options.identity_files[options.num_identity_files++] =
363 xstrdup(optarg);
Damien Miller95def091999-11-25 00:26:21 +1100364 break;
Ben Lindstromc5b68002001-07-04 04:52:03 +0000365 case 'I':
Damien Miller7ea845e2010-02-12 09:21:02 +1100366#ifdef ENABLE_PKCS11
367 options.pkcs11_provider = xstrdup(optarg);
Ben Lindstrombcc18082001-08-06 21:59:25 +0000368#else
Damien Miller7ea845e2010-02-12 09:21:02 +1100369 fprintf(stderr, "no support for PKCS#11.\n");
Ben Lindstrombcc18082001-08-06 21:59:25 +0000370#endif
Ben Lindstromc5b68002001-07-04 04:52:03 +0000371 break;
Damien Miller95def091999-11-25 00:26:21 +1100372 case 't':
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000373 if (tty_flag)
374 force_tty_flag = 1;
Damien Miller95def091999-11-25 00:26:21 +1100375 tty_flag = 1;
376 break;
Damien Miller95def091999-11-25 00:26:21 +1100377 case 'v':
Darren Tuckere98dfa32003-07-19 19:54:31 +1000378 if (debug_flag == 0) {
Damien Millere4340be2000-09-16 13:29:08 +1100379 debug_flag = 1;
380 options.log_level = SYSLOG_LEVEL_DEBUG1;
Darren Tuckere98dfa32003-07-19 19:54:31 +1000381 } else {
382 if (options.log_level < SYSLOG_LEVEL_DEBUG3)
383 options.log_level++;
Damien Millere4340be2000-09-16 13:29:08 +1100384 break;
Darren Tuckere98dfa32003-07-19 19:54:31 +1000385 }
Darren Tuckere9bf9842004-11-05 20:05:32 +1100386 /* FALLTHROUGH */
Damien Miller95def091999-11-25 00:26:21 +1100387 case 'V':
Damien Miller0c889cd2004-03-22 09:36:00 +1100388 fprintf(stderr, "%s, %s\n",
Damien Miller2aa6d3c2004-09-12 16:53:04 +1000389 SSH_RELEASE, SSLeay_version(SSLEAY_VERSION));
Damien Miller95def091999-11-25 00:26:21 +1100390 if (opt == 'V')
391 exit(0);
Damien Miller95def091999-11-25 00:26:21 +1100392 break;
Damien Millerd27b9472005-12-13 19:29:02 +1100393 case 'w':
Damien Miller7b58e802005-12-13 19:33:19 +1100394 if (options.tun_open == -1)
395 options.tun_open = SSH_TUNMODE_DEFAULT;
Damien Millerd27b9472005-12-13 19:29:02 +1100396 options.tun_local = a2tun(optarg, &options.tun_remote);
Damien Miller7b58e802005-12-13 19:33:19 +1100397 if (options.tun_local == SSH_TUNID_ERR) {
Darren Tuckerd6173c02008-06-13 04:52:53 +1000398 fprintf(stderr,
399 "Bad tun device '%s'\n", optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100400 exit(255);
Damien Millerd27b9472005-12-13 19:29:02 +1100401 }
402 break;
Darren Tucker7ad8dd22010-01-12 19:40:27 +1100403 case 'W':
Damien Millere1537f92010-01-26 13:26:22 +1100404 if (stdio_forward_host != NULL)
405 fatal("stdio forward already specified");
406 if (muxclient_command != 0)
407 fatal("Cannot specify stdio forward with -O");
Darren Tucker7ad8dd22010-01-12 19:40:27 +1100408 if (parse_forward(&fwd, optarg, 1, 0)) {
409 stdio_forward_host = fwd.listen_host;
410 stdio_forward_port = fwd.listen_port;
411 xfree(fwd.connect_host);
412 } else {
413 fprintf(stderr,
414 "Bad stdio forwarding specification '%s'\n",
415 optarg);
416 exit(255);
417 }
418 no_tty_flag = 1;
419 no_shell_flag = 1;
420 options.clear_forwardings = 1;
421 options.exit_on_forward_failure = 1;
422 break;
Damien Miller95def091999-11-25 00:26:21 +1100423 case 'q':
424 options.log_level = SYSLOG_LEVEL_QUIET;
425 break;
Damien Miller95def091999-11-25 00:26:21 +1100426 case 'e':
427 if (optarg[0] == '^' && optarg[2] == 0 &&
Damien Millerf4614452001-07-14 12:18:10 +1000428 (u_char) optarg[1] >= 64 &&
429 (u_char) optarg[1] < 128)
Ben Lindstrom46c16222000-12-22 01:43:59 +0000430 options.escape_char = (u_char) optarg[1] & 31;
Damien Miller95def091999-11-25 00:26:21 +1100431 else if (strlen(optarg) == 1)
Ben Lindstrom46c16222000-12-22 01:43:59 +0000432 options.escape_char = (u_char) optarg[0];
Damien Miller95def091999-11-25 00:26:21 +1100433 else if (strcmp(optarg, "none") == 0)
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +0000434 options.escape_char = SSH_ESCAPECHAR_NONE;
Damien Miller95def091999-11-25 00:26:21 +1100435 else {
Damien Millerf4614452001-07-14 12:18:10 +1000436 fprintf(stderr, "Bad escape character '%s'.\n",
437 optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100438 exit(255);
Damien Miller95def091999-11-25 00:26:21 +1100439 }
440 break;
Damien Miller95def091999-11-25 00:26:21 +1100441 case 'c':
Damien Millereba71ba2000-04-29 23:57:08 +1000442 if (ciphers_valid(optarg)) {
443 /* SSH2 only */
444 options.ciphers = xstrdup(optarg);
Darren Tucker5cb30ad2004-08-12 22:40:24 +1000445 options.cipher = SSH_CIPHER_INVALID;
Damien Millereba71ba2000-04-29 23:57:08 +1000446 } else {
447 /* SSH1 only */
Damien Millere39cacc2000-11-29 12:18:44 +1100448 options.cipher = cipher_number(optarg);
449 if (options.cipher == -1) {
Damien Millerf4614452001-07-14 12:18:10 +1000450 fprintf(stderr,
451 "Unknown cipher type '%s'\n",
452 optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100453 exit(255);
Damien Millereba71ba2000-04-29 23:57:08 +1000454 }
Damien Millerf4614452001-07-14 12:18:10 +1000455 if (options.cipher == SSH_CIPHER_3DES)
Damien Millere39cacc2000-11-29 12:18:44 +1100456 options.ciphers = "3des-cbc";
Damien Millerf4614452001-07-14 12:18:10 +1000457 else if (options.cipher == SSH_CIPHER_BLOWFISH)
Damien Millere39cacc2000-11-29 12:18:44 +1100458 options.ciphers = "blowfish-cbc";
Damien Millerf4614452001-07-14 12:18:10 +1000459 else
Damien Millere39cacc2000-11-29 12:18:44 +1100460 options.ciphers = (char *)-1;
Damien Miller95def091999-11-25 00:26:21 +1100461 }
462 break;
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000463 case 'm':
464 if (mac_valid(optarg))
465 options.macs = xstrdup(optarg);
466 else {
Damien Millerf4614452001-07-14 12:18:10 +1000467 fprintf(stderr, "Unknown mac type '%s'\n",
468 optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100469 exit(255);
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000470 }
471 break;
Damien Miller0e220db2004-06-15 10:34:08 +1000472 case 'M':
Damien Millerd14b1e72005-06-16 13:19:41 +1000473 if (options.control_master == SSHCTL_MASTER_YES)
474 options.control_master = SSHCTL_MASTER_ASK;
475 else
476 options.control_master = SSHCTL_MASTER_YES;
Damien Miller0e220db2004-06-15 10:34:08 +1000477 break;
Damien Miller95def091999-11-25 00:26:21 +1100478 case 'p':
Ben Lindstrom19066a12001-04-12 23:39:26 +0000479 options.port = a2port(optarg);
Damien Miller3dc71ad2009-01-28 16:31:22 +1100480 if (options.port <= 0) {
Ben Lindstrom146edb92001-04-11 23:06:28 +0000481 fprintf(stderr, "Bad port '%s'\n", optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100482 exit(255);
Ben Lindstrom146edb92001-04-11 23:06:28 +0000483 }
Damien Miller95def091999-11-25 00:26:21 +1100484 break;
Damien Miller95def091999-11-25 00:26:21 +1100485 case 'l':
486 options.user = optarg;
487 break;
Ben Lindstrom1a174712001-09-12 17:56:15 +0000488
Damien Miller95def091999-11-25 00:26:21 +1100489 case 'L':
Damien Miller4bf648f2009-02-14 16:28:21 +1100490 if (parse_forward(&fwd, optarg, 0, 0))
Damien Millerf91ee4c2005-03-01 21:24:33 +1100491 add_local_forward(&options, &fwd);
492 else {
Damien Millerf4614452001-07-14 12:18:10 +1000493 fprintf(stderr,
Damien Millerf91ee4c2005-03-01 21:24:33 +1100494 "Bad local forwarding specification '%s'\n",
Damien Millerf4614452001-07-14 12:18:10 +1000495 optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100496 exit(255);
Ben Lindstrom1a174712001-09-12 17:56:15 +0000497 }
Damien Millerf91ee4c2005-03-01 21:24:33 +1100498 break;
499
500 case 'R':
Damien Miller4bf648f2009-02-14 16:28:21 +1100501 if (parse_forward(&fwd, optarg, 0, 1)) {
Damien Millerf91ee4c2005-03-01 21:24:33 +1100502 add_remote_forward(&options, &fwd);
503 } else {
504 fprintf(stderr,
505 "Bad remote forwarding specification "
506 "'%s'\n", optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100507 exit(255);
Damien Millerf91ee4c2005-03-01 21:24:33 +1100508 }
Damien Miller95def091999-11-25 00:26:21 +1100509 break;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000510
511 case 'D':
Damien Miller4bf648f2009-02-14 16:28:21 +1100512 if (parse_forward(&fwd, optarg, 1, 0)) {
Damien Millera699d952008-11-03 19:27:34 +1100513 add_local_forward(&options, &fwd);
Damien Millerf91ee4c2005-03-01 21:24:33 +1100514 } else {
Damien Millera699d952008-11-03 19:27:34 +1100515 fprintf(stderr,
516 "Bad dynamic forwarding specification "
517 "'%s'\n", optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100518 exit(255);
Ben Lindstrom146edb92001-04-11 23:06:28 +0000519 }
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000520 break;
521
Damien Miller95def091999-11-25 00:26:21 +1100522 case 'C':
523 options.compression = 1;
524 break;
Damien Miller1383bd82000-04-06 12:32:37 +1000525 case 'N':
526 no_shell_flag = 1;
527 no_tty_flag = 1;
528 break;
Damien Miller1383bd82000-04-06 12:32:37 +1000529 case 'T':
530 no_tty_flag = 1;
531 break;
Damien Miller95def091999-11-25 00:26:21 +1100532 case 'o':
533 dummy = 1;
Damien Miller9836cf82003-12-17 16:30:06 +1100534 line = xstrdup(optarg);
Damien Millerf4614452001-07-14 12:18:10 +1000535 if (process_config_line(&options, host ? host : "",
Damien Miller9836cf82003-12-17 16:30:06 +1100536 line, "command-line", 0, &dummy) != 0)
Darren Tuckere9a9b712005-12-20 16:15:51 +1100537 exit(255);
Damien Miller9836cf82003-12-17 16:30:06 +1100538 xfree(line);
Damien Miller95def091999-11-25 00:26:21 +1100539 break;
Damien Miller832562e2001-01-30 09:30:01 +1100540 case 's':
541 subsystem_flag = 1;
542 break;
Damien Miller0e220db2004-06-15 10:34:08 +1000543 case 'S':
544 if (options.control_path != NULL)
545 free(options.control_path);
546 options.control_path = xstrdup(optarg);
Damien Miller0e220db2004-06-15 10:34:08 +1000547 break;
Ben Lindstrome0f88042001-04-30 13:06:24 +0000548 case 'b':
549 options.bind_address = optarg;
550 break;
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000551 case 'F':
552 config = optarg;
553 break;
Damien Miller95def091999-11-25 00:26:21 +1100554 default:
555 usage();
556 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000557 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000558
Damien Millerf4614452001-07-14 12:18:10 +1000559 ac -= optind;
560 av += optind;
561
Darren Tuckerb8c884a2010-01-08 18:53:43 +1100562 if (ac > 0 && !host) {
Ben Lindstromc276c122002-12-23 02:14:51 +0000563 if (strrchr(*av, '@')) {
Damien Millerf4614452001-07-14 12:18:10 +1000564 p = xstrdup(*av);
Ben Lindstromc276c122002-12-23 02:14:51 +0000565 cp = strrchr(p, '@');
Damien Millerf4614452001-07-14 12:18:10 +1000566 if (cp == NULL || cp == p)
567 usage();
568 options.user = p;
569 *cp = '\0';
570 host = ++cp;
571 } else
572 host = *av;
Ben Lindstromb9fa6912002-12-23 02:24:54 +0000573 if (ac > 1) {
574 optind = optreset = 1;
Damien Millerf4614452001-07-14 12:18:10 +1000575 goto again;
576 }
Ben Lindstromb9fa6912002-12-23 02:24:54 +0000577 ac--, av++;
Damien Millerf4614452001-07-14 12:18:10 +1000578 }
579
Damien Miller95def091999-11-25 00:26:21 +1100580 /* Check that we got a host name. */
581 if (!host)
582 usage();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000583
Damien Millercb5e44a2000-09-29 12:12:36 +1100584 SSLeay_add_all_algorithms();
Damien Miller0bc1bd82000-11-13 22:57:25 +1100585 ERR_load_crypto_strings();
Damien Millercb5e44a2000-09-29 12:12:36 +1100586
Damien Miller95def091999-11-25 00:26:21 +1100587 /* Initialize the command to execute on remote host. */
588 buffer_init(&command);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000589
Damien Miller5428f641999-11-25 11:54:57 +1100590 /*
591 * Save the command to execute on the remote host in a buffer. There
592 * is no limit on the length of the command, except by the maximum
593 * packet size. Also sets the tty flag if there is no command.
594 */
Damien Millerf4614452001-07-14 12:18:10 +1000595 if (!ac) {
Damien Miller95def091999-11-25 00:26:21 +1100596 /* No command specified - execute shell on a tty. */
597 tty_flag = 1;
Damien Miller832562e2001-01-30 09:30:01 +1100598 if (subsystem_flag) {
Damien Millerf4614452001-07-14 12:18:10 +1000599 fprintf(stderr,
600 "You must specify a subsystem to invoke.\n");
Damien Miller832562e2001-01-30 09:30:01 +1100601 usage();
602 }
Damien Miller95def091999-11-25 00:26:21 +1100603 } else {
Damien Millerf4614452001-07-14 12:18:10 +1000604 /* A command has been specified. Store it into the buffer. */
605 for (i = 0; i < ac; i++) {
606 if (i)
Damien Miller95def091999-11-25 00:26:21 +1100607 buffer_append(&command, " ", 1);
608 buffer_append(&command, av[i], strlen(av[i]));
609 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000610 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000611
Damien Miller95def091999-11-25 00:26:21 +1100612 /* Cannot fork to background if no command. */
Darren Tuckerd6173c02008-06-13 04:52:53 +1000613 if (fork_after_authentication_flag && buffer_len(&command) == 0 &&
614 !no_shell_flag)
615 fatal("Cannot fork into background without a command "
616 "to execute.");
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000617
Damien Miller95def091999-11-25 00:26:21 +1100618 /* Allocate a tty by default if no command specified. */
619 if (buffer_len(&command) == 0)
620 tty_flag = 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000621
Ben Lindstroma962c2f2002-07-04 00:14:17 +0000622 /* Force no tty */
Ben Lindstromc72745a2000-12-02 19:03:54 +0000623 if (no_tty_flag)
624 tty_flag = 0;
Damien Miller95def091999-11-25 00:26:21 +1100625 /* Do not allocate a tty if stdin is not a tty. */
Damien Millerddee5752005-05-26 12:05:05 +1000626 if ((!isatty(fileno(stdin)) || stdin_null_flag) && !force_tty_flag) {
Damien Miller95def091999-11-25 00:26:21 +1100627 if (tty_flag)
Darren Tuckerd6173c02008-06-13 04:52:53 +1000628 logit("Pseudo-terminal will not be allocated because "
629 "stdin is not a terminal.");
Damien Miller95def091999-11-25 00:26:21 +1100630 tty_flag = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000631 }
Damien Miller1383bd82000-04-06 12:32:37 +1000632
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000633 /*
634 * Initialize "log" output. Since we are the client all output
635 * actually goes to stderr.
636 */
Darren Tucker72efd742009-06-21 17:48:00 +1000637 log_init(argv0,
Darren Tuckerd6173c02008-06-13 04:52:53 +1000638 options.log_level == -1 ? SYSLOG_LEVEL_INFO : options.log_level,
Damien Millere272a5b2008-11-03 19:22:37 +1100639 SYSLOG_FACILITY_USER, !use_syslog);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000640
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000641 /*
642 * Read per-user configuration file. Ignore the system wide config
643 * file if the user specifies a config file on the command line.
644 */
645 if (config != NULL) {
Damien Miller914420f2004-04-20 20:14:07 +1000646 if (!read_config_file(config, host, &options, 0))
Ben Lindstromedc0cf22001-09-12 18:32:20 +0000647 fatal("Can't open user config file %.100s: "
648 "%.100s", config, strerror(errno));
Damien Miller80163902007-01-05 16:30:16 +1100649 } else {
Darren Tucker199b1342009-07-06 07:16:56 +1000650 r = snprintf(buf, sizeof buf, "%s/%s", pw->pw_dir,
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000651 _PATH_SSH_USER_CONFFILE);
Darren Tucker199b1342009-07-06 07:16:56 +1000652 if (r > 0 && (size_t)r < sizeof(buf))
653 (void)read_config_file(buf, host, &options, 1);
Ben Lindstrom83f07d12001-10-03 17:22:29 +0000654
655 /* Read systemwide configuration file after use config. */
Darren Tuckerfc959702004-07-17 16:12:08 +1000656 (void)read_config_file(_PATH_HOST_CONFIG_FILE, host,
Damien Miller57a44762004-04-20 20:11:57 +1000657 &options, 0);
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000658 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000659
Damien Miller95def091999-11-25 00:26:21 +1100660 /* Fill configuration defaults. */
661 fill_default_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000662
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000663 channel_set_af(options.address_family);
664
Damien Miller95def091999-11-25 00:26:21 +1100665 /* reinit */
Darren Tucker72efd742009-06-21 17:48:00 +1000666 log_init(argv0, options.log_level, SYSLOG_FACILITY_USER, !use_syslog);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000667
Damien Miller60bc5172001-03-19 09:38:15 +1100668 seed_rng();
669
Damien Miller95def091999-11-25 00:26:21 +1100670 if (options.user == NULL)
671 options.user = xstrdup(pw->pw_name);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000672
Darren Tuckerf6b01b72008-06-13 04:56:37 +1000673 /* Get default port if port has not been set. */
674 if (options.port == 0) {
675 sp = getservbyname(SSH_SERVICE_NAME, "tcp");
676 options.port = sp ? ntohs(sp->s_port) : SSH_DEFAULT_PORT;
677 }
678
679 if (options.local_command != NULL) {
680 char thishost[NI_MAXHOST];
681
682 if (gethostname(thishost, sizeof(thishost)) == -1)
683 fatal("gethostname: %s", strerror(errno));
684 snprintf(buf, sizeof(buf), "%d", options.port);
685 debug3("expanding LocalCommand: %s", options.local_command);
686 cp = options.local_command;
687 options.local_command = percent_expand(cp, "d", pw->pw_dir,
688 "h", options.hostname? options.hostname : host,
689 "l", thishost, "n", host, "r", options.user, "p", buf,
690 "u", pw->pw_name, (char *)NULL);
691 debug3("expanded LocalCommand: %s", options.local_command);
692 xfree(cp);
693 }
694
Damien Miller95def091999-11-25 00:26:21 +1100695 if (options.hostname != NULL)
696 host = options.hostname;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000697
Darren Tucker3f521e22003-07-03 16:20:42 +1000698 /* force lowercase for hostkey matching */
699 if (options.host_key_alias != NULL) {
700 for (p = options.host_key_alias; *p; p++)
701 if (isupper(*p))
Damien Miller1d2b6702006-03-26 14:09:54 +1100702 *p = (char)tolower(*p);
Darren Tucker3f521e22003-07-03 16:20:42 +1000703 }
704
Damien Miller9f1e33a2003-02-24 11:57:32 +1100705 if (options.proxy_command != NULL &&
Darren Tucker32e42c72007-12-02 23:01:03 +1100706 strcmp(options.proxy_command, "none") == 0) {
707 xfree(options.proxy_command);
Damien Miller9f1e33a2003-02-24 11:57:32 +1100708 options.proxy_command = NULL;
Darren Tucker32e42c72007-12-02 23:01:03 +1100709 }
Damien Miller8f74c8f2005-06-26 08:56:03 +1000710 if (options.control_path != NULL &&
Darren Tucker32e42c72007-12-02 23:01:03 +1100711 strcmp(options.control_path, "none") == 0) {
712 xfree(options.control_path);
Damien Miller8f74c8f2005-06-26 08:56:03 +1000713 options.control_path = NULL;
Darren Tucker32e42c72007-12-02 23:01:03 +1100714 }
Damien Miller9f1e33a2003-02-24 11:57:32 +1100715
Damien Miller0e220db2004-06-15 10:34:08 +1000716 if (options.control_path != NULL) {
Damien Miller6b1d53c2006-03-31 23:13:21 +1100717 char thishost[NI_MAXHOST];
Damien Miller3ec54c72006-03-15 11:30:13 +1100718
Damien Miller6b1d53c2006-03-31 23:13:21 +1100719 if (gethostname(thishost, sizeof(thishost)) == -1)
Damien Miller3ec54c72006-03-15 11:30:13 +1100720 fatal("gethostname: %s", strerror(errno));
Damien Miller6476cad2005-06-16 13:18:34 +1000721 snprintf(buf, sizeof(buf), "%d", options.port);
722 cp = tilde_expand_filename(options.control_path,
723 original_real_uid);
Darren Tucker32e42c72007-12-02 23:01:03 +1100724 xfree(options.control_path);
Damien Miller6476cad2005-06-16 13:18:34 +1000725 options.control_path = percent_expand(cp, "p", buf, "h", host,
Damien Miller6b1d53c2006-03-31 23:13:21 +1100726 "r", options.user, "l", thishost, (char *)NULL);
Damien Miller6476cad2005-06-16 13:18:34 +1000727 xfree(cp);
Damien Miller0e220db2004-06-15 10:34:08 +1000728 }
Damien Millerb1cbfa22008-05-19 16:00:08 +1000729 if (muxclient_command != 0 && options.control_path == NULL)
Darren Tucker0814d312005-06-01 23:08:51 +1000730 fatal("No ControlPath specified for \"-O\" command");
Damien Millerd14b1e72005-06-16 13:19:41 +1000731 if (options.control_path != NULL)
Damien Millerb1cbfa22008-05-19 16:00:08 +1000732 muxclient(options.control_path);
Damien Miller0e220db2004-06-15 10:34:08 +1000733
Damien Miller67bd0622007-09-17 12:06:57 +1000734 timeout_ms = options.connection_timeout * 1000;
735
Kevin Stevesfcec7f82000-12-15 19:55:48 +0000736 /* Open a connection to the remote host. */
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000737 if (ssh_connect(host, &hostaddr, options.port,
Damien Miller67bd0622007-09-17 12:06:57 +1000738 options.address_family, options.connection_attempts, &timeout_ms,
739 options.tcp_keep_alive,
Ben Lindstrom1aa64272002-06-11 20:28:05 +0000740#ifdef HAVE_CYGWIN
741 options.use_privileged_port,
742#else
Ben Lindstromf9c48842002-06-11 16:37:51 +0000743 original_effective_uid == 0 && options.use_privileged_port,
Ben Lindstrom1aa64272002-06-11 20:28:05 +0000744#endif
Ben Lindstromda394ca2002-06-12 16:11:12 +0000745 options.proxy_command) != 0)
Darren Tuckere9a9b712005-12-20 16:15:51 +1100746 exit(255);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000747
Damien Miller67bd0622007-09-17 12:06:57 +1000748 if (timeout_ms > 0)
749 debug3("timeout: %d ms remain after connect", timeout_ms);
750
Damien Miller5428f641999-11-25 11:54:57 +1100751 /*
752 * If we successfully made the connection, load the host private key
753 * in case we will need it later for combined rsa-rhosts
754 * authentication. This must be done before releasing extra
755 * privileges, because the file is only readable by root.
Ben Lindstrom9e5bb572002-06-06 19:58:27 +0000756 * If we cannot access the private keys, load the public keys
757 * instead and try to execute the ssh-keysign helper instead.
Damien Miller5428f641999-11-25 11:54:57 +1100758 */
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000759 sensitive_data.nkeys = 0;
760 sensitive_data.keys = NULL;
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000761 sensitive_data.external_keysign = 0;
Ben Lindstrom24157572002-06-12 16:09:39 +0000762 if (options.rhosts_rsa_authentication ||
763 options.hostbased_authentication) {
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000764 sensitive_data.nkeys = 3;
Damien Millerddd63ab2006-03-31 23:10:51 +1100765 sensitive_data.keys = xcalloc(sensitive_data.nkeys,
Ben Lindstroma962c2f2002-07-04 00:14:17 +0000766 sizeof(Key));
Ben Lindstromf9c48842002-06-11 16:37:51 +0000767
768 PRIV_START;
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000769 sensitive_data.keys[0] = key_load_private_type(KEY_RSA1,
Darren Tucker232b76f2006-05-06 17:41:51 +1000770 _PATH_HOST_KEY_FILE, "", NULL, NULL);
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000771 sensitive_data.keys[1] = key_load_private_type(KEY_DSA,
Darren Tucker232b76f2006-05-06 17:41:51 +1000772 _PATH_HOST_DSA_KEY_FILE, "", NULL, NULL);
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000773 sensitive_data.keys[2] = key_load_private_type(KEY_RSA,
Darren Tucker232b76f2006-05-06 17:41:51 +1000774 _PATH_HOST_RSA_KEY_FILE, "", NULL, NULL);
Ben Lindstromf9c48842002-06-11 16:37:51 +0000775 PRIV_END;
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000776
Ben Lindstrom5d35a2f2002-07-04 00:19:40 +0000777 if (options.hostbased_authentication == 1 &&
778 sensitive_data.keys[0] == NULL &&
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000779 sensitive_data.keys[1] == NULL &&
780 sensitive_data.keys[2] == NULL) {
781 sensitive_data.keys[1] = key_load_public(
782 _PATH_HOST_DSA_KEY_FILE, NULL);
783 sensitive_data.keys[2] = key_load_public(
784 _PATH_HOST_RSA_KEY_FILE, NULL);
785 sensitive_data.external_keysign = 1;
786 }
Damien Miller95def091999-11-25 00:26:21 +1100787 }
Damien Miller5428f641999-11-25 11:54:57 +1100788 /*
789 * Get rid of any extra privileges that we may have. We will no
790 * longer need them. Also, extra privileges could make it very hard
791 * to read identity files and other non-world-readable files from the
792 * user's home directory if it happens to be on a NFS volume where
793 * root is mapped to nobody.
794 */
Darren Tucker25f60a72004-08-15 17:23:34 +1000795 if (original_effective_uid == 0) {
796 PRIV_START;
797 permanently_set_uid(pw);
798 }
Damien Miller95def091999-11-25 00:26:21 +1100799
Damien Miller5428f641999-11-25 11:54:57 +1100800 /*
801 * Now that we are back to our own permissions, create ~/.ssh
Damien Miller788f2122005-11-05 15:14:59 +1100802 * directory if it doesn't already exist.
Damien Miller5428f641999-11-25 11:54:57 +1100803 */
Darren Tucker199b1342009-07-06 07:16:56 +1000804 r = snprintf(buf, sizeof buf, "%s%s%s", pw->pw_dir,
Darren Tuckerd6173c02008-06-13 04:52:53 +1000805 strcmp(pw->pw_dir, "/") ? "/" : "", _PATH_SSH_USER_DIR);
Darren Tucker199b1342009-07-06 07:16:56 +1000806 if (r > 0 && (size_t)r < sizeof(buf) && stat(buf, &st) < 0)
Damien Millerbe484b52000-07-15 14:14:16 +1000807 if (mkdir(buf, 0700) < 0)
Damien Miller95def091999-11-25 00:26:21 +1100808 error("Could not create directory '%.200s'.", buf);
809
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000810 /* load options.identity_files */
811 load_public_identity_files();
812
813 /* Expand ~ in known host file names. */
814 /* XXX mem-leaks: */
Damien Miller0bc1bd82000-11-13 22:57:25 +1100815 options.system_hostfile =
816 tilde_expand_filename(options.system_hostfile, original_real_uid);
817 options.user_hostfile =
818 tilde_expand_filename(options.user_hostfile, original_real_uid);
819 options.system_hostfile2 =
820 tilde_expand_filename(options.system_hostfile2, original_real_uid);
821 options.user_hostfile2 =
822 tilde_expand_filename(options.user_hostfile2, original_real_uid);
Damien Miller95def091999-11-25 00:26:21 +1100823
Damien Miller07cd5892001-11-12 10:52:03 +1100824 signal(SIGPIPE, SIG_IGN); /* ignore SIGPIPE early */
825
Darren Tuckerd6173c02008-06-13 04:52:53 +1000826 /* Log into the remote system. Never returns if the login fails. */
Damien Miller67bd0622007-09-17 12:06:57 +1000827 ssh_login(&sensitive_data, host, (struct sockaddr *)&hostaddr,
828 pw, timeout_ms);
Damien Miller95def091999-11-25 00:26:21 +1100829
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000830 /* We no longer need the private host keys. Clear them now. */
831 if (sensitive_data.nkeys != 0) {
832 for (i = 0; i < sensitive_data.nkeys; i++) {
833 if (sensitive_data.keys[i] != NULL) {
834 /* Destroys contents safely */
835 debug3("clear hostkey %d", i);
836 key_free(sensitive_data.keys[i]);
837 sensitive_data.keys[i] = NULL;
838 }
839 }
840 xfree(sensitive_data.keys);
841 }
Ben Lindstroma6c8a8d2001-08-06 21:42:00 +0000842 for (i = 0; i < options.num_identity_files; i++) {
843 if (options.identity_files[i]) {
844 xfree(options.identity_files[i]);
845 options.identity_files[i] = NULL;
846 }
847 if (options.identity_keys[i]) {
848 key_free(options.identity_keys[i]);
849 options.identity_keys[i] = NULL;
850 }
851 }
Damien Miller95def091999-11-25 00:26:21 +1100852
Damien Miller1383bd82000-04-06 12:32:37 +1000853 exit_status = compat20 ? ssh_session2() : ssh_session();
854 packet_close();
Damien Miller8c4e18a2002-09-19 12:05:02 +1000855
Damien Millerb1cbfa22008-05-19 16:00:08 +1000856 if (options.control_path != NULL && muxserver_sock != -1)
Damien Miller0e220db2004-06-15 10:34:08 +1000857 unlink(options.control_path);
858
Damien Miller8c4e18a2002-09-19 12:05:02 +1000859 /*
Damien Millera8e06ce2003-11-21 23:48:55 +1100860 * Send SIGHUP to proxy command if used. We don't wait() in
Damien Miller8c4e18a2002-09-19 12:05:02 +1000861 * case it hangs and instead rely on init to reap the child
862 */
863 if (proxy_command_pid > 1)
864 kill(proxy_command_pid, SIGHUP);
865
Damien Miller1383bd82000-04-06 12:32:37 +1000866 return exit_status;
867}
868
Darren Tucker9f407c42008-06-13 04:50:27 +1000869/* Callback for remote forward global requests */
870static void
871ssh_confirm_remote_forward(int type, u_int32_t seq, void *ctxt)
872{
873 Forward *rfwd = (Forward *)ctxt;
874
Damien Miller4bf648f2009-02-14 16:28:21 +1100875 /* XXX verbose() on failure? */
Darren Tucker9f407c42008-06-13 04:50:27 +1000876 debug("remote forward %s for: listen %d, connect %s:%d",
877 type == SSH2_MSG_REQUEST_SUCCESS ? "success" : "failure",
878 rfwd->listen_port, rfwd->connect_host, rfwd->connect_port);
Damien Miller4bf648f2009-02-14 16:28:21 +1100879 if (type == SSH2_MSG_REQUEST_SUCCESS && rfwd->listen_port == 0) {
880 logit("Allocated port %u for remote forward to %s:%d",
881 packet_get_int(),
882 rfwd->connect_host, rfwd->connect_port);
883 }
884
Darren Tucker9f407c42008-06-13 04:50:27 +1000885 if (type == SSH2_MSG_REQUEST_FAILURE) {
886 if (options.exit_on_forward_failure)
887 fatal("Error: remote port forwarding failed for "
888 "listen port %d", rfwd->listen_port);
889 else
890 logit("Warning: remote port forwarding failed for "
891 "listen port %d", rfwd->listen_port);
892 }
Darren Tucker9a2a6092008-07-04 12:53:50 +1000893 if (++remote_forward_confirms_received == options.num_remote_forwards) {
Darren Tucker9f407c42008-06-13 04:50:27 +1000894 debug("All remote forwarding requests processed");
Darren Tucker9a2a6092008-07-04 12:53:50 +1000895 if (fork_after_authentication_flag) {
896 fork_after_authentication_flag = 0;
897 if (daemon(1, 1) < 0)
898 fatal("daemon() failed: %.200s",
899 strerror(errno));
900 }
901 }
Darren Tucker9f407c42008-06-13 04:50:27 +1000902}
903
Ben Lindstrombba81212001-06-25 05:01:22 +0000904static void
Darren Tucker7ad8dd22010-01-12 19:40:27 +1100905client_cleanup_stdio_fwd(int id, void *arg)
906{
907 debug("stdio forwarding: done");
908 cleanup_exit(0);
909}
910
911static int
912client_setup_stdio_fwd(const char *host_to_connect, u_short port_to_connect)
913{
914 Channel *c;
Damien Millere1537f92010-01-26 13:26:22 +1100915 int in, out;
Darren Tucker7ad8dd22010-01-12 19:40:27 +1100916
917 debug3("client_setup_stdio_fwd %s:%d", host_to_connect,
918 port_to_connect);
Damien Millere1537f92010-01-26 13:26:22 +1100919
920 in = dup(STDIN_FILENO);
921 out = dup(STDOUT_FILENO);
922 if (in < 0 || out < 0)
923 fatal("channel_connect_stdio_fwd: dup() in/out failed");
924
925 if ((c = channel_connect_stdio_fwd(host_to_connect, port_to_connect,
926 in, out)) == NULL)
Darren Tucker7ad8dd22010-01-12 19:40:27 +1100927 return 0;
928 channel_register_cleanup(c->self, client_cleanup_stdio_fwd, 0);
929 return 1;
930}
931
932static void
Damien Miller0bc1bd82000-11-13 22:57:25 +1100933ssh_init_forwarding(void)
934{
Kevin Steves12057502001-02-05 14:54:34 +0000935 int success = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100936 int i;
Kevin Steves12057502001-02-05 14:54:34 +0000937
Darren Tucker7ad8dd22010-01-12 19:40:27 +1100938 if (stdio_forward_host != NULL) {
939 if (!compat20) {
940 fatal("stdio forwarding require Protocol 2");
941 }
942 if (!client_setup_stdio_fwd(stdio_forward_host,
943 stdio_forward_port))
944 fatal("Failed to connect in stdio forward mode.");
945 }
946
Damien Miller0bc1bd82000-11-13 22:57:25 +1100947 /* Initiate local TCP/IP port forwardings. */
948 for (i = 0; i < options.num_local_forwards; i++) {
Damien Millerf91ee4c2005-03-01 21:24:33 +1100949 debug("Local connections to %.200s:%d forwarded to remote "
950 "address %.200s:%d",
Darren Tucker47eede72005-03-14 23:08:12 +1100951 (options.local_forwards[i].listen_host == NULL) ?
952 (options.gateway_ports ? "*" : "LOCALHOST") :
Damien Millerf91ee4c2005-03-01 21:24:33 +1100953 options.local_forwards[i].listen_host,
954 options.local_forwards[i].listen_port,
955 options.local_forwards[i].connect_host,
956 options.local_forwards[i].connect_port);
Damien Millerb16461c2002-01-22 23:29:22 +1100957 success += channel_setup_local_fwd_listener(
Damien Millerf91ee4c2005-03-01 21:24:33 +1100958 options.local_forwards[i].listen_host,
959 options.local_forwards[i].listen_port,
960 options.local_forwards[i].connect_host,
961 options.local_forwards[i].connect_port,
Damien Miller0bc1bd82000-11-13 22:57:25 +1100962 options.gateway_ports);
963 }
Darren Tuckere7d4b192006-07-12 22:17:10 +1000964 if (i > 0 && success != i && options.exit_on_forward_failure)
965 fatal("Could not request local forwarding.");
Kevin Steves12057502001-02-05 14:54:34 +0000966 if (i > 0 && success == 0)
967 error("Could not request local forwarding.");
Damien Miller0bc1bd82000-11-13 22:57:25 +1100968
969 /* Initiate remote TCP/IP port forwardings. */
970 for (i = 0; i < options.num_remote_forwards; i++) {
Damien Millerf91ee4c2005-03-01 21:24:33 +1100971 debug("Remote connections from %.200s:%d forwarded to "
972 "local address %.200s:%d",
Damien Miller46d38de2005-07-17 17:02:09 +1000973 (options.remote_forwards[i].listen_host == NULL) ?
Damien Milleraa3bb102005-11-05 15:12:59 +1100974 "LOCALHOST" : options.remote_forwards[i].listen_host,
Damien Millerf91ee4c2005-03-01 21:24:33 +1100975 options.remote_forwards[i].listen_port,
976 options.remote_forwards[i].connect_host,
977 options.remote_forwards[i].connect_port);
Darren Tuckere7d4b192006-07-12 22:17:10 +1000978 if (channel_request_remote_forwarding(
Damien Millerf91ee4c2005-03-01 21:24:33 +1100979 options.remote_forwards[i].listen_host,
980 options.remote_forwards[i].listen_port,
981 options.remote_forwards[i].connect_host,
Darren Tuckere7d4b192006-07-12 22:17:10 +1000982 options.remote_forwards[i].connect_port) < 0) {
983 if (options.exit_on_forward_failure)
984 fatal("Could not request remote forwarding.");
985 else
986 logit("Warning: Could not request remote "
987 "forwarding.");
988 }
Darren Tucker9f407c42008-06-13 04:50:27 +1000989 client_register_global_confirm(ssh_confirm_remote_forward,
990 &options.remote_forwards[i]);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100991 }
Damien Millerb3ce9fe2007-08-08 14:32:41 +1000992
993 /* Initiate tunnel forwarding. */
994 if (options.tun_open != SSH_TUNMODE_NO) {
995 if (client_request_tun_fwd(options.tun_open,
996 options.tun_local, options.tun_remote) == -1) {
997 if (options.exit_on_forward_failure)
998 fatal("Could not request tunnel forwarding.");
999 else
1000 error("Could not request tunnel forwarding.");
1001 }
1002 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11001003}
1004
Ben Lindstrombba81212001-06-25 05:01:22 +00001005static void
Damien Miller0bc1bd82000-11-13 22:57:25 +11001006check_agent_present(void)
1007{
1008 if (options.forward_agent) {
Damien Miller788f2122005-11-05 15:14:59 +11001009 /* Clear agent forwarding if we don't have an agent. */
Damien Miller789e95d2002-09-12 09:52:46 +10001010 if (!ssh_agent_present())
Damien Miller0bc1bd82000-11-13 22:57:25 +11001011 options.forward_agent = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001012 }
1013}
1014
Ben Lindstrombba81212001-06-25 05:01:22 +00001015static int
Damien Miller1383bd82000-04-06 12:32:37 +10001016ssh_session(void)
1017{
1018 int type;
Damien Miller1383bd82000-04-06 12:32:37 +10001019 int interactive = 0;
1020 int have_tty = 0;
1021 struct winsize ws;
Damien Miller1383bd82000-04-06 12:32:37 +10001022 char *cp;
Damien Miller17e7ed02005-06-17 12:54:33 +10001023 const char *display;
Damien Miller1383bd82000-04-06 12:32:37 +10001024
Damien Miller95def091999-11-25 00:26:21 +11001025 /* Enable compression if requested. */
1026 if (options.compression) {
Darren Tuckerd6173c02008-06-13 04:52:53 +10001027 debug("Requesting compression at level %d.",
1028 options.compression_level);
Damien Miller95def091999-11-25 00:26:21 +11001029
Darren Tuckerd6173c02008-06-13 04:52:53 +10001030 if (options.compression_level < 1 ||
1031 options.compression_level > 9)
1032 fatal("Compression level must be from 1 (fast) to "
1033 "9 (slow, best).");
Damien Miller95def091999-11-25 00:26:21 +11001034
1035 /* Send the request. */
1036 packet_start(SSH_CMSG_REQUEST_COMPRESSION);
1037 packet_put_int(options.compression_level);
1038 packet_send();
1039 packet_write_wait();
Damien Millerdff50992002-01-22 23:16:32 +11001040 type = packet_read();
Damien Miller95def091999-11-25 00:26:21 +11001041 if (type == SSH_SMSG_SUCCESS)
1042 packet_start_compression(options.compression_level);
1043 else if (type == SSH_SMSG_FAILURE)
Damien Miller996acd22003-04-09 20:59:48 +10001044 logit("Warning: Remote host refused compression.");
Damien Miller95def091999-11-25 00:26:21 +11001045 else
Darren Tuckerd6173c02008-06-13 04:52:53 +10001046 packet_disconnect("Protocol error waiting for "
1047 "compression response.");
Damien Miller95def091999-11-25 00:26:21 +11001048 }
1049 /* Allocate a pseudo tty if appropriate. */
1050 if (tty_flag) {
1051 debug("Requesting pty.");
1052
1053 /* Start the packet. */
1054 packet_start(SSH_CMSG_REQUEST_PTY);
1055
1056 /* Store TERM in the packet. There is no limit on the
1057 length of the string. */
1058 cp = getenv("TERM");
1059 if (!cp)
1060 cp = "";
Ben Lindstrom664408d2001-06-09 01:42:01 +00001061 packet_put_cstring(cp);
Damien Miller95def091999-11-25 00:26:21 +11001062
1063 /* Store window size in the packet. */
1064 if (ioctl(fileno(stdin), TIOCGWINSZ, &ws) < 0)
1065 memset(&ws, 0, sizeof(ws));
Damien Miller71a73672006-03-26 14:04:36 +11001066 packet_put_int((u_int)ws.ws_row);
1067 packet_put_int((u_int)ws.ws_col);
1068 packet_put_int((u_int)ws.ws_xpixel);
1069 packet_put_int((u_int)ws.ws_ypixel);
Damien Miller95def091999-11-25 00:26:21 +11001070
1071 /* Store tty modes in the packet. */
Ben Lindstromae8e2d32001-04-14 23:13:02 +00001072 tty_make_modes(fileno(stdin), NULL);
Damien Miller95def091999-11-25 00:26:21 +11001073
1074 /* Send the packet, and wait for it to leave. */
1075 packet_send();
1076 packet_write_wait();
1077
1078 /* Read response from the server. */
Damien Millerdff50992002-01-22 23:16:32 +11001079 type = packet_read();
Damien Miller450a7a12000-03-26 13:04:51 +10001080 if (type == SSH_SMSG_SUCCESS) {
Damien Miller95def091999-11-25 00:26:21 +11001081 interactive = 1;
Damien Miller1383bd82000-04-06 12:32:37 +10001082 have_tty = 1;
Damien Miller450a7a12000-03-26 13:04:51 +10001083 } else if (type == SSH_SMSG_FAILURE)
Darren Tuckerd6173c02008-06-13 04:52:53 +10001084 logit("Warning: Remote host failed or refused to "
1085 "allocate a pseudo tty.");
Damien Miller95def091999-11-25 00:26:21 +11001086 else
Darren Tuckerd6173c02008-06-13 04:52:53 +10001087 packet_disconnect("Protocol error waiting for pty "
1088 "request response.");
Damien Miller95def091999-11-25 00:26:21 +11001089 }
1090 /* Request X11 forwarding if enabled and DISPLAY is set. */
Damien Miller17e7ed02005-06-17 12:54:33 +10001091 display = getenv("DISPLAY");
1092 if (options.forward_x11 && display != NULL) {
Ben Lindstrom4a4bd712001-12-06 17:45:19 +00001093 char *proto, *data;
Damien Millerbd483e72000-04-30 10:00:53 +10001094 /* Get reasonable local authentication information. */
Damien Miller17e7ed02005-06-17 12:54:33 +10001095 client_x11_get_proto(display, options.xauth_location,
1096 options.forward_x11_trusted, &proto, &data);
Damien Millerbd483e72000-04-30 10:00:53 +10001097 /* Request forwarding with authentication spoofing. */
Darren Tuckerd6173c02008-06-13 04:52:53 +10001098 debug("Requesting X11 forwarding with authentication "
1099 "spoofing.");
Damien Miller17e7ed02005-06-17 12:54:33 +10001100 x11_request_forwarding_with_spoofing(0, display, proto, data);
Damien Miller95def091999-11-25 00:26:21 +11001101
1102 /* Read response from the server. */
Damien Millerdff50992002-01-22 23:16:32 +11001103 type = packet_read();
Damien Miller95def091999-11-25 00:26:21 +11001104 if (type == SSH_SMSG_SUCCESS) {
Damien Miller95def091999-11-25 00:26:21 +11001105 interactive = 1;
Damien Millerbd483e72000-04-30 10:00:53 +10001106 } else if (type == SSH_SMSG_FAILURE) {
Damien Miller996acd22003-04-09 20:59:48 +10001107 logit("Warning: Remote host denied X11 forwarding.");
Damien Millerbd483e72000-04-30 10:00:53 +10001108 } else {
Darren Tuckerd6173c02008-06-13 04:52:53 +10001109 packet_disconnect("Protocol error waiting for X11 "
1110 "forwarding");
Damien Millerbd483e72000-04-30 10:00:53 +10001111 }
Damien Miller95def091999-11-25 00:26:21 +11001112 }
1113 /* Tell the packet module whether this is an interactive session. */
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001114 packet_set_interactive(interactive);
Damien Miller95def091999-11-25 00:26:21 +11001115
1116 /* Request authentication agent forwarding if appropriate. */
Damien Miller0bc1bd82000-11-13 22:57:25 +11001117 check_agent_present();
1118
Damien Miller95def091999-11-25 00:26:21 +11001119 if (options.forward_agent) {
1120 debug("Requesting authentication agent forwarding.");
1121 auth_request_forwarding();
1122
1123 /* Read response from the server. */
Damien Millerdff50992002-01-22 23:16:32 +11001124 type = packet_read();
Damien Miller48b03fc2002-01-22 23:11:40 +11001125 packet_check_eom();
Damien Miller95def091999-11-25 00:26:21 +11001126 if (type != SSH_SMSG_SUCCESS)
Damien Miller996acd22003-04-09 20:59:48 +10001127 logit("Warning: Remote host denied authentication agent forwarding.");
Damien Miller95def091999-11-25 00:26:21 +11001128 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001129
Damien Miller0bc1bd82000-11-13 22:57:25 +11001130 /* Initiate port forwardings. */
1131 ssh_init_forwarding();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001132
Darren Tuckerb776c852007-12-02 23:06:35 +11001133 /* Execute a local command */
1134 if (options.local_command != NULL &&
1135 options.permit_local_command)
1136 ssh_local_cmd(options.local_command);
1137
Darren Tucker9a2a6092008-07-04 12:53:50 +10001138 /*
1139 * If requested and we are not interested in replies to remote
1140 * forwarding requests, then let ssh continue in the background.
1141 */
1142 if (fork_after_authentication_flag &&
1143 (!options.exit_on_forward_failure ||
1144 options.num_remote_forwards == 0)) {
1145 fork_after_authentication_flag = 0;
Damien Miller5428f641999-11-25 11:54:57 +11001146 if (daemon(1, 1) < 0)
1147 fatal("daemon() failed: %.200s", strerror(errno));
Darren Tucker9a2a6092008-07-04 12:53:50 +10001148 }
Damien Miller5428f641999-11-25 11:54:57 +11001149
1150 /*
1151 * If a command was specified on the command line, execute the
1152 * command now. Otherwise request the server to start a shell.
1153 */
Damien Miller95def091999-11-25 00:26:21 +11001154 if (buffer_len(&command) > 0) {
1155 int len = buffer_len(&command);
1156 if (len > 900)
1157 len = 900;
Darren Tuckerd6173c02008-06-13 04:52:53 +10001158 debug("Sending command: %.*s", len,
1159 (u_char *)buffer_ptr(&command));
Damien Miller95def091999-11-25 00:26:21 +11001160 packet_start(SSH_CMSG_EXEC_CMD);
1161 packet_put_string(buffer_ptr(&command), buffer_len(&command));
1162 packet_send();
1163 packet_write_wait();
1164 } else {
1165 debug("Requesting shell.");
1166 packet_start(SSH_CMSG_EXEC_SHELL);
1167 packet_send();
1168 packet_write_wait();
1169 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001170
Damien Miller95def091999-11-25 00:26:21 +11001171 /* Enter the interactive session. */
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +00001172 return client_loop(have_tty, tty_flag ?
1173 options.escape_char : SSH_ESCAPECHAR_NONE, 0);
Damien Miller1383bd82000-04-06 12:32:37 +10001174}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001175
Ben Lindstromf558cf62001-09-20 23:13:49 +00001176/* request pty/x11/agent/tcpfwd/shell for channel */
Ben Lindstrombba81212001-06-25 05:01:22 +00001177static void
Ben Lindstromf558cf62001-09-20 23:13:49 +00001178ssh_session2_setup(int id, void *arg)
Damien Miller1383bd82000-04-06 12:32:37 +10001179{
Damien Miller3756dce2004-06-18 01:17:29 +10001180 extern char **environ;
Damien Miller17e7ed02005-06-17 12:54:33 +10001181 const char *display;
Damien Miller0e220db2004-06-15 10:34:08 +10001182 int interactive = tty_flag;
Damien Miller17e7ed02005-06-17 12:54:33 +10001183
Damien Miller46d38de2005-07-17 17:02:09 +10001184 display = getenv("DISPLAY");
Damien Miller17e7ed02005-06-17 12:54:33 +10001185 if (options.forward_x11 && display != NULL) {
Ben Lindstrom4a4bd712001-12-06 17:45:19 +00001186 char *proto, *data;
Damien Millerbd483e72000-04-30 10:00:53 +10001187 /* Get reasonable local authentication information. */
Damien Miller17e7ed02005-06-17 12:54:33 +10001188 client_x11_get_proto(display, options.xauth_location,
1189 options.forward_x11_trusted, &proto, &data);
Damien Millerbd483e72000-04-30 10:00:53 +10001190 /* Request forwarding with authentication spoofing. */
Darren Tuckerd6173c02008-06-13 04:52:53 +10001191 debug("Requesting X11 forwarding with authentication "
1192 "spoofing.");
Damien Miller17e7ed02005-06-17 12:54:33 +10001193 x11_request_forwarding_with_spoofing(id, display, proto, data);
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001194 interactive = 1;
Damien Millerbd483e72000-04-30 10:00:53 +10001195 /* XXX wait for reply */
1196 }
1197
Damien Miller0bc1bd82000-11-13 22:57:25 +11001198 check_agent_present();
1199 if (options.forward_agent) {
1200 debug("Requesting authentication agent forwarding.");
1201 channel_request_start(id, "auth-agent-req@openssh.com", 0);
1202 packet_send();
1203 }
1204
Damien Miller0e220db2004-06-15 10:34:08 +10001205 client_session2_setup(id, tty_flag, subsystem_flag, getenv("TERM"),
Damien Miller5771ed72008-05-19 15:35:33 +10001206 NULL, fileno(stdin), &command, environ);
Ben Lindstrom1e7d3062001-02-09 02:36:43 +00001207
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001208 packet_set_interactive(interactive);
Damien Miller1383bd82000-04-06 12:32:37 +10001209}
1210
Ben Lindstromf558cf62001-09-20 23:13:49 +00001211/* open new channel for a session */
Ben Lindstrombba81212001-06-25 05:01:22 +00001212static int
Ben Lindstromf558cf62001-09-20 23:13:49 +00001213ssh_session2_open(void)
Damien Miller1383bd82000-04-06 12:32:37 +10001214{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001215 Channel *c;
1216 int window, packetmax, in, out, err;
Damien Millerad833b32000-08-23 10:46:23 +10001217
Damien Millercaf6dd62000-08-29 11:33:50 +11001218 if (stdin_null_flag) {
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001219 in = open(_PATH_DEVNULL, O_RDONLY);
Damien Millercaf6dd62000-08-29 11:33:50 +11001220 } else {
1221 in = dup(STDIN_FILENO);
1222 }
1223 out = dup(STDOUT_FILENO);
1224 err = dup(STDERR_FILENO);
1225
1226 if (in < 0 || out < 0 || err < 0)
1227 fatal("dup() in/out/err failed");
1228
Damien Miller69b69aa2000-10-28 14:19:58 +11001229 /* enable nonblocking unless tty */
1230 if (!isatty(in))
1231 set_nonblock(in);
1232 if (!isatty(out))
1233 set_nonblock(out);
1234 if (!isatty(err))
1235 set_nonblock(err);
1236
Damien Millere4340be2000-09-16 13:29:08 +11001237 window = CHAN_SES_WINDOW_DEFAULT;
1238 packetmax = CHAN_SES_PACKET_DEFAULT;
Damien Miller19a59452002-02-19 15:20:57 +11001239 if (tty_flag) {
1240 window >>= 1;
1241 packetmax >>= 1;
Damien Miller1383bd82000-04-06 12:32:37 +10001242 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001243 c = channel_new(
Damien Miller1383bd82000-04-06 12:32:37 +10001244 "session", SSH_CHANNEL_OPENING, in, out, err,
Damien Millere4340be2000-09-16 13:29:08 +11001245 window, packetmax, CHAN_EXTENDED_WRITE,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001246 "client-session", /*nonblock*/0);
Damien Miller1383bd82000-04-06 12:32:37 +10001247
Ben Lindstromf558cf62001-09-20 23:13:49 +00001248 debug3("ssh_session2_open: channel_new: %d", c->self);
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001249
Ben Lindstrom5ec26452001-06-09 00:18:51 +00001250 channel_send_open(c->self);
Ben Lindstromf558cf62001-09-20 23:13:49 +00001251 if (!no_shell_flag)
Damien Millerb84886b2008-05-19 15:05:07 +10001252 channel_register_open_confirm(c->self,
1253 ssh_session2_setup, NULL);
Damien Miller1383bd82000-04-06 12:32:37 +10001254
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001255 return c->self;
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001256}
1257
Ben Lindstrombba81212001-06-25 05:01:22 +00001258static int
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001259ssh_session2(void)
1260{
Ben Lindstromf558cf62001-09-20 23:13:49 +00001261 int id = -1;
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001262
1263 /* XXX should be pre-session */
1264 ssh_init_forwarding();
1265
Ben Lindstromf558cf62001-09-20 23:13:49 +00001266 if (!no_shell_flag || (datafellows & SSH_BUG_DUMMYCHAN))
1267 id = ssh_session2_open();
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001268
Darren Tucker8901fa92008-06-11 09:34:01 +10001269 /* If we don't expect to open a new session, then disallow it */
Damien Miller456e6f02008-11-03 19:20:10 +11001270 if (options.control_master == SSHCTL_MASTER_NO &&
1271 (datafellows & SSH_NEW_OPENSSH)) {
Darren Tucker8901fa92008-06-11 09:34:01 +10001272 debug("Requesting no-more-sessions@openssh.com");
1273 packet_start(SSH2_MSG_GLOBAL_REQUEST);
1274 packet_put_cstring("no-more-sessions@openssh.com");
1275 packet_put_char(0);
1276 packet_send();
1277 }
1278
Damien Millerd27b9472005-12-13 19:29:02 +11001279 /* Execute a local command */
1280 if (options.local_command != NULL &&
1281 options.permit_local_command)
1282 ssh_local_cmd(options.local_command);
1283
Damien Millerb3ce9fe2007-08-08 14:32:41 +10001284 /* Start listening for multiplex clients */
Damien Millerb1cbfa22008-05-19 16:00:08 +10001285 muxserver_listen();
Damien Millerb3ce9fe2007-08-08 14:32:41 +10001286
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001287 /* If requested, let ssh continue in the background. */
Darren Tucker9a2a6092008-07-04 12:53:50 +10001288 if (fork_after_authentication_flag) {
1289 fork_after_authentication_flag = 0;
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001290 if (daemon(1, 1) < 0)
1291 fatal("daemon() failed: %.200s", strerror(errno));
Darren Tucker9a2a6092008-07-04 12:53:50 +10001292 }
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001293
Darren Tuckerf1de4e52010-01-08 16:54:59 +11001294 if (options.use_roaming)
1295 request_roaming();
1296
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +00001297 return client_loop(tty_flag, tty_flag ?
1298 options.escape_char : SSH_ESCAPECHAR_NONE, id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001299}
Damien Miller0bc1bd82000-11-13 22:57:25 +11001300
Ben Lindstrombba81212001-06-25 05:01:22 +00001301static void
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001302load_public_identity_files(void)
1303{
Damien Miller6b1d53c2006-03-31 23:13:21 +11001304 char *filename, *cp, thishost[NI_MAXHOST];
Darren Tuckerb4fbbc62007-12-02 23:16:32 +11001305 char *pwdir = NULL, *pwname = NULL;
Ben Lindstrom711b04a2001-08-06 21:12:42 +00001306 int i = 0;
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001307 Key *public;
Damien Miller6b1d53c2006-03-31 23:13:21 +11001308 struct passwd *pw;
Damien Miller0a80ca12010-02-27 07:55:05 +11001309 u_int n_ids;
1310 char *identity_files[SSH_MAX_IDENTITY_FILES];
1311 Key *identity_keys[SSH_MAX_IDENTITY_FILES];
Damien Miller7ea845e2010-02-12 09:21:02 +11001312#ifdef ENABLE_PKCS11
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001313 Key **keys;
Damien Miller7ea845e2010-02-12 09:21:02 +11001314 int nkeys;
Damien Miller0a80ca12010-02-27 07:55:05 +11001315#endif /* PKCS11 */
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001316
Damien Miller0a80ca12010-02-27 07:55:05 +11001317 n_ids = 0;
1318 bzero(identity_files, sizeof(identity_files));
1319 bzero(identity_keys, sizeof(identity_keys));
1320
1321#ifdef ENABLE_PKCS11
Damien Miller7ea845e2010-02-12 09:21:02 +11001322 if (options.pkcs11_provider != NULL &&
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001323 options.num_identity_files < SSH_MAX_IDENTITY_FILES &&
Damien Miller7ea845e2010-02-12 09:21:02 +11001324 (pkcs11_init(!options.batch_mode) == 0) &&
1325 (nkeys = pkcs11_add_provider(options.pkcs11_provider, NULL,
1326 &keys)) > 0) {
Damien Miller7ea845e2010-02-12 09:21:02 +11001327 for (i = 0; i < nkeys; i++) {
Damien Miller0a80ca12010-02-27 07:55:05 +11001328 if (n_ids >= SSH_MAX_IDENTITY_FILES) {
1329 key_free(keys[i]);
1330 continue;
1331 }
1332 identity_keys[n_ids] = keys[i];
1333 identity_files[n_ids] =
Damien Miller7ea845e2010-02-12 09:21:02 +11001334 xstrdup(options.pkcs11_provider); /* XXX */
Damien Miller0a80ca12010-02-27 07:55:05 +11001335 n_ids++;
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001336 }
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001337 xfree(keys);
Ben Lindstrom711b04a2001-08-06 21:12:42 +00001338 }
Damien Miller7ea845e2010-02-12 09:21:02 +11001339#endif /* ENABLE_PKCS11 */
Damien Miller6b1d53c2006-03-31 23:13:21 +11001340 if ((pw = getpwuid(original_real_uid)) == NULL)
1341 fatal("load_public_identity_files: getpwuid failed");
Darren Tuckere143f062007-12-02 23:21:16 +11001342 pwname = xstrdup(pw->pw_name);
1343 pwdir = xstrdup(pw->pw_dir);
Damien Miller6b1d53c2006-03-31 23:13:21 +11001344 if (gethostname(thishost, sizeof(thishost)) == -1)
1345 fatal("load_public_identity_files: gethostname: %s",
1346 strerror(errno));
Damien Miller0a80ca12010-02-27 07:55:05 +11001347 for (i = 0; i < options.num_identity_files; i++) {
1348 if (n_ids >= SSH_MAX_IDENTITY_FILES) {
1349 xfree(options.identity_files[i]);
1350 continue;
1351 }
Damien Miller6b1d53c2006-03-31 23:13:21 +11001352 cp = tilde_expand_filename(options.identity_files[i],
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001353 original_real_uid);
Darren Tuckerb4fbbc62007-12-02 23:16:32 +11001354 filename = percent_expand(cp, "d", pwdir,
1355 "u", pwname, "l", thishost, "h", host,
Damien Miller6b1d53c2006-03-31 23:13:21 +11001356 "r", options.user, (char *)NULL);
1357 xfree(cp);
Ben Lindstromd0fca422001-03-26 13:44:06 +00001358 public = key_load_public(filename, NULL);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001359 debug("identity file %s type %d", filename,
1360 public ? public->type : -1);
1361 xfree(options.identity_files[i]);
Damien Miller0a80ca12010-02-27 07:55:05 +11001362 identity_files[n_ids] = filename;
1363 identity_keys[n_ids] = public;
1364
1365 if (++n_ids >= SSH_MAX_IDENTITY_FILES)
1366 continue;
1367
1368 /* Try to add the certificate variant too */
1369 xasprintf(&cp, "%s-cert", filename);
1370 public = key_load_public(cp, NULL);
1371 debug("identity file %s type %d", cp,
1372 public ? public->type : -1);
1373 if (public == NULL) {
1374 xfree(cp);
1375 continue;
1376 }
1377 if (!key_is_cert(public)) {
1378 debug("%s: key %s type %s is not a certificate",
1379 __func__, cp, key_type(public));
1380 key_free(public);
1381 xfree(cp);
1382 continue;
1383 }
1384 identity_keys[n_ids] = public;
1385 /* point to the original path, most likely the private key */
1386 identity_files[n_ids] = xstrdup(filename);
1387 n_ids++;
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001388 }
Damien Miller0a80ca12010-02-27 07:55:05 +11001389 options.num_identity_files = n_ids;
1390 memcpy(options.identity_files, identity_files, sizeof(identity_files));
1391 memcpy(options.identity_keys, identity_keys, sizeof(identity_keys));
1392
Darren Tuckerb4fbbc62007-12-02 23:16:32 +11001393 bzero(pwname, strlen(pwname));
Darren Tuckere143f062007-12-02 23:21:16 +11001394 xfree(pwname);
Darren Tuckerb4fbbc62007-12-02 23:16:32 +11001395 bzero(pwdir, strlen(pwdir));
Darren Tuckere143f062007-12-02 23:21:16 +11001396 xfree(pwdir);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001397}