blob: ab37c205d6c16118367642bee86b5c6b58f7ee78 [file] [log] [blame]
Damien Millerc1583312010-08-05 13:04:50 +10001/* $OpenBSD: ssh.c,v 1.345 2010/08/04 05:42:47 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"
Damien Millerb96c4412010-07-02 13:34:24 +100082#include "canohost.h"
Damien Miller1383bd82000-04-06 12:32:37 +100083#include "compat.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000084#include "cipher.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000085#include "packet.h"
86#include "buffer.h"
Ben Lindstromc7637672001-06-09 00:36:26 +000087#include "channels.h"
Damien Millereba71ba2000-04-29 23:57:08 +100088#include "key.h"
Damien Miller994cf142000-07-21 10:19:44 +100089#include "authfd.h"
Damien Millereba71ba2000-04-29 23:57:08 +100090#include "authfile.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000091#include "pathnames.h"
Damien Miller0e220db2004-06-15 10:34:08 +100092#include "dispatch.h"
Ben Lindstrombf555ba2001-01-18 02:04:35 +000093#include "clientloop.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000094#include "log.h"
95#include "readconf.h"
96#include "sshconnect.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000097#include "misc.h"
Ben Lindstrom06b33aa2001-02-15 03:01:59 +000098#include "kex.h"
99#include "mac.h"
Darren Tucker06f2bd82004-05-13 16:06:46 +1000100#include "sshpty.h"
Darren Tucker46bc0752004-05-02 22:11:30 +1000101#include "match.h"
Damien Miller0e220db2004-06-15 10:34:08 +1000102#include "msg.h"
Darren Tucker25f60a72004-08-15 17:23:34 +1000103#include "uidswap.h"
Darren Tuckerf1de4e52010-01-08 16:54:59 +1100104#include "roaming.h"
Damien Millerb7576772006-07-10 20:23:39 +1000105#include "version.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000106
Damien Miller7ea845e2010-02-12 09:21:02 +1100107#ifdef ENABLE_PKCS11
108#include "ssh-pkcs11.h"
Ben Lindstrombcc18082001-08-06 21:59:25 +0000109#endif
Ben Lindstromc5b68002001-07-04 04:52:03 +0000110
Damien Miller3f905871999-11-15 17:10:57 +1100111extern char *__progname;
Damien Miller3f905871999-11-15 17:10:57 +1100112
Darren Tuckerd6173c02008-06-13 04:52:53 +1000113/* Flag indicating whether debug mode is on. May be set on the command line. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000114int debug_flag = 0;
115
Damien Miller78928792000-04-12 20:17:38 +1000116/* Flag indicating whether a tty should be allocated */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000117int tty_flag = 0;
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000118int no_tty_flag = 0;
119int force_tty_flag = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000120
Damien Miller1383bd82000-04-06 12:32:37 +1000121/* don't exec a shell */
122int no_shell_flag = 0;
Damien Miller1383bd82000-04-06 12:32:37 +1000123
Damien Miller5428f641999-11-25 11:54:57 +1100124/*
125 * Flag indicating that nothing should be read from stdin. This can be set
126 * on the command line.
127 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000128int stdin_null_flag = 0;
129
Damien Miller5428f641999-11-25 11:54:57 +1100130/*
Damien Millere11e1ea2010-08-03 16:04:46 +1000131 * Flag indicating that the current process should be backgrounded and
132 * a new slave launched in the foreground for ControlPersist.
133 */
134int need_controlpersist_detach = 0;
135
136/* Copies of flags for ControlPersist foreground slave */
137int ostdin_null_flag, ono_shell_flag, ono_tty_flag, otty_flag;
138
139/*
Damien Miller5428f641999-11-25 11:54:57 +1100140 * Flag indicating that ssh should fork after authentication. This is useful
Ben Lindstromf666fec2002-06-06 19:51:58 +0000141 * so that the passphrase can be entered manually, and then ssh goes to the
Damien Miller5428f641999-11-25 11:54:57 +1100142 * background.
143 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000144int fork_after_authentication_flag = 0;
145
Darren Tucker7ad8dd22010-01-12 19:40:27 +1100146/* forward stdio to remote host and port */
147char *stdio_forward_host = NULL;
148int stdio_forward_port = 0;
149
Damien Miller5428f641999-11-25 11:54:57 +1100150/*
151 * General data structure for command line options and options configurable
152 * in configuration files. See readconf.h.
153 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000154Options options;
155
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000156/* optional user configfile */
157char *config = NULL;
158
Damien Miller5428f641999-11-25 11:54:57 +1100159/*
160 * Name of the host we are connecting to. This is the name given on the
161 * command line, or the HostName specified for the user-supplied name in a
162 * configuration file.
163 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000164char *host;
165
166/* socket address the host resolves to */
Damien Miller34132e52000-01-14 15:45:46 +1100167struct sockaddr_storage hostaddr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000168
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000169/* Private host keys. */
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000170Sensitive sensitive_data;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000171
172/* Original real UID. */
173uid_t original_real_uid;
Ben Lindstromf9c48842002-06-11 16:37:51 +0000174uid_t original_effective_uid;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000175
Damien Miller1383bd82000-04-06 12:32:37 +1000176/* command to be executed */
177Buffer command;
178
Damien Miller832562e2001-01-30 09:30:01 +1100179/* Should we execute a command or invoke a subsystem? */
180int subsystem_flag = 0;
181
Damien Miller2797f7f2002-04-23 21:09:44 +1000182/* # of replies received for global requests */
Darren Tucker9f407c42008-06-13 04:50:27 +1000183static int remote_forward_confirms_received = 0;
Damien Miller2797f7f2002-04-23 21:09:44 +1000184
Damien Miller8c4e18a2002-09-19 12:05:02 +1000185/* pid of proxycommand child process */
186pid_t proxy_command_pid = 0;
187
Damien Millerb1cbfa22008-05-19 16:00:08 +1000188/* mux.c */
189extern int muxserver_sock;
190extern u_int muxclient_command;
Damien Miller0e220db2004-06-15 10:34:08 +1000191
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000192/* Prints a help message to the user. This function never returns. */
193
Ben Lindstrombba81212001-06-25 05:01:22 +0000194static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000195usage(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000196{
Damien Miller50955102004-03-22 09:34:58 +1100197 fprintf(stderr,
Damien Millerc13c3ee2008-11-03 19:23:28 +1100198"usage: ssh [-1246AaCfgKkMNnqsTtVvXxYy] [-b bind_address] [-c cipher_spec]\n"
Darren Tucker895d6982005-10-03 18:18:05 +1000199" [-D [bind_address:]port] [-e escape_char] [-F configfile]\n"
Damien Miller048dc932010-02-12 09:22:04 +1100200" [-I pkcs11] [-i identity_file]\n"
201" [-L [bind_address:]port:host:hostport]\n"
Damien Millerf91ee4c2005-03-01 21:24:33 +1100202" [-l login_name] [-m mac_spec] [-O ctl_cmd] [-o option] [-p port]\n"
Damien Miller02faece2005-03-02 12:04:32 +1100203" [-R [bind_address:]port:host:hostport] [-S ctl_path]\n"
Darren Tucker7ad8dd22010-01-12 19:40:27 +1100204" [-W host:port] [-w local_tun[:remote_tun]]\n"
205" [user@]hostname [command]\n"
Damien Miller50955102004-03-22 09:34:58 +1100206 );
Darren Tuckere9a9b712005-12-20 16:15:51 +1100207 exit(255);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000208}
209
Ben Lindstrombba81212001-06-25 05:01:22 +0000210static int ssh_session(void);
211static int ssh_session2(void);
212static void load_public_identity_files(void);
Damien Millerb1cbfa22008-05-19 16:00:08 +1000213
214/* from muxclient.c */
215void muxclient(const char *);
216void muxserver_listen(void);
Damien Miller1383bd82000-04-06 12:32:37 +1000217
Damien Miller95def091999-11-25 00:26:21 +1100218/*
219 * Main program for the ssh client.
220 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000221int
222main(int ac, char **av)
223{
Darren Tucker199b1342009-07-06 07:16:56 +1000224 int i, r, opt, exit_status, use_syslog;
225 char *p, *cp, *line, *argv0, buf[MAXPATHLEN];
Damien Miller95def091999-11-25 00:26:21 +1100226 struct stat st;
Ben Lindstrom086cf212001-03-05 05:56:40 +0000227 struct passwd *pw;
Damien Miller67bd0622007-09-17 12:06:57 +1000228 int dummy, timeout_ms;
Ben Lindstrom5ccf63a2001-09-24 20:00:10 +0000229 extern int optind, optreset;
Damien Miller4f8e6692001-07-14 13:22:53 +1000230 extern char *optarg;
Damien Miller9651fe62005-06-26 08:55:25 +1000231 struct servent *sp;
Damien Millerf91ee4c2005-03-01 21:24:33 +1100232 Forward fwd;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000233
Darren Tuckerce321d82005-10-03 18:11:24 +1000234 /* Ensure that fds 0, 1 and 2 are open or directed to /dev/null */
235 sanitise_stdfd();
236
Damien Miller59d3d5b2003-08-22 09:34:41 +1000237 __progname = ssh_get_progname(av[0]);
Damien Millerf9b625c2000-07-09 22:42:32 +1000238 init_rng();
239
Damien Miller5428f641999-11-25 11:54:57 +1100240 /*
241 * Save the original real uid. It will be needed later (uid-swapping
242 * may clobber the real uid).
243 */
Damien Miller95def091999-11-25 00:26:21 +1100244 original_real_uid = getuid();
245 original_effective_uid = geteuid();
Damien Millera8e06ce2003-11-21 23:48:55 +1100246
Damien Miller50b9a602002-09-04 16:50:06 +1000247 /*
248 * Use uid-swapping to give up root privileges for the duration of
249 * option processing. We will re-instantiate the rights when we are
250 * ready to create the privileged port, and will permanently drop
251 * them when the port has been created (actually, when the connection
252 * has been made, as we may need to create the port several times).
253 */
254 PRIV_END;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000255
Damien Miller05dd7952000-10-01 00:42:48 +1100256#ifdef HAVE_SETRLIMIT
Damien Miller95def091999-11-25 00:26:21 +1100257 /* If we are installed setuid root be careful to not drop core. */
258 if (original_real_uid != original_effective_uid) {
259 struct rlimit rlim;
260 rlim.rlim_cur = rlim.rlim_max = 0;
261 if (setrlimit(RLIMIT_CORE, &rlim) < 0)
262 fatal("setrlimit failed: %.100s", strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000263 }
Damien Millerbac2d8a2000-09-05 16:13:06 +1100264#endif
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000265 /* Get user data. */
266 pw = getpwuid(original_real_uid);
267 if (!pw) {
Damien Miller996acd22003-04-09 20:59:48 +1000268 logit("You don't exist, go away!");
Darren Tuckere9a9b712005-12-20 16:15:51 +1100269 exit(255);
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000270 }
271 /* Take a copy of the returned structure. */
272 pw = pwcopy(pw);
273
Damien Miller5428f641999-11-25 11:54:57 +1100274 /*
Damien Miller5428f641999-11-25 11:54:57 +1100275 * Set our umask to something reasonable, as some files are created
276 * with the default umask. This will make them world-readable but
277 * writable only by the owner, which is ok for all files for which we
278 * don't set the modes explicitly.
279 */
Damien Miller95def091999-11-25 00:26:21 +1100280 umask(022);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000281
Darren Tuckerd6173c02008-06-13 04:52:53 +1000282 /*
283 * Initialize option structure to indicate that no values have been
284 * set.
285 */
Damien Miller95def091999-11-25 00:26:21 +1100286 initialize_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000287
Damien Miller95def091999-11-25 00:26:21 +1100288 /* Parse command-line arguments. */
289 host = NULL;
Damien Millere272a5b2008-11-03 19:22:37 +1100290 use_syslog = 0;
Darren Tucker72efd742009-06-21 17:48:00 +1000291 argv0 = av[0];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000292
Damien Miller2ecb6bd2006-03-15 12:03:53 +1100293 again:
Darren Tuckerd6173c02008-06-13 04:52:53 +1000294 while ((opt = getopt(ac, av, "1246ab:c:e:fgi:kl:m:no:p:qstvx"
Darren Tucker7ad8dd22010-01-12 19:40:27 +1100295 "ACD:F:I:KL:MNO:PR:S:TVw:W:XYy")) != -1) {
Damien Miller95def091999-11-25 00:26:21 +1100296 switch (opt) {
Ben Lindstrom1e7d3062001-02-09 02:36:43 +0000297 case '1':
298 options.protocol = SSH_PROTO_1;
299 break;
Damien Miller4af51302000-04-16 11:18:38 +1000300 case '2':
301 options.protocol = SSH_PROTO_2;
302 break;
Damien Miller34132e52000-01-14 15:45:46 +1100303 case '4':
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000304 options.address_family = AF_INET;
Damien Miller34132e52000-01-14 15:45:46 +1100305 break;
Damien Miller34132e52000-01-14 15:45:46 +1100306 case '6':
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000307 options.address_family = AF_INET6;
Damien Miller34132e52000-01-14 15:45:46 +1100308 break;
Damien Miller95def091999-11-25 00:26:21 +1100309 case 'n':
310 stdin_null_flag = 1;
311 break;
Damien Miller95def091999-11-25 00:26:21 +1100312 case 'f':
313 fork_after_authentication_flag = 1;
314 stdin_null_flag = 1;
315 break;
Damien Miller95def091999-11-25 00:26:21 +1100316 case 'x':
317 options.forward_x11 = 0;
318 break;
Damien Miller95def091999-11-25 00:26:21 +1100319 case 'X':
320 options.forward_x11 = 1;
321 break;
Damien Millere272a5b2008-11-03 19:22:37 +1100322 case 'y':
323 use_syslog = 1;
324 break;
Darren Tucker0a118da2003-10-15 15:54:32 +1000325 case 'Y':
326 options.forward_x11 = 1;
327 options.forward_x11_trusted = 1;
328 break;
Damien Miller95def091999-11-25 00:26:21 +1100329 case 'g':
330 options.gateway_ports = 1;
331 break;
Darren Tucker7ebfc102004-11-07 20:06:19 +1100332 case 'O':
Damien Millere1537f92010-01-26 13:26:22 +1100333 if (stdio_forward_host != NULL)
334 fatal("Cannot specify multiplexing "
335 "command with -W");
336 else if (muxclient_command != 0)
337 fatal("Multiplexing command already specified");
Darren Tucker7ebfc102004-11-07 20:06:19 +1100338 if (strcmp(optarg, "check") == 0)
Damien Millerb1cbfa22008-05-19 16:00:08 +1000339 muxclient_command = SSHMUX_COMMAND_ALIVE_CHECK;
Damien Miller388f6fc2010-05-21 14:57:35 +1000340 else if (strcmp(optarg, "forward") == 0)
341 muxclient_command = SSHMUX_COMMAND_FORWARD;
Darren Tucker7ebfc102004-11-07 20:06:19 +1100342 else if (strcmp(optarg, "exit") == 0)
Damien Millerb1cbfa22008-05-19 16:00:08 +1000343 muxclient_command = SSHMUX_COMMAND_TERMINATE;
Darren Tucker7ebfc102004-11-07 20:06:19 +1100344 else
345 fatal("Invalid multiplex command.");
346 break;
Damien Miller147bba32002-09-04 16:46:06 +1000347 case 'P': /* deprecated */
Damien Miller95def091999-11-25 00:26:21 +1100348 options.use_privileged_port = 0;
349 break;
Damien Miller95def091999-11-25 00:26:21 +1100350 case 'a':
351 options.forward_agent = 0;
352 break;
Damien Millerb1715dc2000-05-30 13:44:51 +1000353 case 'A':
354 options.forward_agent = 1;
355 break;
Damien Miller95def091999-11-25 00:26:21 +1100356 case 'k':
Damien Millere0113cc2003-11-24 13:10:09 +1100357 options.gss_deleg_creds = 0;
Damien Miller95def091999-11-25 00:26:21 +1100358 break;
Darren Tucker415bddc2007-06-12 23:43:16 +1000359 case 'K':
360 options.gss_authentication = 1;
361 options.gss_deleg_creds = 1;
362 break;
Damien Miller95def091999-11-25 00:26:21 +1100363 case 'i':
364 if (stat(optarg, &st) < 0) {
Damien Millerf4614452001-07-14 12:18:10 +1000365 fprintf(stderr, "Warning: Identity file %s "
Damien Miller3eb48b62005-03-01 21:15:46 +1100366 "not accessible: %s.\n", optarg,
367 strerror(errno));
Damien Miller95def091999-11-25 00:26:21 +1100368 break;
369 }
Damien Millerf4614452001-07-14 12:18:10 +1000370 if (options.num_identity_files >=
371 SSH_MAX_IDENTITY_FILES)
372 fatal("Too many identity files specified "
373 "(max %d)", SSH_MAX_IDENTITY_FILES);
374 options.identity_files[options.num_identity_files++] =
375 xstrdup(optarg);
Damien Miller95def091999-11-25 00:26:21 +1100376 break;
Ben Lindstromc5b68002001-07-04 04:52:03 +0000377 case 'I':
Damien Miller7ea845e2010-02-12 09:21:02 +1100378#ifdef ENABLE_PKCS11
379 options.pkcs11_provider = xstrdup(optarg);
Ben Lindstrombcc18082001-08-06 21:59:25 +0000380#else
Damien Miller7ea845e2010-02-12 09:21:02 +1100381 fprintf(stderr, "no support for PKCS#11.\n");
Ben Lindstrombcc18082001-08-06 21:59:25 +0000382#endif
Ben Lindstromc5b68002001-07-04 04:52:03 +0000383 break;
Damien Miller95def091999-11-25 00:26:21 +1100384 case 't':
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000385 if (tty_flag)
386 force_tty_flag = 1;
Damien Miller95def091999-11-25 00:26:21 +1100387 tty_flag = 1;
388 break;
Damien Miller95def091999-11-25 00:26:21 +1100389 case 'v':
Darren Tuckere98dfa32003-07-19 19:54:31 +1000390 if (debug_flag == 0) {
Damien Millere4340be2000-09-16 13:29:08 +1100391 debug_flag = 1;
392 options.log_level = SYSLOG_LEVEL_DEBUG1;
Darren Tuckere98dfa32003-07-19 19:54:31 +1000393 } else {
394 if (options.log_level < SYSLOG_LEVEL_DEBUG3)
395 options.log_level++;
Damien Millere4340be2000-09-16 13:29:08 +1100396 break;
Darren Tuckere98dfa32003-07-19 19:54:31 +1000397 }
Darren Tuckere9bf9842004-11-05 20:05:32 +1100398 /* FALLTHROUGH */
Damien Miller95def091999-11-25 00:26:21 +1100399 case 'V':
Damien Miller0c889cd2004-03-22 09:36:00 +1100400 fprintf(stderr, "%s, %s\n",
Damien Miller2aa6d3c2004-09-12 16:53:04 +1000401 SSH_RELEASE, SSLeay_version(SSLEAY_VERSION));
Damien Miller95def091999-11-25 00:26:21 +1100402 if (opt == 'V')
403 exit(0);
Damien Miller95def091999-11-25 00:26:21 +1100404 break;
Damien Millerd27b9472005-12-13 19:29:02 +1100405 case 'w':
Damien Miller7b58e802005-12-13 19:33:19 +1100406 if (options.tun_open == -1)
407 options.tun_open = SSH_TUNMODE_DEFAULT;
Damien Millerd27b9472005-12-13 19:29:02 +1100408 options.tun_local = a2tun(optarg, &options.tun_remote);
Damien Miller7b58e802005-12-13 19:33:19 +1100409 if (options.tun_local == SSH_TUNID_ERR) {
Darren Tuckerd6173c02008-06-13 04:52:53 +1000410 fprintf(stderr,
411 "Bad tun device '%s'\n", optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100412 exit(255);
Damien Millerd27b9472005-12-13 19:29:02 +1100413 }
414 break;
Darren Tucker7ad8dd22010-01-12 19:40:27 +1100415 case 'W':
Damien Millere1537f92010-01-26 13:26:22 +1100416 if (stdio_forward_host != NULL)
417 fatal("stdio forward already specified");
418 if (muxclient_command != 0)
419 fatal("Cannot specify stdio forward with -O");
Darren Tucker7ad8dd22010-01-12 19:40:27 +1100420 if (parse_forward(&fwd, optarg, 1, 0)) {
421 stdio_forward_host = fwd.listen_host;
422 stdio_forward_port = fwd.listen_port;
423 xfree(fwd.connect_host);
424 } else {
425 fprintf(stderr,
426 "Bad stdio forwarding specification '%s'\n",
427 optarg);
428 exit(255);
429 }
430 no_tty_flag = 1;
431 no_shell_flag = 1;
432 options.clear_forwardings = 1;
433 options.exit_on_forward_failure = 1;
434 break;
Damien Miller95def091999-11-25 00:26:21 +1100435 case 'q':
436 options.log_level = SYSLOG_LEVEL_QUIET;
437 break;
Damien Miller95def091999-11-25 00:26:21 +1100438 case 'e':
439 if (optarg[0] == '^' && optarg[2] == 0 &&
Damien Millerf4614452001-07-14 12:18:10 +1000440 (u_char) optarg[1] >= 64 &&
441 (u_char) optarg[1] < 128)
Ben Lindstrom46c16222000-12-22 01:43:59 +0000442 options.escape_char = (u_char) optarg[1] & 31;
Damien Miller95def091999-11-25 00:26:21 +1100443 else if (strlen(optarg) == 1)
Ben Lindstrom46c16222000-12-22 01:43:59 +0000444 options.escape_char = (u_char) optarg[0];
Damien Miller95def091999-11-25 00:26:21 +1100445 else if (strcmp(optarg, "none") == 0)
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +0000446 options.escape_char = SSH_ESCAPECHAR_NONE;
Damien Miller95def091999-11-25 00:26:21 +1100447 else {
Damien Millerf4614452001-07-14 12:18:10 +1000448 fprintf(stderr, "Bad escape character '%s'.\n",
449 optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100450 exit(255);
Damien Miller95def091999-11-25 00:26:21 +1100451 }
452 break;
Damien Miller95def091999-11-25 00:26:21 +1100453 case 'c':
Damien Millereba71ba2000-04-29 23:57:08 +1000454 if (ciphers_valid(optarg)) {
455 /* SSH2 only */
456 options.ciphers = xstrdup(optarg);
Darren Tucker5cb30ad2004-08-12 22:40:24 +1000457 options.cipher = SSH_CIPHER_INVALID;
Damien Millereba71ba2000-04-29 23:57:08 +1000458 } else {
459 /* SSH1 only */
Damien Millere39cacc2000-11-29 12:18:44 +1100460 options.cipher = cipher_number(optarg);
461 if (options.cipher == -1) {
Damien Millerf4614452001-07-14 12:18:10 +1000462 fprintf(stderr,
463 "Unknown cipher type '%s'\n",
464 optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100465 exit(255);
Damien Millereba71ba2000-04-29 23:57:08 +1000466 }
Damien Millerf4614452001-07-14 12:18:10 +1000467 if (options.cipher == SSH_CIPHER_3DES)
Damien Millere39cacc2000-11-29 12:18:44 +1100468 options.ciphers = "3des-cbc";
Damien Millerf4614452001-07-14 12:18:10 +1000469 else if (options.cipher == SSH_CIPHER_BLOWFISH)
Damien Millere39cacc2000-11-29 12:18:44 +1100470 options.ciphers = "blowfish-cbc";
Damien Millerf4614452001-07-14 12:18:10 +1000471 else
Damien Millere39cacc2000-11-29 12:18:44 +1100472 options.ciphers = (char *)-1;
Damien Miller95def091999-11-25 00:26:21 +1100473 }
474 break;
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000475 case 'm':
476 if (mac_valid(optarg))
477 options.macs = xstrdup(optarg);
478 else {
Damien Millerf4614452001-07-14 12:18:10 +1000479 fprintf(stderr, "Unknown mac type '%s'\n",
480 optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100481 exit(255);
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000482 }
483 break;
Damien Miller0e220db2004-06-15 10:34:08 +1000484 case 'M':
Damien Millerd14b1e72005-06-16 13:19:41 +1000485 if (options.control_master == SSHCTL_MASTER_YES)
486 options.control_master = SSHCTL_MASTER_ASK;
487 else
488 options.control_master = SSHCTL_MASTER_YES;
Damien Miller0e220db2004-06-15 10:34:08 +1000489 break;
Damien Miller95def091999-11-25 00:26:21 +1100490 case 'p':
Ben Lindstrom19066a12001-04-12 23:39:26 +0000491 options.port = a2port(optarg);
Damien Miller3dc71ad2009-01-28 16:31:22 +1100492 if (options.port <= 0) {
Ben Lindstrom146edb92001-04-11 23:06:28 +0000493 fprintf(stderr, "Bad port '%s'\n", optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100494 exit(255);
Ben Lindstrom146edb92001-04-11 23:06:28 +0000495 }
Damien Miller95def091999-11-25 00:26:21 +1100496 break;
Damien Miller95def091999-11-25 00:26:21 +1100497 case 'l':
498 options.user = optarg;
499 break;
Ben Lindstrom1a174712001-09-12 17:56:15 +0000500
Damien Miller95def091999-11-25 00:26:21 +1100501 case 'L':
Damien Miller4bf648f2009-02-14 16:28:21 +1100502 if (parse_forward(&fwd, optarg, 0, 0))
Damien Millerf91ee4c2005-03-01 21:24:33 +1100503 add_local_forward(&options, &fwd);
504 else {
Damien Millerf4614452001-07-14 12:18:10 +1000505 fprintf(stderr,
Damien Millerf91ee4c2005-03-01 21:24:33 +1100506 "Bad local forwarding specification '%s'\n",
Damien Millerf4614452001-07-14 12:18:10 +1000507 optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100508 exit(255);
Ben Lindstrom1a174712001-09-12 17:56:15 +0000509 }
Damien Millerf91ee4c2005-03-01 21:24:33 +1100510 break;
511
512 case 'R':
Damien Miller4bf648f2009-02-14 16:28:21 +1100513 if (parse_forward(&fwd, optarg, 0, 1)) {
Damien Millerf91ee4c2005-03-01 21:24:33 +1100514 add_remote_forward(&options, &fwd);
515 } else {
516 fprintf(stderr,
517 "Bad remote forwarding specification "
518 "'%s'\n", optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100519 exit(255);
Damien Millerf91ee4c2005-03-01 21:24:33 +1100520 }
Damien Miller95def091999-11-25 00:26:21 +1100521 break;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000522
523 case 'D':
Damien Miller4bf648f2009-02-14 16:28:21 +1100524 if (parse_forward(&fwd, optarg, 1, 0)) {
Damien Millera699d952008-11-03 19:27:34 +1100525 add_local_forward(&options, &fwd);
Damien Millerf91ee4c2005-03-01 21:24:33 +1100526 } else {
Damien Millera699d952008-11-03 19:27:34 +1100527 fprintf(stderr,
528 "Bad dynamic forwarding specification "
529 "'%s'\n", optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100530 exit(255);
Ben Lindstrom146edb92001-04-11 23:06:28 +0000531 }
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000532 break;
533
Damien Miller95def091999-11-25 00:26:21 +1100534 case 'C':
535 options.compression = 1;
536 break;
Damien Miller1383bd82000-04-06 12:32:37 +1000537 case 'N':
538 no_shell_flag = 1;
539 no_tty_flag = 1;
540 break;
Damien Miller1383bd82000-04-06 12:32:37 +1000541 case 'T':
542 no_tty_flag = 1;
543 break;
Damien Miller95def091999-11-25 00:26:21 +1100544 case 'o':
545 dummy = 1;
Damien Miller9836cf82003-12-17 16:30:06 +1100546 line = xstrdup(optarg);
Damien Millerf4614452001-07-14 12:18:10 +1000547 if (process_config_line(&options, host ? host : "",
Damien Miller9836cf82003-12-17 16:30:06 +1100548 line, "command-line", 0, &dummy) != 0)
Darren Tuckere9a9b712005-12-20 16:15:51 +1100549 exit(255);
Damien Miller9836cf82003-12-17 16:30:06 +1100550 xfree(line);
Damien Miller95def091999-11-25 00:26:21 +1100551 break;
Damien Miller832562e2001-01-30 09:30:01 +1100552 case 's':
553 subsystem_flag = 1;
554 break;
Damien Miller0e220db2004-06-15 10:34:08 +1000555 case 'S':
556 if (options.control_path != NULL)
557 free(options.control_path);
558 options.control_path = xstrdup(optarg);
Damien Miller0e220db2004-06-15 10:34:08 +1000559 break;
Ben Lindstrome0f88042001-04-30 13:06:24 +0000560 case 'b':
561 options.bind_address = optarg;
562 break;
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000563 case 'F':
564 config = optarg;
565 break;
Damien Miller95def091999-11-25 00:26:21 +1100566 default:
567 usage();
568 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000569 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000570
Damien Millerf4614452001-07-14 12:18:10 +1000571 ac -= optind;
572 av += optind;
573
Darren Tuckerb8c884a2010-01-08 18:53:43 +1100574 if (ac > 0 && !host) {
Ben Lindstromc276c122002-12-23 02:14:51 +0000575 if (strrchr(*av, '@')) {
Damien Millerf4614452001-07-14 12:18:10 +1000576 p = xstrdup(*av);
Ben Lindstromc276c122002-12-23 02:14:51 +0000577 cp = strrchr(p, '@');
Damien Millerf4614452001-07-14 12:18:10 +1000578 if (cp == NULL || cp == p)
579 usage();
580 options.user = p;
581 *cp = '\0';
582 host = ++cp;
583 } else
584 host = *av;
Ben Lindstromb9fa6912002-12-23 02:24:54 +0000585 if (ac > 1) {
586 optind = optreset = 1;
Damien Millerf4614452001-07-14 12:18:10 +1000587 goto again;
588 }
Ben Lindstromb9fa6912002-12-23 02:24:54 +0000589 ac--, av++;
Damien Millerf4614452001-07-14 12:18:10 +1000590 }
591
Damien Miller95def091999-11-25 00:26:21 +1100592 /* Check that we got a host name. */
593 if (!host)
594 usage();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000595
Damien Millercb5e44a2000-09-29 12:12:36 +1100596 SSLeay_add_all_algorithms();
Damien Miller0bc1bd82000-11-13 22:57:25 +1100597 ERR_load_crypto_strings();
Damien Millercb5e44a2000-09-29 12:12:36 +1100598
Damien Miller95def091999-11-25 00:26:21 +1100599 /* Initialize the command to execute on remote host. */
600 buffer_init(&command);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000601
Damien Miller5428f641999-11-25 11:54:57 +1100602 /*
603 * Save the command to execute on the remote host in a buffer. There
604 * is no limit on the length of the command, except by the maximum
605 * packet size. Also sets the tty flag if there is no command.
606 */
Damien Millerf4614452001-07-14 12:18:10 +1000607 if (!ac) {
Damien Miller95def091999-11-25 00:26:21 +1100608 /* No command specified - execute shell on a tty. */
609 tty_flag = 1;
Damien Miller832562e2001-01-30 09:30:01 +1100610 if (subsystem_flag) {
Damien Millerf4614452001-07-14 12:18:10 +1000611 fprintf(stderr,
612 "You must specify a subsystem to invoke.\n");
Damien Miller832562e2001-01-30 09:30:01 +1100613 usage();
614 }
Damien Miller95def091999-11-25 00:26:21 +1100615 } else {
Damien Millerf4614452001-07-14 12:18:10 +1000616 /* A command has been specified. Store it into the buffer. */
617 for (i = 0; i < ac; i++) {
618 if (i)
Damien Miller95def091999-11-25 00:26:21 +1100619 buffer_append(&command, " ", 1);
620 buffer_append(&command, av[i], strlen(av[i]));
621 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000622 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000623
Damien Miller95def091999-11-25 00:26:21 +1100624 /* Cannot fork to background if no command. */
Darren Tuckerd6173c02008-06-13 04:52:53 +1000625 if (fork_after_authentication_flag && buffer_len(&command) == 0 &&
626 !no_shell_flag)
627 fatal("Cannot fork into background without a command "
628 "to execute.");
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000629
Damien Miller95def091999-11-25 00:26:21 +1100630 /* Allocate a tty by default if no command specified. */
631 if (buffer_len(&command) == 0)
632 tty_flag = 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000633
Ben Lindstroma962c2f2002-07-04 00:14:17 +0000634 /* Force no tty */
Damien Millerdeb5a142010-04-16 15:52:43 +1000635 if (no_tty_flag || muxclient_command != 0)
Ben Lindstromc72745a2000-12-02 19:03:54 +0000636 tty_flag = 0;
Damien Miller95def091999-11-25 00:26:21 +1100637 /* Do not allocate a tty if stdin is not a tty. */
Damien Millerddee5752005-05-26 12:05:05 +1000638 if ((!isatty(fileno(stdin)) || stdin_null_flag) && !force_tty_flag) {
Damien Miller95def091999-11-25 00:26:21 +1100639 if (tty_flag)
Darren Tuckerd6173c02008-06-13 04:52:53 +1000640 logit("Pseudo-terminal will not be allocated because "
641 "stdin is not a terminal.");
Damien Miller95def091999-11-25 00:26:21 +1100642 tty_flag = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000643 }
Damien Miller1383bd82000-04-06 12:32:37 +1000644
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000645 /*
646 * Initialize "log" output. Since we are the client all output
647 * actually goes to stderr.
648 */
Darren Tucker72efd742009-06-21 17:48:00 +1000649 log_init(argv0,
Darren Tuckerd6173c02008-06-13 04:52:53 +1000650 options.log_level == -1 ? SYSLOG_LEVEL_INFO : options.log_level,
Damien Millere272a5b2008-11-03 19:22:37 +1100651 SYSLOG_FACILITY_USER, !use_syslog);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000652
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000653 /*
654 * Read per-user configuration file. Ignore the system wide config
655 * file if the user specifies a config file on the command line.
656 */
657 if (config != NULL) {
Damien Miller914420f2004-04-20 20:14:07 +1000658 if (!read_config_file(config, host, &options, 0))
Ben Lindstromedc0cf22001-09-12 18:32:20 +0000659 fatal("Can't open user config file %.100s: "
660 "%.100s", config, strerror(errno));
Damien Miller80163902007-01-05 16:30:16 +1100661 } else {
Darren Tucker199b1342009-07-06 07:16:56 +1000662 r = snprintf(buf, sizeof buf, "%s/%s", pw->pw_dir,
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000663 _PATH_SSH_USER_CONFFILE);
Darren Tucker199b1342009-07-06 07:16:56 +1000664 if (r > 0 && (size_t)r < sizeof(buf))
665 (void)read_config_file(buf, host, &options, 1);
Ben Lindstrom83f07d12001-10-03 17:22:29 +0000666
667 /* Read systemwide configuration file after use config. */
Darren Tuckerfc959702004-07-17 16:12:08 +1000668 (void)read_config_file(_PATH_HOST_CONFIG_FILE, host,
Damien Miller57a44762004-04-20 20:11:57 +1000669 &options, 0);
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000670 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000671
Damien Miller95def091999-11-25 00:26:21 +1100672 /* Fill configuration defaults. */
673 fill_default_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000674
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000675 channel_set_af(options.address_family);
676
Damien Miller95def091999-11-25 00:26:21 +1100677 /* reinit */
Darren Tucker72efd742009-06-21 17:48:00 +1000678 log_init(argv0, options.log_level, SYSLOG_FACILITY_USER, !use_syslog);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000679
Damien Miller60bc5172001-03-19 09:38:15 +1100680 seed_rng();
681
Damien Miller95def091999-11-25 00:26:21 +1100682 if (options.user == NULL)
683 options.user = xstrdup(pw->pw_name);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000684
Darren Tuckerf6b01b72008-06-13 04:56:37 +1000685 /* Get default port if port has not been set. */
686 if (options.port == 0) {
687 sp = getservbyname(SSH_SERVICE_NAME, "tcp");
688 options.port = sp ? ntohs(sp->s_port) : SSH_DEFAULT_PORT;
689 }
690
Damien Millerd0244d42010-07-16 13:56:43 +1000691 if (options.hostname != NULL) {
692 host = percent_expand(options.hostname,
693 "h", host, (char *)NULL);
694 }
695
Darren Tuckerf6b01b72008-06-13 04:56:37 +1000696 if (options.local_command != NULL) {
697 char thishost[NI_MAXHOST];
698
699 if (gethostname(thishost, sizeof(thishost)) == -1)
700 fatal("gethostname: %s", strerror(errno));
701 snprintf(buf, sizeof(buf), "%d", options.port);
702 debug3("expanding LocalCommand: %s", options.local_command);
703 cp = options.local_command;
704 options.local_command = percent_expand(cp, "d", pw->pw_dir,
Damien Millerd0244d42010-07-16 13:56:43 +1000705 "h", host, "l", thishost, "n", host, "r", options.user,
706 "p", buf, "u", pw->pw_name, (char *)NULL);
Darren Tuckerf6b01b72008-06-13 04:56:37 +1000707 debug3("expanded LocalCommand: %s", options.local_command);
708 xfree(cp);
709 }
710
Darren Tucker3f521e22003-07-03 16:20:42 +1000711 /* force lowercase for hostkey matching */
712 if (options.host_key_alias != NULL) {
713 for (p = options.host_key_alias; *p; p++)
714 if (isupper(*p))
Damien Miller1d2b6702006-03-26 14:09:54 +1100715 *p = (char)tolower(*p);
Darren Tucker3f521e22003-07-03 16:20:42 +1000716 }
717
Damien Miller9f1e33a2003-02-24 11:57:32 +1100718 if (options.proxy_command != NULL &&
Darren Tucker32e42c72007-12-02 23:01:03 +1100719 strcmp(options.proxy_command, "none") == 0) {
720 xfree(options.proxy_command);
Damien Miller9f1e33a2003-02-24 11:57:32 +1100721 options.proxy_command = NULL;
Darren Tucker32e42c72007-12-02 23:01:03 +1100722 }
Damien Miller8f74c8f2005-06-26 08:56:03 +1000723 if (options.control_path != NULL &&
Darren Tucker32e42c72007-12-02 23:01:03 +1100724 strcmp(options.control_path, "none") == 0) {
725 xfree(options.control_path);
Damien Miller8f74c8f2005-06-26 08:56:03 +1000726 options.control_path = NULL;
Darren Tucker32e42c72007-12-02 23:01:03 +1100727 }
Damien Miller9f1e33a2003-02-24 11:57:32 +1100728
Damien Miller0e220db2004-06-15 10:34:08 +1000729 if (options.control_path != NULL) {
Damien Miller6b1d53c2006-03-31 23:13:21 +1100730 char thishost[NI_MAXHOST];
Damien Miller3ec54c72006-03-15 11:30:13 +1100731
Damien Miller6b1d53c2006-03-31 23:13:21 +1100732 if (gethostname(thishost, sizeof(thishost)) == -1)
Damien Miller3ec54c72006-03-15 11:30:13 +1100733 fatal("gethostname: %s", strerror(errno));
Damien Miller6476cad2005-06-16 13:18:34 +1000734 snprintf(buf, sizeof(buf), "%d", options.port);
735 cp = tilde_expand_filename(options.control_path,
736 original_real_uid);
Darren Tucker32e42c72007-12-02 23:01:03 +1100737 xfree(options.control_path);
Damien Miller6476cad2005-06-16 13:18:34 +1000738 options.control_path = percent_expand(cp, "p", buf, "h", host,
Damien Miller6b1d53c2006-03-31 23:13:21 +1100739 "r", options.user, "l", thishost, (char *)NULL);
Damien Miller6476cad2005-06-16 13:18:34 +1000740 xfree(cp);
Damien Miller0e220db2004-06-15 10:34:08 +1000741 }
Damien Millerb1cbfa22008-05-19 16:00:08 +1000742 if (muxclient_command != 0 && options.control_path == NULL)
Darren Tucker0814d312005-06-01 23:08:51 +1000743 fatal("No ControlPath specified for \"-O\" command");
Damien Millerd14b1e72005-06-16 13:19:41 +1000744 if (options.control_path != NULL)
Damien Millerb1cbfa22008-05-19 16:00:08 +1000745 muxclient(options.control_path);
Damien Miller0e220db2004-06-15 10:34:08 +1000746
Damien Miller67bd0622007-09-17 12:06:57 +1000747 timeout_ms = options.connection_timeout * 1000;
748
Kevin Stevesfcec7f82000-12-15 19:55:48 +0000749 /* Open a connection to the remote host. */
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000750 if (ssh_connect(host, &hostaddr, options.port,
Damien Miller67bd0622007-09-17 12:06:57 +1000751 options.address_family, options.connection_attempts, &timeout_ms,
752 options.tcp_keep_alive,
Ben Lindstrom1aa64272002-06-11 20:28:05 +0000753#ifdef HAVE_CYGWIN
754 options.use_privileged_port,
755#else
Ben Lindstromf9c48842002-06-11 16:37:51 +0000756 original_effective_uid == 0 && options.use_privileged_port,
Ben Lindstrom1aa64272002-06-11 20:28:05 +0000757#endif
Ben Lindstromda394ca2002-06-12 16:11:12 +0000758 options.proxy_command) != 0)
Darren Tuckere9a9b712005-12-20 16:15:51 +1100759 exit(255);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000760
Damien Miller67bd0622007-09-17 12:06:57 +1000761 if (timeout_ms > 0)
762 debug3("timeout: %d ms remain after connect", timeout_ms);
763
Damien Miller5428f641999-11-25 11:54:57 +1100764 /*
765 * If we successfully made the connection, load the host private key
766 * in case we will need it later for combined rsa-rhosts
767 * authentication. This must be done before releasing extra
768 * privileges, because the file is only readable by root.
Ben Lindstrom9e5bb572002-06-06 19:58:27 +0000769 * If we cannot access the private keys, load the public keys
770 * instead and try to execute the ssh-keysign helper instead.
Damien Miller5428f641999-11-25 11:54:57 +1100771 */
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000772 sensitive_data.nkeys = 0;
773 sensitive_data.keys = NULL;
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000774 sensitive_data.external_keysign = 0;
Ben Lindstrom24157572002-06-12 16:09:39 +0000775 if (options.rhosts_rsa_authentication ||
776 options.hostbased_authentication) {
Damien Millerc1583312010-08-05 13:04:50 +1000777 sensitive_data.nkeys = 5;
Damien Millerddd63ab2006-03-31 23:10:51 +1100778 sensitive_data.keys = xcalloc(sensitive_data.nkeys,
Ben Lindstroma962c2f2002-07-04 00:14:17 +0000779 sizeof(Key));
Ben Lindstromf9c48842002-06-11 16:37:51 +0000780
781 PRIV_START;
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000782 sensitive_data.keys[0] = key_load_private_type(KEY_RSA1,
Darren Tucker232b76f2006-05-06 17:41:51 +1000783 _PATH_HOST_KEY_FILE, "", NULL, NULL);
Damien Millerc1583312010-08-05 13:04:50 +1000784 sensitive_data.keys[1] = key_load_private_cert(KEY_DSA,
785 _PATH_HOST_DSA_KEY_FILE, "", NULL);
786 sensitive_data.keys[2] = key_load_private_cert(KEY_RSA,
787 _PATH_HOST_RSA_KEY_FILE, "", NULL);
788 sensitive_data.keys[3] = key_load_private_type(KEY_DSA,
Darren Tucker232b76f2006-05-06 17:41:51 +1000789 _PATH_HOST_DSA_KEY_FILE, "", NULL, NULL);
Damien Millerc1583312010-08-05 13:04:50 +1000790 sensitive_data.keys[4] = key_load_private_type(KEY_RSA,
Darren Tucker232b76f2006-05-06 17:41:51 +1000791 _PATH_HOST_RSA_KEY_FILE, "", NULL, NULL);
Ben Lindstromf9c48842002-06-11 16:37:51 +0000792 PRIV_END;
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000793
Ben Lindstrom5d35a2f2002-07-04 00:19:40 +0000794 if (options.hostbased_authentication == 1 &&
795 sensitive_data.keys[0] == NULL &&
Damien Millerc1583312010-08-05 13:04:50 +1000796 sensitive_data.keys[3] == NULL &&
797 sensitive_data.keys[4] == NULL) {
798 sensitive_data.keys[1] = key_load_cert(
799 _PATH_HOST_DSA_KEY_FILE);
800 sensitive_data.keys[2] = key_load_cert(
801 _PATH_HOST_RSA_KEY_FILE);
802 sensitive_data.keys[3] = key_load_public(
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000803 _PATH_HOST_DSA_KEY_FILE, NULL);
Damien Millerc1583312010-08-05 13:04:50 +1000804 sensitive_data.keys[4] = key_load_public(
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000805 _PATH_HOST_RSA_KEY_FILE, NULL);
806 sensitive_data.external_keysign = 1;
807 }
Damien Miller95def091999-11-25 00:26:21 +1100808 }
Damien Miller5428f641999-11-25 11:54:57 +1100809 /*
810 * Get rid of any extra privileges that we may have. We will no
811 * longer need them. Also, extra privileges could make it very hard
812 * to read identity files and other non-world-readable files from the
813 * user's home directory if it happens to be on a NFS volume where
814 * root is mapped to nobody.
815 */
Darren Tucker25f60a72004-08-15 17:23:34 +1000816 if (original_effective_uid == 0) {
817 PRIV_START;
818 permanently_set_uid(pw);
819 }
Damien Miller95def091999-11-25 00:26:21 +1100820
Damien Miller5428f641999-11-25 11:54:57 +1100821 /*
822 * Now that we are back to our own permissions, create ~/.ssh
Damien Miller788f2122005-11-05 15:14:59 +1100823 * directory if it doesn't already exist.
Damien Miller5428f641999-11-25 11:54:57 +1100824 */
Darren Tucker199b1342009-07-06 07:16:56 +1000825 r = snprintf(buf, sizeof buf, "%s%s%s", pw->pw_dir,
Darren Tuckerd6173c02008-06-13 04:52:53 +1000826 strcmp(pw->pw_dir, "/") ? "/" : "", _PATH_SSH_USER_DIR);
Darren Tucker199b1342009-07-06 07:16:56 +1000827 if (r > 0 && (size_t)r < sizeof(buf) && stat(buf, &st) < 0)
Damien Millerbe484b52000-07-15 14:14:16 +1000828 if (mkdir(buf, 0700) < 0)
Damien Miller95def091999-11-25 00:26:21 +1100829 error("Could not create directory '%.200s'.", buf);
830
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000831 /* load options.identity_files */
832 load_public_identity_files();
833
834 /* Expand ~ in known host file names. */
835 /* XXX mem-leaks: */
Damien Miller0bc1bd82000-11-13 22:57:25 +1100836 options.system_hostfile =
837 tilde_expand_filename(options.system_hostfile, original_real_uid);
838 options.user_hostfile =
839 tilde_expand_filename(options.user_hostfile, original_real_uid);
840 options.system_hostfile2 =
841 tilde_expand_filename(options.system_hostfile2, original_real_uid);
842 options.user_hostfile2 =
843 tilde_expand_filename(options.user_hostfile2, original_real_uid);
Damien Miller95def091999-11-25 00:26:21 +1100844
Damien Miller07cd5892001-11-12 10:52:03 +1100845 signal(SIGPIPE, SIG_IGN); /* ignore SIGPIPE early */
846
Darren Tuckerd6173c02008-06-13 04:52:53 +1000847 /* Log into the remote system. Never returns if the login fails. */
Damien Miller67bd0622007-09-17 12:06:57 +1000848 ssh_login(&sensitive_data, host, (struct sockaddr *)&hostaddr,
849 pw, timeout_ms);
Damien Miller95def091999-11-25 00:26:21 +1100850
Damien Miller383ffe62010-06-26 10:02:03 +1000851 if (packet_connection_is_on_socket()) {
852 verbose("Authenticated to %s ([%s]:%d).", host,
853 get_remote_ipaddr(), get_remote_port());
854 } else {
855 verbose("Authenticated to %s (via proxy).", host);
856 }
857
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000858 /* We no longer need the private host keys. Clear them now. */
859 if (sensitive_data.nkeys != 0) {
860 for (i = 0; i < sensitive_data.nkeys; i++) {
861 if (sensitive_data.keys[i] != NULL) {
862 /* Destroys contents safely */
863 debug3("clear hostkey %d", i);
864 key_free(sensitive_data.keys[i]);
865 sensitive_data.keys[i] = NULL;
866 }
867 }
868 xfree(sensitive_data.keys);
869 }
Ben Lindstroma6c8a8d2001-08-06 21:42:00 +0000870 for (i = 0; i < options.num_identity_files; i++) {
871 if (options.identity_files[i]) {
872 xfree(options.identity_files[i]);
873 options.identity_files[i] = NULL;
874 }
875 if (options.identity_keys[i]) {
876 key_free(options.identity_keys[i]);
877 options.identity_keys[i] = NULL;
878 }
879 }
Damien Miller95def091999-11-25 00:26:21 +1100880
Damien Miller1383bd82000-04-06 12:32:37 +1000881 exit_status = compat20 ? ssh_session2() : ssh_session();
882 packet_close();
Damien Miller8c4e18a2002-09-19 12:05:02 +1000883
Damien Millerb1cbfa22008-05-19 16:00:08 +1000884 if (options.control_path != NULL && muxserver_sock != -1)
Damien Miller0e220db2004-06-15 10:34:08 +1000885 unlink(options.control_path);
886
Damien Miller8c4e18a2002-09-19 12:05:02 +1000887 /*
Damien Millera8e06ce2003-11-21 23:48:55 +1100888 * Send SIGHUP to proxy command if used. We don't wait() in
Damien Miller8c4e18a2002-09-19 12:05:02 +1000889 * case it hangs and instead rely on init to reap the child
890 */
891 if (proxy_command_pid > 1)
892 kill(proxy_command_pid, SIGHUP);
893
Damien Miller1383bd82000-04-06 12:32:37 +1000894 return exit_status;
895}
896
Damien Millere11e1ea2010-08-03 16:04:46 +1000897static void
898control_persist_detach(void)
899{
900 pid_t pid;
901
902 debug("%s: backgrounding master process", __func__);
903
904 /*
905 * master (current process) into the background, and make the
906 * foreground process a client of the backgrounded master.
907 */
908 switch ((pid = fork())) {
909 case -1:
910 fatal("%s: fork: %s", __func__, strerror(errno));
911 case 0:
912 /* Child: master process continues mainloop */
913 break;
914 default:
915 /* Parent: set up mux slave to connect to backgrounded master */
916 debug2("%s: background process is %ld", __func__, (long)pid);
917 stdin_null_flag = ostdin_null_flag;
918 no_shell_flag = ono_shell_flag;
919 no_tty_flag = ono_tty_flag;
920 tty_flag = otty_flag;
921 close(muxserver_sock);
922 muxserver_sock = -1;
923 muxclient(options.control_path);
924 /* muxclient() doesn't return on success. */
925 fatal("Failed to connect to new control master");
926 }
927}
928
929/* Do fork() after authentication. Used by "ssh -f" */
930static void
931fork_postauth(void)
932{
933 if (need_controlpersist_detach)
934 control_persist_detach();
935 debug("forking to background");
936 fork_after_authentication_flag = 0;
937 if (daemon(1, 1) < 0)
938 fatal("daemon() failed: %.200s", strerror(errno));
939}
940
Darren Tucker9f407c42008-06-13 04:50:27 +1000941/* Callback for remote forward global requests */
942static void
943ssh_confirm_remote_forward(int type, u_int32_t seq, void *ctxt)
944{
945 Forward *rfwd = (Forward *)ctxt;
946
Damien Miller4bf648f2009-02-14 16:28:21 +1100947 /* XXX verbose() on failure? */
Darren Tucker9f407c42008-06-13 04:50:27 +1000948 debug("remote forward %s for: listen %d, connect %s:%d",
949 type == SSH2_MSG_REQUEST_SUCCESS ? "success" : "failure",
950 rfwd->listen_port, rfwd->connect_host, rfwd->connect_port);
Damien Miller4bf648f2009-02-14 16:28:21 +1100951 if (type == SSH2_MSG_REQUEST_SUCCESS && rfwd->listen_port == 0) {
Damien Miller388f6fc2010-05-21 14:57:35 +1000952 rfwd->allocated_port = packet_get_int();
Damien Miller4bf648f2009-02-14 16:28:21 +1100953 logit("Allocated port %u for remote forward to %s:%d",
Damien Miller388f6fc2010-05-21 14:57:35 +1000954 rfwd->allocated_port,
955 rfwd->connect_host, rfwd->connect_port);
Damien Miller4bf648f2009-02-14 16:28:21 +1100956 }
957
Darren Tucker9f407c42008-06-13 04:50:27 +1000958 if (type == SSH2_MSG_REQUEST_FAILURE) {
959 if (options.exit_on_forward_failure)
960 fatal("Error: remote port forwarding failed for "
961 "listen port %d", rfwd->listen_port);
962 else
963 logit("Warning: remote port forwarding failed for "
964 "listen port %d", rfwd->listen_port);
965 }
Darren Tucker9a2a6092008-07-04 12:53:50 +1000966 if (++remote_forward_confirms_received == options.num_remote_forwards) {
Darren Tucker9f407c42008-06-13 04:50:27 +1000967 debug("All remote forwarding requests processed");
Damien Millere11e1ea2010-08-03 16:04:46 +1000968 if (fork_after_authentication_flag)
969 fork_postauth();
Darren Tucker9a2a6092008-07-04 12:53:50 +1000970 }
Darren Tucker9f407c42008-06-13 04:50:27 +1000971}
972
Ben Lindstrombba81212001-06-25 05:01:22 +0000973static void
Darren Tucker7ad8dd22010-01-12 19:40:27 +1100974client_cleanup_stdio_fwd(int id, void *arg)
975{
976 debug("stdio forwarding: done");
977 cleanup_exit(0);
978}
979
980static int
981client_setup_stdio_fwd(const char *host_to_connect, u_short port_to_connect)
982{
983 Channel *c;
Damien Millere1537f92010-01-26 13:26:22 +1100984 int in, out;
Darren Tucker7ad8dd22010-01-12 19:40:27 +1100985
986 debug3("client_setup_stdio_fwd %s:%d", host_to_connect,
987 port_to_connect);
Damien Millere1537f92010-01-26 13:26:22 +1100988
989 in = dup(STDIN_FILENO);
990 out = dup(STDOUT_FILENO);
991 if (in < 0 || out < 0)
992 fatal("channel_connect_stdio_fwd: dup() in/out failed");
993
994 if ((c = channel_connect_stdio_fwd(host_to_connect, port_to_connect,
995 in, out)) == NULL)
Darren Tucker7ad8dd22010-01-12 19:40:27 +1100996 return 0;
997 channel_register_cleanup(c->self, client_cleanup_stdio_fwd, 0);
998 return 1;
999}
1000
1001static void
Damien Miller0bc1bd82000-11-13 22:57:25 +11001002ssh_init_forwarding(void)
1003{
Kevin Steves12057502001-02-05 14:54:34 +00001004 int success = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001005 int i;
Kevin Steves12057502001-02-05 14:54:34 +00001006
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001007 if (stdio_forward_host != NULL) {
1008 if (!compat20) {
1009 fatal("stdio forwarding require Protocol 2");
1010 }
1011 if (!client_setup_stdio_fwd(stdio_forward_host,
1012 stdio_forward_port))
1013 fatal("Failed to connect in stdio forward mode.");
1014 }
1015
Damien Miller0bc1bd82000-11-13 22:57:25 +11001016 /* Initiate local TCP/IP port forwardings. */
1017 for (i = 0; i < options.num_local_forwards; i++) {
Damien Millerf91ee4c2005-03-01 21:24:33 +11001018 debug("Local connections to %.200s:%d forwarded to remote "
1019 "address %.200s:%d",
Darren Tucker47eede72005-03-14 23:08:12 +11001020 (options.local_forwards[i].listen_host == NULL) ?
1021 (options.gateway_ports ? "*" : "LOCALHOST") :
Damien Millerf91ee4c2005-03-01 21:24:33 +11001022 options.local_forwards[i].listen_host,
1023 options.local_forwards[i].listen_port,
1024 options.local_forwards[i].connect_host,
1025 options.local_forwards[i].connect_port);
Damien Millerb16461c2002-01-22 23:29:22 +11001026 success += channel_setup_local_fwd_listener(
Damien Millerf91ee4c2005-03-01 21:24:33 +11001027 options.local_forwards[i].listen_host,
1028 options.local_forwards[i].listen_port,
1029 options.local_forwards[i].connect_host,
1030 options.local_forwards[i].connect_port,
Damien Miller0bc1bd82000-11-13 22:57:25 +11001031 options.gateway_ports);
1032 }
Darren Tuckere7d4b192006-07-12 22:17:10 +10001033 if (i > 0 && success != i && options.exit_on_forward_failure)
1034 fatal("Could not request local forwarding.");
Kevin Steves12057502001-02-05 14:54:34 +00001035 if (i > 0 && success == 0)
1036 error("Could not request local forwarding.");
Damien Miller0bc1bd82000-11-13 22:57:25 +11001037
1038 /* Initiate remote TCP/IP port forwardings. */
1039 for (i = 0; i < options.num_remote_forwards; i++) {
Damien Millerf91ee4c2005-03-01 21:24:33 +11001040 debug("Remote connections from %.200s:%d forwarded to "
1041 "local address %.200s:%d",
Damien Miller46d38de2005-07-17 17:02:09 +10001042 (options.remote_forwards[i].listen_host == NULL) ?
Damien Milleraa3bb102005-11-05 15:12:59 +11001043 "LOCALHOST" : options.remote_forwards[i].listen_host,
Damien Millerf91ee4c2005-03-01 21:24:33 +11001044 options.remote_forwards[i].listen_port,
1045 options.remote_forwards[i].connect_host,
1046 options.remote_forwards[i].connect_port);
Darren Tuckere7d4b192006-07-12 22:17:10 +10001047 if (channel_request_remote_forwarding(
Damien Millerf91ee4c2005-03-01 21:24:33 +11001048 options.remote_forwards[i].listen_host,
1049 options.remote_forwards[i].listen_port,
1050 options.remote_forwards[i].connect_host,
Darren Tuckere7d4b192006-07-12 22:17:10 +10001051 options.remote_forwards[i].connect_port) < 0) {
1052 if (options.exit_on_forward_failure)
1053 fatal("Could not request remote forwarding.");
1054 else
1055 logit("Warning: Could not request remote "
1056 "forwarding.");
1057 }
Darren Tucker9f407c42008-06-13 04:50:27 +10001058 client_register_global_confirm(ssh_confirm_remote_forward,
1059 &options.remote_forwards[i]);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001060 }
Damien Millerb3ce9fe2007-08-08 14:32:41 +10001061
1062 /* Initiate tunnel forwarding. */
1063 if (options.tun_open != SSH_TUNMODE_NO) {
1064 if (client_request_tun_fwd(options.tun_open,
1065 options.tun_local, options.tun_remote) == -1) {
1066 if (options.exit_on_forward_failure)
1067 fatal("Could not request tunnel forwarding.");
1068 else
1069 error("Could not request tunnel forwarding.");
1070 }
1071 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11001072}
1073
Ben Lindstrombba81212001-06-25 05:01:22 +00001074static void
Damien Miller0bc1bd82000-11-13 22:57:25 +11001075check_agent_present(void)
1076{
1077 if (options.forward_agent) {
Damien Miller788f2122005-11-05 15:14:59 +11001078 /* Clear agent forwarding if we don't have an agent. */
Damien Miller789e95d2002-09-12 09:52:46 +10001079 if (!ssh_agent_present())
Damien Miller0bc1bd82000-11-13 22:57:25 +11001080 options.forward_agent = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001081 }
1082}
1083
Ben Lindstrombba81212001-06-25 05:01:22 +00001084static int
Damien Miller1383bd82000-04-06 12:32:37 +10001085ssh_session(void)
1086{
1087 int type;
Damien Miller1383bd82000-04-06 12:32:37 +10001088 int interactive = 0;
1089 int have_tty = 0;
1090 struct winsize ws;
Damien Miller1383bd82000-04-06 12:32:37 +10001091 char *cp;
Damien Miller17e7ed02005-06-17 12:54:33 +10001092 const char *display;
Damien Miller1383bd82000-04-06 12:32:37 +10001093
Damien Miller95def091999-11-25 00:26:21 +11001094 /* Enable compression if requested. */
1095 if (options.compression) {
Darren Tuckerd6173c02008-06-13 04:52:53 +10001096 debug("Requesting compression at level %d.",
1097 options.compression_level);
Damien Miller95def091999-11-25 00:26:21 +11001098
Darren Tuckerd6173c02008-06-13 04:52:53 +10001099 if (options.compression_level < 1 ||
1100 options.compression_level > 9)
1101 fatal("Compression level must be from 1 (fast) to "
1102 "9 (slow, best).");
Damien Miller95def091999-11-25 00:26:21 +11001103
1104 /* Send the request. */
1105 packet_start(SSH_CMSG_REQUEST_COMPRESSION);
1106 packet_put_int(options.compression_level);
1107 packet_send();
1108 packet_write_wait();
Damien Millerdff50992002-01-22 23:16:32 +11001109 type = packet_read();
Damien Miller95def091999-11-25 00:26:21 +11001110 if (type == SSH_SMSG_SUCCESS)
1111 packet_start_compression(options.compression_level);
1112 else if (type == SSH_SMSG_FAILURE)
Damien Miller996acd22003-04-09 20:59:48 +10001113 logit("Warning: Remote host refused compression.");
Damien Miller95def091999-11-25 00:26:21 +11001114 else
Darren Tuckerd6173c02008-06-13 04:52:53 +10001115 packet_disconnect("Protocol error waiting for "
1116 "compression response.");
Damien Miller95def091999-11-25 00:26:21 +11001117 }
1118 /* Allocate a pseudo tty if appropriate. */
1119 if (tty_flag) {
1120 debug("Requesting pty.");
1121
1122 /* Start the packet. */
1123 packet_start(SSH_CMSG_REQUEST_PTY);
1124
1125 /* Store TERM in the packet. There is no limit on the
1126 length of the string. */
1127 cp = getenv("TERM");
1128 if (!cp)
1129 cp = "";
Ben Lindstrom664408d2001-06-09 01:42:01 +00001130 packet_put_cstring(cp);
Damien Miller95def091999-11-25 00:26:21 +11001131
1132 /* Store window size in the packet. */
1133 if (ioctl(fileno(stdin), TIOCGWINSZ, &ws) < 0)
1134 memset(&ws, 0, sizeof(ws));
Damien Miller71a73672006-03-26 14:04:36 +11001135 packet_put_int((u_int)ws.ws_row);
1136 packet_put_int((u_int)ws.ws_col);
1137 packet_put_int((u_int)ws.ws_xpixel);
1138 packet_put_int((u_int)ws.ws_ypixel);
Damien Miller95def091999-11-25 00:26:21 +11001139
1140 /* Store tty modes in the packet. */
Ben Lindstromae8e2d32001-04-14 23:13:02 +00001141 tty_make_modes(fileno(stdin), NULL);
Damien Miller95def091999-11-25 00:26:21 +11001142
1143 /* Send the packet, and wait for it to leave. */
1144 packet_send();
1145 packet_write_wait();
1146
1147 /* Read response from the server. */
Damien Millerdff50992002-01-22 23:16:32 +11001148 type = packet_read();
Damien Miller450a7a12000-03-26 13:04:51 +10001149 if (type == SSH_SMSG_SUCCESS) {
Damien Miller95def091999-11-25 00:26:21 +11001150 interactive = 1;
Damien Miller1383bd82000-04-06 12:32:37 +10001151 have_tty = 1;
Damien Miller450a7a12000-03-26 13:04:51 +10001152 } else if (type == SSH_SMSG_FAILURE)
Darren Tuckerd6173c02008-06-13 04:52:53 +10001153 logit("Warning: Remote host failed or refused to "
1154 "allocate a pseudo tty.");
Damien Miller95def091999-11-25 00:26:21 +11001155 else
Darren Tuckerd6173c02008-06-13 04:52:53 +10001156 packet_disconnect("Protocol error waiting for pty "
1157 "request response.");
Damien Miller95def091999-11-25 00:26:21 +11001158 }
1159 /* Request X11 forwarding if enabled and DISPLAY is set. */
Damien Miller17e7ed02005-06-17 12:54:33 +10001160 display = getenv("DISPLAY");
1161 if (options.forward_x11 && display != NULL) {
Ben Lindstrom4a4bd712001-12-06 17:45:19 +00001162 char *proto, *data;
Damien Millerbd483e72000-04-30 10:00:53 +10001163 /* Get reasonable local authentication information. */
Damien Miller17e7ed02005-06-17 12:54:33 +10001164 client_x11_get_proto(display, options.xauth_location,
Damien Miller1ab6a512010-06-26 10:02:24 +10001165 options.forward_x11_trusted,
1166 options.forward_x11_timeout,
1167 &proto, &data);
Damien Millerbd483e72000-04-30 10:00:53 +10001168 /* Request forwarding with authentication spoofing. */
Darren Tuckerd6173c02008-06-13 04:52:53 +10001169 debug("Requesting X11 forwarding with authentication "
1170 "spoofing.");
Damien Miller17e7ed02005-06-17 12:54:33 +10001171 x11_request_forwarding_with_spoofing(0, display, proto, data);
Damien Miller95def091999-11-25 00:26:21 +11001172
1173 /* Read response from the server. */
Damien Millerdff50992002-01-22 23:16:32 +11001174 type = packet_read();
Damien Miller95def091999-11-25 00:26:21 +11001175 if (type == SSH_SMSG_SUCCESS) {
Damien Miller95def091999-11-25 00:26:21 +11001176 interactive = 1;
Damien Millerbd483e72000-04-30 10:00:53 +10001177 } else if (type == SSH_SMSG_FAILURE) {
Damien Miller996acd22003-04-09 20:59:48 +10001178 logit("Warning: Remote host denied X11 forwarding.");
Damien Millerbd483e72000-04-30 10:00:53 +10001179 } else {
Darren Tuckerd6173c02008-06-13 04:52:53 +10001180 packet_disconnect("Protocol error waiting for X11 "
1181 "forwarding");
Damien Millerbd483e72000-04-30 10:00:53 +10001182 }
Damien Miller95def091999-11-25 00:26:21 +11001183 }
1184 /* Tell the packet module whether this is an interactive session. */
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001185 packet_set_interactive(interactive);
Damien Miller95def091999-11-25 00:26:21 +11001186
1187 /* Request authentication agent forwarding if appropriate. */
Damien Miller0bc1bd82000-11-13 22:57:25 +11001188 check_agent_present();
1189
Damien Miller95def091999-11-25 00:26:21 +11001190 if (options.forward_agent) {
1191 debug("Requesting authentication agent forwarding.");
1192 auth_request_forwarding();
1193
1194 /* Read response from the server. */
Damien Millerdff50992002-01-22 23:16:32 +11001195 type = packet_read();
Damien Miller48b03fc2002-01-22 23:11:40 +11001196 packet_check_eom();
Damien Miller95def091999-11-25 00:26:21 +11001197 if (type != SSH_SMSG_SUCCESS)
Damien Miller996acd22003-04-09 20:59:48 +10001198 logit("Warning: Remote host denied authentication agent forwarding.");
Damien Miller95def091999-11-25 00:26:21 +11001199 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001200
Damien Miller0bc1bd82000-11-13 22:57:25 +11001201 /* Initiate port forwardings. */
1202 ssh_init_forwarding();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001203
Darren Tuckerb776c852007-12-02 23:06:35 +11001204 /* Execute a local command */
1205 if (options.local_command != NULL &&
1206 options.permit_local_command)
1207 ssh_local_cmd(options.local_command);
1208
Darren Tucker9a2a6092008-07-04 12:53:50 +10001209 /*
1210 * If requested and we are not interested in replies to remote
1211 * forwarding requests, then let ssh continue in the background.
1212 */
Damien Millere11e1ea2010-08-03 16:04:46 +10001213 if (fork_after_authentication_flag) {
1214 if (options.exit_on_forward_failure &&
1215 options.num_remote_forwards > 0) {
1216 debug("deferring postauth fork until remote forward "
1217 "confirmation received");
1218 } else
1219 fork_postauth();
Darren Tucker9a2a6092008-07-04 12:53:50 +10001220 }
Damien Miller5428f641999-11-25 11:54:57 +11001221
1222 /*
1223 * If a command was specified on the command line, execute the
1224 * command now. Otherwise request the server to start a shell.
1225 */
Damien Miller95def091999-11-25 00:26:21 +11001226 if (buffer_len(&command) > 0) {
1227 int len = buffer_len(&command);
1228 if (len > 900)
1229 len = 900;
Darren Tuckerd6173c02008-06-13 04:52:53 +10001230 debug("Sending command: %.*s", len,
1231 (u_char *)buffer_ptr(&command));
Damien Miller95def091999-11-25 00:26:21 +11001232 packet_start(SSH_CMSG_EXEC_CMD);
1233 packet_put_string(buffer_ptr(&command), buffer_len(&command));
1234 packet_send();
1235 packet_write_wait();
1236 } else {
1237 debug("Requesting shell.");
1238 packet_start(SSH_CMSG_EXEC_SHELL);
1239 packet_send();
1240 packet_write_wait();
1241 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001242
Damien Miller95def091999-11-25 00:26:21 +11001243 /* Enter the interactive session. */
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +00001244 return client_loop(have_tty, tty_flag ?
1245 options.escape_char : SSH_ESCAPECHAR_NONE, 0);
Damien Miller1383bd82000-04-06 12:32:37 +10001246}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001247
Ben Lindstromf558cf62001-09-20 23:13:49 +00001248/* request pty/x11/agent/tcpfwd/shell for channel */
Ben Lindstrombba81212001-06-25 05:01:22 +00001249static void
Damien Millerd530f5f2010-05-21 14:57:10 +10001250ssh_session2_setup(int id, int success, void *arg)
Damien Miller1383bd82000-04-06 12:32:37 +10001251{
Damien Miller3756dce2004-06-18 01:17:29 +10001252 extern char **environ;
Damien Miller17e7ed02005-06-17 12:54:33 +10001253 const char *display;
Damien Miller0e220db2004-06-15 10:34:08 +10001254 int interactive = tty_flag;
Damien Miller17e7ed02005-06-17 12:54:33 +10001255
Damien Millerd530f5f2010-05-21 14:57:10 +10001256 if (!success)
1257 return; /* No need for error message, channels code sens one */
1258
Damien Miller46d38de2005-07-17 17:02:09 +10001259 display = getenv("DISPLAY");
Damien Miller17e7ed02005-06-17 12:54:33 +10001260 if (options.forward_x11 && display != NULL) {
Ben Lindstrom4a4bd712001-12-06 17:45:19 +00001261 char *proto, *data;
Damien Millerbd483e72000-04-30 10:00:53 +10001262 /* Get reasonable local authentication information. */
Damien Miller17e7ed02005-06-17 12:54:33 +10001263 client_x11_get_proto(display, options.xauth_location,
Damien Miller1ab6a512010-06-26 10:02:24 +10001264 options.forward_x11_trusted,
1265 options.forward_x11_timeout, &proto, &data);
Damien Millerbd483e72000-04-30 10:00:53 +10001266 /* Request forwarding with authentication spoofing. */
Darren Tuckerd6173c02008-06-13 04:52:53 +10001267 debug("Requesting X11 forwarding with authentication "
1268 "spoofing.");
Damien Miller17e7ed02005-06-17 12:54:33 +10001269 x11_request_forwarding_with_spoofing(id, display, proto, data);
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001270 interactive = 1;
Damien Millerbd483e72000-04-30 10:00:53 +10001271 /* XXX wait for reply */
1272 }
1273
Damien Miller0bc1bd82000-11-13 22:57:25 +11001274 check_agent_present();
1275 if (options.forward_agent) {
1276 debug("Requesting authentication agent forwarding.");
1277 channel_request_start(id, "auth-agent-req@openssh.com", 0);
1278 packet_send();
1279 }
1280
Damien Miller0e220db2004-06-15 10:34:08 +10001281 client_session2_setup(id, tty_flag, subsystem_flag, getenv("TERM"),
Damien Miller5771ed72008-05-19 15:35:33 +10001282 NULL, fileno(stdin), &command, environ);
Ben Lindstrom1e7d3062001-02-09 02:36:43 +00001283
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001284 packet_set_interactive(interactive);
Damien Miller1383bd82000-04-06 12:32:37 +10001285}
1286
Ben Lindstromf558cf62001-09-20 23:13:49 +00001287/* open new channel for a session */
Ben Lindstrombba81212001-06-25 05:01:22 +00001288static int
Ben Lindstromf558cf62001-09-20 23:13:49 +00001289ssh_session2_open(void)
Damien Miller1383bd82000-04-06 12:32:37 +10001290{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001291 Channel *c;
1292 int window, packetmax, in, out, err;
Damien Millerad833b32000-08-23 10:46:23 +10001293
Damien Millercaf6dd62000-08-29 11:33:50 +11001294 if (stdin_null_flag) {
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001295 in = open(_PATH_DEVNULL, O_RDONLY);
Damien Millercaf6dd62000-08-29 11:33:50 +11001296 } else {
1297 in = dup(STDIN_FILENO);
1298 }
1299 out = dup(STDOUT_FILENO);
1300 err = dup(STDERR_FILENO);
1301
1302 if (in < 0 || out < 0 || err < 0)
1303 fatal("dup() in/out/err failed");
1304
Damien Miller69b69aa2000-10-28 14:19:58 +11001305 /* enable nonblocking unless tty */
1306 if (!isatty(in))
1307 set_nonblock(in);
1308 if (!isatty(out))
1309 set_nonblock(out);
1310 if (!isatty(err))
1311 set_nonblock(err);
1312
Damien Millere4340be2000-09-16 13:29:08 +11001313 window = CHAN_SES_WINDOW_DEFAULT;
1314 packetmax = CHAN_SES_PACKET_DEFAULT;
Damien Miller19a59452002-02-19 15:20:57 +11001315 if (tty_flag) {
1316 window >>= 1;
1317 packetmax >>= 1;
Damien Miller1383bd82000-04-06 12:32:37 +10001318 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001319 c = channel_new(
Damien Miller1383bd82000-04-06 12:32:37 +10001320 "session", SSH_CHANNEL_OPENING, in, out, err,
Damien Millere4340be2000-09-16 13:29:08 +11001321 window, packetmax, CHAN_EXTENDED_WRITE,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001322 "client-session", /*nonblock*/0);
Damien Miller1383bd82000-04-06 12:32:37 +10001323
Ben Lindstromf558cf62001-09-20 23:13:49 +00001324 debug3("ssh_session2_open: channel_new: %d", c->self);
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001325
Ben Lindstrom5ec26452001-06-09 00:18:51 +00001326 channel_send_open(c->self);
Ben Lindstromf558cf62001-09-20 23:13:49 +00001327 if (!no_shell_flag)
Damien Millerb84886b2008-05-19 15:05:07 +10001328 channel_register_open_confirm(c->self,
1329 ssh_session2_setup, NULL);
Damien Miller1383bd82000-04-06 12:32:37 +10001330
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001331 return c->self;
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001332}
1333
Ben Lindstrombba81212001-06-25 05:01:22 +00001334static int
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001335ssh_session2(void)
1336{
Ben Lindstromf558cf62001-09-20 23:13:49 +00001337 int id = -1;
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001338
1339 /* XXX should be pre-session */
1340 ssh_init_forwarding();
1341
Damien Millere11e1ea2010-08-03 16:04:46 +10001342 /* Start listening for multiplex clients */
1343 muxserver_listen();
1344
1345 /*
1346 * If we are in control persist mode, then prepare to background
1347 * ourselves and have a foreground client attach as a control
1348 * slave. NB. we must save copies of the flags that we override for
1349 * the backgrounding, since we defer attachment of the slave until
1350 * after the connection is fully established (in particular,
1351 * async rfwd replies have been received for ExitOnForwardFailure).
1352 */
1353 if (options.control_persist && muxserver_sock != -1) {
1354 ostdin_null_flag = stdin_null_flag;
1355 ono_shell_flag = no_shell_flag;
1356 ono_tty_flag = no_tty_flag;
1357 otty_flag = tty_flag;
1358 stdin_null_flag = 1;
1359 no_shell_flag = 1;
1360 no_tty_flag = 1;
1361 tty_flag = 0;
1362 if (!fork_after_authentication_flag)
1363 need_controlpersist_detach = 1;
1364 fork_after_authentication_flag = 1;
1365 }
1366
Ben Lindstromf558cf62001-09-20 23:13:49 +00001367 if (!no_shell_flag || (datafellows & SSH_BUG_DUMMYCHAN))
1368 id = ssh_session2_open();
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001369
Darren Tucker8901fa92008-06-11 09:34:01 +10001370 /* If we don't expect to open a new session, then disallow it */
Damien Miller456e6f02008-11-03 19:20:10 +11001371 if (options.control_master == SSHCTL_MASTER_NO &&
1372 (datafellows & SSH_NEW_OPENSSH)) {
Darren Tucker8901fa92008-06-11 09:34:01 +10001373 debug("Requesting no-more-sessions@openssh.com");
1374 packet_start(SSH2_MSG_GLOBAL_REQUEST);
1375 packet_put_cstring("no-more-sessions@openssh.com");
1376 packet_put_char(0);
1377 packet_send();
1378 }
1379
Damien Millerd27b9472005-12-13 19:29:02 +11001380 /* Execute a local command */
1381 if (options.local_command != NULL &&
1382 options.permit_local_command)
1383 ssh_local_cmd(options.local_command);
1384
Damien Miller1f25ab42010-07-16 13:56:23 +10001385 /*
1386 * If requested and we are not interested in replies to remote
1387 * forwarding requests, then let ssh continue in the background.
1388 */
Damien Millere11e1ea2010-08-03 16:04:46 +10001389 if (fork_after_authentication_flag) {
1390 if (options.exit_on_forward_failure &&
1391 options.num_remote_forwards > 0) {
1392 debug("deferring postauth fork until remote forward "
1393 "confirmation received");
1394 } else
1395 fork_postauth();
Darren Tucker9a2a6092008-07-04 12:53:50 +10001396 }
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001397
Darren Tuckerf1de4e52010-01-08 16:54:59 +11001398 if (options.use_roaming)
1399 request_roaming();
1400
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +00001401 return client_loop(tty_flag, tty_flag ?
1402 options.escape_char : SSH_ESCAPECHAR_NONE, id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001403}
Damien Miller0bc1bd82000-11-13 22:57:25 +11001404
Ben Lindstrombba81212001-06-25 05:01:22 +00001405static void
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001406load_public_identity_files(void)
1407{
Damien Miller6b1d53c2006-03-31 23:13:21 +11001408 char *filename, *cp, thishost[NI_MAXHOST];
Darren Tuckerb4fbbc62007-12-02 23:16:32 +11001409 char *pwdir = NULL, *pwname = NULL;
Ben Lindstrom711b04a2001-08-06 21:12:42 +00001410 int i = 0;
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001411 Key *public;
Damien Miller6b1d53c2006-03-31 23:13:21 +11001412 struct passwd *pw;
Damien Miller0a80ca12010-02-27 07:55:05 +11001413 u_int n_ids;
1414 char *identity_files[SSH_MAX_IDENTITY_FILES];
1415 Key *identity_keys[SSH_MAX_IDENTITY_FILES];
Damien Miller7ea845e2010-02-12 09:21:02 +11001416#ifdef ENABLE_PKCS11
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001417 Key **keys;
Damien Miller7ea845e2010-02-12 09:21:02 +11001418 int nkeys;
Damien Miller0a80ca12010-02-27 07:55:05 +11001419#endif /* PKCS11 */
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001420
Damien Miller0a80ca12010-02-27 07:55:05 +11001421 n_ids = 0;
1422 bzero(identity_files, sizeof(identity_files));
1423 bzero(identity_keys, sizeof(identity_keys));
1424
1425#ifdef ENABLE_PKCS11
Damien Miller7ea845e2010-02-12 09:21:02 +11001426 if (options.pkcs11_provider != NULL &&
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001427 options.num_identity_files < SSH_MAX_IDENTITY_FILES &&
Damien Miller7ea845e2010-02-12 09:21:02 +11001428 (pkcs11_init(!options.batch_mode) == 0) &&
1429 (nkeys = pkcs11_add_provider(options.pkcs11_provider, NULL,
1430 &keys)) > 0) {
Damien Miller7ea845e2010-02-12 09:21:02 +11001431 for (i = 0; i < nkeys; i++) {
Damien Miller0a80ca12010-02-27 07:55:05 +11001432 if (n_ids >= SSH_MAX_IDENTITY_FILES) {
1433 key_free(keys[i]);
1434 continue;
1435 }
1436 identity_keys[n_ids] = keys[i];
1437 identity_files[n_ids] =
Damien Miller7ea845e2010-02-12 09:21:02 +11001438 xstrdup(options.pkcs11_provider); /* XXX */
Damien Miller0a80ca12010-02-27 07:55:05 +11001439 n_ids++;
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001440 }
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001441 xfree(keys);
Ben Lindstrom711b04a2001-08-06 21:12:42 +00001442 }
Damien Miller7ea845e2010-02-12 09:21:02 +11001443#endif /* ENABLE_PKCS11 */
Damien Miller6b1d53c2006-03-31 23:13:21 +11001444 if ((pw = getpwuid(original_real_uid)) == NULL)
1445 fatal("load_public_identity_files: getpwuid failed");
Darren Tuckere143f062007-12-02 23:21:16 +11001446 pwname = xstrdup(pw->pw_name);
1447 pwdir = xstrdup(pw->pw_dir);
Damien Miller6b1d53c2006-03-31 23:13:21 +11001448 if (gethostname(thishost, sizeof(thishost)) == -1)
1449 fatal("load_public_identity_files: gethostname: %s",
1450 strerror(errno));
Damien Miller0a80ca12010-02-27 07:55:05 +11001451 for (i = 0; i < options.num_identity_files; i++) {
1452 if (n_ids >= SSH_MAX_IDENTITY_FILES) {
1453 xfree(options.identity_files[i]);
1454 continue;
1455 }
Damien Miller6b1d53c2006-03-31 23:13:21 +11001456 cp = tilde_expand_filename(options.identity_files[i],
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001457 original_real_uid);
Darren Tuckerb4fbbc62007-12-02 23:16:32 +11001458 filename = percent_expand(cp, "d", pwdir,
1459 "u", pwname, "l", thishost, "h", host,
Damien Miller6b1d53c2006-03-31 23:13:21 +11001460 "r", options.user, (char *)NULL);
1461 xfree(cp);
Ben Lindstromd0fca422001-03-26 13:44:06 +00001462 public = key_load_public(filename, NULL);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001463 debug("identity file %s type %d", filename,
1464 public ? public->type : -1);
1465 xfree(options.identity_files[i]);
Damien Miller0a80ca12010-02-27 07:55:05 +11001466 identity_files[n_ids] = filename;
1467 identity_keys[n_ids] = public;
1468
1469 if (++n_ids >= SSH_MAX_IDENTITY_FILES)
1470 continue;
1471
1472 /* Try to add the certificate variant too */
1473 xasprintf(&cp, "%s-cert", filename);
1474 public = key_load_public(cp, NULL);
1475 debug("identity file %s type %d", cp,
1476 public ? public->type : -1);
1477 if (public == NULL) {
1478 xfree(cp);
1479 continue;
1480 }
1481 if (!key_is_cert(public)) {
1482 debug("%s: key %s type %s is not a certificate",
1483 __func__, cp, key_type(public));
1484 key_free(public);
1485 xfree(cp);
1486 continue;
1487 }
1488 identity_keys[n_ids] = public;
1489 /* point to the original path, most likely the private key */
1490 identity_files[n_ids] = xstrdup(filename);
1491 n_ids++;
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001492 }
Damien Miller0a80ca12010-02-27 07:55:05 +11001493 options.num_identity_files = n_ids;
1494 memcpy(options.identity_files, identity_files, sizeof(identity_files));
1495 memcpy(options.identity_keys, identity_keys, sizeof(identity_keys));
1496
Darren Tuckerb4fbbc62007-12-02 23:16:32 +11001497 bzero(pwname, strlen(pwname));
Darren Tuckere143f062007-12-02 23:21:16 +11001498 xfree(pwname);
Darren Tuckerb4fbbc62007-12-02 23:16:32 +11001499 bzero(pwdir, strlen(pwdir));
Darren Tuckere143f062007-12-02 23:21:16 +11001500 xfree(pwdir);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001501}