blob: a86f9204fabecaac4852d12b471807aa3bfba661 [file] [log] [blame]
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001/*
Damien Miller95def091999-11-25 00:26:21 +11002 * Author: Tatu Ylonen <ylo@cs.hut.fi>
3 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
4 * All rights reserved
Damien Miller95def091999-11-25 00:26:21 +11005 * Ssh client program. This program can be used to log into a remote machine.
6 * The software supports strong authentication, encryption, and forwarding
7 * of X11, TCP/IP, and authentication connections.
8 *
Damien Millere4340be2000-09-16 13:29:08 +11009 * As far as I am concerned, the code I have written for this software
10 * can be used freely for any purpose. Any derived versions of this
11 * software must be clearly marked as such, and if the derived work is
12 * incompatible with the protocol description in the RFC file, it must be
13 * called by a name other than "ssh" or "Secure Shell".
14 *
15 * Copyright (c) 1999 Niels Provos. All rights reserved.
Ben Lindstromeb041dc2002-03-27 17:20:38 +000016 * Copyright (c) 2000, 2001, 2002 Markus Friedl. All rights reserved.
Damien Millere4340be2000-09-16 13:29:08 +110017 *
18 * Modified to work with SSL by Niels Provos <provos@citi.umich.edu>
19 * in Canada (German citizen).
20 *
21 * Redistribution and use in source and binary forms, with or without
22 * modification, are permitted provided that the following conditions
23 * are met:
24 * 1. Redistributions of source code must retain the above copyright
25 * notice, this list of conditions and the following disclaimer.
26 * 2. Redistributions in binary form must reproduce the above copyright
27 * notice, this list of conditions and the following disclaimer in the
28 * documentation and/or other materials provided with the distribution.
29 *
30 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
31 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
32 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
33 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
34 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
35 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
36 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
37 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
38 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
39 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Damien Miller95def091999-11-25 00:26:21 +110040 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100041
42#include "includes.h"
Darren Tucker3f521e22003-07-03 16:20:42 +100043RCSID("$OpenBSD: ssh.c,v 1.195 2003/07/02 20:37:48 markus Exp $");
Damien Millereba71ba2000-04-29 23:57:08 +100044
45#include <openssl/evp.h>
Damien Miller0bc1bd82000-11-13 22:57:25 +110046#include <openssl/err.h>
Damien Millerd4a8b7e1999-10-27 13:42:43 +100047
Damien Millerd4a8b7e1999-10-27 13:42:43 +100048#include "ssh.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000049#include "ssh1.h"
Damien Miller1383bd82000-04-06 12:32:37 +100050#include "ssh2.h"
51#include "compat.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000052#include "cipher.h"
53#include "xmalloc.h"
54#include "packet.h"
55#include "buffer.h"
Ben Lindstromc7637672001-06-09 00:36:26 +000056#include "channels.h"
Damien Millereba71ba2000-04-29 23:57:08 +100057#include "key.h"
Damien Miller994cf142000-07-21 10:19:44 +100058#include "authfd.h"
Damien Millereba71ba2000-04-29 23:57:08 +100059#include "authfile.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000060#include "pathnames.h"
Ben Lindstrombf555ba2001-01-18 02:04:35 +000061#include "clientloop.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000062#include "log.h"
63#include "readconf.h"
64#include "sshconnect.h"
65#include "tildexpand.h"
Ben Lindstrom1e7d3062001-02-09 02:36:43 +000066#include "dispatch.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000067#include "misc.h"
Ben Lindstrom06b33aa2001-02-15 03:01:59 +000068#include "kex.h"
69#include "mac.h"
Ben Lindstromae8e2d32001-04-14 23:13:02 +000070#include "sshtty.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100071
Ben Lindstromc5b68002001-07-04 04:52:03 +000072#ifdef SMARTCARD
Ben Lindstromc5b68002001-07-04 04:52:03 +000073#include "scard.h"
Ben Lindstrombcc18082001-08-06 21:59:25 +000074#endif
Ben Lindstromc5b68002001-07-04 04:52:03 +000075
Damien Miller3f905871999-11-15 17:10:57 +110076#ifdef HAVE___PROGNAME
77extern char *__progname;
Ben Lindstrom49a79c02000-11-17 03:47:20 +000078#else
79char *__progname;
80#endif
Damien Miller3f905871999-11-15 17:10:57 +110081
Damien Miller34132e52000-01-14 15:45:46 +110082/* Flag indicating whether IPv4 or IPv6. This can be set on the command line.
83 Default value is AF_UNSPEC means both IPv4 and IPv6. */
84int IPv4or6 = AF_UNSPEC;
85
Damien Miller95def091999-11-25 00:26:21 +110086/* Flag indicating whether debug mode is on. This can be set on the command line. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100087int debug_flag = 0;
88
Damien Miller78928792000-04-12 20:17:38 +100089/* Flag indicating whether a tty should be allocated */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100090int tty_flag = 0;
Ben Lindstrom4dccfa52000-12-28 16:40:05 +000091int no_tty_flag = 0;
92int force_tty_flag = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100093
Damien Miller1383bd82000-04-06 12:32:37 +100094/* don't exec a shell */
95int no_shell_flag = 0;
Damien Miller1383bd82000-04-06 12:32:37 +100096
Damien Miller5428f641999-11-25 11:54:57 +110097/*
98 * Flag indicating that nothing should be read from stdin. This can be set
99 * on the command line.
100 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000101int stdin_null_flag = 0;
102
Damien Miller5428f641999-11-25 11:54:57 +1100103/*
104 * Flag indicating that ssh should fork after authentication. This is useful
Ben Lindstromf666fec2002-06-06 19:51:58 +0000105 * so that the passphrase can be entered manually, and then ssh goes to the
Damien Miller5428f641999-11-25 11:54:57 +1100106 * background.
107 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000108int fork_after_authentication_flag = 0;
109
Damien Miller5428f641999-11-25 11:54:57 +1100110/*
111 * General data structure for command line options and options configurable
112 * in configuration files. See readconf.h.
113 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000114Options options;
115
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000116/* optional user configfile */
117char *config = NULL;
118
Damien Miller5428f641999-11-25 11:54:57 +1100119/*
120 * Name of the host we are connecting to. This is the name given on the
121 * command line, or the HostName specified for the user-supplied name in a
122 * configuration file.
123 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000124char *host;
125
126/* socket address the host resolves to */
Damien Miller34132e52000-01-14 15:45:46 +1100127struct sockaddr_storage hostaddr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000128
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000129/* Private host keys. */
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000130Sensitive sensitive_data;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000131
132/* Original real UID. */
133uid_t original_real_uid;
Ben Lindstromf9c48842002-06-11 16:37:51 +0000134uid_t original_effective_uid;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000135
Damien Miller1383bd82000-04-06 12:32:37 +1000136/* command to be executed */
137Buffer command;
138
Damien Miller832562e2001-01-30 09:30:01 +1100139/* Should we execute a command or invoke a subsystem? */
140int subsystem_flag = 0;
141
Damien Miller2797f7f2002-04-23 21:09:44 +1000142/* # of replies received for global requests */
143static int client_global_request_id = 0;
144
Damien Miller8c4e18a2002-09-19 12:05:02 +1000145/* pid of proxycommand child process */
146pid_t proxy_command_pid = 0;
147
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000148/* Prints a help message to the user. This function never returns. */
149
Ben Lindstrombba81212001-06-25 05:01:22 +0000150static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000151usage(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000152{
Kevin Stevesec84dc12000-12-13 17:45:15 +0000153 fprintf(stderr, "Usage: %s [options] host [command]\n", __progname);
Damien Miller95def091999-11-25 00:26:21 +1100154 fprintf(stderr, "Options:\n");
155 fprintf(stderr, " -l user Log in using this user name.\n");
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000156 fprintf(stderr, " -n Redirect input from " _PATH_DEVNULL ".\n");
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000157 fprintf(stderr, " -F config Config file (default: ~/%s).\n",
158 _PATH_SSH_USER_CONFFILE);
Damien Millerb1715dc2000-05-30 13:44:51 +1000159 fprintf(stderr, " -A Enable authentication agent forwarding.\n");
Ben Lindstrom3b89c5e2001-06-05 20:44:16 +0000160 fprintf(stderr, " -a Disable authentication agent forwarding (default).\n");
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000161#ifdef AFS
Damien Miller95def091999-11-25 00:26:21 +1100162 fprintf(stderr, " -k Disable Kerberos ticket and AFS token forwarding.\n");
163#endif /* AFS */
Kevin Stevesef4eea92001-02-05 12:42:17 +0000164 fprintf(stderr, " -X Enable X11 connection forwarding.\n");
Ben Lindstrom3b89c5e2001-06-05 20:44:16 +0000165 fprintf(stderr, " -x Disable X11 connection forwarding (default).\n");
Ben Lindstrom0ab2a012001-03-05 06:45:21 +0000166 fprintf(stderr, " -i file Identity for public key authentication "
167 "(default: ~/.ssh/identity)\n");
Ben Lindstrom61eb9562001-08-06 21:53:42 +0000168#ifdef SMARTCARD
169 fprintf(stderr, " -I reader Set smartcard reader.\n");
Ben Lindstrombcc18082001-08-06 21:59:25 +0000170#endif
Damien Miller95def091999-11-25 00:26:21 +1100171 fprintf(stderr, " -t Tty; allocate a tty even if command is given.\n");
Damien Miller1383bd82000-04-06 12:32:37 +1000172 fprintf(stderr, " -T Do not allocate a tty.\n");
Damien Miller95def091999-11-25 00:26:21 +1100173 fprintf(stderr, " -v Verbose; display verbose debugging messages.\n");
Damien Millere4340be2000-09-16 13:29:08 +1100174 fprintf(stderr, " Multiple -v increases verbosity.\n");
Damien Miller95def091999-11-25 00:26:21 +1100175 fprintf(stderr, " -V Display version number only.\n");
Damien Miller95def091999-11-25 00:26:21 +1100176 fprintf(stderr, " -q Quiet; don't display any warning messages.\n");
177 fprintf(stderr, " -f Fork into background after authentication.\n");
178 fprintf(stderr, " -e char Set escape character; ``none'' = disable (default: ~).\n");
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000179
Ben Lindstrom3b89c5e2001-06-05 20:44:16 +0000180 fprintf(stderr, " -c cipher Select encryption algorithm\n");
Ben Lindstrom3d73a342001-03-05 07:39:01 +0000181 fprintf(stderr, " -m macs Specify MAC algorithms for protocol version 2.\n");
Damien Miller95def091999-11-25 00:26:21 +1100182 fprintf(stderr, " -p port Connect to this port. Server must be on the same port.\n");
183 fprintf(stderr, " -L listen-port:host:port Forward local port to remote address\n");
184 fprintf(stderr, " -R listen-port:host:port Forward remote port to local address\n");
Kevin Stevesec84dc12000-12-13 17:45:15 +0000185 fprintf(stderr, " These cause %s to listen for connections on a port, and\n", __progname);
Damien Miller95def091999-11-25 00:26:21 +1100186 fprintf(stderr, " forward them to the other side by connecting to host:port.\n");
Ben Lindstrom19ceb172001-09-12 17:54:24 +0000187 fprintf(stderr, " -D port Enable dynamic application-level port forwarding.\n");
Damien Miller95def091999-11-25 00:26:21 +1100188 fprintf(stderr, " -C Enable compression.\n");
Damien Miller1383bd82000-04-06 12:32:37 +1000189 fprintf(stderr, " -N Do not execute a shell or command.\n");
Damien Miller95def091999-11-25 00:26:21 +1100190 fprintf(stderr, " -g Allow remote hosts to connect to forwarded ports.\n");
Ben Lindstrom1e7d3062001-02-09 02:36:43 +0000191 fprintf(stderr, " -1 Force protocol version 1.\n");
192 fprintf(stderr, " -2 Force protocol version 2.\n");
Damien Miller34132e52000-01-14 15:45:46 +1100193 fprintf(stderr, " -4 Use IPv4 only.\n");
194 fprintf(stderr, " -6 Use IPv6 only.\n");
Damien Miller95def091999-11-25 00:26:21 +1100195 fprintf(stderr, " -o 'option' Process the option as if it was read from a configuration file.\n");
Damien Miller832562e2001-01-30 09:30:01 +1100196 fprintf(stderr, " -s Invoke command (mandatory) as SSH2 subsystem.\n");
Ben Lindstrom3b89c5e2001-06-05 20:44:16 +0000197 fprintf(stderr, " -b addr Local IP address.\n");
Damien Miller95def091999-11-25 00:26:21 +1100198 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000199}
200
Ben Lindstrombba81212001-06-25 05:01:22 +0000201static int ssh_session(void);
202static int ssh_session2(void);
203static void load_public_identity_files(void);
Damien Miller1383bd82000-04-06 12:32:37 +1000204
Damien Miller95def091999-11-25 00:26:21 +1100205/*
206 * Main program for the ssh client.
207 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000208int
209main(int ac, char **av)
210{
Ben Lindstrom24157572002-06-12 16:09:39 +0000211 int i, opt, exit_status;
Damien Milleraae6c611999-12-06 11:47:28 +1100212 u_short fwd_port, fwd_host_port;
Ben Lindstrom1a174712001-09-12 17:56:15 +0000213 char sfwd_port[6], sfwd_host_port[6];
Damien Millerf4614452001-07-14 12:18:10 +1000214 char *p, *cp, buf[256];
Damien Miller95def091999-11-25 00:26:21 +1100215 struct stat st;
Ben Lindstrom086cf212001-03-05 05:56:40 +0000216 struct passwd *pw;
Damien Miller1383bd82000-04-06 12:32:37 +1000217 int dummy;
Ben Lindstrom5ccf63a2001-09-24 20:00:10 +0000218 extern int optind, optreset;
Damien Miller4f8e6692001-07-14 13:22:53 +1000219 extern char *optarg;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000220
Ben Lindstrom49a79c02000-11-17 03:47:20 +0000221 __progname = get_progname(av[0]);
Damien Millerf9b625c2000-07-09 22:42:32 +1000222 init_rng();
223
Damien Miller5428f641999-11-25 11:54:57 +1100224 /*
225 * Save the original real uid. It will be needed later (uid-swapping
226 * may clobber the real uid).
227 */
Damien Miller95def091999-11-25 00:26:21 +1100228 original_real_uid = getuid();
229 original_effective_uid = geteuid();
Damien Miller50b9a602002-09-04 16:50:06 +1000230
231 /*
232 * Use uid-swapping to give up root privileges for the duration of
233 * option processing. We will re-instantiate the rights when we are
234 * ready to create the privileged port, and will permanently drop
235 * them when the port has been created (actually, when the connection
236 * has been made, as we may need to create the port several times).
237 */
238 PRIV_END;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000239
Damien Miller05dd7952000-10-01 00:42:48 +1100240#ifdef HAVE_SETRLIMIT
Damien Miller95def091999-11-25 00:26:21 +1100241 /* If we are installed setuid root be careful to not drop core. */
242 if (original_real_uid != original_effective_uid) {
243 struct rlimit rlim;
244 rlim.rlim_cur = rlim.rlim_max = 0;
245 if (setrlimit(RLIMIT_CORE, &rlim) < 0)
246 fatal("setrlimit failed: %.100s", strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000247 }
Damien Millerbac2d8a2000-09-05 16:13:06 +1100248#endif
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000249 /* Get user data. */
250 pw = getpwuid(original_real_uid);
251 if (!pw) {
Damien Miller996acd22003-04-09 20:59:48 +1000252 logit("You don't exist, go away!");
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000253 exit(1);
254 }
255 /* Take a copy of the returned structure. */
256 pw = pwcopy(pw);
257
Damien Miller5428f641999-11-25 11:54:57 +1100258 /*
Damien Miller5428f641999-11-25 11:54:57 +1100259 * Set our umask to something reasonable, as some files are created
260 * with the default umask. This will make them world-readable but
261 * writable only by the owner, which is ok for all files for which we
262 * don't set the modes explicitly.
263 */
Damien Miller95def091999-11-25 00:26:21 +1100264 umask(022);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000265
Damien Miller95def091999-11-25 00:26:21 +1100266 /* Initialize option structure to indicate that no values have been set. */
267 initialize_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000268
Damien Miller95def091999-11-25 00:26:21 +1100269 /* Parse command-line arguments. */
270 host = NULL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000271
Damien Millerf4614452001-07-14 12:18:10 +1000272again:
273 while ((opt = getopt(ac, av,
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000274 "1246ab:c:e:fgi:kl:m:no:p:qstvxACD:F:I:L:NPR:TVX")) != -1) {
Damien Miller95def091999-11-25 00:26:21 +1100275 switch (opt) {
Ben Lindstrom1e7d3062001-02-09 02:36:43 +0000276 case '1':
277 options.protocol = SSH_PROTO_1;
278 break;
Damien Miller4af51302000-04-16 11:18:38 +1000279 case '2':
280 options.protocol = SSH_PROTO_2;
281 break;
Damien Miller34132e52000-01-14 15:45:46 +1100282 case '4':
283 IPv4or6 = AF_INET;
284 break;
Damien Miller34132e52000-01-14 15:45:46 +1100285 case '6':
286 IPv4or6 = AF_INET6;
287 break;
Damien Miller95def091999-11-25 00:26:21 +1100288 case 'n':
289 stdin_null_flag = 1;
290 break;
Damien Miller95def091999-11-25 00:26:21 +1100291 case 'f':
292 fork_after_authentication_flag = 1;
293 stdin_null_flag = 1;
294 break;
Damien Miller95def091999-11-25 00:26:21 +1100295 case 'x':
296 options.forward_x11 = 0;
297 break;
Damien Miller95def091999-11-25 00:26:21 +1100298 case 'X':
299 options.forward_x11 = 1;
300 break;
Damien Miller95def091999-11-25 00:26:21 +1100301 case 'g':
302 options.gateway_ports = 1;
303 break;
Damien Miller147bba32002-09-04 16:46:06 +1000304 case 'P': /* deprecated */
Damien Miller95def091999-11-25 00:26:21 +1100305 options.use_privileged_port = 0;
306 break;
Damien Miller95def091999-11-25 00:26:21 +1100307 case 'a':
308 options.forward_agent = 0;
309 break;
Damien Millerb1715dc2000-05-30 13:44:51 +1000310 case 'A':
311 options.forward_agent = 1;
312 break;
Damien Miller95def091999-11-25 00:26:21 +1100313#ifdef AFS
314 case 'k':
315 options.kerberos_tgt_passing = 0;
316 options.afs_token_passing = 0;
317 break;
318#endif
319 case 'i':
320 if (stat(optarg, &st) < 0) {
Damien Millerf4614452001-07-14 12:18:10 +1000321 fprintf(stderr, "Warning: Identity file %s "
322 "does not exist.\n", optarg);
Damien Miller95def091999-11-25 00:26:21 +1100323 break;
324 }
Damien Millerf4614452001-07-14 12:18:10 +1000325 if (options.num_identity_files >=
326 SSH_MAX_IDENTITY_FILES)
327 fatal("Too many identity files specified "
328 "(max %d)", SSH_MAX_IDENTITY_FILES);
329 options.identity_files[options.num_identity_files++] =
330 xstrdup(optarg);
Damien Miller95def091999-11-25 00:26:21 +1100331 break;
Ben Lindstromc5b68002001-07-04 04:52:03 +0000332 case 'I':
333#ifdef SMARTCARD
Ben Lindstromf7db3bb2001-08-06 21:35:51 +0000334 options.smartcard_device = xstrdup(optarg);
Ben Lindstrombcc18082001-08-06 21:59:25 +0000335#else
Ben Lindstromc5b68002001-07-04 04:52:03 +0000336 fprintf(stderr, "no support for smartcards.\n");
Ben Lindstrombcc18082001-08-06 21:59:25 +0000337#endif
Ben Lindstromc5b68002001-07-04 04:52:03 +0000338 break;
Damien Miller95def091999-11-25 00:26:21 +1100339 case 't':
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000340 if (tty_flag)
341 force_tty_flag = 1;
Damien Miller95def091999-11-25 00:26:21 +1100342 tty_flag = 1;
343 break;
Damien Miller95def091999-11-25 00:26:21 +1100344 case 'v':
Damien Millere4340be2000-09-16 13:29:08 +1100345 if (0 == debug_flag) {
346 debug_flag = 1;
347 options.log_level = SYSLOG_LEVEL_DEBUG1;
348 } else if (options.log_level < SYSLOG_LEVEL_DEBUG3) {
349 options.log_level++;
350 break;
Damien Millerf4614452001-07-14 12:18:10 +1000351 } else
Ben Lindstrom6df8ef42001-03-05 07:47:23 +0000352 fatal("Too high debugging level.");
Damien Millere4340be2000-09-16 13:29:08 +1100353 /* fallthrough */
Damien Miller95def091999-11-25 00:26:21 +1100354 case 'V':
Damien Miller225736c2001-02-19 21:51:08 +1100355 fprintf(stderr,
Damien Miller6e80c362003-05-16 11:38:00 +1000356 "%s, SSH protocols %d.%d/%d.%d, %s\n",
Damien Miller78928792000-04-12 20:17:38 +1000357 SSH_VERSION,
358 PROTOCOL_MAJOR_1, PROTOCOL_MINOR_1,
Damien Miller225736c2001-02-19 21:51:08 +1100359 PROTOCOL_MAJOR_2, PROTOCOL_MINOR_2,
Damien Miller6e80c362003-05-16 11:38:00 +1000360 SSLeay_version(SSLEAY_VERSION));
Damien Miller95def091999-11-25 00:26:21 +1100361 if (opt == 'V')
362 exit(0);
Damien Miller95def091999-11-25 00:26:21 +1100363 break;
Damien Miller95def091999-11-25 00:26:21 +1100364 case 'q':
365 options.log_level = SYSLOG_LEVEL_QUIET;
366 break;
Damien Miller95def091999-11-25 00:26:21 +1100367 case 'e':
368 if (optarg[0] == '^' && optarg[2] == 0 &&
Damien Millerf4614452001-07-14 12:18:10 +1000369 (u_char) optarg[1] >= 64 &&
370 (u_char) optarg[1] < 128)
Ben Lindstrom46c16222000-12-22 01:43:59 +0000371 options.escape_char = (u_char) optarg[1] & 31;
Damien Miller95def091999-11-25 00:26:21 +1100372 else if (strlen(optarg) == 1)
Ben Lindstrom46c16222000-12-22 01:43:59 +0000373 options.escape_char = (u_char) optarg[0];
Damien Miller95def091999-11-25 00:26:21 +1100374 else if (strcmp(optarg, "none") == 0)
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +0000375 options.escape_char = SSH_ESCAPECHAR_NONE;
Damien Miller95def091999-11-25 00:26:21 +1100376 else {
Damien Millerf4614452001-07-14 12:18:10 +1000377 fprintf(stderr, "Bad escape character '%s'.\n",
378 optarg);
Damien Miller95def091999-11-25 00:26:21 +1100379 exit(1);
380 }
381 break;
Damien Miller95def091999-11-25 00:26:21 +1100382 case 'c':
Damien Millereba71ba2000-04-29 23:57:08 +1000383 if (ciphers_valid(optarg)) {
384 /* SSH2 only */
385 options.ciphers = xstrdup(optarg);
Damien Miller30c3d422000-05-09 11:02:59 +1000386 options.cipher = SSH_CIPHER_ILLEGAL;
Damien Millereba71ba2000-04-29 23:57:08 +1000387 } else {
388 /* SSH1 only */
Damien Millere39cacc2000-11-29 12:18:44 +1100389 options.cipher = cipher_number(optarg);
390 if (options.cipher == -1) {
Damien Millerf4614452001-07-14 12:18:10 +1000391 fprintf(stderr,
392 "Unknown cipher type '%s'\n",
393 optarg);
Damien Millereba71ba2000-04-29 23:57:08 +1000394 exit(1);
395 }
Damien Millerf4614452001-07-14 12:18:10 +1000396 if (options.cipher == SSH_CIPHER_3DES)
Damien Millere39cacc2000-11-29 12:18:44 +1100397 options.ciphers = "3des-cbc";
Damien Millerf4614452001-07-14 12:18:10 +1000398 else if (options.cipher == SSH_CIPHER_BLOWFISH)
Damien Millere39cacc2000-11-29 12:18:44 +1100399 options.ciphers = "blowfish-cbc";
Damien Millerf4614452001-07-14 12:18:10 +1000400 else
Damien Millere39cacc2000-11-29 12:18:44 +1100401 options.ciphers = (char *)-1;
Damien Miller95def091999-11-25 00:26:21 +1100402 }
403 break;
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000404 case 'm':
405 if (mac_valid(optarg))
406 options.macs = xstrdup(optarg);
407 else {
Damien Millerf4614452001-07-14 12:18:10 +1000408 fprintf(stderr, "Unknown mac type '%s'\n",
409 optarg);
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000410 exit(1);
411 }
412 break;
Damien Miller95def091999-11-25 00:26:21 +1100413 case 'p':
Ben Lindstrom19066a12001-04-12 23:39:26 +0000414 options.port = a2port(optarg);
415 if (options.port == 0) {
Ben Lindstrom146edb92001-04-11 23:06:28 +0000416 fprintf(stderr, "Bad port '%s'\n", optarg);
417 exit(1);
418 }
Damien Miller95def091999-11-25 00:26:21 +1100419 break;
Damien Miller95def091999-11-25 00:26:21 +1100420 case 'l':
421 options.user = optarg;
422 break;
Ben Lindstrom1a174712001-09-12 17:56:15 +0000423
Damien Miller95def091999-11-25 00:26:21 +1100424 case 'L':
Ben Lindstrom1a174712001-09-12 17:56:15 +0000425 case 'R':
Damien Miller1ea71662003-05-14 22:33:58 +1000426 if (sscanf(optarg, "%5[0123456789]:%255[^:]:%5[0123456789]",
Ben Lindstrom1a174712001-09-12 17:56:15 +0000427 sfwd_port, buf, sfwd_host_port) != 3 &&
Damien Miller1ea71662003-05-14 22:33:58 +1000428 sscanf(optarg, "%5[0123456789]/%255[^/]/%5[0123456789]",
Ben Lindstrom1a174712001-09-12 17:56:15 +0000429 sfwd_port, buf, sfwd_host_port) != 3) {
Damien Millerf4614452001-07-14 12:18:10 +1000430 fprintf(stderr,
Ben Lindstrom1a174712001-09-12 17:56:15 +0000431 "Bad forwarding specification '%s'\n",
Damien Millerf4614452001-07-14 12:18:10 +1000432 optarg);
Damien Miller95def091999-11-25 00:26:21 +1100433 usage();
434 /* NOTREACHED */
435 }
Ben Lindstrom1a174712001-09-12 17:56:15 +0000436 if ((fwd_port = a2port(sfwd_port)) == 0 ||
Ben Lindstrom6328ab32002-03-22 02:54:23 +0000437 (fwd_host_port = a2port(sfwd_host_port)) == 0) {
Ben Lindstrom1a174712001-09-12 17:56:15 +0000438 fprintf(stderr,
439 "Bad forwarding port(s) '%s'\n", optarg);
440 exit(1);
441 }
442 if (opt == 'L')
443 add_local_forward(&options, fwd_port, buf,
444 fwd_host_port);
445 else if (opt == 'R')
446 add_remote_forward(&options, fwd_port, buf,
Damien Miller9f0f5c62001-12-21 14:45:46 +1100447 fwd_host_port);
Damien Miller95def091999-11-25 00:26:21 +1100448 break;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000449
450 case 'D':
Ben Lindstrom19066a12001-04-12 23:39:26 +0000451 fwd_port = a2port(optarg);
452 if (fwd_port == 0) {
Damien Millerf4614452001-07-14 12:18:10 +1000453 fprintf(stderr, "Bad dynamic port '%s'\n",
454 optarg);
Ben Lindstrom146edb92001-04-11 23:06:28 +0000455 exit(1);
456 }
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000457 add_local_forward(&options, fwd_port, "socks4", 0);
458 break;
459
Damien Miller95def091999-11-25 00:26:21 +1100460 case 'C':
461 options.compression = 1;
462 break;
Damien Miller1383bd82000-04-06 12:32:37 +1000463 case 'N':
464 no_shell_flag = 1;
465 no_tty_flag = 1;
466 break;
Damien Miller1383bd82000-04-06 12:32:37 +1000467 case 'T':
468 no_tty_flag = 1;
469 break;
Damien Miller95def091999-11-25 00:26:21 +1100470 case 'o':
471 dummy = 1;
Damien Millerf4614452001-07-14 12:18:10 +1000472 if (process_config_line(&options, host ? host : "",
473 optarg, "command-line", 0, &dummy) != 0)
Damien Miller95def091999-11-25 00:26:21 +1100474 exit(1);
475 break;
Damien Miller832562e2001-01-30 09:30:01 +1100476 case 's':
477 subsystem_flag = 1;
478 break;
Ben Lindstrome0f88042001-04-30 13:06:24 +0000479 case 'b':
480 options.bind_address = optarg;
481 break;
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000482 case 'F':
483 config = optarg;
484 break;
Damien Miller95def091999-11-25 00:26:21 +1100485 default:
486 usage();
487 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000488 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000489
Damien Millerf4614452001-07-14 12:18:10 +1000490 ac -= optind;
491 av += optind;
492
493 if (ac > 0 && !host && **av != '-') {
Ben Lindstromc276c122002-12-23 02:14:51 +0000494 if (strrchr(*av, '@')) {
Damien Millerf4614452001-07-14 12:18:10 +1000495 p = xstrdup(*av);
Ben Lindstromc276c122002-12-23 02:14:51 +0000496 cp = strrchr(p, '@');
Damien Millerf4614452001-07-14 12:18:10 +1000497 if (cp == NULL || cp == p)
498 usage();
499 options.user = p;
500 *cp = '\0';
501 host = ++cp;
502 } else
503 host = *av;
Ben Lindstromb9fa6912002-12-23 02:24:54 +0000504 if (ac > 1) {
505 optind = optreset = 1;
Damien Millerf4614452001-07-14 12:18:10 +1000506 goto again;
507 }
Ben Lindstromb9fa6912002-12-23 02:24:54 +0000508 ac--, av++;
Damien Millerf4614452001-07-14 12:18:10 +1000509 }
510
Damien Miller95def091999-11-25 00:26:21 +1100511 /* Check that we got a host name. */
512 if (!host)
513 usage();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000514
Damien Millercb5e44a2000-09-29 12:12:36 +1100515 SSLeay_add_all_algorithms();
Damien Miller0bc1bd82000-11-13 22:57:25 +1100516 ERR_load_crypto_strings();
Ben Lindstrom908afed2001-10-03 17:34:59 +0000517 channel_set_af(IPv4or6);
Damien Millercb5e44a2000-09-29 12:12:36 +1100518
Damien Miller95def091999-11-25 00:26:21 +1100519 /* Initialize the command to execute on remote host. */
520 buffer_init(&command);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000521
Damien Miller5428f641999-11-25 11:54:57 +1100522 /*
523 * Save the command to execute on the remote host in a buffer. There
524 * is no limit on the length of the command, except by the maximum
525 * packet size. Also sets the tty flag if there is no command.
526 */
Damien Millerf4614452001-07-14 12:18:10 +1000527 if (!ac) {
Damien Miller95def091999-11-25 00:26:21 +1100528 /* No command specified - execute shell on a tty. */
529 tty_flag = 1;
Damien Miller832562e2001-01-30 09:30:01 +1100530 if (subsystem_flag) {
Damien Millerf4614452001-07-14 12:18:10 +1000531 fprintf(stderr,
532 "You must specify a subsystem to invoke.\n");
Damien Miller832562e2001-01-30 09:30:01 +1100533 usage();
534 }
Damien Miller95def091999-11-25 00:26:21 +1100535 } else {
Damien Millerf4614452001-07-14 12:18:10 +1000536 /* A command has been specified. Store it into the buffer. */
537 for (i = 0; i < ac; i++) {
538 if (i)
Damien Miller95def091999-11-25 00:26:21 +1100539 buffer_append(&command, " ", 1);
540 buffer_append(&command, av[i], strlen(av[i]));
541 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000542 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000543
Damien Miller95def091999-11-25 00:26:21 +1100544 /* Cannot fork to background if no command. */
Damien Millercaf6dd62000-08-29 11:33:50 +1100545 if (fork_after_authentication_flag && buffer_len(&command) == 0 && !no_shell_flag)
Damien Miller95def091999-11-25 00:26:21 +1100546 fatal("Cannot fork into background without a command to execute.");
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000547
Damien Miller95def091999-11-25 00:26:21 +1100548 /* Allocate a tty by default if no command specified. */
549 if (buffer_len(&command) == 0)
550 tty_flag = 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000551
Ben Lindstroma962c2f2002-07-04 00:14:17 +0000552 /* Force no tty */
Ben Lindstromc72745a2000-12-02 19:03:54 +0000553 if (no_tty_flag)
554 tty_flag = 0;
Damien Miller95def091999-11-25 00:26:21 +1100555 /* Do not allocate a tty if stdin is not a tty. */
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000556 if (!isatty(fileno(stdin)) && !force_tty_flag) {
Damien Miller95def091999-11-25 00:26:21 +1100557 if (tty_flag)
Damien Miller996acd22003-04-09 20:59:48 +1000558 logit("Pseudo-terminal will not be allocated because stdin is not a terminal.");
Damien Miller95def091999-11-25 00:26:21 +1100559 tty_flag = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000560 }
Damien Miller1383bd82000-04-06 12:32:37 +1000561
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000562 /*
563 * Initialize "log" output. Since we are the client all output
564 * actually goes to stderr.
565 */
Ben Lindstrom2b646522001-04-12 16:16:57 +0000566 log_init(av[0], options.log_level == -1 ? SYSLOG_LEVEL_INFO : options.log_level,
567 SYSLOG_FACILITY_USER, 1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000568
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000569 /*
570 * Read per-user configuration file. Ignore the system wide config
571 * file if the user specifies a config file on the command line.
572 */
573 if (config != NULL) {
Ben Lindstromedc0cf22001-09-12 18:32:20 +0000574 if (!read_config_file(config, host, &options))
575 fatal("Can't open user config file %.100s: "
576 "%.100s", config, strerror(errno));
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000577 } else {
578 snprintf(buf, sizeof buf, "%.100s/%.100s", pw->pw_dir,
579 _PATH_SSH_USER_CONFFILE);
Ben Lindstromedc0cf22001-09-12 18:32:20 +0000580 (void)read_config_file(buf, host, &options);
Ben Lindstrom83f07d12001-10-03 17:22:29 +0000581
582 /* Read systemwide configuration file after use config. */
583 (void)read_config_file(_PATH_HOST_CONFIG_FILE, host, &options);
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000584 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000585
Damien Miller95def091999-11-25 00:26:21 +1100586 /* Fill configuration defaults. */
587 fill_default_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000588
Damien Miller95def091999-11-25 00:26:21 +1100589 /* reinit */
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000590 log_init(av[0], options.log_level, SYSLOG_FACILITY_USER, 1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000591
Damien Miller60bc5172001-03-19 09:38:15 +1100592 seed_rng();
593
Damien Miller95def091999-11-25 00:26:21 +1100594 if (options.user == NULL)
595 options.user = xstrdup(pw->pw_name);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000596
Damien Miller95def091999-11-25 00:26:21 +1100597 if (options.hostname != NULL)
598 host = options.hostname;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000599
Darren Tucker3f521e22003-07-03 16:20:42 +1000600 /* force lowercase for hostkey matching */
601 if (options.host_key_alias != NULL) {
602 for (p = options.host_key_alias; *p; p++)
603 if (isupper(*p))
604 *p = tolower(*p);
605 }
606
Damien Miller9f1e33a2003-02-24 11:57:32 +1100607 if (options.proxy_command != NULL &&
608 strcmp(options.proxy_command, "none") == 0)
609 options.proxy_command = NULL;
610
Damien Miller95def091999-11-25 00:26:21 +1100611 /* Disable rhosts authentication if not running as root. */
Damien Millerbac2d8a2000-09-05 16:13:06 +1100612#ifdef HAVE_CYGWIN
613 /* Ignore uid if running under Windows */
614 if (!options.use_privileged_port) {
615#else
Damien Miller95def091999-11-25 00:26:21 +1100616 if (original_effective_uid != 0 || !options.use_privileged_port) {
Damien Millerbac2d8a2000-09-05 16:13:06 +1100617#endif
Kevin Stevesfcec7f82000-12-15 19:55:48 +0000618 debug("Rhosts Authentication disabled, "
619 "originating port will not be trusted.");
Damien Miller95def091999-11-25 00:26:21 +1100620 options.rhosts_authentication = 0;
Damien Miller95def091999-11-25 00:26:21 +1100621 }
Kevin Stevesfcec7f82000-12-15 19:55:48 +0000622 /* Open a connection to the remote host. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000623
Ben Lindstrom24157572002-06-12 16:09:39 +0000624 if (ssh_connect(host, &hostaddr, options.port, IPv4or6,
Kevin Stevesfcec7f82000-12-15 19:55:48 +0000625 options.connection_attempts,
Ben Lindstrom1aa64272002-06-11 20:28:05 +0000626#ifdef HAVE_CYGWIN
627 options.use_privileged_port,
628#else
Ben Lindstromf9c48842002-06-11 16:37:51 +0000629 original_effective_uid == 0 && options.use_privileged_port,
Ben Lindstrom1aa64272002-06-11 20:28:05 +0000630#endif
Ben Lindstromda394ca2002-06-12 16:11:12 +0000631 options.proxy_command) != 0)
Ben Lindstrom24157572002-06-12 16:09:39 +0000632 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000633
Damien Miller5428f641999-11-25 11:54:57 +1100634 /*
635 * If we successfully made the connection, load the host private key
636 * in case we will need it later for combined rsa-rhosts
637 * authentication. This must be done before releasing extra
638 * privileges, because the file is only readable by root.
Ben Lindstrom9e5bb572002-06-06 19:58:27 +0000639 * If we cannot access the private keys, load the public keys
640 * instead and try to execute the ssh-keysign helper instead.
Damien Miller5428f641999-11-25 11:54:57 +1100641 */
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000642 sensitive_data.nkeys = 0;
643 sensitive_data.keys = NULL;
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000644 sensitive_data.external_keysign = 0;
Ben Lindstrom24157572002-06-12 16:09:39 +0000645 if (options.rhosts_rsa_authentication ||
646 options.hostbased_authentication) {
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000647 sensitive_data.nkeys = 3;
Ben Lindstroma962c2f2002-07-04 00:14:17 +0000648 sensitive_data.keys = xmalloc(sensitive_data.nkeys *
649 sizeof(Key));
Ben Lindstromf9c48842002-06-11 16:37:51 +0000650
651 PRIV_START;
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000652 sensitive_data.keys[0] = key_load_private_type(KEY_RSA1,
Ben Lindstromd0fca422001-03-26 13:44:06 +0000653 _PATH_HOST_KEY_FILE, "", NULL);
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000654 sensitive_data.keys[1] = key_load_private_type(KEY_DSA,
655 _PATH_HOST_DSA_KEY_FILE, "", NULL);
656 sensitive_data.keys[2] = key_load_private_type(KEY_RSA,
657 _PATH_HOST_RSA_KEY_FILE, "", NULL);
Ben Lindstromf9c48842002-06-11 16:37:51 +0000658 PRIV_END;
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000659
Ben Lindstrom5d35a2f2002-07-04 00:19:40 +0000660 if (options.hostbased_authentication == 1 &&
661 sensitive_data.keys[0] == NULL &&
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000662 sensitive_data.keys[1] == NULL &&
663 sensitive_data.keys[2] == NULL) {
664 sensitive_data.keys[1] = key_load_public(
665 _PATH_HOST_DSA_KEY_FILE, NULL);
666 sensitive_data.keys[2] = key_load_public(
667 _PATH_HOST_RSA_KEY_FILE, NULL);
668 sensitive_data.external_keysign = 1;
669 }
Damien Miller95def091999-11-25 00:26:21 +1100670 }
Damien Miller5428f641999-11-25 11:54:57 +1100671 /*
672 * Get rid of any extra privileges that we may have. We will no
673 * longer need them. Also, extra privileges could make it very hard
674 * to read identity files and other non-world-readable files from the
675 * user's home directory if it happens to be on a NFS volume where
676 * root is mapped to nobody.
677 */
Ben Lindstromf9c48842002-06-11 16:37:51 +0000678 seteuid(original_real_uid);
679 setuid(original_real_uid);
Damien Miller95def091999-11-25 00:26:21 +1100680
Damien Miller5428f641999-11-25 11:54:57 +1100681 /*
682 * Now that we are back to our own permissions, create ~/.ssh
683 * directory if it doesn\'t already exist.
684 */
Ben Lindstrom930b14a2001-08-15 23:19:21 +0000685 snprintf(buf, sizeof buf, "%.100s%s%.100s", pw->pw_dir, strcmp(pw->pw_dir, "/") ? "/" : "", _PATH_SSH_USER_DIR);
Damien Miller95def091999-11-25 00:26:21 +1100686 if (stat(buf, &st) < 0)
Damien Millerbe484b52000-07-15 14:14:16 +1000687 if (mkdir(buf, 0700) < 0)
Damien Miller95def091999-11-25 00:26:21 +1100688 error("Could not create directory '%.200s'.", buf);
689
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000690 /* load options.identity_files */
691 load_public_identity_files();
692
693 /* Expand ~ in known host file names. */
694 /* XXX mem-leaks: */
Damien Miller0bc1bd82000-11-13 22:57:25 +1100695 options.system_hostfile =
696 tilde_expand_filename(options.system_hostfile, original_real_uid);
697 options.user_hostfile =
698 tilde_expand_filename(options.user_hostfile, original_real_uid);
699 options.system_hostfile2 =
700 tilde_expand_filename(options.system_hostfile2, original_real_uid);
701 options.user_hostfile2 =
702 tilde_expand_filename(options.user_hostfile2, original_real_uid);
Damien Miller95def091999-11-25 00:26:21 +1100703
Damien Miller07cd5892001-11-12 10:52:03 +1100704 signal(SIGPIPE, SIG_IGN); /* ignore SIGPIPE early */
705
Damien Miller95def091999-11-25 00:26:21 +1100706 /* Log into the remote system. This never returns if the login fails. */
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000707 ssh_login(&sensitive_data, host, (struct sockaddr *)&hostaddr, pw);
Damien Miller95def091999-11-25 00:26:21 +1100708
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000709 /* We no longer need the private host keys. Clear them now. */
710 if (sensitive_data.nkeys != 0) {
711 for (i = 0; i < sensitive_data.nkeys; i++) {
712 if (sensitive_data.keys[i] != NULL) {
713 /* Destroys contents safely */
714 debug3("clear hostkey %d", i);
715 key_free(sensitive_data.keys[i]);
716 sensitive_data.keys[i] = NULL;
717 }
718 }
719 xfree(sensitive_data.keys);
720 }
Ben Lindstroma6c8a8d2001-08-06 21:42:00 +0000721 for (i = 0; i < options.num_identity_files; i++) {
722 if (options.identity_files[i]) {
723 xfree(options.identity_files[i]);
724 options.identity_files[i] = NULL;
725 }
726 if (options.identity_keys[i]) {
727 key_free(options.identity_keys[i]);
728 options.identity_keys[i] = NULL;
729 }
730 }
Damien Miller95def091999-11-25 00:26:21 +1100731
Damien Miller1383bd82000-04-06 12:32:37 +1000732 exit_status = compat20 ? ssh_session2() : ssh_session();
733 packet_close();
Damien Miller8c4e18a2002-09-19 12:05:02 +1000734
735 /*
736 * Send SIGHUP to proxy command if used. We don't wait() in
737 * case it hangs and instead rely on init to reap the child
738 */
739 if (proxy_command_pid > 1)
740 kill(proxy_command_pid, SIGHUP);
741
Damien Miller1383bd82000-04-06 12:32:37 +1000742 return exit_status;
743}
744
Ben Lindstrombba81212001-06-25 05:01:22 +0000745static void
Ben Lindstrom4a4bd712001-12-06 17:45:19 +0000746x11_get_proto(char **_proto, char **_data)
Damien Millerbd483e72000-04-30 10:00:53 +1000747{
748 char line[512];
Ben Lindstrom4a4bd712001-12-06 17:45:19 +0000749 static char proto[512], data[512];
Damien Millerbd483e72000-04-30 10:00:53 +1000750 FILE *f;
751 int got_data = 0, i;
Damien Miller35b13d62002-02-05 12:12:09 +1100752 char *display;
Ben Lindstromee8d52d2002-07-23 21:03:02 +0000753 struct stat st;
Damien Millerbd483e72000-04-30 10:00:53 +1000754
Ben Lindstrom4a4bd712001-12-06 17:45:19 +0000755 *_proto = proto;
756 *_data = data;
757 proto[0] = data[0] = '\0';
Ben Lindstromee8d52d2002-07-23 21:03:02 +0000758 if (!options.xauth_location ||
759 (stat(options.xauth_location, &st) == -1)) {
760 debug("No xauth program.");
761 } else {
762 if ((display = getenv("DISPLAY")) == NULL) {
763 debug("x11_get_proto: DISPLAY not set");
764 return;
765 }
Damien Millerd3a18572000-06-07 19:55:44 +1000766 /* Try to get Xauthority information for the display. */
Damien Miller35b13d62002-02-05 12:12:09 +1100767 if (strncmp(display, "localhost:", 10) == 0)
768 /*
769 * Handle FamilyLocal case where $DISPLAY does
770 * not match an authorization entry. For this we
771 * just try "xauth list unix:displaynum.screennum".
772 * XXX: "localhost" match to determine FamilyLocal
773 * is not perfect.
774 */
Ben Lindstromfac77692002-06-06 19:49:54 +0000775 snprintf(line, sizeof line, "%s list unix:%s 2>"
Damien Miller35b13d62002-02-05 12:12:09 +1100776 _PATH_DEVNULL, options.xauth_location, display+10);
777 else
Ben Lindstromfac77692002-06-06 19:49:54 +0000778 snprintf(line, sizeof line, "%s list %.200s 2>"
Damien Miller35b13d62002-02-05 12:12:09 +1100779 _PATH_DEVNULL, options.xauth_location, display);
Ben Lindstromee8d52d2002-07-23 21:03:02 +0000780 debug2("x11_get_proto: %s", line);
Damien Millerd3a18572000-06-07 19:55:44 +1000781 f = popen(line, "r");
782 if (f && fgets(line, sizeof(line), f) &&
Ben Lindstrom4a4bd712001-12-06 17:45:19 +0000783 sscanf(line, "%*s %511s %511s", proto, data) == 2)
Damien Millerd3a18572000-06-07 19:55:44 +1000784 got_data = 1;
785 if (f)
786 pclose(f);
787 }
Damien Millerbd483e72000-04-30 10:00:53 +1000788 /*
789 * If we didn't get authentication data, just make up some
790 * data. The forwarding code will check the validity of the
791 * response anyway, and substitute this data. The X11
792 * server, however, will ignore this fake data and use
793 * whatever authentication mechanisms it was using otherwise
794 * for the local connection.
795 */
796 if (!got_data) {
797 u_int32_t rand = 0;
798
Damien Miller996acd22003-04-09 20:59:48 +1000799 logit("Warning: No xauth data; using fake authentication data for X11 forwarding.");
Ben Lindstrom4a4bd712001-12-06 17:45:19 +0000800 strlcpy(proto, "MIT-MAGIC-COOKIE-1", sizeof proto);
Damien Millerbd483e72000-04-30 10:00:53 +1000801 for (i = 0; i < 16; i++) {
802 if (i % 4 == 0)
803 rand = arc4random();
Ben Lindstrom4a4bd712001-12-06 17:45:19 +0000804 snprintf(data + 2 * i, sizeof data - 2 * i, "%02x", rand & 0xff);
Damien Millerbd483e72000-04-30 10:00:53 +1000805 rand >>= 8;
806 }
807 }
808}
809
Ben Lindstrombba81212001-06-25 05:01:22 +0000810static void
Damien Miller0bc1bd82000-11-13 22:57:25 +1100811ssh_init_forwarding(void)
812{
Kevin Steves12057502001-02-05 14:54:34 +0000813 int success = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100814 int i;
Kevin Steves12057502001-02-05 14:54:34 +0000815
Damien Miller0bc1bd82000-11-13 22:57:25 +1100816 /* Initiate local TCP/IP port forwardings. */
817 for (i = 0; i < options.num_local_forwards; i++) {
818 debug("Connections to local port %d forwarded to remote address %.200s:%d",
819 options.local_forwards[i].port,
820 options.local_forwards[i].host,
821 options.local_forwards[i].host_port);
Damien Millerb16461c2002-01-22 23:29:22 +1100822 success += channel_setup_local_fwd_listener(
Damien Miller0bc1bd82000-11-13 22:57:25 +1100823 options.local_forwards[i].port,
824 options.local_forwards[i].host,
825 options.local_forwards[i].host_port,
826 options.gateway_ports);
827 }
Kevin Steves12057502001-02-05 14:54:34 +0000828 if (i > 0 && success == 0)
829 error("Could not request local forwarding.");
Damien Miller0bc1bd82000-11-13 22:57:25 +1100830
831 /* Initiate remote TCP/IP port forwardings. */
832 for (i = 0; i < options.num_remote_forwards; i++) {
833 debug("Connections to remote port %d forwarded to local address %.200s:%d",
834 options.remote_forwards[i].port,
835 options.remote_forwards[i].host,
836 options.remote_forwards[i].host_port);
837 channel_request_remote_forwarding(
838 options.remote_forwards[i].port,
839 options.remote_forwards[i].host,
840 options.remote_forwards[i].host_port);
841 }
842}
843
Ben Lindstrombba81212001-06-25 05:01:22 +0000844static void
Damien Miller0bc1bd82000-11-13 22:57:25 +1100845check_agent_present(void)
846{
847 if (options.forward_agent) {
848 /* Clear agent forwarding if we don\'t have an agent. */
Damien Miller789e95d2002-09-12 09:52:46 +1000849 if (!ssh_agent_present())
Damien Miller0bc1bd82000-11-13 22:57:25 +1100850 options.forward_agent = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100851 }
852}
853
Ben Lindstrombba81212001-06-25 05:01:22 +0000854static int
Damien Miller1383bd82000-04-06 12:32:37 +1000855ssh_session(void)
856{
857 int type;
Damien Miller1383bd82000-04-06 12:32:37 +1000858 int interactive = 0;
859 int have_tty = 0;
860 struct winsize ws;
Damien Miller1383bd82000-04-06 12:32:37 +1000861 char *cp;
862
Damien Miller95def091999-11-25 00:26:21 +1100863 /* Enable compression if requested. */
864 if (options.compression) {
865 debug("Requesting compression at level %d.", options.compression_level);
866
867 if (options.compression_level < 1 || options.compression_level > 9)
868 fatal("Compression level must be from 1 (fast) to 9 (slow, best).");
869
870 /* Send the request. */
871 packet_start(SSH_CMSG_REQUEST_COMPRESSION);
872 packet_put_int(options.compression_level);
873 packet_send();
874 packet_write_wait();
Damien Millerdff50992002-01-22 23:16:32 +1100875 type = packet_read();
Damien Miller95def091999-11-25 00:26:21 +1100876 if (type == SSH_SMSG_SUCCESS)
877 packet_start_compression(options.compression_level);
878 else if (type == SSH_SMSG_FAILURE)
Damien Miller996acd22003-04-09 20:59:48 +1000879 logit("Warning: Remote host refused compression.");
Damien Miller95def091999-11-25 00:26:21 +1100880 else
881 packet_disconnect("Protocol error waiting for compression response.");
882 }
883 /* Allocate a pseudo tty if appropriate. */
884 if (tty_flag) {
885 debug("Requesting pty.");
886
887 /* Start the packet. */
888 packet_start(SSH_CMSG_REQUEST_PTY);
889
890 /* Store TERM in the packet. There is no limit on the
891 length of the string. */
892 cp = getenv("TERM");
893 if (!cp)
894 cp = "";
Ben Lindstrom664408d2001-06-09 01:42:01 +0000895 packet_put_cstring(cp);
Damien Miller95def091999-11-25 00:26:21 +1100896
897 /* Store window size in the packet. */
898 if (ioctl(fileno(stdin), TIOCGWINSZ, &ws) < 0)
899 memset(&ws, 0, sizeof(ws));
900 packet_put_int(ws.ws_row);
901 packet_put_int(ws.ws_col);
902 packet_put_int(ws.ws_xpixel);
903 packet_put_int(ws.ws_ypixel);
904
905 /* Store tty modes in the packet. */
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000906 tty_make_modes(fileno(stdin), NULL);
Damien Miller95def091999-11-25 00:26:21 +1100907
908 /* Send the packet, and wait for it to leave. */
909 packet_send();
910 packet_write_wait();
911
912 /* Read response from the server. */
Damien Millerdff50992002-01-22 23:16:32 +1100913 type = packet_read();
Damien Miller450a7a12000-03-26 13:04:51 +1000914 if (type == SSH_SMSG_SUCCESS) {
Damien Miller95def091999-11-25 00:26:21 +1100915 interactive = 1;
Damien Miller1383bd82000-04-06 12:32:37 +1000916 have_tty = 1;
Damien Miller450a7a12000-03-26 13:04:51 +1000917 } else if (type == SSH_SMSG_FAILURE)
Damien Miller996acd22003-04-09 20:59:48 +1000918 logit("Warning: Remote host failed or refused to allocate a pseudo tty.");
Damien Miller95def091999-11-25 00:26:21 +1100919 else
920 packet_disconnect("Protocol error waiting for pty request response.");
921 }
922 /* Request X11 forwarding if enabled and DISPLAY is set. */
923 if (options.forward_x11 && getenv("DISPLAY") != NULL) {
Ben Lindstrom4a4bd712001-12-06 17:45:19 +0000924 char *proto, *data;
Damien Millerbd483e72000-04-30 10:00:53 +1000925 /* Get reasonable local authentication information. */
Ben Lindstrom4a4bd712001-12-06 17:45:19 +0000926 x11_get_proto(&proto, &data);
Damien Millerbd483e72000-04-30 10:00:53 +1000927 /* Request forwarding with authentication spoofing. */
Damien Miller95def091999-11-25 00:26:21 +1100928 debug("Requesting X11 forwarding with authentication spoofing.");
Damien Millerbd483e72000-04-30 10:00:53 +1000929 x11_request_forwarding_with_spoofing(0, proto, data);
Damien Miller95def091999-11-25 00:26:21 +1100930
931 /* Read response from the server. */
Damien Millerdff50992002-01-22 23:16:32 +1100932 type = packet_read();
Damien Miller95def091999-11-25 00:26:21 +1100933 if (type == SSH_SMSG_SUCCESS) {
Damien Miller95def091999-11-25 00:26:21 +1100934 interactive = 1;
Damien Millerbd483e72000-04-30 10:00:53 +1000935 } else if (type == SSH_SMSG_FAILURE) {
Damien Miller996acd22003-04-09 20:59:48 +1000936 logit("Warning: Remote host denied X11 forwarding.");
Damien Millerbd483e72000-04-30 10:00:53 +1000937 } else {
Damien Miller95def091999-11-25 00:26:21 +1100938 packet_disconnect("Protocol error waiting for X11 forwarding");
Damien Millerbd483e72000-04-30 10:00:53 +1000939 }
Damien Miller95def091999-11-25 00:26:21 +1100940 }
941 /* Tell the packet module whether this is an interactive session. */
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000942 packet_set_interactive(interactive);
Damien Miller95def091999-11-25 00:26:21 +1100943
944 /* Request authentication agent forwarding if appropriate. */
Damien Miller0bc1bd82000-11-13 22:57:25 +1100945 check_agent_present();
946
Damien Miller95def091999-11-25 00:26:21 +1100947 if (options.forward_agent) {
948 debug("Requesting authentication agent forwarding.");
949 auth_request_forwarding();
950
951 /* Read response from the server. */
Damien Millerdff50992002-01-22 23:16:32 +1100952 type = packet_read();
Damien Miller48b03fc2002-01-22 23:11:40 +1100953 packet_check_eom();
Damien Miller95def091999-11-25 00:26:21 +1100954 if (type != SSH_SMSG_SUCCESS)
Damien Miller996acd22003-04-09 20:59:48 +1000955 logit("Warning: Remote host denied authentication agent forwarding.");
Damien Miller95def091999-11-25 00:26:21 +1100956 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000957
Damien Miller0bc1bd82000-11-13 22:57:25 +1100958 /* Initiate port forwardings. */
959 ssh_init_forwarding();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000960
Damien Miller5428f641999-11-25 11:54:57 +1100961 /* If requested, let ssh continue in the background. */
Damien Miller4af51302000-04-16 11:18:38 +1000962 if (fork_after_authentication_flag)
Damien Miller5428f641999-11-25 11:54:57 +1100963 if (daemon(1, 1) < 0)
964 fatal("daemon() failed: %.200s", strerror(errno));
965
966 /*
967 * If a command was specified on the command line, execute the
968 * command now. Otherwise request the server to start a shell.
969 */
Damien Miller95def091999-11-25 00:26:21 +1100970 if (buffer_len(&command) > 0) {
971 int len = buffer_len(&command);
972 if (len > 900)
973 len = 900;
Damien Miller5a6b4fe2001-12-21 14:56:54 +1100974 debug("Sending command: %.*s", len, (u_char *)buffer_ptr(&command));
Damien Miller95def091999-11-25 00:26:21 +1100975 packet_start(SSH_CMSG_EXEC_CMD);
976 packet_put_string(buffer_ptr(&command), buffer_len(&command));
977 packet_send();
978 packet_write_wait();
979 } else {
980 debug("Requesting shell.");
981 packet_start(SSH_CMSG_EXEC_SHELL);
982 packet_send();
983 packet_write_wait();
984 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000985
Damien Miller95def091999-11-25 00:26:21 +1100986 /* Enter the interactive session. */
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +0000987 return client_loop(have_tty, tty_flag ?
988 options.escape_char : SSH_ESCAPECHAR_NONE, 0);
Damien Miller1383bd82000-04-06 12:32:37 +1000989}
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000990
Ben Lindstrombba81212001-06-25 05:01:22 +0000991static void
Damien Miller630d6f42002-01-22 23:17:30 +1100992client_subsystem_reply(int type, u_int32_t seq, void *ctxt)
Ben Lindstrom1e7d3062001-02-09 02:36:43 +0000993{
994 int id, len;
995
996 id = packet_get_int();
997 len = buffer_len(&command);
Ben Lindstrom4040fe12001-03-05 06:52:57 +0000998 if (len > 900)
999 len = 900;
Damien Miller48b03fc2002-01-22 23:11:40 +11001000 packet_check_eom();
Ben Lindstrom1e7d3062001-02-09 02:36:43 +00001001 if (type == SSH2_MSG_CHANNEL_FAILURE)
1002 fatal("Request for subsystem '%.*s' failed on channel %d",
Damien Miller5a6b4fe2001-12-21 14:56:54 +11001003 len, (u_char *)buffer_ptr(&command), id);
Ben Lindstrom1e7d3062001-02-09 02:36:43 +00001004}
1005
Damien Miller2797f7f2002-04-23 21:09:44 +10001006void
1007client_global_request_reply(int type, u_int32_t seq, void *ctxt)
1008{
1009 int i;
1010
1011 i = client_global_request_id++;
1012 if (i >= options.num_remote_forwards) {
1013 debug("client_global_request_reply: too many replies %d > %d",
1014 i, options.num_remote_forwards);
1015 return;
1016 }
1017 debug("remote forward %s for: listen %d, connect %s:%d",
1018 type == SSH2_MSG_REQUEST_SUCCESS ? "success" : "failure",
1019 options.remote_forwards[i].port,
1020 options.remote_forwards[i].host,
1021 options.remote_forwards[i].host_port);
1022 if (type == SSH2_MSG_REQUEST_FAILURE)
Damien Miller996acd22003-04-09 20:59:48 +10001023 logit("Warning: remote port forwarding failed for listen port %d",
Damien Miller2797f7f2002-04-23 21:09:44 +10001024 options.remote_forwards[i].port);
1025}
1026
Ben Lindstromf558cf62001-09-20 23:13:49 +00001027/* request pty/x11/agent/tcpfwd/shell for channel */
Ben Lindstrombba81212001-06-25 05:01:22 +00001028static void
Ben Lindstromf558cf62001-09-20 23:13:49 +00001029ssh_session2_setup(int id, void *arg)
Damien Miller1383bd82000-04-06 12:32:37 +10001030{
1031 int len;
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001032 int interactive = 0;
Ben Lindstromae8e2d32001-04-14 23:13:02 +00001033 struct termios tio;
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001034
Ben Lindstrom604dc722002-12-23 02:08:57 +00001035 debug2("ssh_session2_setup: id %d", id);
Damien Miller1383bd82000-04-06 12:32:37 +10001036
Damien Miller1383bd82000-04-06 12:32:37 +10001037 if (tty_flag) {
1038 struct winsize ws;
1039 char *cp;
1040 cp = getenv("TERM");
1041 if (!cp)
1042 cp = "";
1043 /* Store window size in the packet. */
1044 if (ioctl(fileno(stdin), TIOCGWINSZ, &ws) < 0)
1045 memset(&ws, 0, sizeof(ws));
1046
1047 channel_request_start(id, "pty-req", 0);
1048 packet_put_cstring(cp);
1049 packet_put_int(ws.ws_col);
1050 packet_put_int(ws.ws_row);
1051 packet_put_int(ws.ws_xpixel);
1052 packet_put_int(ws.ws_ypixel);
Ben Lindstromae8e2d32001-04-14 23:13:02 +00001053 tio = get_saved_tio();
1054 tty_make_modes(/*ignored*/ 0, &tio);
Damien Miller1383bd82000-04-06 12:32:37 +10001055 packet_send();
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001056 interactive = 1;
Damien Miller1383bd82000-04-06 12:32:37 +10001057 /* XXX wait for reply */
1058 }
Damien Millerbd483e72000-04-30 10:00:53 +10001059 if (options.forward_x11 &&
1060 getenv("DISPLAY") != NULL) {
Ben Lindstrom4a4bd712001-12-06 17:45:19 +00001061 char *proto, *data;
Damien Millerbd483e72000-04-30 10:00:53 +10001062 /* Get reasonable local authentication information. */
Ben Lindstrom4a4bd712001-12-06 17:45:19 +00001063 x11_get_proto(&proto, &data);
Damien Millerbd483e72000-04-30 10:00:53 +10001064 /* Request forwarding with authentication spoofing. */
1065 debug("Requesting X11 forwarding with authentication spoofing.");
1066 x11_request_forwarding_with_spoofing(id, proto, data);
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001067 interactive = 1;
Damien Millerbd483e72000-04-30 10:00:53 +10001068 /* XXX wait for reply */
1069 }
1070
Damien Miller0bc1bd82000-11-13 22:57:25 +11001071 check_agent_present();
1072 if (options.forward_agent) {
1073 debug("Requesting authentication agent forwarding.");
1074 channel_request_start(id, "auth-agent-req@openssh.com", 0);
1075 packet_send();
1076 }
1077
Damien Miller1383bd82000-04-06 12:32:37 +10001078 len = buffer_len(&command);
1079 if (len > 0) {
1080 if (len > 900)
1081 len = 900;
Damien Miller832562e2001-01-30 09:30:01 +11001082 if (subsystem_flag) {
Damien Miller5a6b4fe2001-12-21 14:56:54 +11001083 debug("Sending subsystem: %.*s", len, (u_char *)buffer_ptr(&command));
Ben Lindstrom1e7d3062001-02-09 02:36:43 +00001084 channel_request_start(id, "subsystem", /*want reply*/ 1);
1085 /* register callback for reply */
Ben Lindstromf666fec2002-06-06 19:51:58 +00001086 /* XXX we assume that client_loop has already been called */
Ben Lindstrom1e7d3062001-02-09 02:36:43 +00001087 dispatch_set(SSH2_MSG_CHANNEL_FAILURE, &client_subsystem_reply);
1088 dispatch_set(SSH2_MSG_CHANNEL_SUCCESS, &client_subsystem_reply);
Damien Miller832562e2001-01-30 09:30:01 +11001089 } else {
Damien Miller5a6b4fe2001-12-21 14:56:54 +11001090 debug("Sending command: %.*s", len, (u_char *)buffer_ptr(&command));
Damien Miller832562e2001-01-30 09:30:01 +11001091 channel_request_start(id, "exec", 0);
1092 }
Ben Lindstrom4040fe12001-03-05 06:52:57 +00001093 packet_put_string(buffer_ptr(&command), buffer_len(&command));
Damien Miller1383bd82000-04-06 12:32:37 +10001094 packet_send();
1095 } else {
Damien Millera500cd62002-02-08 22:04:26 +11001096 channel_request_start(id, "shell", 0);
1097 packet_send();
Damien Miller1383bd82000-04-06 12:32:37 +10001098 }
Ben Lindstrom1e7d3062001-02-09 02:36:43 +00001099
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001100 packet_set_interactive(interactive);
Damien Miller1383bd82000-04-06 12:32:37 +10001101}
1102
Ben Lindstromf558cf62001-09-20 23:13:49 +00001103/* open new channel for a session */
Ben Lindstrombba81212001-06-25 05:01:22 +00001104static int
Ben Lindstromf558cf62001-09-20 23:13:49 +00001105ssh_session2_open(void)
Damien Miller1383bd82000-04-06 12:32:37 +10001106{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001107 Channel *c;
1108 int window, packetmax, in, out, err;
Damien Millerad833b32000-08-23 10:46:23 +10001109
Damien Millercaf6dd62000-08-29 11:33:50 +11001110 if (stdin_null_flag) {
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001111 in = open(_PATH_DEVNULL, O_RDONLY);
Damien Millercaf6dd62000-08-29 11:33:50 +11001112 } else {
1113 in = dup(STDIN_FILENO);
1114 }
1115 out = dup(STDOUT_FILENO);
1116 err = dup(STDERR_FILENO);
1117
1118 if (in < 0 || out < 0 || err < 0)
1119 fatal("dup() in/out/err failed");
1120
Damien Miller69b69aa2000-10-28 14:19:58 +11001121 /* enable nonblocking unless tty */
1122 if (!isatty(in))
1123 set_nonblock(in);
1124 if (!isatty(out))
1125 set_nonblock(out);
1126 if (!isatty(err))
1127 set_nonblock(err);
1128
Damien Millere4340be2000-09-16 13:29:08 +11001129 window = CHAN_SES_WINDOW_DEFAULT;
1130 packetmax = CHAN_SES_PACKET_DEFAULT;
Damien Miller19a59452002-02-19 15:20:57 +11001131 if (tty_flag) {
1132 window >>= 1;
1133 packetmax >>= 1;
Damien Miller1383bd82000-04-06 12:32:37 +10001134 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001135 c = channel_new(
Damien Miller1383bd82000-04-06 12:32:37 +10001136 "session", SSH_CHANNEL_OPENING, in, out, err,
Damien Millere4340be2000-09-16 13:29:08 +11001137 window, packetmax, CHAN_EXTENDED_WRITE,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001138 "client-session", /*nonblock*/0);
Damien Miller1383bd82000-04-06 12:32:37 +10001139
Ben Lindstromf558cf62001-09-20 23:13:49 +00001140 debug3("ssh_session2_open: channel_new: %d", c->self);
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001141
Ben Lindstrom5ec26452001-06-09 00:18:51 +00001142 channel_send_open(c->self);
Ben Lindstromf558cf62001-09-20 23:13:49 +00001143 if (!no_shell_flag)
Damien Miller67f0bc02002-02-05 12:23:08 +11001144 channel_register_confirm(c->self, ssh_session2_setup);
Damien Miller1383bd82000-04-06 12:32:37 +10001145
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001146 return c->self;
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001147}
1148
Ben Lindstrombba81212001-06-25 05:01:22 +00001149static int
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001150ssh_session2(void)
1151{
Ben Lindstromf558cf62001-09-20 23:13:49 +00001152 int id = -1;
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001153
1154 /* XXX should be pre-session */
1155 ssh_init_forwarding();
1156
Ben Lindstromf558cf62001-09-20 23:13:49 +00001157 if (!no_shell_flag || (datafellows & SSH_BUG_DUMMYCHAN))
1158 id = ssh_session2_open();
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001159
1160 /* If requested, let ssh continue in the background. */
1161 if (fork_after_authentication_flag)
1162 if (daemon(1, 1) < 0)
1163 fatal("daemon() failed: %.200s", strerror(errno));
1164
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +00001165 return client_loop(tty_flag, tty_flag ?
1166 options.escape_char : SSH_ESCAPECHAR_NONE, id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001167}
Damien Miller0bc1bd82000-11-13 22:57:25 +11001168
Ben Lindstrombba81212001-06-25 05:01:22 +00001169static void
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001170load_public_identity_files(void)
1171{
1172 char *filename;
Ben Lindstrom711b04a2001-08-06 21:12:42 +00001173 int i = 0;
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001174 Key *public;
Ben Lindstrom711b04a2001-08-06 21:12:42 +00001175#ifdef SMARTCARD
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001176 Key **keys;
1177
Ben Lindstromf7db3bb2001-08-06 21:35:51 +00001178 if (options.smartcard_device != NULL &&
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001179 options.num_identity_files < SSH_MAX_IDENTITY_FILES &&
1180 (keys = sc_get_keys(options.smartcard_device, NULL)) != NULL ) {
1181 int count = 0;
1182 for (i = 0; keys[i] != NULL; i++) {
1183 count++;
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001184 memmove(&options.identity_files[1], &options.identity_files[0],
1185 sizeof(char *) * (SSH_MAX_IDENTITY_FILES - 1));
1186 memmove(&options.identity_keys[1], &options.identity_keys[0],
1187 sizeof(Key *) * (SSH_MAX_IDENTITY_FILES - 1));
1188 options.num_identity_files++;
1189 options.identity_keys[0] = keys[i];
Damien Miller56a0bb02003-06-18 20:28:40 +10001190 options.identity_files[0] = sc_get_key_label(keys[i]);
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001191 }
Ben Lindstrom4f054602002-03-26 03:23:00 +00001192 if (options.num_identity_files > SSH_MAX_IDENTITY_FILES)
1193 options.num_identity_files = SSH_MAX_IDENTITY_FILES;
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001194 i = count;
1195 xfree(keys);
Ben Lindstrom711b04a2001-08-06 21:12:42 +00001196 }
Ben Lindstromffce1472001-08-06 21:57:31 +00001197#endif /* SMARTCARD */
Ben Lindstrom711b04a2001-08-06 21:12:42 +00001198 for (; i < options.num_identity_files; i++) {
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001199 filename = tilde_expand_filename(options.identity_files[i],
1200 original_real_uid);
Ben Lindstromd0fca422001-03-26 13:44:06 +00001201 public = key_load_public(filename, NULL);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001202 debug("identity file %s type %d", filename,
1203 public ? public->type : -1);
1204 xfree(options.identity_files[i]);
1205 options.identity_files[i] = filename;
1206 options.identity_keys[i] = public;
1207 }
1208}