blob: dcbf68d999b814b561a4eb66ad4e830ec006a5f6 [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"
Damien Miller50b9a602002-09-04 16:50:06 +100043RCSID("$OpenBSD: ssh.c,v 1.184 2002/08/29 19:49:42 stevesk 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. */
Damien Miller7d80e342000-01-19 14:36:49 +110084#ifdef IPV4_DEFAULT
85int IPv4or6 = AF_INET;
86#else
Damien Miller34132e52000-01-14 15:45:46 +110087int IPv4or6 = AF_UNSPEC;
Damien Miller7d80e342000-01-19 14:36:49 +110088#endif
Damien Miller34132e52000-01-14 15:45:46 +110089
Damien Miller95def091999-11-25 00:26:21 +110090/* Flag indicating whether debug mode is on. This can be set on the command line. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100091int debug_flag = 0;
92
Damien Miller78928792000-04-12 20:17:38 +100093/* Flag indicating whether a tty should be allocated */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100094int tty_flag = 0;
Ben Lindstrom4dccfa52000-12-28 16:40:05 +000095int no_tty_flag = 0;
96int force_tty_flag = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100097
Damien Miller1383bd82000-04-06 12:32:37 +100098/* don't exec a shell */
99int no_shell_flag = 0;
Damien Miller1383bd82000-04-06 12:32:37 +1000100
Damien Miller5428f641999-11-25 11:54:57 +1100101/*
102 * Flag indicating that nothing should be read from stdin. This can be set
103 * on the command line.
104 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000105int stdin_null_flag = 0;
106
Damien Miller5428f641999-11-25 11:54:57 +1100107/*
108 * Flag indicating that ssh should fork after authentication. This is useful
Ben Lindstromf666fec2002-06-06 19:51:58 +0000109 * so that the passphrase can be entered manually, and then ssh goes to the
Damien Miller5428f641999-11-25 11:54:57 +1100110 * background.
111 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000112int fork_after_authentication_flag = 0;
113
Damien Miller5428f641999-11-25 11:54:57 +1100114/*
115 * General data structure for command line options and options configurable
116 * in configuration files. See readconf.h.
117 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000118Options options;
119
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000120/* optional user configfile */
121char *config = NULL;
122
Damien Miller5428f641999-11-25 11:54:57 +1100123/*
124 * Name of the host we are connecting to. This is the name given on the
125 * command line, or the HostName specified for the user-supplied name in a
126 * configuration file.
127 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000128char *host;
129
130/* socket address the host resolves to */
Damien Miller34132e52000-01-14 15:45:46 +1100131struct sockaddr_storage hostaddr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000132
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000133/* Private host keys. */
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000134Sensitive sensitive_data;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000135
136/* Original real UID. */
137uid_t original_real_uid;
Ben Lindstromf9c48842002-06-11 16:37:51 +0000138uid_t original_effective_uid;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000139
Damien Miller1383bd82000-04-06 12:32:37 +1000140/* command to be executed */
141Buffer command;
142
Damien Miller832562e2001-01-30 09:30:01 +1100143/* Should we execute a command or invoke a subsystem? */
144int subsystem_flag = 0;
145
Damien Miller2797f7f2002-04-23 21:09:44 +1000146/* # of replies received for global requests */
147static int client_global_request_id = 0;
148
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000149/* Prints a help message to the user. This function never returns. */
150
Ben Lindstrombba81212001-06-25 05:01:22 +0000151static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000152usage(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000153{
Kevin Stevesec84dc12000-12-13 17:45:15 +0000154 fprintf(stderr, "Usage: %s [options] host [command]\n", __progname);
Damien Miller95def091999-11-25 00:26:21 +1100155 fprintf(stderr, "Options:\n");
156 fprintf(stderr, " -l user Log in using this user name.\n");
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000157 fprintf(stderr, " -n Redirect input from " _PATH_DEVNULL ".\n");
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000158 fprintf(stderr, " -F config Config file (default: ~/%s).\n",
159 _PATH_SSH_USER_CONFFILE);
Damien Millerb1715dc2000-05-30 13:44:51 +1000160 fprintf(stderr, " -A Enable authentication agent forwarding.\n");
Ben Lindstrom3b89c5e2001-06-05 20:44:16 +0000161 fprintf(stderr, " -a Disable authentication agent forwarding (default).\n");
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000162#ifdef AFS
Damien Miller95def091999-11-25 00:26:21 +1100163 fprintf(stderr, " -k Disable Kerberos ticket and AFS token forwarding.\n");
164#endif /* AFS */
Kevin Stevesef4eea92001-02-05 12:42:17 +0000165 fprintf(stderr, " -X Enable X11 connection forwarding.\n");
Ben Lindstrom3b89c5e2001-06-05 20:44:16 +0000166 fprintf(stderr, " -x Disable X11 connection forwarding (default).\n");
Ben Lindstrom0ab2a012001-03-05 06:45:21 +0000167 fprintf(stderr, " -i file Identity for public key authentication "
168 "(default: ~/.ssh/identity)\n");
Ben Lindstrom61eb9562001-08-06 21:53:42 +0000169#ifdef SMARTCARD
170 fprintf(stderr, " -I reader Set smartcard reader.\n");
Ben Lindstrombcc18082001-08-06 21:59:25 +0000171#endif
Damien Miller95def091999-11-25 00:26:21 +1100172 fprintf(stderr, " -t Tty; allocate a tty even if command is given.\n");
Damien Miller1383bd82000-04-06 12:32:37 +1000173 fprintf(stderr, " -T Do not allocate a tty.\n");
Damien Miller95def091999-11-25 00:26:21 +1100174 fprintf(stderr, " -v Verbose; display verbose debugging messages.\n");
Damien Millere4340be2000-09-16 13:29:08 +1100175 fprintf(stderr, " Multiple -v increases verbosity.\n");
Damien Miller95def091999-11-25 00:26:21 +1100176 fprintf(stderr, " -V Display version number only.\n");
Damien Miller95def091999-11-25 00:26:21 +1100177 fprintf(stderr, " -q Quiet; don't display any warning messages.\n");
178 fprintf(stderr, " -f Fork into background after authentication.\n");
179 fprintf(stderr, " -e char Set escape character; ``none'' = disable (default: ~).\n");
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000180
Ben Lindstrom3b89c5e2001-06-05 20:44:16 +0000181 fprintf(stderr, " -c cipher Select encryption algorithm\n");
Ben Lindstrom3d73a342001-03-05 07:39:01 +0000182 fprintf(stderr, " -m macs Specify MAC algorithms for protocol version 2.\n");
Damien Miller95def091999-11-25 00:26:21 +1100183 fprintf(stderr, " -p port Connect to this port. Server must be on the same port.\n");
184 fprintf(stderr, " -L listen-port:host:port Forward local port to remote address\n");
185 fprintf(stderr, " -R listen-port:host:port Forward remote port to local address\n");
Kevin Stevesec84dc12000-12-13 17:45:15 +0000186 fprintf(stderr, " These cause %s to listen for connections on a port, and\n", __progname);
Damien Miller95def091999-11-25 00:26:21 +1100187 fprintf(stderr, " forward them to the other side by connecting to host:port.\n");
Ben Lindstrom19ceb172001-09-12 17:54:24 +0000188 fprintf(stderr, " -D port Enable dynamic application-level port forwarding.\n");
Damien Miller95def091999-11-25 00:26:21 +1100189 fprintf(stderr, " -C Enable compression.\n");
Damien Miller1383bd82000-04-06 12:32:37 +1000190 fprintf(stderr, " -N Do not execute a shell or command.\n");
Damien Miller95def091999-11-25 00:26:21 +1100191 fprintf(stderr, " -g Allow remote hosts to connect to forwarded ports.\n");
Ben Lindstrom1e7d3062001-02-09 02:36:43 +0000192 fprintf(stderr, " -1 Force protocol version 1.\n");
193 fprintf(stderr, " -2 Force protocol version 2.\n");
Damien Miller34132e52000-01-14 15:45:46 +1100194 fprintf(stderr, " -4 Use IPv4 only.\n");
195 fprintf(stderr, " -6 Use IPv6 only.\n");
Damien Miller95def091999-11-25 00:26:21 +1100196 fprintf(stderr, " -o 'option' Process the option as if it was read from a configuration file.\n");
Damien Miller832562e2001-01-30 09:30:01 +1100197 fprintf(stderr, " -s Invoke command (mandatory) as SSH2 subsystem.\n");
Ben Lindstrom3b89c5e2001-06-05 20:44:16 +0000198 fprintf(stderr, " -b addr Local IP address.\n");
Damien Miller95def091999-11-25 00:26:21 +1100199 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000200}
201
Ben Lindstrombba81212001-06-25 05:01:22 +0000202static int ssh_session(void);
203static int ssh_session2(void);
204static void load_public_identity_files(void);
Damien Miller1383bd82000-04-06 12:32:37 +1000205
Damien Miller95def091999-11-25 00:26:21 +1100206/*
207 * Main program for the ssh client.
208 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000209int
210main(int ac, char **av)
211{
Ben Lindstrom24157572002-06-12 16:09:39 +0000212 int i, opt, exit_status;
Damien Milleraae6c611999-12-06 11:47:28 +1100213 u_short fwd_port, fwd_host_port;
Ben Lindstrom1a174712001-09-12 17:56:15 +0000214 char sfwd_port[6], sfwd_host_port[6];
Damien Millerf4614452001-07-14 12:18:10 +1000215 char *p, *cp, buf[256];
Damien Miller95def091999-11-25 00:26:21 +1100216 struct stat st;
Ben Lindstrom086cf212001-03-05 05:56:40 +0000217 struct passwd *pw;
Damien Miller1383bd82000-04-06 12:32:37 +1000218 int dummy;
Ben Lindstrom5ccf63a2001-09-24 20:00:10 +0000219 extern int optind, optreset;
Damien Miller4f8e6692001-07-14 13:22:53 +1000220 extern char *optarg;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000221
Ben Lindstrom49a79c02000-11-17 03:47:20 +0000222 __progname = get_progname(av[0]);
Damien Millerf9b625c2000-07-09 22:42:32 +1000223 init_rng();
224
Damien Miller5428f641999-11-25 11:54:57 +1100225 /*
226 * Save the original real uid. It will be needed later (uid-swapping
227 * may clobber the real uid).
228 */
Damien Miller95def091999-11-25 00:26:21 +1100229 original_real_uid = getuid();
230 original_effective_uid = geteuid();
Damien Miller50b9a602002-09-04 16:50:06 +1000231
232 /*
233 * Use uid-swapping to give up root privileges for the duration of
234 * option processing. We will re-instantiate the rights when we are
235 * ready to create the privileged port, and will permanently drop
236 * them when the port has been created (actually, when the connection
237 * has been made, as we may need to create the port several times).
238 */
239 PRIV_END;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000240
Damien Miller05dd7952000-10-01 00:42:48 +1100241#ifdef HAVE_SETRLIMIT
Damien Miller95def091999-11-25 00:26:21 +1100242 /* If we are installed setuid root be careful to not drop core. */
243 if (original_real_uid != original_effective_uid) {
244 struct rlimit rlim;
245 rlim.rlim_cur = rlim.rlim_max = 0;
246 if (setrlimit(RLIMIT_CORE, &rlim) < 0)
247 fatal("setrlimit failed: %.100s", strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000248 }
Damien Millerbac2d8a2000-09-05 16:13:06 +1100249#endif
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000250 /* Get user data. */
251 pw = getpwuid(original_real_uid);
252 if (!pw) {
253 log("You don't exist, go away!");
254 exit(1);
255 }
256 /* Take a copy of the returned structure. */
257 pw = pwcopy(pw);
258
Damien Miller5428f641999-11-25 11:54:57 +1100259 /*
Damien Miller5428f641999-11-25 11:54:57 +1100260 * Set our umask to something reasonable, as some files are created
261 * with the default umask. This will make them world-readable but
262 * writable only by the owner, which is ok for all files for which we
263 * don't set the modes explicitly.
264 */
Damien Miller95def091999-11-25 00:26:21 +1100265 umask(022);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000266
Damien Miller95def091999-11-25 00:26:21 +1100267 /* Initialize option structure to indicate that no values have been set. */
268 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 Millerf4614452001-07-14 12:18:10 +1000273again:
274 while ((opt = getopt(ac, av,
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000275 "1246ab:c:e:fgi:kl:m:no:p:qstvxACD:F:I:L:NPR:TVX")) != -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':
284 IPv4or6 = AF_INET;
285 break;
Damien Miller34132e52000-01-14 15:45:46 +1100286 case '6':
287 IPv4or6 = AF_INET6;
288 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;
Damien Miller95def091999-11-25 00:26:21 +1100302 case 'g':
303 options.gateway_ports = 1;
304 break;
Damien Miller147bba32002-09-04 16:46:06 +1000305 case 'P': /* deprecated */
Damien Miller95def091999-11-25 00:26:21 +1100306 options.use_privileged_port = 0;
307 break;
Damien Miller95def091999-11-25 00:26:21 +1100308 case 'a':
309 options.forward_agent = 0;
310 break;
Damien Millerb1715dc2000-05-30 13:44:51 +1000311 case 'A':
312 options.forward_agent = 1;
313 break;
Damien Miller95def091999-11-25 00:26:21 +1100314#ifdef AFS
315 case 'k':
316 options.kerberos_tgt_passing = 0;
317 options.afs_token_passing = 0;
318 break;
319#endif
320 case 'i':
321 if (stat(optarg, &st) < 0) {
Damien Millerf4614452001-07-14 12:18:10 +1000322 fprintf(stderr, "Warning: Identity file %s "
323 "does not exist.\n", optarg);
Damien Miller95def091999-11-25 00:26:21 +1100324 break;
325 }
Damien Millerf4614452001-07-14 12:18:10 +1000326 if (options.num_identity_files >=
327 SSH_MAX_IDENTITY_FILES)
328 fatal("Too many identity files specified "
329 "(max %d)", SSH_MAX_IDENTITY_FILES);
330 options.identity_files[options.num_identity_files++] =
331 xstrdup(optarg);
Damien Miller95def091999-11-25 00:26:21 +1100332 break;
Ben Lindstromc5b68002001-07-04 04:52:03 +0000333 case 'I':
334#ifdef SMARTCARD
Ben Lindstromf7db3bb2001-08-06 21:35:51 +0000335 options.smartcard_device = xstrdup(optarg);
Ben Lindstrombcc18082001-08-06 21:59:25 +0000336#else
Ben Lindstromc5b68002001-07-04 04:52:03 +0000337 fprintf(stderr, "no support for smartcards.\n");
Ben Lindstrombcc18082001-08-06 21:59:25 +0000338#endif
Ben Lindstromc5b68002001-07-04 04:52:03 +0000339 break;
Damien Miller95def091999-11-25 00:26:21 +1100340 case 't':
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000341 if (tty_flag)
342 force_tty_flag = 1;
Damien Miller95def091999-11-25 00:26:21 +1100343 tty_flag = 1;
344 break;
Damien Miller95def091999-11-25 00:26:21 +1100345 case 'v':
Damien Millere4340be2000-09-16 13:29:08 +1100346 if (0 == debug_flag) {
347 debug_flag = 1;
348 options.log_level = SYSLOG_LEVEL_DEBUG1;
349 } else if (options.log_level < SYSLOG_LEVEL_DEBUG3) {
350 options.log_level++;
351 break;
Damien Millerf4614452001-07-14 12:18:10 +1000352 } else
Ben Lindstrom6df8ef42001-03-05 07:47:23 +0000353 fatal("Too high debugging level.");
Damien Millere4340be2000-09-16 13:29:08 +1100354 /* fallthrough */
Damien Miller95def091999-11-25 00:26:21 +1100355 case 'V':
Damien Miller225736c2001-02-19 21:51:08 +1100356 fprintf(stderr,
357 "%s, SSH protocols %d.%d/%d.%d, OpenSSL 0x%8.8lx\n",
Damien Miller78928792000-04-12 20:17:38 +1000358 SSH_VERSION,
359 PROTOCOL_MAJOR_1, PROTOCOL_MINOR_1,
Damien Miller225736c2001-02-19 21:51:08 +1100360 PROTOCOL_MAJOR_2, PROTOCOL_MINOR_2,
361 SSLeay());
Damien Miller95def091999-11-25 00:26:21 +1100362 if (opt == 'V')
363 exit(0);
Damien Miller95def091999-11-25 00:26:21 +1100364 break;
Damien Miller95def091999-11-25 00:26:21 +1100365 case 'q':
366 options.log_level = SYSLOG_LEVEL_QUIET;
367 break;
Damien Miller95def091999-11-25 00:26:21 +1100368 case 'e':
369 if (optarg[0] == '^' && optarg[2] == 0 &&
Damien Millerf4614452001-07-14 12:18:10 +1000370 (u_char) optarg[1] >= 64 &&
371 (u_char) optarg[1] < 128)
Ben Lindstrom46c16222000-12-22 01:43:59 +0000372 options.escape_char = (u_char) optarg[1] & 31;
Damien Miller95def091999-11-25 00:26:21 +1100373 else if (strlen(optarg) == 1)
Ben Lindstrom46c16222000-12-22 01:43:59 +0000374 options.escape_char = (u_char) optarg[0];
Damien Miller95def091999-11-25 00:26:21 +1100375 else if (strcmp(optarg, "none") == 0)
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +0000376 options.escape_char = SSH_ESCAPECHAR_NONE;
Damien Miller95def091999-11-25 00:26:21 +1100377 else {
Damien Millerf4614452001-07-14 12:18:10 +1000378 fprintf(stderr, "Bad escape character '%s'.\n",
379 optarg);
Damien Miller95def091999-11-25 00:26:21 +1100380 exit(1);
381 }
382 break;
Damien Miller95def091999-11-25 00:26:21 +1100383 case 'c':
Damien Millereba71ba2000-04-29 23:57:08 +1000384 if (ciphers_valid(optarg)) {
385 /* SSH2 only */
386 options.ciphers = xstrdup(optarg);
Damien Miller30c3d422000-05-09 11:02:59 +1000387 options.cipher = SSH_CIPHER_ILLEGAL;
Damien Millereba71ba2000-04-29 23:57:08 +1000388 } else {
389 /* SSH1 only */
Damien Millere39cacc2000-11-29 12:18:44 +1100390 options.cipher = cipher_number(optarg);
391 if (options.cipher == -1) {
Damien Millerf4614452001-07-14 12:18:10 +1000392 fprintf(stderr,
393 "Unknown cipher type '%s'\n",
394 optarg);
Damien Millereba71ba2000-04-29 23:57:08 +1000395 exit(1);
396 }
Damien Millerf4614452001-07-14 12:18:10 +1000397 if (options.cipher == SSH_CIPHER_3DES)
Damien Millere39cacc2000-11-29 12:18:44 +1100398 options.ciphers = "3des-cbc";
Damien Millerf4614452001-07-14 12:18:10 +1000399 else if (options.cipher == SSH_CIPHER_BLOWFISH)
Damien Millere39cacc2000-11-29 12:18:44 +1100400 options.ciphers = "blowfish-cbc";
Damien Millerf4614452001-07-14 12:18:10 +1000401 else
Damien Millere39cacc2000-11-29 12:18:44 +1100402 options.ciphers = (char *)-1;
Damien Miller95def091999-11-25 00:26:21 +1100403 }
404 break;
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000405 case 'm':
406 if (mac_valid(optarg))
407 options.macs = xstrdup(optarg);
408 else {
Damien Millerf4614452001-07-14 12:18:10 +1000409 fprintf(stderr, "Unknown mac type '%s'\n",
410 optarg);
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000411 exit(1);
412 }
413 break;
Damien Miller95def091999-11-25 00:26:21 +1100414 case 'p':
Ben Lindstrom19066a12001-04-12 23:39:26 +0000415 options.port = a2port(optarg);
416 if (options.port == 0) {
Ben Lindstrom146edb92001-04-11 23:06:28 +0000417 fprintf(stderr, "Bad port '%s'\n", optarg);
418 exit(1);
419 }
Damien Miller95def091999-11-25 00:26:21 +1100420 break;
Damien Miller95def091999-11-25 00:26:21 +1100421 case 'l':
422 options.user = optarg;
423 break;
Ben Lindstrom1a174712001-09-12 17:56:15 +0000424
Damien Miller95def091999-11-25 00:26:21 +1100425 case 'L':
Ben Lindstrom1a174712001-09-12 17:56:15 +0000426 case 'R':
427 if (sscanf(optarg, "%5[0-9]:%255[^:]:%5[0-9]",
428 sfwd_port, buf, sfwd_host_port) != 3 &&
429 sscanf(optarg, "%5[0-9]/%255[^/]/%5[0-9]",
430 sfwd_port, buf, sfwd_host_port) != 3) {
Damien Millerf4614452001-07-14 12:18:10 +1000431 fprintf(stderr,
Ben Lindstrom1a174712001-09-12 17:56:15 +0000432 "Bad forwarding specification '%s'\n",
Damien Millerf4614452001-07-14 12:18:10 +1000433 optarg);
Damien Miller95def091999-11-25 00:26:21 +1100434 usage();
435 /* NOTREACHED */
436 }
Ben Lindstrom1a174712001-09-12 17:56:15 +0000437 if ((fwd_port = a2port(sfwd_port)) == 0 ||
Ben Lindstrom6328ab32002-03-22 02:54:23 +0000438 (fwd_host_port = a2port(sfwd_host_port)) == 0) {
Ben Lindstrom1a174712001-09-12 17:56:15 +0000439 fprintf(stderr,
440 "Bad forwarding port(s) '%s'\n", optarg);
441 exit(1);
442 }
443 if (opt == 'L')
444 add_local_forward(&options, fwd_port, buf,
445 fwd_host_port);
446 else if (opt == 'R')
447 add_remote_forward(&options, fwd_port, buf,
Damien Miller9f0f5c62001-12-21 14:45:46 +1100448 fwd_host_port);
Damien Miller95def091999-11-25 00:26:21 +1100449 break;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000450
451 case 'D':
Ben Lindstrom19066a12001-04-12 23:39:26 +0000452 fwd_port = a2port(optarg);
453 if (fwd_port == 0) {
Damien Millerf4614452001-07-14 12:18:10 +1000454 fprintf(stderr, "Bad dynamic port '%s'\n",
455 optarg);
Ben Lindstrom146edb92001-04-11 23:06:28 +0000456 exit(1);
457 }
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000458 add_local_forward(&options, fwd_port, "socks4", 0);
459 break;
460
Damien Miller95def091999-11-25 00:26:21 +1100461 case 'C':
462 options.compression = 1;
463 break;
Damien Miller1383bd82000-04-06 12:32:37 +1000464 case 'N':
465 no_shell_flag = 1;
466 no_tty_flag = 1;
467 break;
Damien Miller1383bd82000-04-06 12:32:37 +1000468 case 'T':
469 no_tty_flag = 1;
470 break;
Damien Miller95def091999-11-25 00:26:21 +1100471 case 'o':
472 dummy = 1;
Damien Millerf4614452001-07-14 12:18:10 +1000473 if (process_config_line(&options, host ? host : "",
474 optarg, "command-line", 0, &dummy) != 0)
Damien Miller95def091999-11-25 00:26:21 +1100475 exit(1);
476 break;
Damien Miller832562e2001-01-30 09:30:01 +1100477 case 's':
478 subsystem_flag = 1;
479 break;
Ben Lindstrome0f88042001-04-30 13:06:24 +0000480 case 'b':
481 options.bind_address = optarg;
482 break;
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000483 case 'F':
484 config = optarg;
485 break;
Damien Miller95def091999-11-25 00:26:21 +1100486 default:
487 usage();
488 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000489 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000490
Damien Millerf4614452001-07-14 12:18:10 +1000491 ac -= optind;
492 av += optind;
493
494 if (ac > 0 && !host && **av != '-') {
495 if (strchr(*av, '@')) {
496 p = xstrdup(*av);
497 cp = strchr(p, '@');
498 if (cp == NULL || cp == p)
499 usage();
500 options.user = p;
501 *cp = '\0';
502 host = ++cp;
503 } else
504 host = *av;
505 ac--, av++;
506 if (ac > 0) {
507 optind = 0;
508 optreset = 1;
509 goto again;
510 }
511 }
512
Damien Miller95def091999-11-25 00:26:21 +1100513 /* Check that we got a host name. */
514 if (!host)
515 usage();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000516
Damien Millercb5e44a2000-09-29 12:12:36 +1100517 SSLeay_add_all_algorithms();
Damien Miller0bc1bd82000-11-13 22:57:25 +1100518 ERR_load_crypto_strings();
Ben Lindstrom908afed2001-10-03 17:34:59 +0000519 channel_set_af(IPv4or6);
Damien Millercb5e44a2000-09-29 12:12:36 +1100520
Damien Miller95def091999-11-25 00:26:21 +1100521 /* Initialize the command to execute on remote host. */
522 buffer_init(&command);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000523
Damien Miller5428f641999-11-25 11:54:57 +1100524 /*
525 * Save the command to execute on the remote host in a buffer. There
526 * is no limit on the length of the command, except by the maximum
527 * packet size. Also sets the tty flag if there is no command.
528 */
Damien Millerf4614452001-07-14 12:18:10 +1000529 if (!ac) {
Damien Miller95def091999-11-25 00:26:21 +1100530 /* No command specified - execute shell on a tty. */
531 tty_flag = 1;
Damien Miller832562e2001-01-30 09:30:01 +1100532 if (subsystem_flag) {
Damien Millerf4614452001-07-14 12:18:10 +1000533 fprintf(stderr,
534 "You must specify a subsystem to invoke.\n");
Damien Miller832562e2001-01-30 09:30:01 +1100535 usage();
536 }
Damien Miller95def091999-11-25 00:26:21 +1100537 } else {
Damien Millerf4614452001-07-14 12:18:10 +1000538 /* A command has been specified. Store it into the buffer. */
539 for (i = 0; i < ac; i++) {
540 if (i)
Damien Miller95def091999-11-25 00:26:21 +1100541 buffer_append(&command, " ", 1);
542 buffer_append(&command, av[i], strlen(av[i]));
543 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000544 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000545
Damien Miller95def091999-11-25 00:26:21 +1100546 /* Cannot fork to background if no command. */
Damien Millercaf6dd62000-08-29 11:33:50 +1100547 if (fork_after_authentication_flag && buffer_len(&command) == 0 && !no_shell_flag)
Damien Miller95def091999-11-25 00:26:21 +1100548 fatal("Cannot fork into background without a command to execute.");
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000549
Damien Miller95def091999-11-25 00:26:21 +1100550 /* Allocate a tty by default if no command specified. */
551 if (buffer_len(&command) == 0)
552 tty_flag = 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000553
Ben Lindstroma962c2f2002-07-04 00:14:17 +0000554 /* Force no tty */
Ben Lindstromc72745a2000-12-02 19:03:54 +0000555 if (no_tty_flag)
556 tty_flag = 0;
Damien Miller95def091999-11-25 00:26:21 +1100557 /* Do not allocate a tty if stdin is not a tty. */
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000558 if (!isatty(fileno(stdin)) && !force_tty_flag) {
Damien Miller95def091999-11-25 00:26:21 +1100559 if (tty_flag)
Ben Lindstrom6df8ef42001-03-05 07:47:23 +0000560 log("Pseudo-terminal will not be allocated because stdin is not a terminal.");
Damien Miller95def091999-11-25 00:26:21 +1100561 tty_flag = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000562 }
Damien Miller1383bd82000-04-06 12:32:37 +1000563
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000564 /*
565 * Initialize "log" output. Since we are the client all output
566 * actually goes to stderr.
567 */
Ben Lindstrom2b646522001-04-12 16:16:57 +0000568 log_init(av[0], options.log_level == -1 ? SYSLOG_LEVEL_INFO : options.log_level,
569 SYSLOG_FACILITY_USER, 1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000570
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000571 /*
572 * Read per-user configuration file. Ignore the system wide config
573 * file if the user specifies a config file on the command line.
574 */
575 if (config != NULL) {
Ben Lindstromedc0cf22001-09-12 18:32:20 +0000576 if (!read_config_file(config, host, &options))
577 fatal("Can't open user config file %.100s: "
578 "%.100s", config, strerror(errno));
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000579 } else {
580 snprintf(buf, sizeof buf, "%.100s/%.100s", pw->pw_dir,
581 _PATH_SSH_USER_CONFFILE);
Ben Lindstromedc0cf22001-09-12 18:32:20 +0000582 (void)read_config_file(buf, host, &options);
Ben Lindstrom83f07d12001-10-03 17:22:29 +0000583
584 /* Read systemwide configuration file after use config. */
585 (void)read_config_file(_PATH_HOST_CONFIG_FILE, host, &options);
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000586 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000587
Damien Miller95def091999-11-25 00:26:21 +1100588 /* Fill configuration defaults. */
589 fill_default_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000590
Damien Miller95def091999-11-25 00:26:21 +1100591 /* reinit */
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000592 log_init(av[0], options.log_level, SYSLOG_FACILITY_USER, 1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000593
Damien Miller60bc5172001-03-19 09:38:15 +1100594 seed_rng();
595
Damien Miller95def091999-11-25 00:26:21 +1100596 if (options.user == NULL)
597 options.user = xstrdup(pw->pw_name);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000598
Damien Miller95def091999-11-25 00:26:21 +1100599 if (options.hostname != NULL)
600 host = options.hostname;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000601
Damien Miller95def091999-11-25 00:26:21 +1100602 /* Disable rhosts authentication if not running as root. */
Damien Millerbac2d8a2000-09-05 16:13:06 +1100603#ifdef HAVE_CYGWIN
604 /* Ignore uid if running under Windows */
605 if (!options.use_privileged_port) {
606#else
Damien Miller95def091999-11-25 00:26:21 +1100607 if (original_effective_uid != 0 || !options.use_privileged_port) {
Damien Millerbac2d8a2000-09-05 16:13:06 +1100608#endif
Kevin Stevesfcec7f82000-12-15 19:55:48 +0000609 debug("Rhosts Authentication disabled, "
610 "originating port will not be trusted.");
Damien Miller95def091999-11-25 00:26:21 +1100611 options.rhosts_authentication = 0;
Damien Miller95def091999-11-25 00:26:21 +1100612 }
Kevin Stevesfcec7f82000-12-15 19:55:48 +0000613 /* Open a connection to the remote host. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000614
Ben Lindstrom24157572002-06-12 16:09:39 +0000615 if (ssh_connect(host, &hostaddr, options.port, IPv4or6,
Kevin Stevesfcec7f82000-12-15 19:55:48 +0000616 options.connection_attempts,
Ben Lindstrom1aa64272002-06-11 20:28:05 +0000617#ifdef HAVE_CYGWIN
618 options.use_privileged_port,
619#else
Ben Lindstromf9c48842002-06-11 16:37:51 +0000620 original_effective_uid == 0 && options.use_privileged_port,
Ben Lindstrom1aa64272002-06-11 20:28:05 +0000621#endif
Ben Lindstromda394ca2002-06-12 16:11:12 +0000622 options.proxy_command) != 0)
Ben Lindstrom24157572002-06-12 16:09:39 +0000623 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000624
Damien Miller5428f641999-11-25 11:54:57 +1100625 /*
626 * If we successfully made the connection, load the host private key
627 * in case we will need it later for combined rsa-rhosts
628 * authentication. This must be done before releasing extra
629 * privileges, because the file is only readable by root.
Ben Lindstrom9e5bb572002-06-06 19:58:27 +0000630 * If we cannot access the private keys, load the public keys
631 * instead and try to execute the ssh-keysign helper instead.
Damien Miller5428f641999-11-25 11:54:57 +1100632 */
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000633 sensitive_data.nkeys = 0;
634 sensitive_data.keys = NULL;
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000635 sensitive_data.external_keysign = 0;
Ben Lindstrom24157572002-06-12 16:09:39 +0000636 if (options.rhosts_rsa_authentication ||
637 options.hostbased_authentication) {
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000638 sensitive_data.nkeys = 3;
Ben Lindstroma962c2f2002-07-04 00:14:17 +0000639 sensitive_data.keys = xmalloc(sensitive_data.nkeys *
640 sizeof(Key));
Ben Lindstromf9c48842002-06-11 16:37:51 +0000641
642 PRIV_START;
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000643 sensitive_data.keys[0] = key_load_private_type(KEY_RSA1,
Ben Lindstromd0fca422001-03-26 13:44:06 +0000644 _PATH_HOST_KEY_FILE, "", NULL);
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000645 sensitive_data.keys[1] = key_load_private_type(KEY_DSA,
646 _PATH_HOST_DSA_KEY_FILE, "", NULL);
647 sensitive_data.keys[2] = key_load_private_type(KEY_RSA,
648 _PATH_HOST_RSA_KEY_FILE, "", NULL);
Ben Lindstromf9c48842002-06-11 16:37:51 +0000649 PRIV_END;
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000650
Ben Lindstrom5d35a2f2002-07-04 00:19:40 +0000651 if (options.hostbased_authentication == 1 &&
652 sensitive_data.keys[0] == NULL &&
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000653 sensitive_data.keys[1] == NULL &&
654 sensitive_data.keys[2] == NULL) {
655 sensitive_data.keys[1] = key_load_public(
656 _PATH_HOST_DSA_KEY_FILE, NULL);
657 sensitive_data.keys[2] = key_load_public(
658 _PATH_HOST_RSA_KEY_FILE, NULL);
659 sensitive_data.external_keysign = 1;
660 }
Damien Miller95def091999-11-25 00:26:21 +1100661 }
Damien Miller5428f641999-11-25 11:54:57 +1100662 /*
663 * Get rid of any extra privileges that we may have. We will no
664 * longer need them. Also, extra privileges could make it very hard
665 * to read identity files and other non-world-readable files from the
666 * user's home directory if it happens to be on a NFS volume where
667 * root is mapped to nobody.
668 */
Ben Lindstromf9c48842002-06-11 16:37:51 +0000669 seteuid(original_real_uid);
670 setuid(original_real_uid);
Damien Miller95def091999-11-25 00:26:21 +1100671
Damien Miller5428f641999-11-25 11:54:57 +1100672 /*
673 * Now that we are back to our own permissions, create ~/.ssh
674 * directory if it doesn\'t already exist.
675 */
Ben Lindstrom930b14a2001-08-15 23:19:21 +0000676 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 +1100677 if (stat(buf, &st) < 0)
Damien Millerbe484b52000-07-15 14:14:16 +1000678 if (mkdir(buf, 0700) < 0)
Damien Miller95def091999-11-25 00:26:21 +1100679 error("Could not create directory '%.200s'.", buf);
680
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000681 /* load options.identity_files */
682 load_public_identity_files();
683
684 /* Expand ~ in known host file names. */
685 /* XXX mem-leaks: */
Damien Miller0bc1bd82000-11-13 22:57:25 +1100686 options.system_hostfile =
687 tilde_expand_filename(options.system_hostfile, original_real_uid);
688 options.user_hostfile =
689 tilde_expand_filename(options.user_hostfile, original_real_uid);
690 options.system_hostfile2 =
691 tilde_expand_filename(options.system_hostfile2, original_real_uid);
692 options.user_hostfile2 =
693 tilde_expand_filename(options.user_hostfile2, original_real_uid);
Damien Miller95def091999-11-25 00:26:21 +1100694
Damien Miller07cd5892001-11-12 10:52:03 +1100695 signal(SIGPIPE, SIG_IGN); /* ignore SIGPIPE early */
696
Damien Miller95def091999-11-25 00:26:21 +1100697 /* Log into the remote system. This never returns if the login fails. */
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000698 ssh_login(&sensitive_data, host, (struct sockaddr *)&hostaddr, pw);
Damien Miller95def091999-11-25 00:26:21 +1100699
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000700 /* We no longer need the private host keys. Clear them now. */
701 if (sensitive_data.nkeys != 0) {
702 for (i = 0; i < sensitive_data.nkeys; i++) {
703 if (sensitive_data.keys[i] != NULL) {
704 /* Destroys contents safely */
705 debug3("clear hostkey %d", i);
706 key_free(sensitive_data.keys[i]);
707 sensitive_data.keys[i] = NULL;
708 }
709 }
710 xfree(sensitive_data.keys);
711 }
Ben Lindstroma6c8a8d2001-08-06 21:42:00 +0000712 for (i = 0; i < options.num_identity_files; i++) {
713 if (options.identity_files[i]) {
714 xfree(options.identity_files[i]);
715 options.identity_files[i] = NULL;
716 }
717 if (options.identity_keys[i]) {
718 key_free(options.identity_keys[i]);
719 options.identity_keys[i] = NULL;
720 }
721 }
Damien Miller95def091999-11-25 00:26:21 +1100722
Damien Miller1383bd82000-04-06 12:32:37 +1000723 exit_status = compat20 ? ssh_session2() : ssh_session();
724 packet_close();
725 return exit_status;
726}
727
Ben Lindstrombba81212001-06-25 05:01:22 +0000728static void
Ben Lindstrom4a4bd712001-12-06 17:45:19 +0000729x11_get_proto(char **_proto, char **_data)
Damien Millerbd483e72000-04-30 10:00:53 +1000730{
731 char line[512];
Ben Lindstrom4a4bd712001-12-06 17:45:19 +0000732 static char proto[512], data[512];
Damien Millerbd483e72000-04-30 10:00:53 +1000733 FILE *f;
734 int got_data = 0, i;
Damien Miller35b13d62002-02-05 12:12:09 +1100735 char *display;
Ben Lindstromee8d52d2002-07-23 21:03:02 +0000736 struct stat st;
Damien Millerbd483e72000-04-30 10:00:53 +1000737
Ben Lindstrom4a4bd712001-12-06 17:45:19 +0000738 *_proto = proto;
739 *_data = data;
740 proto[0] = data[0] = '\0';
Ben Lindstromee8d52d2002-07-23 21:03:02 +0000741 if (!options.xauth_location ||
742 (stat(options.xauth_location, &st) == -1)) {
743 debug("No xauth program.");
744 } else {
745 if ((display = getenv("DISPLAY")) == NULL) {
746 debug("x11_get_proto: DISPLAY not set");
747 return;
748 }
Damien Millerd3a18572000-06-07 19:55:44 +1000749 /* Try to get Xauthority information for the display. */
Damien Miller35b13d62002-02-05 12:12:09 +1100750 if (strncmp(display, "localhost:", 10) == 0)
751 /*
752 * Handle FamilyLocal case where $DISPLAY does
753 * not match an authorization entry. For this we
754 * just try "xauth list unix:displaynum.screennum".
755 * XXX: "localhost" match to determine FamilyLocal
756 * is not perfect.
757 */
Ben Lindstromfac77692002-06-06 19:49:54 +0000758 snprintf(line, sizeof line, "%s list unix:%s 2>"
Damien Miller35b13d62002-02-05 12:12:09 +1100759 _PATH_DEVNULL, options.xauth_location, display+10);
760 else
Ben Lindstromfac77692002-06-06 19:49:54 +0000761 snprintf(line, sizeof line, "%s list %.200s 2>"
Damien Miller35b13d62002-02-05 12:12:09 +1100762 _PATH_DEVNULL, options.xauth_location, display);
Ben Lindstromee8d52d2002-07-23 21:03:02 +0000763 debug2("x11_get_proto: %s", line);
Damien Millerd3a18572000-06-07 19:55:44 +1000764 f = popen(line, "r");
765 if (f && fgets(line, sizeof(line), f) &&
Ben Lindstrom4a4bd712001-12-06 17:45:19 +0000766 sscanf(line, "%*s %511s %511s", proto, data) == 2)
Damien Millerd3a18572000-06-07 19:55:44 +1000767 got_data = 1;
768 if (f)
769 pclose(f);
770 }
Damien Millerbd483e72000-04-30 10:00:53 +1000771 /*
772 * If we didn't get authentication data, just make up some
773 * data. The forwarding code will check the validity of the
774 * response anyway, and substitute this data. The X11
775 * server, however, will ignore this fake data and use
776 * whatever authentication mechanisms it was using otherwise
777 * for the local connection.
778 */
779 if (!got_data) {
780 u_int32_t rand = 0;
781
Ben Lindstromee8d52d2002-07-23 21:03:02 +0000782 log("Warning: No xauth data; using fake authentication data for X11 forwarding.");
Ben Lindstrom4a4bd712001-12-06 17:45:19 +0000783 strlcpy(proto, "MIT-MAGIC-COOKIE-1", sizeof proto);
Damien Millerbd483e72000-04-30 10:00:53 +1000784 for (i = 0; i < 16; i++) {
785 if (i % 4 == 0)
786 rand = arc4random();
Ben Lindstrom4a4bd712001-12-06 17:45:19 +0000787 snprintf(data + 2 * i, sizeof data - 2 * i, "%02x", rand & 0xff);
Damien Millerbd483e72000-04-30 10:00:53 +1000788 rand >>= 8;
789 }
790 }
791}
792
Ben Lindstrombba81212001-06-25 05:01:22 +0000793static void
Damien Miller0bc1bd82000-11-13 22:57:25 +1100794ssh_init_forwarding(void)
795{
Kevin Steves12057502001-02-05 14:54:34 +0000796 int success = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100797 int i;
Kevin Steves12057502001-02-05 14:54:34 +0000798
Damien Miller0bc1bd82000-11-13 22:57:25 +1100799 /* Initiate local TCP/IP port forwardings. */
800 for (i = 0; i < options.num_local_forwards; i++) {
801 debug("Connections to local port %d forwarded to remote address %.200s:%d",
802 options.local_forwards[i].port,
803 options.local_forwards[i].host,
804 options.local_forwards[i].host_port);
Damien Millerb16461c2002-01-22 23:29:22 +1100805 success += channel_setup_local_fwd_listener(
Damien Miller0bc1bd82000-11-13 22:57:25 +1100806 options.local_forwards[i].port,
807 options.local_forwards[i].host,
808 options.local_forwards[i].host_port,
809 options.gateway_ports);
810 }
Kevin Steves12057502001-02-05 14:54:34 +0000811 if (i > 0 && success == 0)
812 error("Could not request local forwarding.");
Damien Miller0bc1bd82000-11-13 22:57:25 +1100813
814 /* Initiate remote TCP/IP port forwardings. */
815 for (i = 0; i < options.num_remote_forwards; i++) {
816 debug("Connections to remote port %d forwarded to local address %.200s:%d",
817 options.remote_forwards[i].port,
818 options.remote_forwards[i].host,
819 options.remote_forwards[i].host_port);
820 channel_request_remote_forwarding(
821 options.remote_forwards[i].port,
822 options.remote_forwards[i].host,
823 options.remote_forwards[i].host_port);
824 }
825}
826
Ben Lindstrombba81212001-06-25 05:01:22 +0000827static void
Damien Miller0bc1bd82000-11-13 22:57:25 +1100828check_agent_present(void)
829{
830 if (options.forward_agent) {
831 /* Clear agent forwarding if we don\'t have an agent. */
832 int authfd = ssh_get_authentication_socket();
833 if (authfd < 0)
834 options.forward_agent = 0;
835 else
836 ssh_close_authentication_socket(authfd);
837 }
838}
839
Ben Lindstrombba81212001-06-25 05:01:22 +0000840static int
Damien Miller1383bd82000-04-06 12:32:37 +1000841ssh_session(void)
842{
843 int type;
Damien Miller1383bd82000-04-06 12:32:37 +1000844 int interactive = 0;
845 int have_tty = 0;
846 struct winsize ws;
Damien Miller1383bd82000-04-06 12:32:37 +1000847 char *cp;
848
Damien Miller95def091999-11-25 00:26:21 +1100849 /* Enable compression if requested. */
850 if (options.compression) {
851 debug("Requesting compression at level %d.", options.compression_level);
852
853 if (options.compression_level < 1 || options.compression_level > 9)
854 fatal("Compression level must be from 1 (fast) to 9 (slow, best).");
855
856 /* Send the request. */
857 packet_start(SSH_CMSG_REQUEST_COMPRESSION);
858 packet_put_int(options.compression_level);
859 packet_send();
860 packet_write_wait();
Damien Millerdff50992002-01-22 23:16:32 +1100861 type = packet_read();
Damien Miller95def091999-11-25 00:26:21 +1100862 if (type == SSH_SMSG_SUCCESS)
863 packet_start_compression(options.compression_level);
864 else if (type == SSH_SMSG_FAILURE)
865 log("Warning: Remote host refused compression.");
866 else
867 packet_disconnect("Protocol error waiting for compression response.");
868 }
869 /* Allocate a pseudo tty if appropriate. */
870 if (tty_flag) {
871 debug("Requesting pty.");
872
873 /* Start the packet. */
874 packet_start(SSH_CMSG_REQUEST_PTY);
875
876 /* Store TERM in the packet. There is no limit on the
877 length of the string. */
878 cp = getenv("TERM");
879 if (!cp)
880 cp = "";
Ben Lindstrom664408d2001-06-09 01:42:01 +0000881 packet_put_cstring(cp);
Damien Miller95def091999-11-25 00:26:21 +1100882
883 /* Store window size in the packet. */
884 if (ioctl(fileno(stdin), TIOCGWINSZ, &ws) < 0)
885 memset(&ws, 0, sizeof(ws));
886 packet_put_int(ws.ws_row);
887 packet_put_int(ws.ws_col);
888 packet_put_int(ws.ws_xpixel);
889 packet_put_int(ws.ws_ypixel);
890
891 /* Store tty modes in the packet. */
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000892 tty_make_modes(fileno(stdin), NULL);
Damien Miller95def091999-11-25 00:26:21 +1100893
894 /* Send the packet, and wait for it to leave. */
895 packet_send();
896 packet_write_wait();
897
898 /* Read response from the server. */
Damien Millerdff50992002-01-22 23:16:32 +1100899 type = packet_read();
Damien Miller450a7a12000-03-26 13:04:51 +1000900 if (type == SSH_SMSG_SUCCESS) {
Damien Miller95def091999-11-25 00:26:21 +1100901 interactive = 1;
Damien Miller1383bd82000-04-06 12:32:37 +1000902 have_tty = 1;
Damien Miller450a7a12000-03-26 13:04:51 +1000903 } else if (type == SSH_SMSG_FAILURE)
Damien Miller95def091999-11-25 00:26:21 +1100904 log("Warning: Remote host failed or refused to allocate a pseudo tty.");
905 else
906 packet_disconnect("Protocol error waiting for pty request response.");
907 }
908 /* Request X11 forwarding if enabled and DISPLAY is set. */
909 if (options.forward_x11 && getenv("DISPLAY") != NULL) {
Ben Lindstrom4a4bd712001-12-06 17:45:19 +0000910 char *proto, *data;
Damien Millerbd483e72000-04-30 10:00:53 +1000911 /* Get reasonable local authentication information. */
Ben Lindstrom4a4bd712001-12-06 17:45:19 +0000912 x11_get_proto(&proto, &data);
Damien Millerbd483e72000-04-30 10:00:53 +1000913 /* Request forwarding with authentication spoofing. */
Damien Miller95def091999-11-25 00:26:21 +1100914 debug("Requesting X11 forwarding with authentication spoofing.");
Damien Millerbd483e72000-04-30 10:00:53 +1000915 x11_request_forwarding_with_spoofing(0, proto, data);
Damien Miller95def091999-11-25 00:26:21 +1100916
917 /* Read response from the server. */
Damien Millerdff50992002-01-22 23:16:32 +1100918 type = packet_read();
Damien Miller95def091999-11-25 00:26:21 +1100919 if (type == SSH_SMSG_SUCCESS) {
Damien Miller95def091999-11-25 00:26:21 +1100920 interactive = 1;
Damien Millerbd483e72000-04-30 10:00:53 +1000921 } else if (type == SSH_SMSG_FAILURE) {
Damien Miller95def091999-11-25 00:26:21 +1100922 log("Warning: Remote host denied X11 forwarding.");
Damien Millerbd483e72000-04-30 10:00:53 +1000923 } else {
Damien Miller95def091999-11-25 00:26:21 +1100924 packet_disconnect("Protocol error waiting for X11 forwarding");
Damien Millerbd483e72000-04-30 10:00:53 +1000925 }
Damien Miller95def091999-11-25 00:26:21 +1100926 }
927 /* Tell the packet module whether this is an interactive session. */
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000928 packet_set_interactive(interactive);
Damien Miller95def091999-11-25 00:26:21 +1100929
930 /* Request authentication agent forwarding if appropriate. */
Damien Miller0bc1bd82000-11-13 22:57:25 +1100931 check_agent_present();
932
Damien Miller95def091999-11-25 00:26:21 +1100933 if (options.forward_agent) {
934 debug("Requesting authentication agent forwarding.");
935 auth_request_forwarding();
936
937 /* Read response from the server. */
Damien Millerdff50992002-01-22 23:16:32 +1100938 type = packet_read();
Damien Miller48b03fc2002-01-22 23:11:40 +1100939 packet_check_eom();
Damien Miller95def091999-11-25 00:26:21 +1100940 if (type != SSH_SMSG_SUCCESS)
941 log("Warning: Remote host denied authentication agent forwarding.");
942 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000943
Damien Miller0bc1bd82000-11-13 22:57:25 +1100944 /* Initiate port forwardings. */
945 ssh_init_forwarding();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000946
Damien Miller5428f641999-11-25 11:54:57 +1100947 /* If requested, let ssh continue in the background. */
Damien Miller4af51302000-04-16 11:18:38 +1000948 if (fork_after_authentication_flag)
Damien Miller5428f641999-11-25 11:54:57 +1100949 if (daemon(1, 1) < 0)
950 fatal("daemon() failed: %.200s", strerror(errno));
951
952 /*
953 * If a command was specified on the command line, execute the
954 * command now. Otherwise request the server to start a shell.
955 */
Damien Miller95def091999-11-25 00:26:21 +1100956 if (buffer_len(&command) > 0) {
957 int len = buffer_len(&command);
958 if (len > 900)
959 len = 900;
Damien Miller5a6b4fe2001-12-21 14:56:54 +1100960 debug("Sending command: %.*s", len, (u_char *)buffer_ptr(&command));
Damien Miller95def091999-11-25 00:26:21 +1100961 packet_start(SSH_CMSG_EXEC_CMD);
962 packet_put_string(buffer_ptr(&command), buffer_len(&command));
963 packet_send();
964 packet_write_wait();
965 } else {
966 debug("Requesting shell.");
967 packet_start(SSH_CMSG_EXEC_SHELL);
968 packet_send();
969 packet_write_wait();
970 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000971
Damien Miller95def091999-11-25 00:26:21 +1100972 /* Enter the interactive session. */
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +0000973 return client_loop(have_tty, tty_flag ?
974 options.escape_char : SSH_ESCAPECHAR_NONE, 0);
Damien Miller1383bd82000-04-06 12:32:37 +1000975}
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000976
Ben Lindstrombba81212001-06-25 05:01:22 +0000977static void
Damien Miller630d6f42002-01-22 23:17:30 +1100978client_subsystem_reply(int type, u_int32_t seq, void *ctxt)
Ben Lindstrom1e7d3062001-02-09 02:36:43 +0000979{
980 int id, len;
981
982 id = packet_get_int();
983 len = buffer_len(&command);
Ben Lindstrom4040fe12001-03-05 06:52:57 +0000984 if (len > 900)
985 len = 900;
Damien Miller48b03fc2002-01-22 23:11:40 +1100986 packet_check_eom();
Ben Lindstrom1e7d3062001-02-09 02:36:43 +0000987 if (type == SSH2_MSG_CHANNEL_FAILURE)
988 fatal("Request for subsystem '%.*s' failed on channel %d",
Damien Miller5a6b4fe2001-12-21 14:56:54 +1100989 len, (u_char *)buffer_ptr(&command), id);
Ben Lindstrom1e7d3062001-02-09 02:36:43 +0000990}
991
Damien Miller2797f7f2002-04-23 21:09:44 +1000992void
993client_global_request_reply(int type, u_int32_t seq, void *ctxt)
994{
995 int i;
996
997 i = client_global_request_id++;
998 if (i >= options.num_remote_forwards) {
999 debug("client_global_request_reply: too many replies %d > %d",
1000 i, options.num_remote_forwards);
1001 return;
1002 }
1003 debug("remote forward %s for: listen %d, connect %s:%d",
1004 type == SSH2_MSG_REQUEST_SUCCESS ? "success" : "failure",
1005 options.remote_forwards[i].port,
1006 options.remote_forwards[i].host,
1007 options.remote_forwards[i].host_port);
1008 if (type == SSH2_MSG_REQUEST_FAILURE)
1009 log("Warning: remote port forwarding failed for listen port %d",
1010 options.remote_forwards[i].port);
1011}
1012
Ben Lindstromf558cf62001-09-20 23:13:49 +00001013/* request pty/x11/agent/tcpfwd/shell for channel */
Ben Lindstrombba81212001-06-25 05:01:22 +00001014static void
Ben Lindstromf558cf62001-09-20 23:13:49 +00001015ssh_session2_setup(int id, void *arg)
Damien Miller1383bd82000-04-06 12:32:37 +10001016{
1017 int len;
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001018 int interactive = 0;
Ben Lindstromae8e2d32001-04-14 23:13:02 +00001019 struct termios tio;
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001020
Ben Lindstromf558cf62001-09-20 23:13:49 +00001021 debug("ssh_session2_setup: id %d", id);
Damien Miller1383bd82000-04-06 12:32:37 +10001022
Damien Miller1383bd82000-04-06 12:32:37 +10001023 if (tty_flag) {
1024 struct winsize ws;
1025 char *cp;
1026 cp = getenv("TERM");
1027 if (!cp)
1028 cp = "";
1029 /* Store window size in the packet. */
1030 if (ioctl(fileno(stdin), TIOCGWINSZ, &ws) < 0)
1031 memset(&ws, 0, sizeof(ws));
1032
1033 channel_request_start(id, "pty-req", 0);
1034 packet_put_cstring(cp);
1035 packet_put_int(ws.ws_col);
1036 packet_put_int(ws.ws_row);
1037 packet_put_int(ws.ws_xpixel);
1038 packet_put_int(ws.ws_ypixel);
Ben Lindstromae8e2d32001-04-14 23:13:02 +00001039 tio = get_saved_tio();
1040 tty_make_modes(/*ignored*/ 0, &tio);
Damien Miller1383bd82000-04-06 12:32:37 +10001041 packet_send();
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001042 interactive = 1;
Damien Miller1383bd82000-04-06 12:32:37 +10001043 /* XXX wait for reply */
1044 }
Damien Millerbd483e72000-04-30 10:00:53 +10001045 if (options.forward_x11 &&
1046 getenv("DISPLAY") != NULL) {
Ben Lindstrom4a4bd712001-12-06 17:45:19 +00001047 char *proto, *data;
Damien Millerbd483e72000-04-30 10:00:53 +10001048 /* Get reasonable local authentication information. */
Ben Lindstrom4a4bd712001-12-06 17:45:19 +00001049 x11_get_proto(&proto, &data);
Damien Millerbd483e72000-04-30 10:00:53 +10001050 /* Request forwarding with authentication spoofing. */
1051 debug("Requesting X11 forwarding with authentication spoofing.");
1052 x11_request_forwarding_with_spoofing(id, proto, data);
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001053 interactive = 1;
Damien Millerbd483e72000-04-30 10:00:53 +10001054 /* XXX wait for reply */
1055 }
1056
Damien Miller0bc1bd82000-11-13 22:57:25 +11001057 check_agent_present();
1058 if (options.forward_agent) {
1059 debug("Requesting authentication agent forwarding.");
1060 channel_request_start(id, "auth-agent-req@openssh.com", 0);
1061 packet_send();
1062 }
1063
Damien Miller1383bd82000-04-06 12:32:37 +10001064 len = buffer_len(&command);
1065 if (len > 0) {
1066 if (len > 900)
1067 len = 900;
Damien Miller832562e2001-01-30 09:30:01 +11001068 if (subsystem_flag) {
Damien Miller5a6b4fe2001-12-21 14:56:54 +11001069 debug("Sending subsystem: %.*s", len, (u_char *)buffer_ptr(&command));
Ben Lindstrom1e7d3062001-02-09 02:36:43 +00001070 channel_request_start(id, "subsystem", /*want reply*/ 1);
1071 /* register callback for reply */
Ben Lindstromf666fec2002-06-06 19:51:58 +00001072 /* XXX we assume that client_loop has already been called */
Ben Lindstrom1e7d3062001-02-09 02:36:43 +00001073 dispatch_set(SSH2_MSG_CHANNEL_FAILURE, &client_subsystem_reply);
1074 dispatch_set(SSH2_MSG_CHANNEL_SUCCESS, &client_subsystem_reply);
Damien Miller832562e2001-01-30 09:30:01 +11001075 } else {
Damien Miller5a6b4fe2001-12-21 14:56:54 +11001076 debug("Sending command: %.*s", len, (u_char *)buffer_ptr(&command));
Damien Miller832562e2001-01-30 09:30:01 +11001077 channel_request_start(id, "exec", 0);
1078 }
Ben Lindstrom4040fe12001-03-05 06:52:57 +00001079 packet_put_string(buffer_ptr(&command), buffer_len(&command));
Damien Miller1383bd82000-04-06 12:32:37 +10001080 packet_send();
1081 } else {
Damien Millera500cd62002-02-08 22:04:26 +11001082 channel_request_start(id, "shell", 0);
1083 packet_send();
Damien Miller1383bd82000-04-06 12:32:37 +10001084 }
Ben Lindstrom1e7d3062001-02-09 02:36:43 +00001085
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001086 packet_set_interactive(interactive);
Damien Miller1383bd82000-04-06 12:32:37 +10001087}
1088
Ben Lindstromf558cf62001-09-20 23:13:49 +00001089/* open new channel for a session */
Ben Lindstrombba81212001-06-25 05:01:22 +00001090static int
Ben Lindstromf558cf62001-09-20 23:13:49 +00001091ssh_session2_open(void)
Damien Miller1383bd82000-04-06 12:32:37 +10001092{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001093 Channel *c;
1094 int window, packetmax, in, out, err;
Damien Millerad833b32000-08-23 10:46:23 +10001095
Damien Millercaf6dd62000-08-29 11:33:50 +11001096 if (stdin_null_flag) {
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001097 in = open(_PATH_DEVNULL, O_RDONLY);
Damien Millercaf6dd62000-08-29 11:33:50 +11001098 } else {
1099 in = dup(STDIN_FILENO);
1100 }
1101 out = dup(STDOUT_FILENO);
1102 err = dup(STDERR_FILENO);
1103
1104 if (in < 0 || out < 0 || err < 0)
1105 fatal("dup() in/out/err failed");
1106
Damien Miller69b69aa2000-10-28 14:19:58 +11001107 /* enable nonblocking unless tty */
1108 if (!isatty(in))
1109 set_nonblock(in);
1110 if (!isatty(out))
1111 set_nonblock(out);
1112 if (!isatty(err))
1113 set_nonblock(err);
1114
Damien Millere4340be2000-09-16 13:29:08 +11001115 window = CHAN_SES_WINDOW_DEFAULT;
1116 packetmax = CHAN_SES_PACKET_DEFAULT;
Damien Miller19a59452002-02-19 15:20:57 +11001117 if (tty_flag) {
1118 window >>= 1;
1119 packetmax >>= 1;
Damien Miller1383bd82000-04-06 12:32:37 +10001120 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001121 c = channel_new(
Damien Miller1383bd82000-04-06 12:32:37 +10001122 "session", SSH_CHANNEL_OPENING, in, out, err,
Damien Millere4340be2000-09-16 13:29:08 +11001123 window, packetmax, CHAN_EXTENDED_WRITE,
Damien Miller69b69aa2000-10-28 14:19:58 +11001124 xstrdup("client-session"), /*nonblock*/0);
Damien Miller1383bd82000-04-06 12:32:37 +10001125
Ben Lindstromf558cf62001-09-20 23:13:49 +00001126 debug3("ssh_session2_open: channel_new: %d", c->self);
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001127
Ben Lindstrom5ec26452001-06-09 00:18:51 +00001128 channel_send_open(c->self);
Ben Lindstromf558cf62001-09-20 23:13:49 +00001129 if (!no_shell_flag)
Damien Miller67f0bc02002-02-05 12:23:08 +11001130 channel_register_confirm(c->self, ssh_session2_setup);
Damien Miller1383bd82000-04-06 12:32:37 +10001131
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001132 return c->self;
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001133}
1134
Ben Lindstrombba81212001-06-25 05:01:22 +00001135static int
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001136ssh_session2(void)
1137{
Ben Lindstromf558cf62001-09-20 23:13:49 +00001138 int id = -1;
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001139
1140 /* XXX should be pre-session */
1141 ssh_init_forwarding();
1142
Ben Lindstromf558cf62001-09-20 23:13:49 +00001143 if (!no_shell_flag || (datafellows & SSH_BUG_DUMMYCHAN))
1144 id = ssh_session2_open();
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001145
1146 /* If requested, let ssh continue in the background. */
1147 if (fork_after_authentication_flag)
1148 if (daemon(1, 1) < 0)
1149 fatal("daemon() failed: %.200s", strerror(errno));
1150
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +00001151 return client_loop(tty_flag, tty_flag ?
1152 options.escape_char : SSH_ESCAPECHAR_NONE, id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001153}
Damien Miller0bc1bd82000-11-13 22:57:25 +11001154
Ben Lindstrombba81212001-06-25 05:01:22 +00001155static void
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001156load_public_identity_files(void)
1157{
1158 char *filename;
Ben Lindstrom711b04a2001-08-06 21:12:42 +00001159 int i = 0;
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001160 Key *public;
Ben Lindstrom711b04a2001-08-06 21:12:42 +00001161#ifdef SMARTCARD
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001162 Key **keys;
1163
Ben Lindstromf7db3bb2001-08-06 21:35:51 +00001164 if (options.smartcard_device != NULL &&
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001165 options.num_identity_files < SSH_MAX_IDENTITY_FILES &&
1166 (keys = sc_get_keys(options.smartcard_device, NULL)) != NULL ) {
1167 int count = 0;
1168 for (i = 0; keys[i] != NULL; i++) {
1169 count++;
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001170 memmove(&options.identity_files[1], &options.identity_files[0],
1171 sizeof(char *) * (SSH_MAX_IDENTITY_FILES - 1));
1172 memmove(&options.identity_keys[1], &options.identity_keys[0],
1173 sizeof(Key *) * (SSH_MAX_IDENTITY_FILES - 1));
1174 options.num_identity_files++;
1175 options.identity_keys[0] = keys[i];
1176 options.identity_files[0] = xstrdup("smartcard key");;
1177 }
Ben Lindstrom4f054602002-03-26 03:23:00 +00001178 if (options.num_identity_files > SSH_MAX_IDENTITY_FILES)
1179 options.num_identity_files = SSH_MAX_IDENTITY_FILES;
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001180 i = count;
1181 xfree(keys);
Ben Lindstrom711b04a2001-08-06 21:12:42 +00001182 }
Ben Lindstromffce1472001-08-06 21:57:31 +00001183#endif /* SMARTCARD */
Ben Lindstrom711b04a2001-08-06 21:12:42 +00001184 for (; i < options.num_identity_files; i++) {
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001185 filename = tilde_expand_filename(options.identity_files[i],
1186 original_real_uid);
Ben Lindstromd0fca422001-03-26 13:44:06 +00001187 public = key_load_public(filename, NULL);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001188 debug("identity file %s type %d", filename,
1189 public ? public->type : -1);
1190 xfree(options.identity_files[i]);
1191 options.identity_files[i] = filename;
1192 options.identity_keys[i] = public;
1193 }
1194}