blob: 96bfed9d50a94d6f2170d7fed8bd7fef4bc44e82 [file] [log] [blame]
Darren Tuckerd6173c02008-06-13 04:52:53 +10001/* $OpenBSD: ssh.c,v 1.316 2008/06/12 04:24:06 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>
Damien Millere3b60b52006-07-10 21:08:03 +100051#include <sys/socket.h>
Damien Miller03e20032006-03-15 11:16:59 +110052
Damien Millerc7b06362006-03-15 11:53:45 +110053#include <ctype.h>
Darren Tuckerba724052006-07-12 22:24:22 +100054#include <errno.h>
Damien Miller57cf6382006-07-10 21:13:46 +100055#include <fcntl.h>
Damien Millerb8fe89c2006-07-24 14:51:00 +100056#include <netdb.h>
Damien Miller6645e7a2006-03-15 14:42:54 +110057#ifdef HAVE_PATHS_H
Damien Miller03e20032006-03-15 11:16:59 +110058#include <paths.h>
Damien Miller6645e7a2006-03-15 14:42:54 +110059#endif
Damien Miller9f2abc42006-07-10 20:53:08 +100060#include <pwd.h>
Damien Miller6ff3cad2006-03-15 11:52:09 +110061#include <signal.h>
Damien Millerded319c2006-09-01 15:38:36 +100062#include <stdarg.h>
Damien Miller2d00e632006-07-24 13:53:19 +100063#include <stddef.h>
Damien Millera7a73ee2006-08-05 11:37:59 +100064#include <stdio.h>
Damien Millere7a1e5c2006-08-05 11:34:19 +100065#include <stdlib.h>
Damien Millere3476ed2006-07-24 14:13:33 +100066#include <string.h>
Damien Millere6b3b612006-07-24 14:01:23 +100067#include <unistd.h>
Damien Millereba71ba2000-04-29 23:57:08 +100068
Darren Tucker46aa3e02006-09-02 15:32:40 +100069#include <netinet/in.h>
70#include <arpa/inet.h>
71
Damien Millereba71ba2000-04-29 23:57:08 +100072#include <openssl/evp.h>
Damien Miller0bc1bd82000-11-13 22:57:25 +110073#include <openssl/err.h>
Darren Tuckerbfaaf962008-02-28 19:13:52 +110074#include "openbsd-compat/openssl-compat.h"
Damien Millerb84886b2008-05-19 15:05:07 +100075#include "openbsd-compat/sys-queue.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100076
Damien Millerd7834352006-08-05 12:39:39 +100077#include "xmalloc.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100078#include "ssh.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000079#include "ssh1.h"
Damien Miller1383bd82000-04-06 12:32:37 +100080#include "ssh2.h"
81#include "compat.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000082#include "cipher.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000083#include "packet.h"
84#include "buffer.h"
Ben Lindstromc7637672001-06-09 00:36:26 +000085#include "channels.h"
Damien Millereba71ba2000-04-29 23:57:08 +100086#include "key.h"
Damien Miller994cf142000-07-21 10:19:44 +100087#include "authfd.h"
Damien Millereba71ba2000-04-29 23:57:08 +100088#include "authfile.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000089#include "pathnames.h"
Damien Miller0e220db2004-06-15 10:34:08 +100090#include "dispatch.h"
Ben Lindstrombf555ba2001-01-18 02:04:35 +000091#include "clientloop.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000092#include "log.h"
93#include "readconf.h"
94#include "sshconnect.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000095#include "misc.h"
Ben Lindstrom06b33aa2001-02-15 03:01:59 +000096#include "kex.h"
97#include "mac.h"
Darren Tucker06f2bd82004-05-13 16:06:46 +100098#include "sshpty.h"
Darren Tucker46bc0752004-05-02 22:11:30 +100099#include "match.h"
Damien Miller0e220db2004-06-15 10:34:08 +1000100#include "msg.h"
Darren Tucker25f60a72004-08-15 17:23:34 +1000101#include "uidswap.h"
Damien Millerb7576772006-07-10 20:23:39 +1000102#include "version.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000103
Ben Lindstromc5b68002001-07-04 04:52:03 +0000104#ifdef SMARTCARD
Ben Lindstromc5b68002001-07-04 04:52:03 +0000105#include "scard.h"
Ben Lindstrombcc18082001-08-06 21:59:25 +0000106#endif
Ben Lindstromc5b68002001-07-04 04:52:03 +0000107
Damien Miller3f905871999-11-15 17:10:57 +1100108extern char *__progname;
Damien Miller3f905871999-11-15 17:10:57 +1100109
Darren Tuckerd6173c02008-06-13 04:52:53 +1000110/* Flag indicating whether debug mode is on. May be set on the command line. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000111int debug_flag = 0;
112
Damien Miller78928792000-04-12 20:17:38 +1000113/* Flag indicating whether a tty should be allocated */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000114int tty_flag = 0;
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000115int no_tty_flag = 0;
116int force_tty_flag = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000117
Damien Miller1383bd82000-04-06 12:32:37 +1000118/* don't exec a shell */
119int no_shell_flag = 0;
Damien Miller1383bd82000-04-06 12:32:37 +1000120
Damien Miller5428f641999-11-25 11:54:57 +1100121/*
122 * Flag indicating that nothing should be read from stdin. This can be set
123 * on the command line.
124 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000125int stdin_null_flag = 0;
126
Damien Miller5428f641999-11-25 11:54:57 +1100127/*
128 * Flag indicating that ssh should fork after authentication. This is useful
Ben Lindstromf666fec2002-06-06 19:51:58 +0000129 * so that the passphrase can be entered manually, and then ssh goes to the
Damien Miller5428f641999-11-25 11:54:57 +1100130 * background.
131 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000132int fork_after_authentication_flag = 0;
133
Damien Miller5428f641999-11-25 11:54:57 +1100134/*
135 * General data structure for command line options and options configurable
136 * in configuration files. See readconf.h.
137 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000138Options options;
139
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000140/* optional user configfile */
141char *config = NULL;
142
Damien Miller5428f641999-11-25 11:54:57 +1100143/*
144 * Name of the host we are connecting to. This is the name given on the
145 * command line, or the HostName specified for the user-supplied name in a
146 * configuration file.
147 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000148char *host;
149
150/* socket address the host resolves to */
Damien Miller34132e52000-01-14 15:45:46 +1100151struct sockaddr_storage hostaddr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000152
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000153/* Private host keys. */
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000154Sensitive sensitive_data;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000155
156/* Original real UID. */
157uid_t original_real_uid;
Ben Lindstromf9c48842002-06-11 16:37:51 +0000158uid_t original_effective_uid;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000159
Damien Miller1383bd82000-04-06 12:32:37 +1000160/* command to be executed */
161Buffer command;
162
Damien Miller832562e2001-01-30 09:30:01 +1100163/* Should we execute a command or invoke a subsystem? */
164int subsystem_flag = 0;
165
Damien Miller2797f7f2002-04-23 21:09:44 +1000166/* # of replies received for global requests */
Darren Tucker9f407c42008-06-13 04:50:27 +1000167static int remote_forward_confirms_received = 0;
Damien Miller2797f7f2002-04-23 21:09:44 +1000168
Damien Miller8c4e18a2002-09-19 12:05:02 +1000169/* pid of proxycommand child process */
170pid_t proxy_command_pid = 0;
171
Damien Millerb1cbfa22008-05-19 16:00:08 +1000172/* mux.c */
173extern int muxserver_sock;
174extern u_int muxclient_command;
Damien Miller0e220db2004-06-15 10:34:08 +1000175
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000176/* Prints a help message to the user. This function never returns. */
177
Ben Lindstrombba81212001-06-25 05:01:22 +0000178static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000179usage(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000180{
Damien Miller50955102004-03-22 09:34:58 +1100181 fprintf(stderr,
Darren Tucker415bddc2007-06-12 23:43:16 +1000182"usage: ssh [-1246AaCfgKkMNnqsTtVvXxY] [-b bind_address] [-c cipher_spec]\n"
Darren Tucker895d6982005-10-03 18:18:05 +1000183" [-D [bind_address:]port] [-e escape_char] [-F configfile]\n"
Damien Miller02faece2005-03-02 12:04:32 +1100184" [-i identity_file] [-L [bind_address:]port:host:hostport]\n"
Damien Millerf91ee4c2005-03-01 21:24:33 +1100185" [-l login_name] [-m mac_spec] [-O ctl_cmd] [-o option] [-p port]\n"
Damien Miller02faece2005-03-02 12:04:32 +1100186" [-R [bind_address:]port:host:hostport] [-S ctl_path]\n"
Damien Miller991dba42006-07-10 20:16:27 +1000187" [-w local_tun[:remote_tun]] [user@]hostname [command]\n"
Damien Miller50955102004-03-22 09:34:58 +1100188 );
Darren Tuckere9a9b712005-12-20 16:15:51 +1100189 exit(255);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000190}
191
Ben Lindstrombba81212001-06-25 05:01:22 +0000192static int ssh_session(void);
193static int ssh_session2(void);
194static void load_public_identity_files(void);
Damien Millerb1cbfa22008-05-19 16:00:08 +1000195
196/* from muxclient.c */
197void muxclient(const char *);
198void muxserver_listen(void);
Damien Miller1383bd82000-04-06 12:32:37 +1000199
Damien Miller95def091999-11-25 00:26:21 +1100200/*
201 * Main program for the ssh client.
202 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000203int
204main(int ac, char **av)
205{
Ben Lindstrom24157572002-06-12 16:09:39 +0000206 int i, opt, exit_status;
Damien Miller9836cf82003-12-17 16:30:06 +1100207 char *p, *cp, *line, buf[256];
Damien Miller95def091999-11-25 00:26:21 +1100208 struct stat st;
Ben Lindstrom086cf212001-03-05 05:56:40 +0000209 struct passwd *pw;
Damien Miller67bd0622007-09-17 12:06:57 +1000210 int dummy, timeout_ms;
Ben Lindstrom5ccf63a2001-09-24 20:00:10 +0000211 extern int optind, optreset;
Damien Miller4f8e6692001-07-14 13:22:53 +1000212 extern char *optarg;
Damien Miller9651fe62005-06-26 08:55:25 +1000213 struct servent *sp;
Damien Millerf91ee4c2005-03-01 21:24:33 +1100214 Forward fwd;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000215
Darren Tuckerce321d82005-10-03 18:11:24 +1000216 /* Ensure that fds 0, 1 and 2 are open or directed to /dev/null */
217 sanitise_stdfd();
218
Damien Miller59d3d5b2003-08-22 09:34:41 +1000219 __progname = ssh_get_progname(av[0]);
Damien Millerf9b625c2000-07-09 22:42:32 +1000220 init_rng();
221
Damien Miller5428f641999-11-25 11:54:57 +1100222 /*
223 * Save the original real uid. It will be needed later (uid-swapping
224 * may clobber the real uid).
225 */
Damien Miller95def091999-11-25 00:26:21 +1100226 original_real_uid = getuid();
227 original_effective_uid = geteuid();
Damien Millera8e06ce2003-11-21 23:48:55 +1100228
Damien Miller50b9a602002-09-04 16:50:06 +1000229 /*
230 * Use uid-swapping to give up root privileges for the duration of
231 * option processing. We will re-instantiate the rights when we are
232 * ready to create the privileged port, and will permanently drop
233 * them when the port has been created (actually, when the connection
234 * has been made, as we may need to create the port several times).
235 */
236 PRIV_END;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000237
Damien Miller05dd7952000-10-01 00:42:48 +1100238#ifdef HAVE_SETRLIMIT
Damien Miller95def091999-11-25 00:26:21 +1100239 /* If we are installed setuid root be careful to not drop core. */
240 if (original_real_uid != original_effective_uid) {
241 struct rlimit rlim;
242 rlim.rlim_cur = rlim.rlim_max = 0;
243 if (setrlimit(RLIMIT_CORE, &rlim) < 0)
244 fatal("setrlimit failed: %.100s", strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000245 }
Damien Millerbac2d8a2000-09-05 16:13:06 +1100246#endif
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000247 /* Get user data. */
248 pw = getpwuid(original_real_uid);
249 if (!pw) {
Damien Miller996acd22003-04-09 20:59:48 +1000250 logit("You don't exist, go away!");
Darren Tuckere9a9b712005-12-20 16:15:51 +1100251 exit(255);
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000252 }
253 /* Take a copy of the returned structure. */
254 pw = pwcopy(pw);
255
Damien Miller5428f641999-11-25 11:54:57 +1100256 /*
Damien Miller5428f641999-11-25 11:54:57 +1100257 * Set our umask to something reasonable, as some files are created
258 * with the default umask. This will make them world-readable but
259 * writable only by the owner, which is ok for all files for which we
260 * don't set the modes explicitly.
261 */
Damien Miller95def091999-11-25 00:26:21 +1100262 umask(022);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000263
Darren Tuckerd6173c02008-06-13 04:52:53 +1000264 /*
265 * Initialize option structure to indicate that no values have been
266 * set.
267 */
Damien Miller95def091999-11-25 00:26:21 +1100268 initialize_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000269
Damien Miller95def091999-11-25 00:26:21 +1100270 /* Parse command-line arguments. */
271 host = NULL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000272
Damien Miller2ecb6bd2006-03-15 12:03:53 +1100273 again:
Darren Tuckerd6173c02008-06-13 04:52:53 +1000274 while ((opt = getopt(ac, av, "1246ab:c:e:fgi:kl:m:no:p:qstvx"
275 "ACD:F:I:KL:MNO:PR:S:TVw:XY")) != -1) {
Damien Miller95def091999-11-25 00:26:21 +1100276 switch (opt) {
Ben Lindstrom1e7d3062001-02-09 02:36:43 +0000277 case '1':
278 options.protocol = SSH_PROTO_1;
279 break;
Damien Miller4af51302000-04-16 11:18:38 +1000280 case '2':
281 options.protocol = SSH_PROTO_2;
282 break;
Damien Miller34132e52000-01-14 15:45:46 +1100283 case '4':
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000284 options.address_family = AF_INET;
Damien Miller34132e52000-01-14 15:45:46 +1100285 break;
Damien Miller34132e52000-01-14 15:45:46 +1100286 case '6':
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000287 options.address_family = AF_INET6;
Damien Miller34132e52000-01-14 15:45:46 +1100288 break;
Damien Miller95def091999-11-25 00:26:21 +1100289 case 'n':
290 stdin_null_flag = 1;
291 break;
Damien Miller95def091999-11-25 00:26:21 +1100292 case 'f':
293 fork_after_authentication_flag = 1;
294 stdin_null_flag = 1;
295 break;
Damien Miller95def091999-11-25 00:26:21 +1100296 case 'x':
297 options.forward_x11 = 0;
298 break;
Damien Miller95def091999-11-25 00:26:21 +1100299 case 'X':
300 options.forward_x11 = 1;
301 break;
Darren Tucker0a118da2003-10-15 15:54:32 +1000302 case 'Y':
303 options.forward_x11 = 1;
304 options.forward_x11_trusted = 1;
305 break;
Damien Miller95def091999-11-25 00:26:21 +1100306 case 'g':
307 options.gateway_ports = 1;
308 break;
Darren Tucker7ebfc102004-11-07 20:06:19 +1100309 case 'O':
310 if (strcmp(optarg, "check") == 0)
Damien Millerb1cbfa22008-05-19 16:00:08 +1000311 muxclient_command = SSHMUX_COMMAND_ALIVE_CHECK;
Darren Tucker7ebfc102004-11-07 20:06:19 +1100312 else if (strcmp(optarg, "exit") == 0)
Damien Millerb1cbfa22008-05-19 16:00:08 +1000313 muxclient_command = SSHMUX_COMMAND_TERMINATE;
Darren Tucker7ebfc102004-11-07 20:06:19 +1100314 else
315 fatal("Invalid multiplex command.");
316 break;
Damien Miller147bba32002-09-04 16:46:06 +1000317 case 'P': /* deprecated */
Damien Miller95def091999-11-25 00:26:21 +1100318 options.use_privileged_port = 0;
319 break;
Damien Miller95def091999-11-25 00:26:21 +1100320 case 'a':
321 options.forward_agent = 0;
322 break;
Damien Millerb1715dc2000-05-30 13:44:51 +1000323 case 'A':
324 options.forward_agent = 1;
325 break;
Damien Miller95def091999-11-25 00:26:21 +1100326 case 'k':
Damien Millere0113cc2003-11-24 13:10:09 +1100327 options.gss_deleg_creds = 0;
Damien Miller95def091999-11-25 00:26:21 +1100328 break;
Darren Tucker415bddc2007-06-12 23:43:16 +1000329 case 'K':
330 options.gss_authentication = 1;
331 options.gss_deleg_creds = 1;
332 break;
Damien Miller95def091999-11-25 00:26:21 +1100333 case 'i':
334 if (stat(optarg, &st) < 0) {
Damien Millerf4614452001-07-14 12:18:10 +1000335 fprintf(stderr, "Warning: Identity file %s "
Damien Miller3eb48b62005-03-01 21:15:46 +1100336 "not accessible: %s.\n", optarg,
337 strerror(errno));
Damien Miller95def091999-11-25 00:26:21 +1100338 break;
339 }
Damien Millerf4614452001-07-14 12:18:10 +1000340 if (options.num_identity_files >=
341 SSH_MAX_IDENTITY_FILES)
342 fatal("Too many identity files specified "
343 "(max %d)", SSH_MAX_IDENTITY_FILES);
344 options.identity_files[options.num_identity_files++] =
345 xstrdup(optarg);
Damien Miller95def091999-11-25 00:26:21 +1100346 break;
Ben Lindstromc5b68002001-07-04 04:52:03 +0000347 case 'I':
348#ifdef SMARTCARD
Ben Lindstromf7db3bb2001-08-06 21:35:51 +0000349 options.smartcard_device = xstrdup(optarg);
Ben Lindstrombcc18082001-08-06 21:59:25 +0000350#else
Ben Lindstromc5b68002001-07-04 04:52:03 +0000351 fprintf(stderr, "no support for smartcards.\n");
Ben Lindstrombcc18082001-08-06 21:59:25 +0000352#endif
Ben Lindstromc5b68002001-07-04 04:52:03 +0000353 break;
Damien Miller95def091999-11-25 00:26:21 +1100354 case 't':
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000355 if (tty_flag)
356 force_tty_flag = 1;
Damien Miller95def091999-11-25 00:26:21 +1100357 tty_flag = 1;
358 break;
Damien Miller95def091999-11-25 00:26:21 +1100359 case 'v':
Darren Tuckere98dfa32003-07-19 19:54:31 +1000360 if (debug_flag == 0) {
Damien Millere4340be2000-09-16 13:29:08 +1100361 debug_flag = 1;
362 options.log_level = SYSLOG_LEVEL_DEBUG1;
Darren Tuckere98dfa32003-07-19 19:54:31 +1000363 } else {
364 if (options.log_level < SYSLOG_LEVEL_DEBUG3)
365 options.log_level++;
Damien Millere4340be2000-09-16 13:29:08 +1100366 break;
Darren Tuckere98dfa32003-07-19 19:54:31 +1000367 }
Darren Tuckere9bf9842004-11-05 20:05:32 +1100368 /* FALLTHROUGH */
Damien Miller95def091999-11-25 00:26:21 +1100369 case 'V':
Damien Miller0c889cd2004-03-22 09:36:00 +1100370 fprintf(stderr, "%s, %s\n",
Damien Miller2aa6d3c2004-09-12 16:53:04 +1000371 SSH_RELEASE, SSLeay_version(SSLEAY_VERSION));
Damien Miller95def091999-11-25 00:26:21 +1100372 if (opt == 'V')
373 exit(0);
Damien Miller95def091999-11-25 00:26:21 +1100374 break;
Damien Millerd27b9472005-12-13 19:29:02 +1100375 case 'w':
Damien Miller7b58e802005-12-13 19:33:19 +1100376 if (options.tun_open == -1)
377 options.tun_open = SSH_TUNMODE_DEFAULT;
Damien Millerd27b9472005-12-13 19:29:02 +1100378 options.tun_local = a2tun(optarg, &options.tun_remote);
Damien Miller7b58e802005-12-13 19:33:19 +1100379 if (options.tun_local == SSH_TUNID_ERR) {
Darren Tuckerd6173c02008-06-13 04:52:53 +1000380 fprintf(stderr,
381 "Bad tun device '%s'\n", optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100382 exit(255);
Damien Millerd27b9472005-12-13 19:29:02 +1100383 }
384 break;
Damien Miller95def091999-11-25 00:26:21 +1100385 case 'q':
386 options.log_level = SYSLOG_LEVEL_QUIET;
387 break;
Damien Miller95def091999-11-25 00:26:21 +1100388 case 'e':
389 if (optarg[0] == '^' && optarg[2] == 0 &&
Damien Millerf4614452001-07-14 12:18:10 +1000390 (u_char) optarg[1] >= 64 &&
391 (u_char) optarg[1] < 128)
Ben Lindstrom46c16222000-12-22 01:43:59 +0000392 options.escape_char = (u_char) optarg[1] & 31;
Damien Miller95def091999-11-25 00:26:21 +1100393 else if (strlen(optarg) == 1)
Ben Lindstrom46c16222000-12-22 01:43:59 +0000394 options.escape_char = (u_char) optarg[0];
Damien Miller95def091999-11-25 00:26:21 +1100395 else if (strcmp(optarg, "none") == 0)
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +0000396 options.escape_char = SSH_ESCAPECHAR_NONE;
Damien Miller95def091999-11-25 00:26:21 +1100397 else {
Damien Millerf4614452001-07-14 12:18:10 +1000398 fprintf(stderr, "Bad escape character '%s'.\n",
399 optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100400 exit(255);
Damien Miller95def091999-11-25 00:26:21 +1100401 }
402 break;
Damien Miller95def091999-11-25 00:26:21 +1100403 case 'c':
Damien Millereba71ba2000-04-29 23:57:08 +1000404 if (ciphers_valid(optarg)) {
405 /* SSH2 only */
406 options.ciphers = xstrdup(optarg);
Darren Tucker5cb30ad2004-08-12 22:40:24 +1000407 options.cipher = SSH_CIPHER_INVALID;
Damien Millereba71ba2000-04-29 23:57:08 +1000408 } else {
409 /* SSH1 only */
Damien Millere39cacc2000-11-29 12:18:44 +1100410 options.cipher = cipher_number(optarg);
411 if (options.cipher == -1) {
Damien Millerf4614452001-07-14 12:18:10 +1000412 fprintf(stderr,
413 "Unknown cipher type '%s'\n",
414 optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100415 exit(255);
Damien Millereba71ba2000-04-29 23:57:08 +1000416 }
Damien Millerf4614452001-07-14 12:18:10 +1000417 if (options.cipher == SSH_CIPHER_3DES)
Damien Millere39cacc2000-11-29 12:18:44 +1100418 options.ciphers = "3des-cbc";
Damien Millerf4614452001-07-14 12:18:10 +1000419 else if (options.cipher == SSH_CIPHER_BLOWFISH)
Damien Millere39cacc2000-11-29 12:18:44 +1100420 options.ciphers = "blowfish-cbc";
Damien Millerf4614452001-07-14 12:18:10 +1000421 else
Damien Millere39cacc2000-11-29 12:18:44 +1100422 options.ciphers = (char *)-1;
Damien Miller95def091999-11-25 00:26:21 +1100423 }
424 break;
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000425 case 'm':
426 if (mac_valid(optarg))
427 options.macs = xstrdup(optarg);
428 else {
Damien Millerf4614452001-07-14 12:18:10 +1000429 fprintf(stderr, "Unknown mac type '%s'\n",
430 optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100431 exit(255);
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000432 }
433 break;
Damien Miller0e220db2004-06-15 10:34:08 +1000434 case 'M':
Damien Millerd14b1e72005-06-16 13:19:41 +1000435 if (options.control_master == SSHCTL_MASTER_YES)
436 options.control_master = SSHCTL_MASTER_ASK;
437 else
438 options.control_master = SSHCTL_MASTER_YES;
Damien Miller0e220db2004-06-15 10:34:08 +1000439 break;
Damien Miller95def091999-11-25 00:26:21 +1100440 case 'p':
Ben Lindstrom19066a12001-04-12 23:39:26 +0000441 options.port = a2port(optarg);
442 if (options.port == 0) {
Ben Lindstrom146edb92001-04-11 23:06:28 +0000443 fprintf(stderr, "Bad port '%s'\n", optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100444 exit(255);
Ben Lindstrom146edb92001-04-11 23:06:28 +0000445 }
Damien Miller95def091999-11-25 00:26:21 +1100446 break;
Damien Miller95def091999-11-25 00:26:21 +1100447 case 'l':
448 options.user = optarg;
449 break;
Ben Lindstrom1a174712001-09-12 17:56:15 +0000450
Damien Miller95def091999-11-25 00:26:21 +1100451 case 'L':
Damien Millerf91ee4c2005-03-01 21:24:33 +1100452 if (parse_forward(&fwd, optarg))
453 add_local_forward(&options, &fwd);
454 else {
Damien Millerf4614452001-07-14 12:18:10 +1000455 fprintf(stderr,
Damien Millerf91ee4c2005-03-01 21:24:33 +1100456 "Bad local forwarding specification '%s'\n",
Damien Millerf4614452001-07-14 12:18:10 +1000457 optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100458 exit(255);
Ben Lindstrom1a174712001-09-12 17:56:15 +0000459 }
Damien Millerf91ee4c2005-03-01 21:24:33 +1100460 break;
461
462 case 'R':
463 if (parse_forward(&fwd, optarg)) {
464 add_remote_forward(&options, &fwd);
465 } else {
466 fprintf(stderr,
467 "Bad remote forwarding specification "
468 "'%s'\n", optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100469 exit(255);
Damien Millerf91ee4c2005-03-01 21:24:33 +1100470 }
Damien Miller95def091999-11-25 00:26:21 +1100471 break;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000472
473 case 'D':
Damien Millerf91ee4c2005-03-01 21:24:33 +1100474 cp = p = xstrdup(optarg);
475 memset(&fwd, '\0', sizeof(fwd));
476 fwd.connect_host = "socks";
477 if ((fwd.listen_host = hpdelim(&cp)) == NULL) {
478 fprintf(stderr, "Bad dynamic forwarding "
479 "specification '%.100s'\n", optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100480 exit(255);
Damien Millerf91ee4c2005-03-01 21:24:33 +1100481 }
482 if (cp != NULL) {
483 fwd.listen_port = a2port(cp);
Darren Tuckerd6173c02008-06-13 04:52:53 +1000484 fwd.listen_host =
485 cleanhostname(fwd.listen_host);
Damien Millerf91ee4c2005-03-01 21:24:33 +1100486 } else {
487 fwd.listen_port = a2port(fwd.listen_host);
Damien Millerbe1045d2005-08-12 22:10:56 +1000488 fwd.listen_host = NULL;
Damien Millerf91ee4c2005-03-01 21:24:33 +1100489 }
490
491 if (fwd.listen_port == 0) {
Damien Millerf4614452001-07-14 12:18:10 +1000492 fprintf(stderr, "Bad dynamic port '%s'\n",
493 optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100494 exit(255);
Ben Lindstrom146edb92001-04-11 23:06:28 +0000495 }
Damien Millerf91ee4c2005-03-01 21:24:33 +1100496 add_local_forward(&options, &fwd);
497 xfree(p);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000498 break;
499
Damien Miller95def091999-11-25 00:26:21 +1100500 case 'C':
501 options.compression = 1;
502 break;
Damien Miller1383bd82000-04-06 12:32:37 +1000503 case 'N':
504 no_shell_flag = 1;
505 no_tty_flag = 1;
506 break;
Damien Miller1383bd82000-04-06 12:32:37 +1000507 case 'T':
508 no_tty_flag = 1;
509 break;
Damien Miller95def091999-11-25 00:26:21 +1100510 case 'o':
511 dummy = 1;
Damien Miller9836cf82003-12-17 16:30:06 +1100512 line = xstrdup(optarg);
Damien Millerf4614452001-07-14 12:18:10 +1000513 if (process_config_line(&options, host ? host : "",
Damien Miller9836cf82003-12-17 16:30:06 +1100514 line, "command-line", 0, &dummy) != 0)
Darren Tuckere9a9b712005-12-20 16:15:51 +1100515 exit(255);
Damien Miller9836cf82003-12-17 16:30:06 +1100516 xfree(line);
Damien Miller95def091999-11-25 00:26:21 +1100517 break;
Damien Miller832562e2001-01-30 09:30:01 +1100518 case 's':
519 subsystem_flag = 1;
520 break;
Damien Miller0e220db2004-06-15 10:34:08 +1000521 case 'S':
522 if (options.control_path != NULL)
523 free(options.control_path);
524 options.control_path = xstrdup(optarg);
Damien Miller0e220db2004-06-15 10:34:08 +1000525 break;
Ben Lindstrome0f88042001-04-30 13:06:24 +0000526 case 'b':
527 options.bind_address = optarg;
528 break;
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000529 case 'F':
530 config = optarg;
531 break;
Damien Miller95def091999-11-25 00:26:21 +1100532 default:
533 usage();
534 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000535 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000536
Damien Millerf4614452001-07-14 12:18:10 +1000537 ac -= optind;
538 av += optind;
539
540 if (ac > 0 && !host && **av != '-') {
Ben Lindstromc276c122002-12-23 02:14:51 +0000541 if (strrchr(*av, '@')) {
Damien Millerf4614452001-07-14 12:18:10 +1000542 p = xstrdup(*av);
Ben Lindstromc276c122002-12-23 02:14:51 +0000543 cp = strrchr(p, '@');
Damien Millerf4614452001-07-14 12:18:10 +1000544 if (cp == NULL || cp == p)
545 usage();
546 options.user = p;
547 *cp = '\0';
548 host = ++cp;
549 } else
550 host = *av;
Ben Lindstromb9fa6912002-12-23 02:24:54 +0000551 if (ac > 1) {
552 optind = optreset = 1;
Damien Millerf4614452001-07-14 12:18:10 +1000553 goto again;
554 }
Ben Lindstromb9fa6912002-12-23 02:24:54 +0000555 ac--, av++;
Damien Millerf4614452001-07-14 12:18:10 +1000556 }
557
Damien Miller95def091999-11-25 00:26:21 +1100558 /* Check that we got a host name. */
559 if (!host)
560 usage();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000561
Damien Millercb5e44a2000-09-29 12:12:36 +1100562 SSLeay_add_all_algorithms();
Damien Miller0bc1bd82000-11-13 22:57:25 +1100563 ERR_load_crypto_strings();
Damien Millercb5e44a2000-09-29 12:12:36 +1100564
Damien Miller95def091999-11-25 00:26:21 +1100565 /* Initialize the command to execute on remote host. */
566 buffer_init(&command);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000567
Damien Miller5428f641999-11-25 11:54:57 +1100568 /*
569 * Save the command to execute on the remote host in a buffer. There
570 * is no limit on the length of the command, except by the maximum
571 * packet size. Also sets the tty flag if there is no command.
572 */
Damien Millerf4614452001-07-14 12:18:10 +1000573 if (!ac) {
Damien Miller95def091999-11-25 00:26:21 +1100574 /* No command specified - execute shell on a tty. */
575 tty_flag = 1;
Damien Miller832562e2001-01-30 09:30:01 +1100576 if (subsystem_flag) {
Damien Millerf4614452001-07-14 12:18:10 +1000577 fprintf(stderr,
578 "You must specify a subsystem to invoke.\n");
Damien Miller832562e2001-01-30 09:30:01 +1100579 usage();
580 }
Damien Miller95def091999-11-25 00:26:21 +1100581 } else {
Damien Millerf4614452001-07-14 12:18:10 +1000582 /* A command has been specified. Store it into the buffer. */
583 for (i = 0; i < ac; i++) {
584 if (i)
Damien Miller95def091999-11-25 00:26:21 +1100585 buffer_append(&command, " ", 1);
586 buffer_append(&command, av[i], strlen(av[i]));
587 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000588 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000589
Damien Miller95def091999-11-25 00:26:21 +1100590 /* Cannot fork to background if no command. */
Darren Tuckerd6173c02008-06-13 04:52:53 +1000591 if (fork_after_authentication_flag && buffer_len(&command) == 0 &&
592 !no_shell_flag)
593 fatal("Cannot fork into background without a command "
594 "to execute.");
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000595
Damien Miller95def091999-11-25 00:26:21 +1100596 /* Allocate a tty by default if no command specified. */
597 if (buffer_len(&command) == 0)
598 tty_flag = 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000599
Ben Lindstroma962c2f2002-07-04 00:14:17 +0000600 /* Force no tty */
Ben Lindstromc72745a2000-12-02 19:03:54 +0000601 if (no_tty_flag)
602 tty_flag = 0;
Damien Miller95def091999-11-25 00:26:21 +1100603 /* Do not allocate a tty if stdin is not a tty. */
Damien Millerddee5752005-05-26 12:05:05 +1000604 if ((!isatty(fileno(stdin)) || stdin_null_flag) && !force_tty_flag) {
Damien Miller95def091999-11-25 00:26:21 +1100605 if (tty_flag)
Darren Tuckerd6173c02008-06-13 04:52:53 +1000606 logit("Pseudo-terminal will not be allocated because "
607 "stdin is not a terminal.");
Damien Miller95def091999-11-25 00:26:21 +1100608 tty_flag = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000609 }
Damien Miller1383bd82000-04-06 12:32:37 +1000610
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000611 /*
612 * Initialize "log" output. Since we are the client all output
613 * actually goes to stderr.
614 */
Darren Tuckerd6173c02008-06-13 04:52:53 +1000615 log_init(av[0],
616 options.log_level == -1 ? SYSLOG_LEVEL_INFO : options.log_level,
Ben Lindstrom2b646522001-04-12 16:16:57 +0000617 SYSLOG_FACILITY_USER, 1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000618
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000619 /*
620 * Read per-user configuration file. Ignore the system wide config
621 * file if the user specifies a config file on the command line.
622 */
623 if (config != NULL) {
Damien Miller914420f2004-04-20 20:14:07 +1000624 if (!read_config_file(config, host, &options, 0))
Ben Lindstromedc0cf22001-09-12 18:32:20 +0000625 fatal("Can't open user config file %.100s: "
626 "%.100s", config, strerror(errno));
Damien Miller80163902007-01-05 16:30:16 +1100627 } else {
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000628 snprintf(buf, sizeof buf, "%.100s/%.100s", pw->pw_dir,
629 _PATH_SSH_USER_CONFFILE);
Damien Miller57a44762004-04-20 20:11:57 +1000630 (void)read_config_file(buf, host, &options, 1);
Ben Lindstrom83f07d12001-10-03 17:22:29 +0000631
632 /* Read systemwide configuration file after use config. */
Darren Tuckerfc959702004-07-17 16:12:08 +1000633 (void)read_config_file(_PATH_HOST_CONFIG_FILE, host,
Damien Miller57a44762004-04-20 20:11:57 +1000634 &options, 0);
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000635 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000636
Damien Miller95def091999-11-25 00:26:21 +1100637 /* Fill configuration defaults. */
638 fill_default_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000639
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000640 channel_set_af(options.address_family);
641
Damien Miller95def091999-11-25 00:26:21 +1100642 /* reinit */
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000643 log_init(av[0], options.log_level, SYSLOG_FACILITY_USER, 1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000644
Damien Miller60bc5172001-03-19 09:38:15 +1100645 seed_rng();
646
Damien Miller95def091999-11-25 00:26:21 +1100647 if (options.user == NULL)
648 options.user = xstrdup(pw->pw_name);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000649
Damien Miller95def091999-11-25 00:26:21 +1100650 if (options.hostname != NULL)
651 host = options.hostname;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000652
Darren Tucker3f521e22003-07-03 16:20:42 +1000653 /* force lowercase for hostkey matching */
654 if (options.host_key_alias != NULL) {
655 for (p = options.host_key_alias; *p; p++)
656 if (isupper(*p))
Damien Miller1d2b6702006-03-26 14:09:54 +1100657 *p = (char)tolower(*p);
Darren Tucker3f521e22003-07-03 16:20:42 +1000658 }
659
Damien Miller7c71cc72005-06-26 08:56:31 +1000660 /* Get default port if port has not been set. */
661 if (options.port == 0) {
662 sp = getservbyname(SSH_SERVICE_NAME, "tcp");
663 options.port = sp ? ntohs(sp->s_port) : SSH_DEFAULT_PORT;
664 }
665
Damien Miller9f1e33a2003-02-24 11:57:32 +1100666 if (options.proxy_command != NULL &&
Darren Tucker32e42c72007-12-02 23:01:03 +1100667 strcmp(options.proxy_command, "none") == 0) {
668 xfree(options.proxy_command);
Damien Miller9f1e33a2003-02-24 11:57:32 +1100669 options.proxy_command = NULL;
Darren Tucker32e42c72007-12-02 23:01:03 +1100670 }
Damien Miller8f74c8f2005-06-26 08:56:03 +1000671 if (options.control_path != NULL &&
Darren Tucker32e42c72007-12-02 23:01:03 +1100672 strcmp(options.control_path, "none") == 0) {
673 xfree(options.control_path);
Damien Miller8f74c8f2005-06-26 08:56:03 +1000674 options.control_path = NULL;
Darren Tucker32e42c72007-12-02 23:01:03 +1100675 }
Damien Miller9f1e33a2003-02-24 11:57:32 +1100676
Damien Miller0e220db2004-06-15 10:34:08 +1000677 if (options.control_path != NULL) {
Damien Miller6b1d53c2006-03-31 23:13:21 +1100678 char thishost[NI_MAXHOST];
Damien Miller3ec54c72006-03-15 11:30:13 +1100679
Damien Miller6b1d53c2006-03-31 23:13:21 +1100680 if (gethostname(thishost, sizeof(thishost)) == -1)
Damien Miller3ec54c72006-03-15 11:30:13 +1100681 fatal("gethostname: %s", strerror(errno));
Damien Miller6476cad2005-06-16 13:18:34 +1000682 snprintf(buf, sizeof(buf), "%d", options.port);
683 cp = tilde_expand_filename(options.control_path,
684 original_real_uid);
Darren Tucker32e42c72007-12-02 23:01:03 +1100685 xfree(options.control_path);
Damien Miller6476cad2005-06-16 13:18:34 +1000686 options.control_path = percent_expand(cp, "p", buf, "h", host,
Damien Miller6b1d53c2006-03-31 23:13:21 +1100687 "r", options.user, "l", thishost, (char *)NULL);
Damien Miller6476cad2005-06-16 13:18:34 +1000688 xfree(cp);
Damien Miller0e220db2004-06-15 10:34:08 +1000689 }
Damien Millerb1cbfa22008-05-19 16:00:08 +1000690 if (muxclient_command != 0 && options.control_path == NULL)
Darren Tucker0814d312005-06-01 23:08:51 +1000691 fatal("No ControlPath specified for \"-O\" command");
Damien Millerd14b1e72005-06-16 13:19:41 +1000692 if (options.control_path != NULL)
Damien Millerb1cbfa22008-05-19 16:00:08 +1000693 muxclient(options.control_path);
Damien Miller0e220db2004-06-15 10:34:08 +1000694
Damien Miller67bd0622007-09-17 12:06:57 +1000695 timeout_ms = options.connection_timeout * 1000;
696
Kevin Stevesfcec7f82000-12-15 19:55:48 +0000697 /* Open a connection to the remote host. */
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000698 if (ssh_connect(host, &hostaddr, options.port,
Damien Miller67bd0622007-09-17 12:06:57 +1000699 options.address_family, options.connection_attempts, &timeout_ms,
700 options.tcp_keep_alive,
Ben Lindstrom1aa64272002-06-11 20:28:05 +0000701#ifdef HAVE_CYGWIN
702 options.use_privileged_port,
703#else
Ben Lindstromf9c48842002-06-11 16:37:51 +0000704 original_effective_uid == 0 && options.use_privileged_port,
Ben Lindstrom1aa64272002-06-11 20:28:05 +0000705#endif
Ben Lindstromda394ca2002-06-12 16:11:12 +0000706 options.proxy_command) != 0)
Darren Tuckere9a9b712005-12-20 16:15:51 +1100707 exit(255);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000708
Damien Miller67bd0622007-09-17 12:06:57 +1000709 if (timeout_ms > 0)
710 debug3("timeout: %d ms remain after connect", timeout_ms);
711
Damien Miller5428f641999-11-25 11:54:57 +1100712 /*
713 * If we successfully made the connection, load the host private key
714 * in case we will need it later for combined rsa-rhosts
715 * authentication. This must be done before releasing extra
716 * privileges, because the file is only readable by root.
Ben Lindstrom9e5bb572002-06-06 19:58:27 +0000717 * If we cannot access the private keys, load the public keys
718 * instead and try to execute the ssh-keysign helper instead.
Damien Miller5428f641999-11-25 11:54:57 +1100719 */
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000720 sensitive_data.nkeys = 0;
721 sensitive_data.keys = NULL;
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000722 sensitive_data.external_keysign = 0;
Ben Lindstrom24157572002-06-12 16:09:39 +0000723 if (options.rhosts_rsa_authentication ||
724 options.hostbased_authentication) {
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000725 sensitive_data.nkeys = 3;
Damien Millerddd63ab2006-03-31 23:10:51 +1100726 sensitive_data.keys = xcalloc(sensitive_data.nkeys,
Ben Lindstroma962c2f2002-07-04 00:14:17 +0000727 sizeof(Key));
Ben Lindstromf9c48842002-06-11 16:37:51 +0000728
729 PRIV_START;
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000730 sensitive_data.keys[0] = key_load_private_type(KEY_RSA1,
Darren Tucker232b76f2006-05-06 17:41:51 +1000731 _PATH_HOST_KEY_FILE, "", NULL, NULL);
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000732 sensitive_data.keys[1] = key_load_private_type(KEY_DSA,
Darren Tucker232b76f2006-05-06 17:41:51 +1000733 _PATH_HOST_DSA_KEY_FILE, "", NULL, NULL);
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000734 sensitive_data.keys[2] = key_load_private_type(KEY_RSA,
Darren Tucker232b76f2006-05-06 17:41:51 +1000735 _PATH_HOST_RSA_KEY_FILE, "", NULL, NULL);
Ben Lindstromf9c48842002-06-11 16:37:51 +0000736 PRIV_END;
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000737
Ben Lindstrom5d35a2f2002-07-04 00:19:40 +0000738 if (options.hostbased_authentication == 1 &&
739 sensitive_data.keys[0] == NULL &&
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000740 sensitive_data.keys[1] == NULL &&
741 sensitive_data.keys[2] == NULL) {
742 sensitive_data.keys[1] = key_load_public(
743 _PATH_HOST_DSA_KEY_FILE, NULL);
744 sensitive_data.keys[2] = key_load_public(
745 _PATH_HOST_RSA_KEY_FILE, NULL);
746 sensitive_data.external_keysign = 1;
747 }
Damien Miller95def091999-11-25 00:26:21 +1100748 }
Damien Miller5428f641999-11-25 11:54:57 +1100749 /*
750 * Get rid of any extra privileges that we may have. We will no
751 * longer need them. Also, extra privileges could make it very hard
752 * to read identity files and other non-world-readable files from the
753 * user's home directory if it happens to be on a NFS volume where
754 * root is mapped to nobody.
755 */
Darren Tucker25f60a72004-08-15 17:23:34 +1000756 if (original_effective_uid == 0) {
757 PRIV_START;
758 permanently_set_uid(pw);
759 }
Damien Miller95def091999-11-25 00:26:21 +1100760
Damien Miller5428f641999-11-25 11:54:57 +1100761 /*
762 * Now that we are back to our own permissions, create ~/.ssh
Damien Miller788f2122005-11-05 15:14:59 +1100763 * directory if it doesn't already exist.
Damien Miller5428f641999-11-25 11:54:57 +1100764 */
Darren Tuckerd6173c02008-06-13 04:52:53 +1000765 snprintf(buf, sizeof buf, "%.100s%s%.100s", pw->pw_dir,
766 strcmp(pw->pw_dir, "/") ? "/" : "", _PATH_SSH_USER_DIR);
Damien Miller95def091999-11-25 00:26:21 +1100767 if (stat(buf, &st) < 0)
Damien Millerbe484b52000-07-15 14:14:16 +1000768 if (mkdir(buf, 0700) < 0)
Damien Miller95def091999-11-25 00:26:21 +1100769 error("Could not create directory '%.200s'.", buf);
770
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000771 /* load options.identity_files */
772 load_public_identity_files();
773
774 /* Expand ~ in known host file names. */
775 /* XXX mem-leaks: */
Damien Miller0bc1bd82000-11-13 22:57:25 +1100776 options.system_hostfile =
777 tilde_expand_filename(options.system_hostfile, original_real_uid);
778 options.user_hostfile =
779 tilde_expand_filename(options.user_hostfile, original_real_uid);
780 options.system_hostfile2 =
781 tilde_expand_filename(options.system_hostfile2, original_real_uid);
782 options.user_hostfile2 =
783 tilde_expand_filename(options.user_hostfile2, original_real_uid);
Damien Miller95def091999-11-25 00:26:21 +1100784
Damien Miller07cd5892001-11-12 10:52:03 +1100785 signal(SIGPIPE, SIG_IGN); /* ignore SIGPIPE early */
786
Darren Tuckerd6173c02008-06-13 04:52:53 +1000787 /* Log into the remote system. Never returns if the login fails. */
Damien Miller67bd0622007-09-17 12:06:57 +1000788 ssh_login(&sensitive_data, host, (struct sockaddr *)&hostaddr,
789 pw, timeout_ms);
Damien Miller95def091999-11-25 00:26:21 +1100790
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000791 /* We no longer need the private host keys. Clear them now. */
792 if (sensitive_data.nkeys != 0) {
793 for (i = 0; i < sensitive_data.nkeys; i++) {
794 if (sensitive_data.keys[i] != NULL) {
795 /* Destroys contents safely */
796 debug3("clear hostkey %d", i);
797 key_free(sensitive_data.keys[i]);
798 sensitive_data.keys[i] = NULL;
799 }
800 }
801 xfree(sensitive_data.keys);
802 }
Ben Lindstroma6c8a8d2001-08-06 21:42:00 +0000803 for (i = 0; i < options.num_identity_files; i++) {
804 if (options.identity_files[i]) {
805 xfree(options.identity_files[i]);
806 options.identity_files[i] = NULL;
807 }
808 if (options.identity_keys[i]) {
809 key_free(options.identity_keys[i]);
810 options.identity_keys[i] = NULL;
811 }
812 }
Damien Miller95def091999-11-25 00:26:21 +1100813
Damien Miller1383bd82000-04-06 12:32:37 +1000814 exit_status = compat20 ? ssh_session2() : ssh_session();
815 packet_close();
Damien Miller8c4e18a2002-09-19 12:05:02 +1000816
Damien Millerb1cbfa22008-05-19 16:00:08 +1000817 if (options.control_path != NULL && muxserver_sock != -1)
Damien Miller0e220db2004-06-15 10:34:08 +1000818 unlink(options.control_path);
819
Damien Miller8c4e18a2002-09-19 12:05:02 +1000820 /*
Damien Millera8e06ce2003-11-21 23:48:55 +1100821 * Send SIGHUP to proxy command if used. We don't wait() in
Damien Miller8c4e18a2002-09-19 12:05:02 +1000822 * case it hangs and instead rely on init to reap the child
823 */
824 if (proxy_command_pid > 1)
825 kill(proxy_command_pid, SIGHUP);
826
Damien Miller1383bd82000-04-06 12:32:37 +1000827 return exit_status;
828}
829
Darren Tucker9f407c42008-06-13 04:50:27 +1000830/* Callback for remote forward global requests */
831static void
832ssh_confirm_remote_forward(int type, u_int32_t seq, void *ctxt)
833{
834 Forward *rfwd = (Forward *)ctxt;
835
836 debug("remote forward %s for: listen %d, connect %s:%d",
837 type == SSH2_MSG_REQUEST_SUCCESS ? "success" : "failure",
838 rfwd->listen_port, rfwd->connect_host, rfwd->connect_port);
839 if (type == SSH2_MSG_REQUEST_FAILURE) {
840 if (options.exit_on_forward_failure)
841 fatal("Error: remote port forwarding failed for "
842 "listen port %d", rfwd->listen_port);
843 else
844 logit("Warning: remote port forwarding failed for "
845 "listen port %d", rfwd->listen_port);
846 }
847 if (++remote_forward_confirms_received == options.num_remote_forwards)
848 debug("All remote forwarding requests processed");
849 /* XXX fork-after-authentication */
850}
851
Ben Lindstrombba81212001-06-25 05:01:22 +0000852static void
Damien Miller0bc1bd82000-11-13 22:57:25 +1100853ssh_init_forwarding(void)
854{
Kevin Steves12057502001-02-05 14:54:34 +0000855 int success = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100856 int i;
Kevin Steves12057502001-02-05 14:54:34 +0000857
Damien Miller0bc1bd82000-11-13 22:57:25 +1100858 /* Initiate local TCP/IP port forwardings. */
859 for (i = 0; i < options.num_local_forwards; i++) {
Damien Millerf91ee4c2005-03-01 21:24:33 +1100860 debug("Local connections to %.200s:%d forwarded to remote "
861 "address %.200s:%d",
Darren Tucker47eede72005-03-14 23:08:12 +1100862 (options.local_forwards[i].listen_host == NULL) ?
863 (options.gateway_ports ? "*" : "LOCALHOST") :
Damien Millerf91ee4c2005-03-01 21:24:33 +1100864 options.local_forwards[i].listen_host,
865 options.local_forwards[i].listen_port,
866 options.local_forwards[i].connect_host,
867 options.local_forwards[i].connect_port);
Damien Millerb16461c2002-01-22 23:29:22 +1100868 success += channel_setup_local_fwd_listener(
Damien Millerf91ee4c2005-03-01 21:24:33 +1100869 options.local_forwards[i].listen_host,
870 options.local_forwards[i].listen_port,
871 options.local_forwards[i].connect_host,
872 options.local_forwards[i].connect_port,
Damien Miller0bc1bd82000-11-13 22:57:25 +1100873 options.gateway_ports);
874 }
Darren Tuckere7d4b192006-07-12 22:17:10 +1000875 if (i > 0 && success != i && options.exit_on_forward_failure)
876 fatal("Could not request local forwarding.");
Kevin Steves12057502001-02-05 14:54:34 +0000877 if (i > 0 && success == 0)
878 error("Could not request local forwarding.");
Damien Miller0bc1bd82000-11-13 22:57:25 +1100879
880 /* Initiate remote TCP/IP port forwardings. */
881 for (i = 0; i < options.num_remote_forwards; i++) {
Damien Millerf91ee4c2005-03-01 21:24:33 +1100882 debug("Remote connections from %.200s:%d forwarded to "
883 "local address %.200s:%d",
Damien Miller46d38de2005-07-17 17:02:09 +1000884 (options.remote_forwards[i].listen_host == NULL) ?
Damien Milleraa3bb102005-11-05 15:12:59 +1100885 "LOCALHOST" : options.remote_forwards[i].listen_host,
Damien Millerf91ee4c2005-03-01 21:24:33 +1100886 options.remote_forwards[i].listen_port,
887 options.remote_forwards[i].connect_host,
888 options.remote_forwards[i].connect_port);
Darren Tuckere7d4b192006-07-12 22:17:10 +1000889 if (channel_request_remote_forwarding(
Damien Millerf91ee4c2005-03-01 21:24:33 +1100890 options.remote_forwards[i].listen_host,
891 options.remote_forwards[i].listen_port,
892 options.remote_forwards[i].connect_host,
Darren Tuckere7d4b192006-07-12 22:17:10 +1000893 options.remote_forwards[i].connect_port) < 0) {
894 if (options.exit_on_forward_failure)
895 fatal("Could not request remote forwarding.");
896 else
897 logit("Warning: Could not request remote "
898 "forwarding.");
899 }
Darren Tucker9f407c42008-06-13 04:50:27 +1000900 client_register_global_confirm(ssh_confirm_remote_forward,
901 &options.remote_forwards[i]);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100902 }
Damien Millerb3ce9fe2007-08-08 14:32:41 +1000903
904 /* Initiate tunnel forwarding. */
905 if (options.tun_open != SSH_TUNMODE_NO) {
906 if (client_request_tun_fwd(options.tun_open,
907 options.tun_local, options.tun_remote) == -1) {
908 if (options.exit_on_forward_failure)
909 fatal("Could not request tunnel forwarding.");
910 else
911 error("Could not request tunnel forwarding.");
912 }
913 }
Damien Miller0bc1bd82000-11-13 22:57:25 +1100914}
915
Ben Lindstrombba81212001-06-25 05:01:22 +0000916static void
Damien Miller0bc1bd82000-11-13 22:57:25 +1100917check_agent_present(void)
918{
919 if (options.forward_agent) {
Damien Miller788f2122005-11-05 15:14:59 +1100920 /* Clear agent forwarding if we don't have an agent. */
Damien Miller789e95d2002-09-12 09:52:46 +1000921 if (!ssh_agent_present())
Damien Miller0bc1bd82000-11-13 22:57:25 +1100922 options.forward_agent = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100923 }
924}
925
Ben Lindstrombba81212001-06-25 05:01:22 +0000926static int
Damien Miller1383bd82000-04-06 12:32:37 +1000927ssh_session(void)
928{
929 int type;
Damien Miller1383bd82000-04-06 12:32:37 +1000930 int interactive = 0;
931 int have_tty = 0;
932 struct winsize ws;
Damien Miller1383bd82000-04-06 12:32:37 +1000933 char *cp;
Damien Miller17e7ed02005-06-17 12:54:33 +1000934 const char *display;
Damien Miller1383bd82000-04-06 12:32:37 +1000935
Damien Miller95def091999-11-25 00:26:21 +1100936 /* Enable compression if requested. */
937 if (options.compression) {
Darren Tuckerd6173c02008-06-13 04:52:53 +1000938 debug("Requesting compression at level %d.",
939 options.compression_level);
Damien Miller95def091999-11-25 00:26:21 +1100940
Darren Tuckerd6173c02008-06-13 04:52:53 +1000941 if (options.compression_level < 1 ||
942 options.compression_level > 9)
943 fatal("Compression level must be from 1 (fast) to "
944 "9 (slow, best).");
Damien Miller95def091999-11-25 00:26:21 +1100945
946 /* Send the request. */
947 packet_start(SSH_CMSG_REQUEST_COMPRESSION);
948 packet_put_int(options.compression_level);
949 packet_send();
950 packet_write_wait();
Damien Millerdff50992002-01-22 23:16:32 +1100951 type = packet_read();
Damien Miller95def091999-11-25 00:26:21 +1100952 if (type == SSH_SMSG_SUCCESS)
953 packet_start_compression(options.compression_level);
954 else if (type == SSH_SMSG_FAILURE)
Damien Miller996acd22003-04-09 20:59:48 +1000955 logit("Warning: Remote host refused compression.");
Damien Miller95def091999-11-25 00:26:21 +1100956 else
Darren Tuckerd6173c02008-06-13 04:52:53 +1000957 packet_disconnect("Protocol error waiting for "
958 "compression response.");
Damien Miller95def091999-11-25 00:26:21 +1100959 }
960 /* Allocate a pseudo tty if appropriate. */
961 if (tty_flag) {
962 debug("Requesting pty.");
963
964 /* Start the packet. */
965 packet_start(SSH_CMSG_REQUEST_PTY);
966
967 /* Store TERM in the packet. There is no limit on the
968 length of the string. */
969 cp = getenv("TERM");
970 if (!cp)
971 cp = "";
Ben Lindstrom664408d2001-06-09 01:42:01 +0000972 packet_put_cstring(cp);
Damien Miller95def091999-11-25 00:26:21 +1100973
974 /* Store window size in the packet. */
975 if (ioctl(fileno(stdin), TIOCGWINSZ, &ws) < 0)
976 memset(&ws, 0, sizeof(ws));
Damien Miller71a73672006-03-26 14:04:36 +1100977 packet_put_int((u_int)ws.ws_row);
978 packet_put_int((u_int)ws.ws_col);
979 packet_put_int((u_int)ws.ws_xpixel);
980 packet_put_int((u_int)ws.ws_ypixel);
Damien Miller95def091999-11-25 00:26:21 +1100981
982 /* Store tty modes in the packet. */
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000983 tty_make_modes(fileno(stdin), NULL);
Damien Miller95def091999-11-25 00:26:21 +1100984
985 /* Send the packet, and wait for it to leave. */
986 packet_send();
987 packet_write_wait();
988
989 /* Read response from the server. */
Damien Millerdff50992002-01-22 23:16:32 +1100990 type = packet_read();
Damien Miller450a7a12000-03-26 13:04:51 +1000991 if (type == SSH_SMSG_SUCCESS) {
Damien Miller95def091999-11-25 00:26:21 +1100992 interactive = 1;
Damien Miller1383bd82000-04-06 12:32:37 +1000993 have_tty = 1;
Damien Miller450a7a12000-03-26 13:04:51 +1000994 } else if (type == SSH_SMSG_FAILURE)
Darren Tuckerd6173c02008-06-13 04:52:53 +1000995 logit("Warning: Remote host failed or refused to "
996 "allocate a pseudo tty.");
Damien Miller95def091999-11-25 00:26:21 +1100997 else
Darren Tuckerd6173c02008-06-13 04:52:53 +1000998 packet_disconnect("Protocol error waiting for pty "
999 "request response.");
Damien Miller95def091999-11-25 00:26:21 +11001000 }
1001 /* Request X11 forwarding if enabled and DISPLAY is set. */
Damien Miller17e7ed02005-06-17 12:54:33 +10001002 display = getenv("DISPLAY");
1003 if (options.forward_x11 && display != NULL) {
Ben Lindstrom4a4bd712001-12-06 17:45:19 +00001004 char *proto, *data;
Damien Millerbd483e72000-04-30 10:00:53 +10001005 /* Get reasonable local authentication information. */
Damien Miller17e7ed02005-06-17 12:54:33 +10001006 client_x11_get_proto(display, options.xauth_location,
1007 options.forward_x11_trusted, &proto, &data);
Damien Millerbd483e72000-04-30 10:00:53 +10001008 /* Request forwarding with authentication spoofing. */
Darren Tuckerd6173c02008-06-13 04:52:53 +10001009 debug("Requesting X11 forwarding with authentication "
1010 "spoofing.");
Damien Miller17e7ed02005-06-17 12:54:33 +10001011 x11_request_forwarding_with_spoofing(0, display, proto, data);
Damien Miller95def091999-11-25 00:26:21 +11001012
1013 /* Read response from the server. */
Damien Millerdff50992002-01-22 23:16:32 +11001014 type = packet_read();
Damien Miller95def091999-11-25 00:26:21 +11001015 if (type == SSH_SMSG_SUCCESS) {
Damien Miller95def091999-11-25 00:26:21 +11001016 interactive = 1;
Damien Millerbd483e72000-04-30 10:00:53 +10001017 } else if (type == SSH_SMSG_FAILURE) {
Damien Miller996acd22003-04-09 20:59:48 +10001018 logit("Warning: Remote host denied X11 forwarding.");
Damien Millerbd483e72000-04-30 10:00:53 +10001019 } else {
Darren Tuckerd6173c02008-06-13 04:52:53 +10001020 packet_disconnect("Protocol error waiting for X11 "
1021 "forwarding");
Damien Millerbd483e72000-04-30 10:00:53 +10001022 }
Damien Miller95def091999-11-25 00:26:21 +11001023 }
1024 /* Tell the packet module whether this is an interactive session. */
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001025 packet_set_interactive(interactive);
Damien Miller95def091999-11-25 00:26:21 +11001026
1027 /* Request authentication agent forwarding if appropriate. */
Damien Miller0bc1bd82000-11-13 22:57:25 +11001028 check_agent_present();
1029
Damien Miller95def091999-11-25 00:26:21 +11001030 if (options.forward_agent) {
1031 debug("Requesting authentication agent forwarding.");
1032 auth_request_forwarding();
1033
1034 /* Read response from the server. */
Damien Millerdff50992002-01-22 23:16:32 +11001035 type = packet_read();
Damien Miller48b03fc2002-01-22 23:11:40 +11001036 packet_check_eom();
Damien Miller95def091999-11-25 00:26:21 +11001037 if (type != SSH_SMSG_SUCCESS)
Damien Miller996acd22003-04-09 20:59:48 +10001038 logit("Warning: Remote host denied authentication agent forwarding.");
Damien Miller95def091999-11-25 00:26:21 +11001039 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001040
Damien Miller0bc1bd82000-11-13 22:57:25 +11001041 /* Initiate port forwardings. */
1042 ssh_init_forwarding();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001043
Darren Tuckerb776c852007-12-02 23:06:35 +11001044 /* Execute a local command */
1045 if (options.local_command != NULL &&
1046 options.permit_local_command)
1047 ssh_local_cmd(options.local_command);
1048
Damien Miller5428f641999-11-25 11:54:57 +11001049 /* If requested, let ssh continue in the background. */
Damien Miller4af51302000-04-16 11:18:38 +10001050 if (fork_after_authentication_flag)
Damien Miller5428f641999-11-25 11:54:57 +11001051 if (daemon(1, 1) < 0)
1052 fatal("daemon() failed: %.200s", strerror(errno));
1053
1054 /*
1055 * If a command was specified on the command line, execute the
1056 * command now. Otherwise request the server to start a shell.
1057 */
Damien Miller95def091999-11-25 00:26:21 +11001058 if (buffer_len(&command) > 0) {
1059 int len = buffer_len(&command);
1060 if (len > 900)
1061 len = 900;
Darren Tuckerd6173c02008-06-13 04:52:53 +10001062 debug("Sending command: %.*s", len,
1063 (u_char *)buffer_ptr(&command));
Damien Miller95def091999-11-25 00:26:21 +11001064 packet_start(SSH_CMSG_EXEC_CMD);
1065 packet_put_string(buffer_ptr(&command), buffer_len(&command));
1066 packet_send();
1067 packet_write_wait();
1068 } else {
1069 debug("Requesting shell.");
1070 packet_start(SSH_CMSG_EXEC_SHELL);
1071 packet_send();
1072 packet_write_wait();
1073 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001074
Damien Miller95def091999-11-25 00:26:21 +11001075 /* Enter the interactive session. */
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +00001076 return client_loop(have_tty, tty_flag ?
1077 options.escape_char : SSH_ESCAPECHAR_NONE, 0);
Damien Miller1383bd82000-04-06 12:32:37 +10001078}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001079
Ben Lindstromf558cf62001-09-20 23:13:49 +00001080/* request pty/x11/agent/tcpfwd/shell for channel */
Ben Lindstrombba81212001-06-25 05:01:22 +00001081static void
Ben Lindstromf558cf62001-09-20 23:13:49 +00001082ssh_session2_setup(int id, void *arg)
Damien Miller1383bd82000-04-06 12:32:37 +10001083{
Damien Miller3756dce2004-06-18 01:17:29 +10001084 extern char **environ;
Damien Miller17e7ed02005-06-17 12:54:33 +10001085 const char *display;
Damien Miller0e220db2004-06-15 10:34:08 +10001086 int interactive = tty_flag;
Damien Miller17e7ed02005-06-17 12:54:33 +10001087
Damien Miller46d38de2005-07-17 17:02:09 +10001088 display = getenv("DISPLAY");
Damien Miller17e7ed02005-06-17 12:54:33 +10001089 if (options.forward_x11 && display != NULL) {
Ben Lindstrom4a4bd712001-12-06 17:45:19 +00001090 char *proto, *data;
Damien Millerbd483e72000-04-30 10:00:53 +10001091 /* Get reasonable local authentication information. */
Damien Miller17e7ed02005-06-17 12:54:33 +10001092 client_x11_get_proto(display, options.xauth_location,
1093 options.forward_x11_trusted, &proto, &data);
Damien Millerbd483e72000-04-30 10:00:53 +10001094 /* Request forwarding with authentication spoofing. */
Darren Tuckerd6173c02008-06-13 04:52:53 +10001095 debug("Requesting X11 forwarding with authentication "
1096 "spoofing.");
Damien Miller17e7ed02005-06-17 12:54:33 +10001097 x11_request_forwarding_with_spoofing(id, display, proto, data);
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001098 interactive = 1;
Damien Millerbd483e72000-04-30 10:00:53 +10001099 /* XXX wait for reply */
1100 }
1101
Damien Miller0bc1bd82000-11-13 22:57:25 +11001102 check_agent_present();
1103 if (options.forward_agent) {
1104 debug("Requesting authentication agent forwarding.");
1105 channel_request_start(id, "auth-agent-req@openssh.com", 0);
1106 packet_send();
1107 }
1108
Damien Miller0e220db2004-06-15 10:34:08 +10001109 client_session2_setup(id, tty_flag, subsystem_flag, getenv("TERM"),
Damien Miller5771ed72008-05-19 15:35:33 +10001110 NULL, fileno(stdin), &command, environ);
Ben Lindstrom1e7d3062001-02-09 02:36:43 +00001111
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001112 packet_set_interactive(interactive);
Damien Miller1383bd82000-04-06 12:32:37 +10001113}
1114
Ben Lindstromf558cf62001-09-20 23:13:49 +00001115/* open new channel for a session */
Ben Lindstrombba81212001-06-25 05:01:22 +00001116static int
Ben Lindstromf558cf62001-09-20 23:13:49 +00001117ssh_session2_open(void)
Damien Miller1383bd82000-04-06 12:32:37 +10001118{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001119 Channel *c;
1120 int window, packetmax, in, out, err;
Damien Millerad833b32000-08-23 10:46:23 +10001121
Damien Millercaf6dd62000-08-29 11:33:50 +11001122 if (stdin_null_flag) {
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001123 in = open(_PATH_DEVNULL, O_RDONLY);
Damien Millercaf6dd62000-08-29 11:33:50 +11001124 } else {
1125 in = dup(STDIN_FILENO);
1126 }
1127 out = dup(STDOUT_FILENO);
1128 err = dup(STDERR_FILENO);
1129
1130 if (in < 0 || out < 0 || err < 0)
1131 fatal("dup() in/out/err failed");
1132
Damien Miller69b69aa2000-10-28 14:19:58 +11001133 /* enable nonblocking unless tty */
1134 if (!isatty(in))
1135 set_nonblock(in);
1136 if (!isatty(out))
1137 set_nonblock(out);
1138 if (!isatty(err))
1139 set_nonblock(err);
1140
Damien Millere4340be2000-09-16 13:29:08 +11001141 window = CHAN_SES_WINDOW_DEFAULT;
1142 packetmax = CHAN_SES_PACKET_DEFAULT;
Damien Miller19a59452002-02-19 15:20:57 +11001143 if (tty_flag) {
1144 window >>= 1;
1145 packetmax >>= 1;
Damien Miller1383bd82000-04-06 12:32:37 +10001146 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001147 c = channel_new(
Damien Miller1383bd82000-04-06 12:32:37 +10001148 "session", SSH_CHANNEL_OPENING, in, out, err,
Damien Millere4340be2000-09-16 13:29:08 +11001149 window, packetmax, CHAN_EXTENDED_WRITE,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001150 "client-session", /*nonblock*/0);
Damien Miller1383bd82000-04-06 12:32:37 +10001151
Ben Lindstromf558cf62001-09-20 23:13:49 +00001152 debug3("ssh_session2_open: channel_new: %d", c->self);
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001153
Ben Lindstrom5ec26452001-06-09 00:18:51 +00001154 channel_send_open(c->self);
Ben Lindstromf558cf62001-09-20 23:13:49 +00001155 if (!no_shell_flag)
Damien Millerb84886b2008-05-19 15:05:07 +10001156 channel_register_open_confirm(c->self,
1157 ssh_session2_setup, NULL);
Damien Miller1383bd82000-04-06 12:32:37 +10001158
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001159 return c->self;
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001160}
1161
Ben Lindstrombba81212001-06-25 05:01:22 +00001162static int
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001163ssh_session2(void)
1164{
Ben Lindstromf558cf62001-09-20 23:13:49 +00001165 int id = -1;
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001166
1167 /* XXX should be pre-session */
1168 ssh_init_forwarding();
1169
Ben Lindstromf558cf62001-09-20 23:13:49 +00001170 if (!no_shell_flag || (datafellows & SSH_BUG_DUMMYCHAN))
1171 id = ssh_session2_open();
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001172
Darren Tucker8901fa92008-06-11 09:34:01 +10001173 /* If we don't expect to open a new session, then disallow it */
1174 if (options.control_master == SSHCTL_MASTER_NO) {
1175 debug("Requesting no-more-sessions@openssh.com");
1176 packet_start(SSH2_MSG_GLOBAL_REQUEST);
1177 packet_put_cstring("no-more-sessions@openssh.com");
1178 packet_put_char(0);
1179 packet_send();
1180 }
1181
Damien Millerd27b9472005-12-13 19:29:02 +11001182 /* Execute a local command */
1183 if (options.local_command != NULL &&
1184 options.permit_local_command)
1185 ssh_local_cmd(options.local_command);
1186
Damien Millerb3ce9fe2007-08-08 14:32:41 +10001187 /* Start listening for multiplex clients */
Damien Millerb1cbfa22008-05-19 16:00:08 +10001188 muxserver_listen();
Damien Millerb3ce9fe2007-08-08 14:32:41 +10001189
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001190 /* If requested, let ssh continue in the background. */
1191 if (fork_after_authentication_flag)
1192 if (daemon(1, 1) < 0)
1193 fatal("daemon() failed: %.200s", strerror(errno));
1194
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +00001195 return client_loop(tty_flag, tty_flag ?
1196 options.escape_char : SSH_ESCAPECHAR_NONE, id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001197}
Damien Miller0bc1bd82000-11-13 22:57:25 +11001198
Ben Lindstrombba81212001-06-25 05:01:22 +00001199static void
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001200load_public_identity_files(void)
1201{
Damien Miller6b1d53c2006-03-31 23:13:21 +11001202 char *filename, *cp, thishost[NI_MAXHOST];
Darren Tuckerb4fbbc62007-12-02 23:16:32 +11001203 char *pwdir = NULL, *pwname = NULL;
Ben Lindstrom711b04a2001-08-06 21:12:42 +00001204 int i = 0;
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001205 Key *public;
Damien Miller6b1d53c2006-03-31 23:13:21 +11001206 struct passwd *pw;
Ben Lindstrom711b04a2001-08-06 21:12:42 +00001207#ifdef SMARTCARD
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001208 Key **keys;
1209
Ben Lindstromf7db3bb2001-08-06 21:35:51 +00001210 if (options.smartcard_device != NULL &&
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001211 options.num_identity_files < SSH_MAX_IDENTITY_FILES &&
Damien Miller4dec5d72006-08-05 11:38:40 +10001212 (keys = sc_get_keys(options.smartcard_device, NULL)) != NULL) {
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001213 int count = 0;
1214 for (i = 0; keys[i] != NULL; i++) {
1215 count++;
Darren Tuckerd6173c02008-06-13 04:52:53 +10001216 memmove(&options.identity_files[1],
1217 &options.identity_files[0],
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001218 sizeof(char *) * (SSH_MAX_IDENTITY_FILES - 1));
Darren Tuckerd6173c02008-06-13 04:52:53 +10001219 memmove(&options.identity_keys[1],
1220 &options.identity_keys[0],
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001221 sizeof(Key *) * (SSH_MAX_IDENTITY_FILES - 1));
1222 options.num_identity_files++;
1223 options.identity_keys[0] = keys[i];
Damien Miller56a0bb02003-06-18 20:28:40 +10001224 options.identity_files[0] = sc_get_key_label(keys[i]);
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001225 }
Ben Lindstrom4f054602002-03-26 03:23:00 +00001226 if (options.num_identity_files > SSH_MAX_IDENTITY_FILES)
1227 options.num_identity_files = SSH_MAX_IDENTITY_FILES;
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001228 i = count;
1229 xfree(keys);
Ben Lindstrom711b04a2001-08-06 21:12:42 +00001230 }
Ben Lindstromffce1472001-08-06 21:57:31 +00001231#endif /* SMARTCARD */
Damien Miller6b1d53c2006-03-31 23:13:21 +11001232 if ((pw = getpwuid(original_real_uid)) == NULL)
1233 fatal("load_public_identity_files: getpwuid failed");
Darren Tuckere143f062007-12-02 23:21:16 +11001234 pwname = xstrdup(pw->pw_name);
1235 pwdir = xstrdup(pw->pw_dir);
Damien Miller6b1d53c2006-03-31 23:13:21 +11001236 if (gethostname(thishost, sizeof(thishost)) == -1)
1237 fatal("load_public_identity_files: gethostname: %s",
1238 strerror(errno));
Ben Lindstrom711b04a2001-08-06 21:12:42 +00001239 for (; i < options.num_identity_files; i++) {
Damien Miller6b1d53c2006-03-31 23:13:21 +11001240 cp = tilde_expand_filename(options.identity_files[i],
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001241 original_real_uid);
Darren Tuckerb4fbbc62007-12-02 23:16:32 +11001242 filename = percent_expand(cp, "d", pwdir,
1243 "u", pwname, "l", thishost, "h", host,
Damien Miller6b1d53c2006-03-31 23:13:21 +11001244 "r", options.user, (char *)NULL);
1245 xfree(cp);
Ben Lindstromd0fca422001-03-26 13:44:06 +00001246 public = key_load_public(filename, NULL);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001247 debug("identity file %s type %d", filename,
1248 public ? public->type : -1);
1249 xfree(options.identity_files[i]);
1250 options.identity_files[i] = filename;
1251 options.identity_keys[i] = public;
1252 }
Darren Tuckerb4fbbc62007-12-02 23:16:32 +11001253 bzero(pwname, strlen(pwname));
Darren Tuckere143f062007-12-02 23:21:16 +11001254 xfree(pwname);
Darren Tuckerb4fbbc62007-12-02 23:16:32 +11001255 bzero(pwdir, strlen(pwdir));
Darren Tuckere143f062007-12-02 23:21:16 +11001256 xfree(pwdir);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001257}