blob: 97afdcfeeb2144f2b8108493ff06b386345db7f2 [file] [log] [blame]
Damien Millere1537f92010-01-26 13:26:22 +11001/* $OpenBSD: ssh.c,v 1.332 2010/01/26 01:28:35 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
Ben Lindstromc5b68002001-07-04 04:52:03 +0000106#ifdef SMARTCARD
Ben Lindstromc5b68002001-07-04 04:52:03 +0000107#include "scard.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 Miller02faece2005-03-02 12:04:32 +1100190" [-i identity_file] [-L [bind_address:]port:host:hostport]\n"
Damien Millerf91ee4c2005-03-01 21:24:33 +1100191" [-l login_name] [-m mac_spec] [-O ctl_cmd] [-o option] [-p port]\n"
Damien Miller02faece2005-03-02 12:04:32 +1100192" [-R [bind_address:]port:host:hostport] [-S ctl_path]\n"
Darren Tucker7ad8dd22010-01-12 19:40:27 +1100193" [-W host:port] [-w local_tun[:remote_tun]]\n"
194" [user@]hostname [command]\n"
Damien Miller50955102004-03-22 09:34:58 +1100195 );
Darren Tuckere9a9b712005-12-20 16:15:51 +1100196 exit(255);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000197}
198
Ben Lindstrombba81212001-06-25 05:01:22 +0000199static int ssh_session(void);
200static int ssh_session2(void);
201static void load_public_identity_files(void);
Damien Millerb1cbfa22008-05-19 16:00:08 +1000202
203/* from muxclient.c */
204void muxclient(const char *);
205void muxserver_listen(void);
Damien Miller1383bd82000-04-06 12:32:37 +1000206
Damien Miller95def091999-11-25 00:26:21 +1100207/*
208 * Main program for the ssh client.
209 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000210int
211main(int ac, char **av)
212{
Darren Tucker199b1342009-07-06 07:16:56 +1000213 int i, r, opt, exit_status, use_syslog;
214 char *p, *cp, *line, *argv0, buf[MAXPATHLEN];
Damien Miller95def091999-11-25 00:26:21 +1100215 struct stat st;
Ben Lindstrom086cf212001-03-05 05:56:40 +0000216 struct passwd *pw;
Damien Miller67bd0622007-09-17 12:06:57 +1000217 int dummy, timeout_ms;
Ben Lindstrom5ccf63a2001-09-24 20:00:10 +0000218 extern int optind, optreset;
Damien Miller4f8e6692001-07-14 13:22:53 +1000219 extern char *optarg;
Damien Miller9651fe62005-06-26 08:55:25 +1000220 struct servent *sp;
Damien Millerf91ee4c2005-03-01 21:24:33 +1100221 Forward fwd;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000222
Darren Tuckerce321d82005-10-03 18:11:24 +1000223 /* Ensure that fds 0, 1 and 2 are open or directed to /dev/null */
224 sanitise_stdfd();
225
Damien Miller59d3d5b2003-08-22 09:34:41 +1000226 __progname = ssh_get_progname(av[0]);
Damien Millerf9b625c2000-07-09 22:42:32 +1000227 init_rng();
228
Damien Miller5428f641999-11-25 11:54:57 +1100229 /*
230 * Save the original real uid. It will be needed later (uid-swapping
231 * may clobber the real uid).
232 */
Damien Miller95def091999-11-25 00:26:21 +1100233 original_real_uid = getuid();
234 original_effective_uid = geteuid();
Damien Millera8e06ce2003-11-21 23:48:55 +1100235
Damien Miller50b9a602002-09-04 16:50:06 +1000236 /*
237 * Use uid-swapping to give up root privileges for the duration of
238 * option processing. We will re-instantiate the rights when we are
239 * ready to create the privileged port, and will permanently drop
240 * them when the port has been created (actually, when the connection
241 * has been made, as we may need to create the port several times).
242 */
243 PRIV_END;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000244
Damien Miller05dd7952000-10-01 00:42:48 +1100245#ifdef HAVE_SETRLIMIT
Damien Miller95def091999-11-25 00:26:21 +1100246 /* If we are installed setuid root be careful to not drop core. */
247 if (original_real_uid != original_effective_uid) {
248 struct rlimit rlim;
249 rlim.rlim_cur = rlim.rlim_max = 0;
250 if (setrlimit(RLIMIT_CORE, &rlim) < 0)
251 fatal("setrlimit failed: %.100s", strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000252 }
Damien Millerbac2d8a2000-09-05 16:13:06 +1100253#endif
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000254 /* Get user data. */
255 pw = getpwuid(original_real_uid);
256 if (!pw) {
Damien Miller996acd22003-04-09 20:59:48 +1000257 logit("You don't exist, go away!");
Darren Tuckere9a9b712005-12-20 16:15:51 +1100258 exit(255);
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000259 }
260 /* Take a copy of the returned structure. */
261 pw = pwcopy(pw);
262
Damien Miller5428f641999-11-25 11:54:57 +1100263 /*
Damien Miller5428f641999-11-25 11:54:57 +1100264 * Set our umask to something reasonable, as some files are created
265 * with the default umask. This will make them world-readable but
266 * writable only by the owner, which is ok for all files for which we
267 * don't set the modes explicitly.
268 */
Damien Miller95def091999-11-25 00:26:21 +1100269 umask(022);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000270
Darren Tuckerd6173c02008-06-13 04:52:53 +1000271 /*
272 * Initialize option structure to indicate that no values have been
273 * set.
274 */
Damien Miller95def091999-11-25 00:26:21 +1100275 initialize_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000276
Damien Miller95def091999-11-25 00:26:21 +1100277 /* Parse command-line arguments. */
278 host = NULL;
Damien Millere272a5b2008-11-03 19:22:37 +1100279 use_syslog = 0;
Darren Tucker72efd742009-06-21 17:48:00 +1000280 argv0 = av[0];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000281
Damien Miller2ecb6bd2006-03-15 12:03:53 +1100282 again:
Darren Tuckerd6173c02008-06-13 04:52:53 +1000283 while ((opt = getopt(ac, av, "1246ab:c:e:fgi:kl:m:no:p:qstvx"
Darren Tucker7ad8dd22010-01-12 19:40:27 +1100284 "ACD:F:I:KL:MNO:PR:S:TVw:W:XYy")) != -1) {
Damien Miller95def091999-11-25 00:26:21 +1100285 switch (opt) {
Ben Lindstrom1e7d3062001-02-09 02:36:43 +0000286 case '1':
287 options.protocol = SSH_PROTO_1;
288 break;
Damien Miller4af51302000-04-16 11:18:38 +1000289 case '2':
290 options.protocol = SSH_PROTO_2;
291 break;
Damien Miller34132e52000-01-14 15:45:46 +1100292 case '4':
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000293 options.address_family = AF_INET;
Damien Miller34132e52000-01-14 15:45:46 +1100294 break;
Damien Miller34132e52000-01-14 15:45:46 +1100295 case '6':
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000296 options.address_family = AF_INET6;
Damien Miller34132e52000-01-14 15:45:46 +1100297 break;
Damien Miller95def091999-11-25 00:26:21 +1100298 case 'n':
299 stdin_null_flag = 1;
300 break;
Damien Miller95def091999-11-25 00:26:21 +1100301 case 'f':
302 fork_after_authentication_flag = 1;
303 stdin_null_flag = 1;
304 break;
Damien Miller95def091999-11-25 00:26:21 +1100305 case 'x':
306 options.forward_x11 = 0;
307 break;
Damien Miller95def091999-11-25 00:26:21 +1100308 case 'X':
309 options.forward_x11 = 1;
310 break;
Damien Millere272a5b2008-11-03 19:22:37 +1100311 case 'y':
312 use_syslog = 1;
313 break;
Darren Tucker0a118da2003-10-15 15:54:32 +1000314 case 'Y':
315 options.forward_x11 = 1;
316 options.forward_x11_trusted = 1;
317 break;
Damien Miller95def091999-11-25 00:26:21 +1100318 case 'g':
319 options.gateway_ports = 1;
320 break;
Darren Tucker7ebfc102004-11-07 20:06:19 +1100321 case 'O':
Damien Millere1537f92010-01-26 13:26:22 +1100322 if (stdio_forward_host != NULL)
323 fatal("Cannot specify multiplexing "
324 "command with -W");
325 else if (muxclient_command != 0)
326 fatal("Multiplexing command already specified");
Darren Tucker7ebfc102004-11-07 20:06:19 +1100327 if (strcmp(optarg, "check") == 0)
Damien Millerb1cbfa22008-05-19 16:00:08 +1000328 muxclient_command = SSHMUX_COMMAND_ALIVE_CHECK;
Darren Tucker7ebfc102004-11-07 20:06:19 +1100329 else if (strcmp(optarg, "exit") == 0)
Damien Millerb1cbfa22008-05-19 16:00:08 +1000330 muxclient_command = SSHMUX_COMMAND_TERMINATE;
Darren Tucker7ebfc102004-11-07 20:06:19 +1100331 else
332 fatal("Invalid multiplex command.");
333 break;
Damien Miller147bba32002-09-04 16:46:06 +1000334 case 'P': /* deprecated */
Damien Miller95def091999-11-25 00:26:21 +1100335 options.use_privileged_port = 0;
336 break;
Damien Miller95def091999-11-25 00:26:21 +1100337 case 'a':
338 options.forward_agent = 0;
339 break;
Damien Millerb1715dc2000-05-30 13:44:51 +1000340 case 'A':
341 options.forward_agent = 1;
342 break;
Damien Miller95def091999-11-25 00:26:21 +1100343 case 'k':
Damien Millere0113cc2003-11-24 13:10:09 +1100344 options.gss_deleg_creds = 0;
Damien Miller95def091999-11-25 00:26:21 +1100345 break;
Darren Tucker415bddc2007-06-12 23:43:16 +1000346 case 'K':
347 options.gss_authentication = 1;
348 options.gss_deleg_creds = 1;
349 break;
Damien Miller95def091999-11-25 00:26:21 +1100350 case 'i':
351 if (stat(optarg, &st) < 0) {
Damien Millerf4614452001-07-14 12:18:10 +1000352 fprintf(stderr, "Warning: Identity file %s "
Damien Miller3eb48b62005-03-01 21:15:46 +1100353 "not accessible: %s.\n", optarg,
354 strerror(errno));
Damien Miller95def091999-11-25 00:26:21 +1100355 break;
356 }
Damien Millerf4614452001-07-14 12:18:10 +1000357 if (options.num_identity_files >=
358 SSH_MAX_IDENTITY_FILES)
359 fatal("Too many identity files specified "
360 "(max %d)", SSH_MAX_IDENTITY_FILES);
361 options.identity_files[options.num_identity_files++] =
362 xstrdup(optarg);
Damien Miller95def091999-11-25 00:26:21 +1100363 break;
Ben Lindstromc5b68002001-07-04 04:52:03 +0000364 case 'I':
365#ifdef SMARTCARD
Ben Lindstromf7db3bb2001-08-06 21:35:51 +0000366 options.smartcard_device = xstrdup(optarg);
Ben Lindstrombcc18082001-08-06 21:59:25 +0000367#else
Ben Lindstromc5b68002001-07-04 04:52:03 +0000368 fprintf(stderr, "no support for smartcards.\n");
Ben Lindstrombcc18082001-08-06 21:59:25 +0000369#endif
Ben Lindstromc5b68002001-07-04 04:52:03 +0000370 break;
Damien Miller95def091999-11-25 00:26:21 +1100371 case 't':
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000372 if (tty_flag)
373 force_tty_flag = 1;
Damien Miller95def091999-11-25 00:26:21 +1100374 tty_flag = 1;
375 break;
Damien Miller95def091999-11-25 00:26:21 +1100376 case 'v':
Darren Tuckere98dfa32003-07-19 19:54:31 +1000377 if (debug_flag == 0) {
Damien Millere4340be2000-09-16 13:29:08 +1100378 debug_flag = 1;
379 options.log_level = SYSLOG_LEVEL_DEBUG1;
Darren Tuckere98dfa32003-07-19 19:54:31 +1000380 } else {
381 if (options.log_level < SYSLOG_LEVEL_DEBUG3)
382 options.log_level++;
Damien Millere4340be2000-09-16 13:29:08 +1100383 break;
Darren Tuckere98dfa32003-07-19 19:54:31 +1000384 }
Darren Tuckere9bf9842004-11-05 20:05:32 +1100385 /* FALLTHROUGH */
Damien Miller95def091999-11-25 00:26:21 +1100386 case 'V':
Damien Miller0c889cd2004-03-22 09:36:00 +1100387 fprintf(stderr, "%s, %s\n",
Damien Miller2aa6d3c2004-09-12 16:53:04 +1000388 SSH_RELEASE, SSLeay_version(SSLEAY_VERSION));
Damien Miller95def091999-11-25 00:26:21 +1100389 if (opt == 'V')
390 exit(0);
Damien Miller95def091999-11-25 00:26:21 +1100391 break;
Damien Millerd27b9472005-12-13 19:29:02 +1100392 case 'w':
Damien Miller7b58e802005-12-13 19:33:19 +1100393 if (options.tun_open == -1)
394 options.tun_open = SSH_TUNMODE_DEFAULT;
Damien Millerd27b9472005-12-13 19:29:02 +1100395 options.tun_local = a2tun(optarg, &options.tun_remote);
Damien Miller7b58e802005-12-13 19:33:19 +1100396 if (options.tun_local == SSH_TUNID_ERR) {
Darren Tuckerd6173c02008-06-13 04:52:53 +1000397 fprintf(stderr,
398 "Bad tun device '%s'\n", optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100399 exit(255);
Damien Millerd27b9472005-12-13 19:29:02 +1100400 }
401 break;
Darren Tucker7ad8dd22010-01-12 19:40:27 +1100402 case 'W':
Damien Millere1537f92010-01-26 13:26:22 +1100403 if (stdio_forward_host != NULL)
404 fatal("stdio forward already specified");
405 if (muxclient_command != 0)
406 fatal("Cannot specify stdio forward with -O");
Darren Tucker7ad8dd22010-01-12 19:40:27 +1100407 if (parse_forward(&fwd, optarg, 1, 0)) {
408 stdio_forward_host = fwd.listen_host;
409 stdio_forward_port = fwd.listen_port;
410 xfree(fwd.connect_host);
411 } else {
412 fprintf(stderr,
413 "Bad stdio forwarding specification '%s'\n",
414 optarg);
415 exit(255);
416 }
417 no_tty_flag = 1;
418 no_shell_flag = 1;
419 options.clear_forwardings = 1;
420 options.exit_on_forward_failure = 1;
421 break;
Damien Miller95def091999-11-25 00:26:21 +1100422 case 'q':
423 options.log_level = SYSLOG_LEVEL_QUIET;
424 break;
Damien Miller95def091999-11-25 00:26:21 +1100425 case 'e':
426 if (optarg[0] == '^' && optarg[2] == 0 &&
Damien Millerf4614452001-07-14 12:18:10 +1000427 (u_char) optarg[1] >= 64 &&
428 (u_char) optarg[1] < 128)
Ben Lindstrom46c16222000-12-22 01:43:59 +0000429 options.escape_char = (u_char) optarg[1] & 31;
Damien Miller95def091999-11-25 00:26:21 +1100430 else if (strlen(optarg) == 1)
Ben Lindstrom46c16222000-12-22 01:43:59 +0000431 options.escape_char = (u_char) optarg[0];
Damien Miller95def091999-11-25 00:26:21 +1100432 else if (strcmp(optarg, "none") == 0)
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +0000433 options.escape_char = SSH_ESCAPECHAR_NONE;
Damien Miller95def091999-11-25 00:26:21 +1100434 else {
Damien Millerf4614452001-07-14 12:18:10 +1000435 fprintf(stderr, "Bad escape character '%s'.\n",
436 optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100437 exit(255);
Damien Miller95def091999-11-25 00:26:21 +1100438 }
439 break;
Damien Miller95def091999-11-25 00:26:21 +1100440 case 'c':
Damien Millereba71ba2000-04-29 23:57:08 +1000441 if (ciphers_valid(optarg)) {
442 /* SSH2 only */
443 options.ciphers = xstrdup(optarg);
Darren Tucker5cb30ad2004-08-12 22:40:24 +1000444 options.cipher = SSH_CIPHER_INVALID;
Damien Millereba71ba2000-04-29 23:57:08 +1000445 } else {
446 /* SSH1 only */
Damien Millere39cacc2000-11-29 12:18:44 +1100447 options.cipher = cipher_number(optarg);
448 if (options.cipher == -1) {
Damien Millerf4614452001-07-14 12:18:10 +1000449 fprintf(stderr,
450 "Unknown cipher type '%s'\n",
451 optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100452 exit(255);
Damien Millereba71ba2000-04-29 23:57:08 +1000453 }
Damien Millerf4614452001-07-14 12:18:10 +1000454 if (options.cipher == SSH_CIPHER_3DES)
Damien Millere39cacc2000-11-29 12:18:44 +1100455 options.ciphers = "3des-cbc";
Damien Millerf4614452001-07-14 12:18:10 +1000456 else if (options.cipher == SSH_CIPHER_BLOWFISH)
Damien Millere39cacc2000-11-29 12:18:44 +1100457 options.ciphers = "blowfish-cbc";
Damien Millerf4614452001-07-14 12:18:10 +1000458 else
Damien Millere39cacc2000-11-29 12:18:44 +1100459 options.ciphers = (char *)-1;
Damien Miller95def091999-11-25 00:26:21 +1100460 }
461 break;
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000462 case 'm':
463 if (mac_valid(optarg))
464 options.macs = xstrdup(optarg);
465 else {
Damien Millerf4614452001-07-14 12:18:10 +1000466 fprintf(stderr, "Unknown mac type '%s'\n",
467 optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100468 exit(255);
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000469 }
470 break;
Damien Miller0e220db2004-06-15 10:34:08 +1000471 case 'M':
Damien Millerd14b1e72005-06-16 13:19:41 +1000472 if (options.control_master == SSHCTL_MASTER_YES)
473 options.control_master = SSHCTL_MASTER_ASK;
474 else
475 options.control_master = SSHCTL_MASTER_YES;
Damien Miller0e220db2004-06-15 10:34:08 +1000476 break;
Damien Miller95def091999-11-25 00:26:21 +1100477 case 'p':
Ben Lindstrom19066a12001-04-12 23:39:26 +0000478 options.port = a2port(optarg);
Damien Miller3dc71ad2009-01-28 16:31:22 +1100479 if (options.port <= 0) {
Ben Lindstrom146edb92001-04-11 23:06:28 +0000480 fprintf(stderr, "Bad port '%s'\n", optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100481 exit(255);
Ben Lindstrom146edb92001-04-11 23:06:28 +0000482 }
Damien Miller95def091999-11-25 00:26:21 +1100483 break;
Damien Miller95def091999-11-25 00:26:21 +1100484 case 'l':
485 options.user = optarg;
486 break;
Ben Lindstrom1a174712001-09-12 17:56:15 +0000487
Damien Miller95def091999-11-25 00:26:21 +1100488 case 'L':
Damien Miller4bf648f2009-02-14 16:28:21 +1100489 if (parse_forward(&fwd, optarg, 0, 0))
Damien Millerf91ee4c2005-03-01 21:24:33 +1100490 add_local_forward(&options, &fwd);
491 else {
Damien Millerf4614452001-07-14 12:18:10 +1000492 fprintf(stderr,
Damien Millerf91ee4c2005-03-01 21:24:33 +1100493 "Bad local forwarding specification '%s'\n",
Damien Millerf4614452001-07-14 12:18:10 +1000494 optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100495 exit(255);
Ben Lindstrom1a174712001-09-12 17:56:15 +0000496 }
Damien Millerf91ee4c2005-03-01 21:24:33 +1100497 break;
498
499 case 'R':
Damien Miller4bf648f2009-02-14 16:28:21 +1100500 if (parse_forward(&fwd, optarg, 0, 1)) {
Damien Millerf91ee4c2005-03-01 21:24:33 +1100501 add_remote_forward(&options, &fwd);
502 } else {
503 fprintf(stderr,
504 "Bad remote forwarding specification "
505 "'%s'\n", optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100506 exit(255);
Damien Millerf91ee4c2005-03-01 21:24:33 +1100507 }
Damien Miller95def091999-11-25 00:26:21 +1100508 break;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000509
510 case 'D':
Damien Miller4bf648f2009-02-14 16:28:21 +1100511 if (parse_forward(&fwd, optarg, 1, 0)) {
Damien Millera699d952008-11-03 19:27:34 +1100512 add_local_forward(&options, &fwd);
Damien Millerf91ee4c2005-03-01 21:24:33 +1100513 } else {
Damien Millera699d952008-11-03 19:27:34 +1100514 fprintf(stderr,
515 "Bad dynamic forwarding specification "
516 "'%s'\n", optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100517 exit(255);
Ben Lindstrom146edb92001-04-11 23:06:28 +0000518 }
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000519 break;
520
Damien Miller95def091999-11-25 00:26:21 +1100521 case 'C':
522 options.compression = 1;
523 break;
Damien Miller1383bd82000-04-06 12:32:37 +1000524 case 'N':
525 no_shell_flag = 1;
526 no_tty_flag = 1;
527 break;
Damien Miller1383bd82000-04-06 12:32:37 +1000528 case 'T':
529 no_tty_flag = 1;
530 break;
Damien Miller95def091999-11-25 00:26:21 +1100531 case 'o':
532 dummy = 1;
Damien Miller9836cf82003-12-17 16:30:06 +1100533 line = xstrdup(optarg);
Damien Millerf4614452001-07-14 12:18:10 +1000534 if (process_config_line(&options, host ? host : "",
Damien Miller9836cf82003-12-17 16:30:06 +1100535 line, "command-line", 0, &dummy) != 0)
Darren Tuckere9a9b712005-12-20 16:15:51 +1100536 exit(255);
Damien Miller9836cf82003-12-17 16:30:06 +1100537 xfree(line);
Damien Miller95def091999-11-25 00:26:21 +1100538 break;
Damien Miller832562e2001-01-30 09:30:01 +1100539 case 's':
540 subsystem_flag = 1;
541 break;
Damien Miller0e220db2004-06-15 10:34:08 +1000542 case 'S':
543 if (options.control_path != NULL)
544 free(options.control_path);
545 options.control_path = xstrdup(optarg);
Damien Miller0e220db2004-06-15 10:34:08 +1000546 break;
Ben Lindstrome0f88042001-04-30 13:06:24 +0000547 case 'b':
548 options.bind_address = optarg;
549 break;
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000550 case 'F':
551 config = optarg;
552 break;
Damien Miller95def091999-11-25 00:26:21 +1100553 default:
554 usage();
555 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000556 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000557
Damien Millerf4614452001-07-14 12:18:10 +1000558 ac -= optind;
559 av += optind;
560
Darren Tuckerb8c884a2010-01-08 18:53:43 +1100561 if (ac > 0 && !host) {
Ben Lindstromc276c122002-12-23 02:14:51 +0000562 if (strrchr(*av, '@')) {
Damien Millerf4614452001-07-14 12:18:10 +1000563 p = xstrdup(*av);
Ben Lindstromc276c122002-12-23 02:14:51 +0000564 cp = strrchr(p, '@');
Damien Millerf4614452001-07-14 12:18:10 +1000565 if (cp == NULL || cp == p)
566 usage();
567 options.user = p;
568 *cp = '\0';
569 host = ++cp;
570 } else
571 host = *av;
Ben Lindstromb9fa6912002-12-23 02:24:54 +0000572 if (ac > 1) {
573 optind = optreset = 1;
Damien Millerf4614452001-07-14 12:18:10 +1000574 goto again;
575 }
Ben Lindstromb9fa6912002-12-23 02:24:54 +0000576 ac--, av++;
Damien Millerf4614452001-07-14 12:18:10 +1000577 }
578
Damien Miller95def091999-11-25 00:26:21 +1100579 /* Check that we got a host name. */
580 if (!host)
581 usage();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000582
Damien Millercb5e44a2000-09-29 12:12:36 +1100583 SSLeay_add_all_algorithms();
Damien Miller0bc1bd82000-11-13 22:57:25 +1100584 ERR_load_crypto_strings();
Damien Millercb5e44a2000-09-29 12:12:36 +1100585
Damien Miller95def091999-11-25 00:26:21 +1100586 /* Initialize the command to execute on remote host. */
587 buffer_init(&command);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000588
Damien Miller5428f641999-11-25 11:54:57 +1100589 /*
590 * Save the command to execute on the remote host in a buffer. There
591 * is no limit on the length of the command, except by the maximum
592 * packet size. Also sets the tty flag if there is no command.
593 */
Damien Millerf4614452001-07-14 12:18:10 +1000594 if (!ac) {
Damien Miller95def091999-11-25 00:26:21 +1100595 /* No command specified - execute shell on a tty. */
596 tty_flag = 1;
Damien Miller832562e2001-01-30 09:30:01 +1100597 if (subsystem_flag) {
Damien Millerf4614452001-07-14 12:18:10 +1000598 fprintf(stderr,
599 "You must specify a subsystem to invoke.\n");
Damien Miller832562e2001-01-30 09:30:01 +1100600 usage();
601 }
Damien Miller95def091999-11-25 00:26:21 +1100602 } else {
Damien Millerf4614452001-07-14 12:18:10 +1000603 /* A command has been specified. Store it into the buffer. */
604 for (i = 0; i < ac; i++) {
605 if (i)
Damien Miller95def091999-11-25 00:26:21 +1100606 buffer_append(&command, " ", 1);
607 buffer_append(&command, av[i], strlen(av[i]));
608 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000609 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000610
Damien Miller95def091999-11-25 00:26:21 +1100611 /* Cannot fork to background if no command. */
Darren Tuckerd6173c02008-06-13 04:52:53 +1000612 if (fork_after_authentication_flag && buffer_len(&command) == 0 &&
613 !no_shell_flag)
614 fatal("Cannot fork into background without a command "
615 "to execute.");
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000616
Damien Miller95def091999-11-25 00:26:21 +1100617 /* Allocate a tty by default if no command specified. */
618 if (buffer_len(&command) == 0)
619 tty_flag = 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000620
Ben Lindstroma962c2f2002-07-04 00:14:17 +0000621 /* Force no tty */
Ben Lindstromc72745a2000-12-02 19:03:54 +0000622 if (no_tty_flag)
623 tty_flag = 0;
Damien Miller95def091999-11-25 00:26:21 +1100624 /* Do not allocate a tty if stdin is not a tty. */
Damien Millerddee5752005-05-26 12:05:05 +1000625 if ((!isatty(fileno(stdin)) || stdin_null_flag) && !force_tty_flag) {
Damien Miller95def091999-11-25 00:26:21 +1100626 if (tty_flag)
Darren Tuckerd6173c02008-06-13 04:52:53 +1000627 logit("Pseudo-terminal will not be allocated because "
628 "stdin is not a terminal.");
Damien Miller95def091999-11-25 00:26:21 +1100629 tty_flag = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000630 }
Damien Miller1383bd82000-04-06 12:32:37 +1000631
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000632 /*
633 * Initialize "log" output. Since we are the client all output
634 * actually goes to stderr.
635 */
Darren Tucker72efd742009-06-21 17:48:00 +1000636 log_init(argv0,
Darren Tuckerd6173c02008-06-13 04:52:53 +1000637 options.log_level == -1 ? SYSLOG_LEVEL_INFO : options.log_level,
Damien Millere272a5b2008-11-03 19:22:37 +1100638 SYSLOG_FACILITY_USER, !use_syslog);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000639
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000640 /*
641 * Read per-user configuration file. Ignore the system wide config
642 * file if the user specifies a config file on the command line.
643 */
644 if (config != NULL) {
Damien Miller914420f2004-04-20 20:14:07 +1000645 if (!read_config_file(config, host, &options, 0))
Ben Lindstromedc0cf22001-09-12 18:32:20 +0000646 fatal("Can't open user config file %.100s: "
647 "%.100s", config, strerror(errno));
Damien Miller80163902007-01-05 16:30:16 +1100648 } else {
Darren Tucker199b1342009-07-06 07:16:56 +1000649 r = snprintf(buf, sizeof buf, "%s/%s", pw->pw_dir,
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000650 _PATH_SSH_USER_CONFFILE);
Darren Tucker199b1342009-07-06 07:16:56 +1000651 if (r > 0 && (size_t)r < sizeof(buf))
652 (void)read_config_file(buf, host, &options, 1);
Ben Lindstrom83f07d12001-10-03 17:22:29 +0000653
654 /* Read systemwide configuration file after use config. */
Darren Tuckerfc959702004-07-17 16:12:08 +1000655 (void)read_config_file(_PATH_HOST_CONFIG_FILE, host,
Damien Miller57a44762004-04-20 20:11:57 +1000656 &options, 0);
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000657 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000658
Damien Miller95def091999-11-25 00:26:21 +1100659 /* Fill configuration defaults. */
660 fill_default_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000661
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000662 channel_set_af(options.address_family);
663
Damien Miller95def091999-11-25 00:26:21 +1100664 /* reinit */
Darren Tucker72efd742009-06-21 17:48:00 +1000665 log_init(argv0, options.log_level, SYSLOG_FACILITY_USER, !use_syslog);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000666
Damien Miller60bc5172001-03-19 09:38:15 +1100667 seed_rng();
668
Damien Miller95def091999-11-25 00:26:21 +1100669 if (options.user == NULL)
670 options.user = xstrdup(pw->pw_name);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000671
Darren Tuckerf6b01b72008-06-13 04:56:37 +1000672 /* Get default port if port has not been set. */
673 if (options.port == 0) {
674 sp = getservbyname(SSH_SERVICE_NAME, "tcp");
675 options.port = sp ? ntohs(sp->s_port) : SSH_DEFAULT_PORT;
676 }
677
678 if (options.local_command != NULL) {
679 char thishost[NI_MAXHOST];
680
681 if (gethostname(thishost, sizeof(thishost)) == -1)
682 fatal("gethostname: %s", strerror(errno));
683 snprintf(buf, sizeof(buf), "%d", options.port);
684 debug3("expanding LocalCommand: %s", options.local_command);
685 cp = options.local_command;
686 options.local_command = percent_expand(cp, "d", pw->pw_dir,
687 "h", options.hostname? options.hostname : host,
688 "l", thishost, "n", host, "r", options.user, "p", buf,
689 "u", pw->pw_name, (char *)NULL);
690 debug3("expanded LocalCommand: %s", options.local_command);
691 xfree(cp);
692 }
693
Damien Miller95def091999-11-25 00:26:21 +1100694 if (options.hostname != NULL)
695 host = options.hostname;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000696
Darren Tucker3f521e22003-07-03 16:20:42 +1000697 /* force lowercase for hostkey matching */
698 if (options.host_key_alias != NULL) {
699 for (p = options.host_key_alias; *p; p++)
700 if (isupper(*p))
Damien Miller1d2b6702006-03-26 14:09:54 +1100701 *p = (char)tolower(*p);
Darren Tucker3f521e22003-07-03 16:20:42 +1000702 }
703
Damien Miller9f1e33a2003-02-24 11:57:32 +1100704 if (options.proxy_command != NULL &&
Darren Tucker32e42c72007-12-02 23:01:03 +1100705 strcmp(options.proxy_command, "none") == 0) {
706 xfree(options.proxy_command);
Damien Miller9f1e33a2003-02-24 11:57:32 +1100707 options.proxy_command = NULL;
Darren Tucker32e42c72007-12-02 23:01:03 +1100708 }
Damien Miller8f74c8f2005-06-26 08:56:03 +1000709 if (options.control_path != NULL &&
Darren Tucker32e42c72007-12-02 23:01:03 +1100710 strcmp(options.control_path, "none") == 0) {
711 xfree(options.control_path);
Damien Miller8f74c8f2005-06-26 08:56:03 +1000712 options.control_path = NULL;
Darren Tucker32e42c72007-12-02 23:01:03 +1100713 }
Damien Miller9f1e33a2003-02-24 11:57:32 +1100714
Damien Miller0e220db2004-06-15 10:34:08 +1000715 if (options.control_path != NULL) {
Damien Miller6b1d53c2006-03-31 23:13:21 +1100716 char thishost[NI_MAXHOST];
Damien Miller3ec54c72006-03-15 11:30:13 +1100717
Damien Miller6b1d53c2006-03-31 23:13:21 +1100718 if (gethostname(thishost, sizeof(thishost)) == -1)
Damien Miller3ec54c72006-03-15 11:30:13 +1100719 fatal("gethostname: %s", strerror(errno));
Damien Miller6476cad2005-06-16 13:18:34 +1000720 snprintf(buf, sizeof(buf), "%d", options.port);
721 cp = tilde_expand_filename(options.control_path,
722 original_real_uid);
Darren Tucker32e42c72007-12-02 23:01:03 +1100723 xfree(options.control_path);
Damien Miller6476cad2005-06-16 13:18:34 +1000724 options.control_path = percent_expand(cp, "p", buf, "h", host,
Damien Miller6b1d53c2006-03-31 23:13:21 +1100725 "r", options.user, "l", thishost, (char *)NULL);
Damien Miller6476cad2005-06-16 13:18:34 +1000726 xfree(cp);
Damien Miller0e220db2004-06-15 10:34:08 +1000727 }
Damien Millerb1cbfa22008-05-19 16:00:08 +1000728 if (muxclient_command != 0 && options.control_path == NULL)
Darren Tucker0814d312005-06-01 23:08:51 +1000729 fatal("No ControlPath specified for \"-O\" command");
Damien Millerd14b1e72005-06-16 13:19:41 +1000730 if (options.control_path != NULL)
Damien Millerb1cbfa22008-05-19 16:00:08 +1000731 muxclient(options.control_path);
Damien Miller0e220db2004-06-15 10:34:08 +1000732
Damien Miller67bd0622007-09-17 12:06:57 +1000733 timeout_ms = options.connection_timeout * 1000;
734
Kevin Stevesfcec7f82000-12-15 19:55:48 +0000735 /* Open a connection to the remote host. */
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000736 if (ssh_connect(host, &hostaddr, options.port,
Damien Miller67bd0622007-09-17 12:06:57 +1000737 options.address_family, options.connection_attempts, &timeout_ms,
738 options.tcp_keep_alive,
Ben Lindstrom1aa64272002-06-11 20:28:05 +0000739#ifdef HAVE_CYGWIN
740 options.use_privileged_port,
741#else
Ben Lindstromf9c48842002-06-11 16:37:51 +0000742 original_effective_uid == 0 && options.use_privileged_port,
Ben Lindstrom1aa64272002-06-11 20:28:05 +0000743#endif
Ben Lindstromda394ca2002-06-12 16:11:12 +0000744 options.proxy_command) != 0)
Darren Tuckere9a9b712005-12-20 16:15:51 +1100745 exit(255);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000746
Damien Miller67bd0622007-09-17 12:06:57 +1000747 if (timeout_ms > 0)
748 debug3("timeout: %d ms remain after connect", timeout_ms);
749
Damien Miller5428f641999-11-25 11:54:57 +1100750 /*
751 * If we successfully made the connection, load the host private key
752 * in case we will need it later for combined rsa-rhosts
753 * authentication. This must be done before releasing extra
754 * privileges, because the file is only readable by root.
Ben Lindstrom9e5bb572002-06-06 19:58:27 +0000755 * If we cannot access the private keys, load the public keys
756 * instead and try to execute the ssh-keysign helper instead.
Damien Miller5428f641999-11-25 11:54:57 +1100757 */
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000758 sensitive_data.nkeys = 0;
759 sensitive_data.keys = NULL;
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000760 sensitive_data.external_keysign = 0;
Ben Lindstrom24157572002-06-12 16:09:39 +0000761 if (options.rhosts_rsa_authentication ||
762 options.hostbased_authentication) {
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000763 sensitive_data.nkeys = 3;
Damien Millerddd63ab2006-03-31 23:10:51 +1100764 sensitive_data.keys = xcalloc(sensitive_data.nkeys,
Ben Lindstroma962c2f2002-07-04 00:14:17 +0000765 sizeof(Key));
Ben Lindstromf9c48842002-06-11 16:37:51 +0000766
767 PRIV_START;
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000768 sensitive_data.keys[0] = key_load_private_type(KEY_RSA1,
Darren Tucker232b76f2006-05-06 17:41:51 +1000769 _PATH_HOST_KEY_FILE, "", NULL, NULL);
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000770 sensitive_data.keys[1] = key_load_private_type(KEY_DSA,
Darren Tucker232b76f2006-05-06 17:41:51 +1000771 _PATH_HOST_DSA_KEY_FILE, "", NULL, NULL);
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000772 sensitive_data.keys[2] = key_load_private_type(KEY_RSA,
Darren Tucker232b76f2006-05-06 17:41:51 +1000773 _PATH_HOST_RSA_KEY_FILE, "", NULL, NULL);
Ben Lindstromf9c48842002-06-11 16:37:51 +0000774 PRIV_END;
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000775
Ben Lindstrom5d35a2f2002-07-04 00:19:40 +0000776 if (options.hostbased_authentication == 1 &&
777 sensitive_data.keys[0] == NULL &&
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000778 sensitive_data.keys[1] == NULL &&
779 sensitive_data.keys[2] == NULL) {
780 sensitive_data.keys[1] = key_load_public(
781 _PATH_HOST_DSA_KEY_FILE, NULL);
782 sensitive_data.keys[2] = key_load_public(
783 _PATH_HOST_RSA_KEY_FILE, NULL);
784 sensitive_data.external_keysign = 1;
785 }
Damien Miller95def091999-11-25 00:26:21 +1100786 }
Damien Miller5428f641999-11-25 11:54:57 +1100787 /*
788 * Get rid of any extra privileges that we may have. We will no
789 * longer need them. Also, extra privileges could make it very hard
790 * to read identity files and other non-world-readable files from the
791 * user's home directory if it happens to be on a NFS volume where
792 * root is mapped to nobody.
793 */
Darren Tucker25f60a72004-08-15 17:23:34 +1000794 if (original_effective_uid == 0) {
795 PRIV_START;
796 permanently_set_uid(pw);
797 }
Damien Miller95def091999-11-25 00:26:21 +1100798
Damien Miller5428f641999-11-25 11:54:57 +1100799 /*
800 * Now that we are back to our own permissions, create ~/.ssh
Damien Miller788f2122005-11-05 15:14:59 +1100801 * directory if it doesn't already exist.
Damien Miller5428f641999-11-25 11:54:57 +1100802 */
Darren Tucker199b1342009-07-06 07:16:56 +1000803 r = snprintf(buf, sizeof buf, "%s%s%s", pw->pw_dir,
Darren Tuckerd6173c02008-06-13 04:52:53 +1000804 strcmp(pw->pw_dir, "/") ? "/" : "", _PATH_SSH_USER_DIR);
Darren Tucker199b1342009-07-06 07:16:56 +1000805 if (r > 0 && (size_t)r < sizeof(buf) && stat(buf, &st) < 0)
Damien Millerbe484b52000-07-15 14:14:16 +1000806 if (mkdir(buf, 0700) < 0)
Damien Miller95def091999-11-25 00:26:21 +1100807 error("Could not create directory '%.200s'.", buf);
808
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000809 /* load options.identity_files */
810 load_public_identity_files();
811
812 /* Expand ~ in known host file names. */
813 /* XXX mem-leaks: */
Damien Miller0bc1bd82000-11-13 22:57:25 +1100814 options.system_hostfile =
815 tilde_expand_filename(options.system_hostfile, original_real_uid);
816 options.user_hostfile =
817 tilde_expand_filename(options.user_hostfile, original_real_uid);
818 options.system_hostfile2 =
819 tilde_expand_filename(options.system_hostfile2, original_real_uid);
820 options.user_hostfile2 =
821 tilde_expand_filename(options.user_hostfile2, original_real_uid);
Damien Miller95def091999-11-25 00:26:21 +1100822
Damien Miller07cd5892001-11-12 10:52:03 +1100823 signal(SIGPIPE, SIG_IGN); /* ignore SIGPIPE early */
824
Darren Tuckerd6173c02008-06-13 04:52:53 +1000825 /* Log into the remote system. Never returns if the login fails. */
Damien Miller67bd0622007-09-17 12:06:57 +1000826 ssh_login(&sensitive_data, host, (struct sockaddr *)&hostaddr,
827 pw, timeout_ms);
Damien Miller95def091999-11-25 00:26:21 +1100828
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000829 /* We no longer need the private host keys. Clear them now. */
830 if (sensitive_data.nkeys != 0) {
831 for (i = 0; i < sensitive_data.nkeys; i++) {
832 if (sensitive_data.keys[i] != NULL) {
833 /* Destroys contents safely */
834 debug3("clear hostkey %d", i);
835 key_free(sensitive_data.keys[i]);
836 sensitive_data.keys[i] = NULL;
837 }
838 }
839 xfree(sensitive_data.keys);
840 }
Ben Lindstroma6c8a8d2001-08-06 21:42:00 +0000841 for (i = 0; i < options.num_identity_files; i++) {
842 if (options.identity_files[i]) {
843 xfree(options.identity_files[i]);
844 options.identity_files[i] = NULL;
845 }
846 if (options.identity_keys[i]) {
847 key_free(options.identity_keys[i]);
848 options.identity_keys[i] = NULL;
849 }
850 }
Damien Miller95def091999-11-25 00:26:21 +1100851
Damien Miller1383bd82000-04-06 12:32:37 +1000852 exit_status = compat20 ? ssh_session2() : ssh_session();
853 packet_close();
Damien Miller8c4e18a2002-09-19 12:05:02 +1000854
Damien Millerb1cbfa22008-05-19 16:00:08 +1000855 if (options.control_path != NULL && muxserver_sock != -1)
Damien Miller0e220db2004-06-15 10:34:08 +1000856 unlink(options.control_path);
857
Damien Miller8c4e18a2002-09-19 12:05:02 +1000858 /*
Damien Millera8e06ce2003-11-21 23:48:55 +1100859 * Send SIGHUP to proxy command if used. We don't wait() in
Damien Miller8c4e18a2002-09-19 12:05:02 +1000860 * case it hangs and instead rely on init to reap the child
861 */
862 if (proxy_command_pid > 1)
863 kill(proxy_command_pid, SIGHUP);
864
Damien Miller1383bd82000-04-06 12:32:37 +1000865 return exit_status;
866}
867
Darren Tucker9f407c42008-06-13 04:50:27 +1000868/* Callback for remote forward global requests */
869static void
870ssh_confirm_remote_forward(int type, u_int32_t seq, void *ctxt)
871{
872 Forward *rfwd = (Forward *)ctxt;
873
Damien Miller4bf648f2009-02-14 16:28:21 +1100874 /* XXX verbose() on failure? */
Darren Tucker9f407c42008-06-13 04:50:27 +1000875 debug("remote forward %s for: listen %d, connect %s:%d",
876 type == SSH2_MSG_REQUEST_SUCCESS ? "success" : "failure",
877 rfwd->listen_port, rfwd->connect_host, rfwd->connect_port);
Damien Miller4bf648f2009-02-14 16:28:21 +1100878 if (type == SSH2_MSG_REQUEST_SUCCESS && rfwd->listen_port == 0) {
879 logit("Allocated port %u for remote forward to %s:%d",
880 packet_get_int(),
881 rfwd->connect_host, rfwd->connect_port);
882 }
883
Darren Tucker9f407c42008-06-13 04:50:27 +1000884 if (type == SSH2_MSG_REQUEST_FAILURE) {
885 if (options.exit_on_forward_failure)
886 fatal("Error: remote port forwarding failed for "
887 "listen port %d", rfwd->listen_port);
888 else
889 logit("Warning: remote port forwarding failed for "
890 "listen port %d", rfwd->listen_port);
891 }
Darren Tucker9a2a6092008-07-04 12:53:50 +1000892 if (++remote_forward_confirms_received == options.num_remote_forwards) {
Darren Tucker9f407c42008-06-13 04:50:27 +1000893 debug("All remote forwarding requests processed");
Darren Tucker9a2a6092008-07-04 12:53:50 +1000894 if (fork_after_authentication_flag) {
895 fork_after_authentication_flag = 0;
896 if (daemon(1, 1) < 0)
897 fatal("daemon() failed: %.200s",
898 strerror(errno));
899 }
900 }
Darren Tucker9f407c42008-06-13 04:50:27 +1000901}
902
Ben Lindstrombba81212001-06-25 05:01:22 +0000903static void
Darren Tucker7ad8dd22010-01-12 19:40:27 +1100904client_cleanup_stdio_fwd(int id, void *arg)
905{
906 debug("stdio forwarding: done");
907 cleanup_exit(0);
908}
909
910static int
911client_setup_stdio_fwd(const char *host_to_connect, u_short port_to_connect)
912{
913 Channel *c;
Damien Millere1537f92010-01-26 13:26:22 +1100914 int in, out;
Darren Tucker7ad8dd22010-01-12 19:40:27 +1100915
916 debug3("client_setup_stdio_fwd %s:%d", host_to_connect,
917 port_to_connect);
Damien Millere1537f92010-01-26 13:26:22 +1100918
919 in = dup(STDIN_FILENO);
920 out = dup(STDOUT_FILENO);
921 if (in < 0 || out < 0)
922 fatal("channel_connect_stdio_fwd: dup() in/out failed");
923
924 if ((c = channel_connect_stdio_fwd(host_to_connect, port_to_connect,
925 in, out)) == NULL)
Darren Tucker7ad8dd22010-01-12 19:40:27 +1100926 return 0;
927 channel_register_cleanup(c->self, client_cleanup_stdio_fwd, 0);
928 return 1;
929}
930
931static void
Damien Miller0bc1bd82000-11-13 22:57:25 +1100932ssh_init_forwarding(void)
933{
Kevin Steves12057502001-02-05 14:54:34 +0000934 int success = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100935 int i;
Kevin Steves12057502001-02-05 14:54:34 +0000936
Darren Tucker7ad8dd22010-01-12 19:40:27 +1100937 if (stdio_forward_host != NULL) {
938 if (!compat20) {
939 fatal("stdio forwarding require Protocol 2");
940 }
941 if (!client_setup_stdio_fwd(stdio_forward_host,
942 stdio_forward_port))
943 fatal("Failed to connect in stdio forward mode.");
944 }
945
Damien Miller0bc1bd82000-11-13 22:57:25 +1100946 /* Initiate local TCP/IP port forwardings. */
947 for (i = 0; i < options.num_local_forwards; i++) {
Damien Millerf91ee4c2005-03-01 21:24:33 +1100948 debug("Local connections to %.200s:%d forwarded to remote "
949 "address %.200s:%d",
Darren Tucker47eede72005-03-14 23:08:12 +1100950 (options.local_forwards[i].listen_host == NULL) ?
951 (options.gateway_ports ? "*" : "LOCALHOST") :
Damien Millerf91ee4c2005-03-01 21:24:33 +1100952 options.local_forwards[i].listen_host,
953 options.local_forwards[i].listen_port,
954 options.local_forwards[i].connect_host,
955 options.local_forwards[i].connect_port);
Damien Millerb16461c2002-01-22 23:29:22 +1100956 success += channel_setup_local_fwd_listener(
Damien Millerf91ee4c2005-03-01 21:24:33 +1100957 options.local_forwards[i].listen_host,
958 options.local_forwards[i].listen_port,
959 options.local_forwards[i].connect_host,
960 options.local_forwards[i].connect_port,
Damien Miller0bc1bd82000-11-13 22:57:25 +1100961 options.gateway_ports);
962 }
Darren Tuckere7d4b192006-07-12 22:17:10 +1000963 if (i > 0 && success != i && options.exit_on_forward_failure)
964 fatal("Could not request local forwarding.");
Kevin Steves12057502001-02-05 14:54:34 +0000965 if (i > 0 && success == 0)
966 error("Could not request local forwarding.");
Damien Miller0bc1bd82000-11-13 22:57:25 +1100967
968 /* Initiate remote TCP/IP port forwardings. */
969 for (i = 0; i < options.num_remote_forwards; i++) {
Damien Millerf91ee4c2005-03-01 21:24:33 +1100970 debug("Remote connections from %.200s:%d forwarded to "
971 "local address %.200s:%d",
Damien Miller46d38de2005-07-17 17:02:09 +1000972 (options.remote_forwards[i].listen_host == NULL) ?
Damien Milleraa3bb102005-11-05 15:12:59 +1100973 "LOCALHOST" : options.remote_forwards[i].listen_host,
Damien Millerf91ee4c2005-03-01 21:24:33 +1100974 options.remote_forwards[i].listen_port,
975 options.remote_forwards[i].connect_host,
976 options.remote_forwards[i].connect_port);
Darren Tuckere7d4b192006-07-12 22:17:10 +1000977 if (channel_request_remote_forwarding(
Damien Millerf91ee4c2005-03-01 21:24:33 +1100978 options.remote_forwards[i].listen_host,
979 options.remote_forwards[i].listen_port,
980 options.remote_forwards[i].connect_host,
Darren Tuckere7d4b192006-07-12 22:17:10 +1000981 options.remote_forwards[i].connect_port) < 0) {
982 if (options.exit_on_forward_failure)
983 fatal("Could not request remote forwarding.");
984 else
985 logit("Warning: Could not request remote "
986 "forwarding.");
987 }
Darren Tucker9f407c42008-06-13 04:50:27 +1000988 client_register_global_confirm(ssh_confirm_remote_forward,
989 &options.remote_forwards[i]);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100990 }
Damien Millerb3ce9fe2007-08-08 14:32:41 +1000991
992 /* Initiate tunnel forwarding. */
993 if (options.tun_open != SSH_TUNMODE_NO) {
994 if (client_request_tun_fwd(options.tun_open,
995 options.tun_local, options.tun_remote) == -1) {
996 if (options.exit_on_forward_failure)
997 fatal("Could not request tunnel forwarding.");
998 else
999 error("Could not request tunnel forwarding.");
1000 }
1001 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11001002}
1003
Ben Lindstrombba81212001-06-25 05:01:22 +00001004static void
Damien Miller0bc1bd82000-11-13 22:57:25 +11001005check_agent_present(void)
1006{
1007 if (options.forward_agent) {
Damien Miller788f2122005-11-05 15:14:59 +11001008 /* Clear agent forwarding if we don't have an agent. */
Damien Miller789e95d2002-09-12 09:52:46 +10001009 if (!ssh_agent_present())
Damien Miller0bc1bd82000-11-13 22:57:25 +11001010 options.forward_agent = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001011 }
1012}
1013
Ben Lindstrombba81212001-06-25 05:01:22 +00001014static int
Damien Miller1383bd82000-04-06 12:32:37 +10001015ssh_session(void)
1016{
1017 int type;
Damien Miller1383bd82000-04-06 12:32:37 +10001018 int interactive = 0;
1019 int have_tty = 0;
1020 struct winsize ws;
Damien Miller1383bd82000-04-06 12:32:37 +10001021 char *cp;
Damien Miller17e7ed02005-06-17 12:54:33 +10001022 const char *display;
Damien Miller1383bd82000-04-06 12:32:37 +10001023
Damien Miller95def091999-11-25 00:26:21 +11001024 /* Enable compression if requested. */
1025 if (options.compression) {
Darren Tuckerd6173c02008-06-13 04:52:53 +10001026 debug("Requesting compression at level %d.",
1027 options.compression_level);
Damien Miller95def091999-11-25 00:26:21 +11001028
Darren Tuckerd6173c02008-06-13 04:52:53 +10001029 if (options.compression_level < 1 ||
1030 options.compression_level > 9)
1031 fatal("Compression level must be from 1 (fast) to "
1032 "9 (slow, best).");
Damien Miller95def091999-11-25 00:26:21 +11001033
1034 /* Send the request. */
1035 packet_start(SSH_CMSG_REQUEST_COMPRESSION);
1036 packet_put_int(options.compression_level);
1037 packet_send();
1038 packet_write_wait();
Damien Millerdff50992002-01-22 23:16:32 +11001039 type = packet_read();
Damien Miller95def091999-11-25 00:26:21 +11001040 if (type == SSH_SMSG_SUCCESS)
1041 packet_start_compression(options.compression_level);
1042 else if (type == SSH_SMSG_FAILURE)
Damien Miller996acd22003-04-09 20:59:48 +10001043 logit("Warning: Remote host refused compression.");
Damien Miller95def091999-11-25 00:26:21 +11001044 else
Darren Tuckerd6173c02008-06-13 04:52:53 +10001045 packet_disconnect("Protocol error waiting for "
1046 "compression response.");
Damien Miller95def091999-11-25 00:26:21 +11001047 }
1048 /* Allocate a pseudo tty if appropriate. */
1049 if (tty_flag) {
1050 debug("Requesting pty.");
1051
1052 /* Start the packet. */
1053 packet_start(SSH_CMSG_REQUEST_PTY);
1054
1055 /* Store TERM in the packet. There is no limit on the
1056 length of the string. */
1057 cp = getenv("TERM");
1058 if (!cp)
1059 cp = "";
Ben Lindstrom664408d2001-06-09 01:42:01 +00001060 packet_put_cstring(cp);
Damien Miller95def091999-11-25 00:26:21 +11001061
1062 /* Store window size in the packet. */
1063 if (ioctl(fileno(stdin), TIOCGWINSZ, &ws) < 0)
1064 memset(&ws, 0, sizeof(ws));
Damien Miller71a73672006-03-26 14:04:36 +11001065 packet_put_int((u_int)ws.ws_row);
1066 packet_put_int((u_int)ws.ws_col);
1067 packet_put_int((u_int)ws.ws_xpixel);
1068 packet_put_int((u_int)ws.ws_ypixel);
Damien Miller95def091999-11-25 00:26:21 +11001069
1070 /* Store tty modes in the packet. */
Ben Lindstromae8e2d32001-04-14 23:13:02 +00001071 tty_make_modes(fileno(stdin), NULL);
Damien Miller95def091999-11-25 00:26:21 +11001072
1073 /* Send the packet, and wait for it to leave. */
1074 packet_send();
1075 packet_write_wait();
1076
1077 /* Read response from the server. */
Damien Millerdff50992002-01-22 23:16:32 +11001078 type = packet_read();
Damien Miller450a7a12000-03-26 13:04:51 +10001079 if (type == SSH_SMSG_SUCCESS) {
Damien Miller95def091999-11-25 00:26:21 +11001080 interactive = 1;
Damien Miller1383bd82000-04-06 12:32:37 +10001081 have_tty = 1;
Damien Miller450a7a12000-03-26 13:04:51 +10001082 } else if (type == SSH_SMSG_FAILURE)
Darren Tuckerd6173c02008-06-13 04:52:53 +10001083 logit("Warning: Remote host failed or refused to "
1084 "allocate a pseudo tty.");
Damien Miller95def091999-11-25 00:26:21 +11001085 else
Darren Tuckerd6173c02008-06-13 04:52:53 +10001086 packet_disconnect("Protocol error waiting for pty "
1087 "request response.");
Damien Miller95def091999-11-25 00:26:21 +11001088 }
1089 /* Request X11 forwarding if enabled and DISPLAY is set. */
Damien Miller17e7ed02005-06-17 12:54:33 +10001090 display = getenv("DISPLAY");
1091 if (options.forward_x11 && display != NULL) {
Ben Lindstrom4a4bd712001-12-06 17:45:19 +00001092 char *proto, *data;
Damien Millerbd483e72000-04-30 10:00:53 +10001093 /* Get reasonable local authentication information. */
Damien Miller17e7ed02005-06-17 12:54:33 +10001094 client_x11_get_proto(display, options.xauth_location,
1095 options.forward_x11_trusted, &proto, &data);
Damien Millerbd483e72000-04-30 10:00:53 +10001096 /* Request forwarding with authentication spoofing. */
Darren Tuckerd6173c02008-06-13 04:52:53 +10001097 debug("Requesting X11 forwarding with authentication "
1098 "spoofing.");
Damien Miller17e7ed02005-06-17 12:54:33 +10001099 x11_request_forwarding_with_spoofing(0, display, proto, data);
Damien Miller95def091999-11-25 00:26:21 +11001100
1101 /* Read response from the server. */
Damien Millerdff50992002-01-22 23:16:32 +11001102 type = packet_read();
Damien Miller95def091999-11-25 00:26:21 +11001103 if (type == SSH_SMSG_SUCCESS) {
Damien Miller95def091999-11-25 00:26:21 +11001104 interactive = 1;
Damien Millerbd483e72000-04-30 10:00:53 +10001105 } else if (type == SSH_SMSG_FAILURE) {
Damien Miller996acd22003-04-09 20:59:48 +10001106 logit("Warning: Remote host denied X11 forwarding.");
Damien Millerbd483e72000-04-30 10:00:53 +10001107 } else {
Darren Tuckerd6173c02008-06-13 04:52:53 +10001108 packet_disconnect("Protocol error waiting for X11 "
1109 "forwarding");
Damien Millerbd483e72000-04-30 10:00:53 +10001110 }
Damien Miller95def091999-11-25 00:26:21 +11001111 }
1112 /* Tell the packet module whether this is an interactive session. */
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001113 packet_set_interactive(interactive);
Damien Miller95def091999-11-25 00:26:21 +11001114
1115 /* Request authentication agent forwarding if appropriate. */
Damien Miller0bc1bd82000-11-13 22:57:25 +11001116 check_agent_present();
1117
Damien Miller95def091999-11-25 00:26:21 +11001118 if (options.forward_agent) {
1119 debug("Requesting authentication agent forwarding.");
1120 auth_request_forwarding();
1121
1122 /* Read response from the server. */
Damien Millerdff50992002-01-22 23:16:32 +11001123 type = packet_read();
Damien Miller48b03fc2002-01-22 23:11:40 +11001124 packet_check_eom();
Damien Miller95def091999-11-25 00:26:21 +11001125 if (type != SSH_SMSG_SUCCESS)
Damien Miller996acd22003-04-09 20:59:48 +10001126 logit("Warning: Remote host denied authentication agent forwarding.");
Damien Miller95def091999-11-25 00:26:21 +11001127 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001128
Damien Miller0bc1bd82000-11-13 22:57:25 +11001129 /* Initiate port forwardings. */
1130 ssh_init_forwarding();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001131
Darren Tuckerb776c852007-12-02 23:06:35 +11001132 /* Execute a local command */
1133 if (options.local_command != NULL &&
1134 options.permit_local_command)
1135 ssh_local_cmd(options.local_command);
1136
Darren Tucker9a2a6092008-07-04 12:53:50 +10001137 /*
1138 * If requested and we are not interested in replies to remote
1139 * forwarding requests, then let ssh continue in the background.
1140 */
1141 if (fork_after_authentication_flag &&
1142 (!options.exit_on_forward_failure ||
1143 options.num_remote_forwards == 0)) {
1144 fork_after_authentication_flag = 0;
Damien Miller5428f641999-11-25 11:54:57 +11001145 if (daemon(1, 1) < 0)
1146 fatal("daemon() failed: %.200s", strerror(errno));
Darren Tucker9a2a6092008-07-04 12:53:50 +10001147 }
Damien Miller5428f641999-11-25 11:54:57 +11001148
1149 /*
1150 * If a command was specified on the command line, execute the
1151 * command now. Otherwise request the server to start a shell.
1152 */
Damien Miller95def091999-11-25 00:26:21 +11001153 if (buffer_len(&command) > 0) {
1154 int len = buffer_len(&command);
1155 if (len > 900)
1156 len = 900;
Darren Tuckerd6173c02008-06-13 04:52:53 +10001157 debug("Sending command: %.*s", len,
1158 (u_char *)buffer_ptr(&command));
Damien Miller95def091999-11-25 00:26:21 +11001159 packet_start(SSH_CMSG_EXEC_CMD);
1160 packet_put_string(buffer_ptr(&command), buffer_len(&command));
1161 packet_send();
1162 packet_write_wait();
1163 } else {
1164 debug("Requesting shell.");
1165 packet_start(SSH_CMSG_EXEC_SHELL);
1166 packet_send();
1167 packet_write_wait();
1168 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001169
Damien Miller95def091999-11-25 00:26:21 +11001170 /* Enter the interactive session. */
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +00001171 return client_loop(have_tty, tty_flag ?
1172 options.escape_char : SSH_ESCAPECHAR_NONE, 0);
Damien Miller1383bd82000-04-06 12:32:37 +10001173}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001174
Ben Lindstromf558cf62001-09-20 23:13:49 +00001175/* request pty/x11/agent/tcpfwd/shell for channel */
Ben Lindstrombba81212001-06-25 05:01:22 +00001176static void
Ben Lindstromf558cf62001-09-20 23:13:49 +00001177ssh_session2_setup(int id, void *arg)
Damien Miller1383bd82000-04-06 12:32:37 +10001178{
Damien Miller3756dce2004-06-18 01:17:29 +10001179 extern char **environ;
Damien Miller17e7ed02005-06-17 12:54:33 +10001180 const char *display;
Damien Miller0e220db2004-06-15 10:34:08 +10001181 int interactive = tty_flag;
Damien Miller17e7ed02005-06-17 12:54:33 +10001182
Damien Miller46d38de2005-07-17 17:02:09 +10001183 display = getenv("DISPLAY");
Damien Miller17e7ed02005-06-17 12:54:33 +10001184 if (options.forward_x11 && display != NULL) {
Ben Lindstrom4a4bd712001-12-06 17:45:19 +00001185 char *proto, *data;
Damien Millerbd483e72000-04-30 10:00:53 +10001186 /* Get reasonable local authentication information. */
Damien Miller17e7ed02005-06-17 12:54:33 +10001187 client_x11_get_proto(display, options.xauth_location,
1188 options.forward_x11_trusted, &proto, &data);
Damien Millerbd483e72000-04-30 10:00:53 +10001189 /* Request forwarding with authentication spoofing. */
Darren Tuckerd6173c02008-06-13 04:52:53 +10001190 debug("Requesting X11 forwarding with authentication "
1191 "spoofing.");
Damien Miller17e7ed02005-06-17 12:54:33 +10001192 x11_request_forwarding_with_spoofing(id, display, proto, data);
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001193 interactive = 1;
Damien Millerbd483e72000-04-30 10:00:53 +10001194 /* XXX wait for reply */
1195 }
1196
Damien Miller0bc1bd82000-11-13 22:57:25 +11001197 check_agent_present();
1198 if (options.forward_agent) {
1199 debug("Requesting authentication agent forwarding.");
1200 channel_request_start(id, "auth-agent-req@openssh.com", 0);
1201 packet_send();
1202 }
1203
Damien Miller0e220db2004-06-15 10:34:08 +10001204 client_session2_setup(id, tty_flag, subsystem_flag, getenv("TERM"),
Damien Miller5771ed72008-05-19 15:35:33 +10001205 NULL, fileno(stdin), &command, environ);
Ben Lindstrom1e7d3062001-02-09 02:36:43 +00001206
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001207 packet_set_interactive(interactive);
Damien Miller1383bd82000-04-06 12:32:37 +10001208}
1209
Ben Lindstromf558cf62001-09-20 23:13:49 +00001210/* open new channel for a session */
Ben Lindstrombba81212001-06-25 05:01:22 +00001211static int
Ben Lindstromf558cf62001-09-20 23:13:49 +00001212ssh_session2_open(void)
Damien Miller1383bd82000-04-06 12:32:37 +10001213{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001214 Channel *c;
1215 int window, packetmax, in, out, err;
Damien Millerad833b32000-08-23 10:46:23 +10001216
Damien Millercaf6dd62000-08-29 11:33:50 +11001217 if (stdin_null_flag) {
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001218 in = open(_PATH_DEVNULL, O_RDONLY);
Damien Millercaf6dd62000-08-29 11:33:50 +11001219 } else {
1220 in = dup(STDIN_FILENO);
1221 }
1222 out = dup(STDOUT_FILENO);
1223 err = dup(STDERR_FILENO);
1224
1225 if (in < 0 || out < 0 || err < 0)
1226 fatal("dup() in/out/err failed");
1227
Damien Miller69b69aa2000-10-28 14:19:58 +11001228 /* enable nonblocking unless tty */
1229 if (!isatty(in))
1230 set_nonblock(in);
1231 if (!isatty(out))
1232 set_nonblock(out);
1233 if (!isatty(err))
1234 set_nonblock(err);
1235
Damien Millere4340be2000-09-16 13:29:08 +11001236 window = CHAN_SES_WINDOW_DEFAULT;
1237 packetmax = CHAN_SES_PACKET_DEFAULT;
Damien Miller19a59452002-02-19 15:20:57 +11001238 if (tty_flag) {
1239 window >>= 1;
1240 packetmax >>= 1;
Damien Miller1383bd82000-04-06 12:32:37 +10001241 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001242 c = channel_new(
Damien Miller1383bd82000-04-06 12:32:37 +10001243 "session", SSH_CHANNEL_OPENING, in, out, err,
Damien Millere4340be2000-09-16 13:29:08 +11001244 window, packetmax, CHAN_EXTENDED_WRITE,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001245 "client-session", /*nonblock*/0);
Damien Miller1383bd82000-04-06 12:32:37 +10001246
Ben Lindstromf558cf62001-09-20 23:13:49 +00001247 debug3("ssh_session2_open: channel_new: %d", c->self);
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001248
Ben Lindstrom5ec26452001-06-09 00:18:51 +00001249 channel_send_open(c->self);
Ben Lindstromf558cf62001-09-20 23:13:49 +00001250 if (!no_shell_flag)
Damien Millerb84886b2008-05-19 15:05:07 +10001251 channel_register_open_confirm(c->self,
1252 ssh_session2_setup, NULL);
Damien Miller1383bd82000-04-06 12:32:37 +10001253
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001254 return c->self;
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001255}
1256
Ben Lindstrombba81212001-06-25 05:01:22 +00001257static int
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001258ssh_session2(void)
1259{
Ben Lindstromf558cf62001-09-20 23:13:49 +00001260 int id = -1;
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001261
1262 /* XXX should be pre-session */
1263 ssh_init_forwarding();
1264
Ben Lindstromf558cf62001-09-20 23:13:49 +00001265 if (!no_shell_flag || (datafellows & SSH_BUG_DUMMYCHAN))
1266 id = ssh_session2_open();
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001267
Darren Tucker8901fa92008-06-11 09:34:01 +10001268 /* If we don't expect to open a new session, then disallow it */
Damien Miller456e6f02008-11-03 19:20:10 +11001269 if (options.control_master == SSHCTL_MASTER_NO &&
1270 (datafellows & SSH_NEW_OPENSSH)) {
Darren Tucker8901fa92008-06-11 09:34:01 +10001271 debug("Requesting no-more-sessions@openssh.com");
1272 packet_start(SSH2_MSG_GLOBAL_REQUEST);
1273 packet_put_cstring("no-more-sessions@openssh.com");
1274 packet_put_char(0);
1275 packet_send();
1276 }
1277
Damien Millerd27b9472005-12-13 19:29:02 +11001278 /* Execute a local command */
1279 if (options.local_command != NULL &&
1280 options.permit_local_command)
1281 ssh_local_cmd(options.local_command);
1282
Damien Millerb3ce9fe2007-08-08 14:32:41 +10001283 /* Start listening for multiplex clients */
Damien Millerb1cbfa22008-05-19 16:00:08 +10001284 muxserver_listen();
Damien Millerb3ce9fe2007-08-08 14:32:41 +10001285
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001286 /* If requested, let ssh continue in the background. */
Darren Tucker9a2a6092008-07-04 12:53:50 +10001287 if (fork_after_authentication_flag) {
1288 fork_after_authentication_flag = 0;
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001289 if (daemon(1, 1) < 0)
1290 fatal("daemon() failed: %.200s", strerror(errno));
Darren Tucker9a2a6092008-07-04 12:53:50 +10001291 }
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001292
Darren Tuckerf1de4e52010-01-08 16:54:59 +11001293 if (options.use_roaming)
1294 request_roaming();
1295
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +00001296 return client_loop(tty_flag, tty_flag ?
1297 options.escape_char : SSH_ESCAPECHAR_NONE, id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001298}
Damien Miller0bc1bd82000-11-13 22:57:25 +11001299
Ben Lindstrombba81212001-06-25 05:01:22 +00001300static void
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001301load_public_identity_files(void)
1302{
Damien Miller6b1d53c2006-03-31 23:13:21 +11001303 char *filename, *cp, thishost[NI_MAXHOST];
Darren Tuckerb4fbbc62007-12-02 23:16:32 +11001304 char *pwdir = NULL, *pwname = NULL;
Ben Lindstrom711b04a2001-08-06 21:12:42 +00001305 int i = 0;
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001306 Key *public;
Damien Miller6b1d53c2006-03-31 23:13:21 +11001307 struct passwd *pw;
Ben Lindstrom711b04a2001-08-06 21:12:42 +00001308#ifdef SMARTCARD
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001309 Key **keys;
1310
Ben Lindstromf7db3bb2001-08-06 21:35:51 +00001311 if (options.smartcard_device != NULL &&
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001312 options.num_identity_files < SSH_MAX_IDENTITY_FILES &&
Damien Miller4dec5d72006-08-05 11:38:40 +10001313 (keys = sc_get_keys(options.smartcard_device, NULL)) != NULL) {
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001314 int count = 0;
1315 for (i = 0; keys[i] != NULL; i++) {
1316 count++;
Darren Tuckerd6173c02008-06-13 04:52:53 +10001317 memmove(&options.identity_files[1],
1318 &options.identity_files[0],
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001319 sizeof(char *) * (SSH_MAX_IDENTITY_FILES - 1));
Darren Tuckerd6173c02008-06-13 04:52:53 +10001320 memmove(&options.identity_keys[1],
1321 &options.identity_keys[0],
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001322 sizeof(Key *) * (SSH_MAX_IDENTITY_FILES - 1));
1323 options.num_identity_files++;
1324 options.identity_keys[0] = keys[i];
Damien Miller56a0bb02003-06-18 20:28:40 +10001325 options.identity_files[0] = sc_get_key_label(keys[i]);
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001326 }
Ben Lindstrom4f054602002-03-26 03:23:00 +00001327 if (options.num_identity_files > SSH_MAX_IDENTITY_FILES)
1328 options.num_identity_files = SSH_MAX_IDENTITY_FILES;
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001329 i = count;
1330 xfree(keys);
Ben Lindstrom711b04a2001-08-06 21:12:42 +00001331 }
Ben Lindstromffce1472001-08-06 21:57:31 +00001332#endif /* SMARTCARD */
Damien Miller6b1d53c2006-03-31 23:13:21 +11001333 if ((pw = getpwuid(original_real_uid)) == NULL)
1334 fatal("load_public_identity_files: getpwuid failed");
Darren Tuckere143f062007-12-02 23:21:16 +11001335 pwname = xstrdup(pw->pw_name);
1336 pwdir = xstrdup(pw->pw_dir);
Damien Miller6b1d53c2006-03-31 23:13:21 +11001337 if (gethostname(thishost, sizeof(thishost)) == -1)
1338 fatal("load_public_identity_files: gethostname: %s",
1339 strerror(errno));
Ben Lindstrom711b04a2001-08-06 21:12:42 +00001340 for (; i < options.num_identity_files; i++) {
Damien Miller6b1d53c2006-03-31 23:13:21 +11001341 cp = tilde_expand_filename(options.identity_files[i],
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001342 original_real_uid);
Darren Tuckerb4fbbc62007-12-02 23:16:32 +11001343 filename = percent_expand(cp, "d", pwdir,
1344 "u", pwname, "l", thishost, "h", host,
Damien Miller6b1d53c2006-03-31 23:13:21 +11001345 "r", options.user, (char *)NULL);
1346 xfree(cp);
Ben Lindstromd0fca422001-03-26 13:44:06 +00001347 public = key_load_public(filename, NULL);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001348 debug("identity file %s type %d", filename,
1349 public ? public->type : -1);
1350 xfree(options.identity_files[i]);
1351 options.identity_files[i] = filename;
1352 options.identity_keys[i] = public;
1353 }
Darren Tuckerb4fbbc62007-12-02 23:16:32 +11001354 bzero(pwname, strlen(pwname));
Darren Tuckere143f062007-12-02 23:21:16 +11001355 xfree(pwname);
Darren Tuckerb4fbbc62007-12-02 23:16:32 +11001356 bzero(pwdir, strlen(pwdir));
Darren Tuckere143f062007-12-02 23:21:16 +11001357 xfree(pwdir);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001358}