blob: 2c589de824859bddac85a403ab9f9106c7668758 [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 Miller8c4e18a2002-09-19 12:05:02 +100043RCSID("$OpenBSD: ssh.c,v 1.186 2002/09/19 01:58:18 djm 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 Miller8c4e18a2002-09-19 12:05:02 +1000149/* pid of proxycommand child process */
150pid_t proxy_command_pid = 0;
151
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000152/* Prints a help message to the user. This function never returns. */
153
Ben Lindstrombba81212001-06-25 05:01:22 +0000154static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000155usage(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000156{
Kevin Stevesec84dc12000-12-13 17:45:15 +0000157 fprintf(stderr, "Usage: %s [options] host [command]\n", __progname);
Damien Miller95def091999-11-25 00:26:21 +1100158 fprintf(stderr, "Options:\n");
159 fprintf(stderr, " -l user Log in using this user name.\n");
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000160 fprintf(stderr, " -n Redirect input from " _PATH_DEVNULL ".\n");
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000161 fprintf(stderr, " -F config Config file (default: ~/%s).\n",
162 _PATH_SSH_USER_CONFFILE);
Damien Millerb1715dc2000-05-30 13:44:51 +1000163 fprintf(stderr, " -A Enable authentication agent forwarding.\n");
Ben Lindstrom3b89c5e2001-06-05 20:44:16 +0000164 fprintf(stderr, " -a Disable authentication agent forwarding (default).\n");
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000165#ifdef AFS
Damien Miller95def091999-11-25 00:26:21 +1100166 fprintf(stderr, " -k Disable Kerberos ticket and AFS token forwarding.\n");
167#endif /* AFS */
Kevin Stevesef4eea92001-02-05 12:42:17 +0000168 fprintf(stderr, " -X Enable X11 connection forwarding.\n");
Ben Lindstrom3b89c5e2001-06-05 20:44:16 +0000169 fprintf(stderr, " -x Disable X11 connection forwarding (default).\n");
Ben Lindstrom0ab2a012001-03-05 06:45:21 +0000170 fprintf(stderr, " -i file Identity for public key authentication "
171 "(default: ~/.ssh/identity)\n");
Ben Lindstrom61eb9562001-08-06 21:53:42 +0000172#ifdef SMARTCARD
173 fprintf(stderr, " -I reader Set smartcard reader.\n");
Ben Lindstrombcc18082001-08-06 21:59:25 +0000174#endif
Damien Miller95def091999-11-25 00:26:21 +1100175 fprintf(stderr, " -t Tty; allocate a tty even if command is given.\n");
Damien Miller1383bd82000-04-06 12:32:37 +1000176 fprintf(stderr, " -T Do not allocate a tty.\n");
Damien Miller95def091999-11-25 00:26:21 +1100177 fprintf(stderr, " -v Verbose; display verbose debugging messages.\n");
Damien Millere4340be2000-09-16 13:29:08 +1100178 fprintf(stderr, " Multiple -v increases verbosity.\n");
Damien Miller95def091999-11-25 00:26:21 +1100179 fprintf(stderr, " -V Display version number only.\n");
Damien Miller95def091999-11-25 00:26:21 +1100180 fprintf(stderr, " -q Quiet; don't display any warning messages.\n");
181 fprintf(stderr, " -f Fork into background after authentication.\n");
182 fprintf(stderr, " -e char Set escape character; ``none'' = disable (default: ~).\n");
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000183
Ben Lindstrom3b89c5e2001-06-05 20:44:16 +0000184 fprintf(stderr, " -c cipher Select encryption algorithm\n");
Ben Lindstrom3d73a342001-03-05 07:39:01 +0000185 fprintf(stderr, " -m macs Specify MAC algorithms for protocol version 2.\n");
Damien Miller95def091999-11-25 00:26:21 +1100186 fprintf(stderr, " -p port Connect to this port. Server must be on the same port.\n");
187 fprintf(stderr, " -L listen-port:host:port Forward local port to remote address\n");
188 fprintf(stderr, " -R listen-port:host:port Forward remote port to local address\n");
Kevin Stevesec84dc12000-12-13 17:45:15 +0000189 fprintf(stderr, " These cause %s to listen for connections on a port, and\n", __progname);
Damien Miller95def091999-11-25 00:26:21 +1100190 fprintf(stderr, " forward them to the other side by connecting to host:port.\n");
Ben Lindstrom19ceb172001-09-12 17:54:24 +0000191 fprintf(stderr, " -D port Enable dynamic application-level port forwarding.\n");
Damien Miller95def091999-11-25 00:26:21 +1100192 fprintf(stderr, " -C Enable compression.\n");
Damien Miller1383bd82000-04-06 12:32:37 +1000193 fprintf(stderr, " -N Do not execute a shell or command.\n");
Damien Miller95def091999-11-25 00:26:21 +1100194 fprintf(stderr, " -g Allow remote hosts to connect to forwarded ports.\n");
Ben Lindstrom1e7d3062001-02-09 02:36:43 +0000195 fprintf(stderr, " -1 Force protocol version 1.\n");
196 fprintf(stderr, " -2 Force protocol version 2.\n");
Damien Miller34132e52000-01-14 15:45:46 +1100197 fprintf(stderr, " -4 Use IPv4 only.\n");
198 fprintf(stderr, " -6 Use IPv6 only.\n");
Damien Miller95def091999-11-25 00:26:21 +1100199 fprintf(stderr, " -o 'option' Process the option as if it was read from a configuration file.\n");
Damien Miller832562e2001-01-30 09:30:01 +1100200 fprintf(stderr, " -s Invoke command (mandatory) as SSH2 subsystem.\n");
Ben Lindstrom3b89c5e2001-06-05 20:44:16 +0000201 fprintf(stderr, " -b addr Local IP address.\n");
Damien Miller95def091999-11-25 00:26:21 +1100202 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000203}
204
Ben Lindstrombba81212001-06-25 05:01:22 +0000205static int ssh_session(void);
206static int ssh_session2(void);
207static void load_public_identity_files(void);
Damien Miller1383bd82000-04-06 12:32:37 +1000208
Damien Miller95def091999-11-25 00:26:21 +1100209/*
210 * Main program for the ssh client.
211 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000212int
213main(int ac, char **av)
214{
Ben Lindstrom24157572002-06-12 16:09:39 +0000215 int i, opt, exit_status;
Damien Milleraae6c611999-12-06 11:47:28 +1100216 u_short fwd_port, fwd_host_port;
Ben Lindstrom1a174712001-09-12 17:56:15 +0000217 char sfwd_port[6], sfwd_host_port[6];
Damien Millerf4614452001-07-14 12:18:10 +1000218 char *p, *cp, buf[256];
Damien Miller95def091999-11-25 00:26:21 +1100219 struct stat st;
Ben Lindstrom086cf212001-03-05 05:56:40 +0000220 struct passwd *pw;
Damien Miller1383bd82000-04-06 12:32:37 +1000221 int dummy;
Ben Lindstrom5ccf63a2001-09-24 20:00:10 +0000222 extern int optind, optreset;
Damien Miller4f8e6692001-07-14 13:22:53 +1000223 extern char *optarg;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000224
Ben Lindstrom49a79c02000-11-17 03:47:20 +0000225 __progname = get_progname(av[0]);
Damien Millerf9b625c2000-07-09 22:42:32 +1000226 init_rng();
227
Damien Miller5428f641999-11-25 11:54:57 +1100228 /*
229 * Save the original real uid. It will be needed later (uid-swapping
230 * may clobber the real uid).
231 */
Damien Miller95def091999-11-25 00:26:21 +1100232 original_real_uid = getuid();
233 original_effective_uid = geteuid();
Damien Miller50b9a602002-09-04 16:50:06 +1000234
235 /*
236 * Use uid-swapping to give up root privileges for the duration of
237 * option processing. We will re-instantiate the rights when we are
238 * ready to create the privileged port, and will permanently drop
239 * them when the port has been created (actually, when the connection
240 * has been made, as we may need to create the port several times).
241 */
242 PRIV_END;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000243
Damien Miller05dd7952000-10-01 00:42:48 +1100244#ifdef HAVE_SETRLIMIT
Damien Miller95def091999-11-25 00:26:21 +1100245 /* If we are installed setuid root be careful to not drop core. */
246 if (original_real_uid != original_effective_uid) {
247 struct rlimit rlim;
248 rlim.rlim_cur = rlim.rlim_max = 0;
249 if (setrlimit(RLIMIT_CORE, &rlim) < 0)
250 fatal("setrlimit failed: %.100s", strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000251 }
Damien Millerbac2d8a2000-09-05 16:13:06 +1100252#endif
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000253 /* Get user data. */
254 pw = getpwuid(original_real_uid);
255 if (!pw) {
256 log("You don't exist, go away!");
257 exit(1);
258 }
259 /* Take a copy of the returned structure. */
260 pw = pwcopy(pw);
261
Damien Miller5428f641999-11-25 11:54:57 +1100262 /*
Damien Miller5428f641999-11-25 11:54:57 +1100263 * Set our umask to something reasonable, as some files are created
264 * with the default umask. This will make them world-readable but
265 * writable only by the owner, which is ok for all files for which we
266 * don't set the modes explicitly.
267 */
Damien Miller95def091999-11-25 00:26:21 +1100268 umask(022);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000269
Damien Miller95def091999-11-25 00:26:21 +1100270 /* Initialize option structure to indicate that no values have been set. */
271 initialize_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000272
Damien Miller95def091999-11-25 00:26:21 +1100273 /* Parse command-line arguments. */
274 host = NULL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000275
Damien Millerf4614452001-07-14 12:18:10 +1000276again:
277 while ((opt = getopt(ac, av,
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000278 "1246ab:c:e:fgi:kl:m:no:p:qstvxACD:F:I:L:NPR:TVX")) != -1) {
Damien Miller95def091999-11-25 00:26:21 +1100279 switch (opt) {
Ben Lindstrom1e7d3062001-02-09 02:36:43 +0000280 case '1':
281 options.protocol = SSH_PROTO_1;
282 break;
Damien Miller4af51302000-04-16 11:18:38 +1000283 case '2':
284 options.protocol = SSH_PROTO_2;
285 break;
Damien Miller34132e52000-01-14 15:45:46 +1100286 case '4':
287 IPv4or6 = AF_INET;
288 break;
Damien Miller34132e52000-01-14 15:45:46 +1100289 case '6':
290 IPv4or6 = AF_INET6;
291 break;
Damien Miller95def091999-11-25 00:26:21 +1100292 case 'n':
293 stdin_null_flag = 1;
294 break;
Damien Miller95def091999-11-25 00:26:21 +1100295 case 'f':
296 fork_after_authentication_flag = 1;
297 stdin_null_flag = 1;
298 break;
Damien Miller95def091999-11-25 00:26:21 +1100299 case 'x':
300 options.forward_x11 = 0;
301 break;
Damien Miller95def091999-11-25 00:26:21 +1100302 case 'X':
303 options.forward_x11 = 1;
304 break;
Damien Miller95def091999-11-25 00:26:21 +1100305 case 'g':
306 options.gateway_ports = 1;
307 break;
Damien Miller147bba32002-09-04 16:46:06 +1000308 case 'P': /* deprecated */
Damien Miller95def091999-11-25 00:26:21 +1100309 options.use_privileged_port = 0;
310 break;
Damien Miller95def091999-11-25 00:26:21 +1100311 case 'a':
312 options.forward_agent = 0;
313 break;
Damien Millerb1715dc2000-05-30 13:44:51 +1000314 case 'A':
315 options.forward_agent = 1;
316 break;
Damien Miller95def091999-11-25 00:26:21 +1100317#ifdef AFS
318 case 'k':
319 options.kerberos_tgt_passing = 0;
320 options.afs_token_passing = 0;
321 break;
322#endif
323 case 'i':
324 if (stat(optarg, &st) < 0) {
Damien Millerf4614452001-07-14 12:18:10 +1000325 fprintf(stderr, "Warning: Identity file %s "
326 "does not exist.\n", optarg);
Damien Miller95def091999-11-25 00:26:21 +1100327 break;
328 }
Damien Millerf4614452001-07-14 12:18:10 +1000329 if (options.num_identity_files >=
330 SSH_MAX_IDENTITY_FILES)
331 fatal("Too many identity files specified "
332 "(max %d)", SSH_MAX_IDENTITY_FILES);
333 options.identity_files[options.num_identity_files++] =
334 xstrdup(optarg);
Damien Miller95def091999-11-25 00:26:21 +1100335 break;
Ben Lindstromc5b68002001-07-04 04:52:03 +0000336 case 'I':
337#ifdef SMARTCARD
Ben Lindstromf7db3bb2001-08-06 21:35:51 +0000338 options.smartcard_device = xstrdup(optarg);
Ben Lindstrombcc18082001-08-06 21:59:25 +0000339#else
Ben Lindstromc5b68002001-07-04 04:52:03 +0000340 fprintf(stderr, "no support for smartcards.\n");
Ben Lindstrombcc18082001-08-06 21:59:25 +0000341#endif
Ben Lindstromc5b68002001-07-04 04:52:03 +0000342 break;
Damien Miller95def091999-11-25 00:26:21 +1100343 case 't':
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000344 if (tty_flag)
345 force_tty_flag = 1;
Damien Miller95def091999-11-25 00:26:21 +1100346 tty_flag = 1;
347 break;
Damien Miller95def091999-11-25 00:26:21 +1100348 case 'v':
Damien Millere4340be2000-09-16 13:29:08 +1100349 if (0 == debug_flag) {
350 debug_flag = 1;
351 options.log_level = SYSLOG_LEVEL_DEBUG1;
352 } else if (options.log_level < SYSLOG_LEVEL_DEBUG3) {
353 options.log_level++;
354 break;
Damien Millerf4614452001-07-14 12:18:10 +1000355 } else
Ben Lindstrom6df8ef42001-03-05 07:47:23 +0000356 fatal("Too high debugging level.");
Damien Millere4340be2000-09-16 13:29:08 +1100357 /* fallthrough */
Damien Miller95def091999-11-25 00:26:21 +1100358 case 'V':
Damien Miller225736c2001-02-19 21:51:08 +1100359 fprintf(stderr,
360 "%s, SSH protocols %d.%d/%d.%d, OpenSSL 0x%8.8lx\n",
Damien Miller78928792000-04-12 20:17:38 +1000361 SSH_VERSION,
362 PROTOCOL_MAJOR_1, PROTOCOL_MINOR_1,
Damien Miller225736c2001-02-19 21:51:08 +1100363 PROTOCOL_MAJOR_2, PROTOCOL_MINOR_2,
364 SSLeay());
Damien Miller95def091999-11-25 00:26:21 +1100365 if (opt == 'V')
366 exit(0);
Damien Miller95def091999-11-25 00:26:21 +1100367 break;
Damien Miller95def091999-11-25 00:26:21 +1100368 case 'q':
369 options.log_level = SYSLOG_LEVEL_QUIET;
370 break;
Damien Miller95def091999-11-25 00:26:21 +1100371 case 'e':
372 if (optarg[0] == '^' && optarg[2] == 0 &&
Damien Millerf4614452001-07-14 12:18:10 +1000373 (u_char) optarg[1] >= 64 &&
374 (u_char) optarg[1] < 128)
Ben Lindstrom46c16222000-12-22 01:43:59 +0000375 options.escape_char = (u_char) optarg[1] & 31;
Damien Miller95def091999-11-25 00:26:21 +1100376 else if (strlen(optarg) == 1)
Ben Lindstrom46c16222000-12-22 01:43:59 +0000377 options.escape_char = (u_char) optarg[0];
Damien Miller95def091999-11-25 00:26:21 +1100378 else if (strcmp(optarg, "none") == 0)
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +0000379 options.escape_char = SSH_ESCAPECHAR_NONE;
Damien Miller95def091999-11-25 00:26:21 +1100380 else {
Damien Millerf4614452001-07-14 12:18:10 +1000381 fprintf(stderr, "Bad escape character '%s'.\n",
382 optarg);
Damien Miller95def091999-11-25 00:26:21 +1100383 exit(1);
384 }
385 break;
Damien Miller95def091999-11-25 00:26:21 +1100386 case 'c':
Damien Millereba71ba2000-04-29 23:57:08 +1000387 if (ciphers_valid(optarg)) {
388 /* SSH2 only */
389 options.ciphers = xstrdup(optarg);
Damien Miller30c3d422000-05-09 11:02:59 +1000390 options.cipher = SSH_CIPHER_ILLEGAL;
Damien Millereba71ba2000-04-29 23:57:08 +1000391 } else {
392 /* SSH1 only */
Damien Millere39cacc2000-11-29 12:18:44 +1100393 options.cipher = cipher_number(optarg);
394 if (options.cipher == -1) {
Damien Millerf4614452001-07-14 12:18:10 +1000395 fprintf(stderr,
396 "Unknown cipher type '%s'\n",
397 optarg);
Damien Millereba71ba2000-04-29 23:57:08 +1000398 exit(1);
399 }
Damien Millerf4614452001-07-14 12:18:10 +1000400 if (options.cipher == SSH_CIPHER_3DES)
Damien Millere39cacc2000-11-29 12:18:44 +1100401 options.ciphers = "3des-cbc";
Damien Millerf4614452001-07-14 12:18:10 +1000402 else if (options.cipher == SSH_CIPHER_BLOWFISH)
Damien Millere39cacc2000-11-29 12:18:44 +1100403 options.ciphers = "blowfish-cbc";
Damien Millerf4614452001-07-14 12:18:10 +1000404 else
Damien Millere39cacc2000-11-29 12:18:44 +1100405 options.ciphers = (char *)-1;
Damien Miller95def091999-11-25 00:26:21 +1100406 }
407 break;
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000408 case 'm':
409 if (mac_valid(optarg))
410 options.macs = xstrdup(optarg);
411 else {
Damien Millerf4614452001-07-14 12:18:10 +1000412 fprintf(stderr, "Unknown mac type '%s'\n",
413 optarg);
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000414 exit(1);
415 }
416 break;
Damien Miller95def091999-11-25 00:26:21 +1100417 case 'p':
Ben Lindstrom19066a12001-04-12 23:39:26 +0000418 options.port = a2port(optarg);
419 if (options.port == 0) {
Ben Lindstrom146edb92001-04-11 23:06:28 +0000420 fprintf(stderr, "Bad port '%s'\n", optarg);
421 exit(1);
422 }
Damien Miller95def091999-11-25 00:26:21 +1100423 break;
Damien Miller95def091999-11-25 00:26:21 +1100424 case 'l':
425 options.user = optarg;
426 break;
Ben Lindstrom1a174712001-09-12 17:56:15 +0000427
Damien Miller95def091999-11-25 00:26:21 +1100428 case 'L':
Ben Lindstrom1a174712001-09-12 17:56:15 +0000429 case 'R':
430 if (sscanf(optarg, "%5[0-9]:%255[^:]:%5[0-9]",
431 sfwd_port, buf, sfwd_host_port) != 3 &&
432 sscanf(optarg, "%5[0-9]/%255[^/]/%5[0-9]",
433 sfwd_port, buf, sfwd_host_port) != 3) {
Damien Millerf4614452001-07-14 12:18:10 +1000434 fprintf(stderr,
Ben Lindstrom1a174712001-09-12 17:56:15 +0000435 "Bad forwarding specification '%s'\n",
Damien Millerf4614452001-07-14 12:18:10 +1000436 optarg);
Damien Miller95def091999-11-25 00:26:21 +1100437 usage();
438 /* NOTREACHED */
439 }
Ben Lindstrom1a174712001-09-12 17:56:15 +0000440 if ((fwd_port = a2port(sfwd_port)) == 0 ||
Ben Lindstrom6328ab32002-03-22 02:54:23 +0000441 (fwd_host_port = a2port(sfwd_host_port)) == 0) {
Ben Lindstrom1a174712001-09-12 17:56:15 +0000442 fprintf(stderr,
443 "Bad forwarding port(s) '%s'\n", optarg);
444 exit(1);
445 }
446 if (opt == 'L')
447 add_local_forward(&options, fwd_port, buf,
448 fwd_host_port);
449 else if (opt == 'R')
450 add_remote_forward(&options, fwd_port, buf,
Damien Miller9f0f5c62001-12-21 14:45:46 +1100451 fwd_host_port);
Damien Miller95def091999-11-25 00:26:21 +1100452 break;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000453
454 case 'D':
Ben Lindstrom19066a12001-04-12 23:39:26 +0000455 fwd_port = a2port(optarg);
456 if (fwd_port == 0) {
Damien Millerf4614452001-07-14 12:18:10 +1000457 fprintf(stderr, "Bad dynamic port '%s'\n",
458 optarg);
Ben Lindstrom146edb92001-04-11 23:06:28 +0000459 exit(1);
460 }
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000461 add_local_forward(&options, fwd_port, "socks4", 0);
462 break;
463
Damien Miller95def091999-11-25 00:26:21 +1100464 case 'C':
465 options.compression = 1;
466 break;
Damien Miller1383bd82000-04-06 12:32:37 +1000467 case 'N':
468 no_shell_flag = 1;
469 no_tty_flag = 1;
470 break;
Damien Miller1383bd82000-04-06 12:32:37 +1000471 case 'T':
472 no_tty_flag = 1;
473 break;
Damien Miller95def091999-11-25 00:26:21 +1100474 case 'o':
475 dummy = 1;
Damien Millerf4614452001-07-14 12:18:10 +1000476 if (process_config_line(&options, host ? host : "",
477 optarg, "command-line", 0, &dummy) != 0)
Damien Miller95def091999-11-25 00:26:21 +1100478 exit(1);
479 break;
Damien Miller832562e2001-01-30 09:30:01 +1100480 case 's':
481 subsystem_flag = 1;
482 break;
Ben Lindstrome0f88042001-04-30 13:06:24 +0000483 case 'b':
484 options.bind_address = optarg;
485 break;
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000486 case 'F':
487 config = optarg;
488 break;
Damien Miller95def091999-11-25 00:26:21 +1100489 default:
490 usage();
491 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000492 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000493
Damien Millerf4614452001-07-14 12:18:10 +1000494 ac -= optind;
495 av += optind;
496
497 if (ac > 0 && !host && **av != '-') {
498 if (strchr(*av, '@')) {
499 p = xstrdup(*av);
500 cp = strchr(p, '@');
501 if (cp == NULL || cp == p)
502 usage();
503 options.user = p;
504 *cp = '\0';
505 host = ++cp;
506 } else
507 host = *av;
508 ac--, av++;
509 if (ac > 0) {
510 optind = 0;
511 optreset = 1;
512 goto again;
513 }
514 }
515
Damien Miller95def091999-11-25 00:26:21 +1100516 /* Check that we got a host name. */
517 if (!host)
518 usage();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000519
Damien Millercb5e44a2000-09-29 12:12:36 +1100520 SSLeay_add_all_algorithms();
Damien Miller0bc1bd82000-11-13 22:57:25 +1100521 ERR_load_crypto_strings();
Ben Lindstrom908afed2001-10-03 17:34:59 +0000522 channel_set_af(IPv4or6);
Damien Millercb5e44a2000-09-29 12:12:36 +1100523
Damien Miller95def091999-11-25 00:26:21 +1100524 /* Initialize the command to execute on remote host. */
525 buffer_init(&command);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000526
Damien Miller5428f641999-11-25 11:54:57 +1100527 /*
528 * Save the command to execute on the remote host in a buffer. There
529 * is no limit on the length of the command, except by the maximum
530 * packet size. Also sets the tty flag if there is no command.
531 */
Damien Millerf4614452001-07-14 12:18:10 +1000532 if (!ac) {
Damien Miller95def091999-11-25 00:26:21 +1100533 /* No command specified - execute shell on a tty. */
534 tty_flag = 1;
Damien Miller832562e2001-01-30 09:30:01 +1100535 if (subsystem_flag) {
Damien Millerf4614452001-07-14 12:18:10 +1000536 fprintf(stderr,
537 "You must specify a subsystem to invoke.\n");
Damien Miller832562e2001-01-30 09:30:01 +1100538 usage();
539 }
Damien Miller95def091999-11-25 00:26:21 +1100540 } else {
Damien Millerf4614452001-07-14 12:18:10 +1000541 /* A command has been specified. Store it into the buffer. */
542 for (i = 0; i < ac; i++) {
543 if (i)
Damien Miller95def091999-11-25 00:26:21 +1100544 buffer_append(&command, " ", 1);
545 buffer_append(&command, av[i], strlen(av[i]));
546 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000547 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000548
Damien Miller95def091999-11-25 00:26:21 +1100549 /* Cannot fork to background if no command. */
Damien Millercaf6dd62000-08-29 11:33:50 +1100550 if (fork_after_authentication_flag && buffer_len(&command) == 0 && !no_shell_flag)
Damien Miller95def091999-11-25 00:26:21 +1100551 fatal("Cannot fork into background without a command to execute.");
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000552
Damien Miller95def091999-11-25 00:26:21 +1100553 /* Allocate a tty by default if no command specified. */
554 if (buffer_len(&command) == 0)
555 tty_flag = 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000556
Ben Lindstroma962c2f2002-07-04 00:14:17 +0000557 /* Force no tty */
Ben Lindstromc72745a2000-12-02 19:03:54 +0000558 if (no_tty_flag)
559 tty_flag = 0;
Damien Miller95def091999-11-25 00:26:21 +1100560 /* Do not allocate a tty if stdin is not a tty. */
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000561 if (!isatty(fileno(stdin)) && !force_tty_flag) {
Damien Miller95def091999-11-25 00:26:21 +1100562 if (tty_flag)
Ben Lindstrom6df8ef42001-03-05 07:47:23 +0000563 log("Pseudo-terminal will not be allocated because stdin is not a terminal.");
Damien Miller95def091999-11-25 00:26:21 +1100564 tty_flag = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000565 }
Damien Miller1383bd82000-04-06 12:32:37 +1000566
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000567 /*
568 * Initialize "log" output. Since we are the client all output
569 * actually goes to stderr.
570 */
Ben Lindstrom2b646522001-04-12 16:16:57 +0000571 log_init(av[0], options.log_level == -1 ? SYSLOG_LEVEL_INFO : options.log_level,
572 SYSLOG_FACILITY_USER, 1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000573
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000574 /*
575 * Read per-user configuration file. Ignore the system wide config
576 * file if the user specifies a config file on the command line.
577 */
578 if (config != NULL) {
Ben Lindstromedc0cf22001-09-12 18:32:20 +0000579 if (!read_config_file(config, host, &options))
580 fatal("Can't open user config file %.100s: "
581 "%.100s", config, strerror(errno));
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000582 } else {
583 snprintf(buf, sizeof buf, "%.100s/%.100s", pw->pw_dir,
584 _PATH_SSH_USER_CONFFILE);
Ben Lindstromedc0cf22001-09-12 18:32:20 +0000585 (void)read_config_file(buf, host, &options);
Ben Lindstrom83f07d12001-10-03 17:22:29 +0000586
587 /* Read systemwide configuration file after use config. */
588 (void)read_config_file(_PATH_HOST_CONFIG_FILE, host, &options);
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000589 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000590
Damien Miller95def091999-11-25 00:26:21 +1100591 /* Fill configuration defaults. */
592 fill_default_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000593
Damien Miller95def091999-11-25 00:26:21 +1100594 /* reinit */
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000595 log_init(av[0], options.log_level, SYSLOG_FACILITY_USER, 1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000596
Damien Miller60bc5172001-03-19 09:38:15 +1100597 seed_rng();
598
Damien Miller95def091999-11-25 00:26:21 +1100599 if (options.user == NULL)
600 options.user = xstrdup(pw->pw_name);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000601
Damien Miller95def091999-11-25 00:26:21 +1100602 if (options.hostname != NULL)
603 host = options.hostname;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000604
Damien Miller95def091999-11-25 00:26:21 +1100605 /* Disable rhosts authentication if not running as root. */
Damien Millerbac2d8a2000-09-05 16:13:06 +1100606#ifdef HAVE_CYGWIN
607 /* Ignore uid if running under Windows */
608 if (!options.use_privileged_port) {
609#else
Damien Miller95def091999-11-25 00:26:21 +1100610 if (original_effective_uid != 0 || !options.use_privileged_port) {
Damien Millerbac2d8a2000-09-05 16:13:06 +1100611#endif
Kevin Stevesfcec7f82000-12-15 19:55:48 +0000612 debug("Rhosts Authentication disabled, "
613 "originating port will not be trusted.");
Damien Miller95def091999-11-25 00:26:21 +1100614 options.rhosts_authentication = 0;
Damien Miller95def091999-11-25 00:26:21 +1100615 }
Kevin Stevesfcec7f82000-12-15 19:55:48 +0000616 /* Open a connection to the remote host. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000617
Ben Lindstrom24157572002-06-12 16:09:39 +0000618 if (ssh_connect(host, &hostaddr, options.port, IPv4or6,
Kevin Stevesfcec7f82000-12-15 19:55:48 +0000619 options.connection_attempts,
Ben Lindstrom1aa64272002-06-11 20:28:05 +0000620#ifdef HAVE_CYGWIN
621 options.use_privileged_port,
622#else
Ben Lindstromf9c48842002-06-11 16:37:51 +0000623 original_effective_uid == 0 && options.use_privileged_port,
Ben Lindstrom1aa64272002-06-11 20:28:05 +0000624#endif
Ben Lindstromda394ca2002-06-12 16:11:12 +0000625 options.proxy_command) != 0)
Ben Lindstrom24157572002-06-12 16:09:39 +0000626 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000627
Damien Miller5428f641999-11-25 11:54:57 +1100628 /*
629 * If we successfully made the connection, load the host private key
630 * in case we will need it later for combined rsa-rhosts
631 * authentication. This must be done before releasing extra
632 * privileges, because the file is only readable by root.
Ben Lindstrom9e5bb572002-06-06 19:58:27 +0000633 * If we cannot access the private keys, load the public keys
634 * instead and try to execute the ssh-keysign helper instead.
Damien Miller5428f641999-11-25 11:54:57 +1100635 */
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000636 sensitive_data.nkeys = 0;
637 sensitive_data.keys = NULL;
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000638 sensitive_data.external_keysign = 0;
Ben Lindstrom24157572002-06-12 16:09:39 +0000639 if (options.rhosts_rsa_authentication ||
640 options.hostbased_authentication) {
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000641 sensitive_data.nkeys = 3;
Ben Lindstroma962c2f2002-07-04 00:14:17 +0000642 sensitive_data.keys = xmalloc(sensitive_data.nkeys *
643 sizeof(Key));
Ben Lindstromf9c48842002-06-11 16:37:51 +0000644
645 PRIV_START;
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000646 sensitive_data.keys[0] = key_load_private_type(KEY_RSA1,
Ben Lindstromd0fca422001-03-26 13:44:06 +0000647 _PATH_HOST_KEY_FILE, "", NULL);
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000648 sensitive_data.keys[1] = key_load_private_type(KEY_DSA,
649 _PATH_HOST_DSA_KEY_FILE, "", NULL);
650 sensitive_data.keys[2] = key_load_private_type(KEY_RSA,
651 _PATH_HOST_RSA_KEY_FILE, "", NULL);
Ben Lindstromf9c48842002-06-11 16:37:51 +0000652 PRIV_END;
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000653
Ben Lindstrom5d35a2f2002-07-04 00:19:40 +0000654 if (options.hostbased_authentication == 1 &&
655 sensitive_data.keys[0] == NULL &&
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000656 sensitive_data.keys[1] == NULL &&
657 sensitive_data.keys[2] == NULL) {
658 sensitive_data.keys[1] = key_load_public(
659 _PATH_HOST_DSA_KEY_FILE, NULL);
660 sensitive_data.keys[2] = key_load_public(
661 _PATH_HOST_RSA_KEY_FILE, NULL);
662 sensitive_data.external_keysign = 1;
663 }
Damien Miller95def091999-11-25 00:26:21 +1100664 }
Damien Miller5428f641999-11-25 11:54:57 +1100665 /*
666 * Get rid of any extra privileges that we may have. We will no
667 * longer need them. Also, extra privileges could make it very hard
668 * to read identity files and other non-world-readable files from the
669 * user's home directory if it happens to be on a NFS volume where
670 * root is mapped to nobody.
671 */
Ben Lindstromf9c48842002-06-11 16:37:51 +0000672 seteuid(original_real_uid);
673 setuid(original_real_uid);
Damien Miller95def091999-11-25 00:26:21 +1100674
Damien Miller5428f641999-11-25 11:54:57 +1100675 /*
676 * Now that we are back to our own permissions, create ~/.ssh
677 * directory if it doesn\'t already exist.
678 */
Ben Lindstrom930b14a2001-08-15 23:19:21 +0000679 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 +1100680 if (stat(buf, &st) < 0)
Damien Millerbe484b52000-07-15 14:14:16 +1000681 if (mkdir(buf, 0700) < 0)
Damien Miller95def091999-11-25 00:26:21 +1100682 error("Could not create directory '%.200s'.", buf);
683
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000684 /* load options.identity_files */
685 load_public_identity_files();
686
687 /* Expand ~ in known host file names. */
688 /* XXX mem-leaks: */
Damien Miller0bc1bd82000-11-13 22:57:25 +1100689 options.system_hostfile =
690 tilde_expand_filename(options.system_hostfile, original_real_uid);
691 options.user_hostfile =
692 tilde_expand_filename(options.user_hostfile, original_real_uid);
693 options.system_hostfile2 =
694 tilde_expand_filename(options.system_hostfile2, original_real_uid);
695 options.user_hostfile2 =
696 tilde_expand_filename(options.user_hostfile2, original_real_uid);
Damien Miller95def091999-11-25 00:26:21 +1100697
Damien Miller07cd5892001-11-12 10:52:03 +1100698 signal(SIGPIPE, SIG_IGN); /* ignore SIGPIPE early */
699
Damien Miller95def091999-11-25 00:26:21 +1100700 /* Log into the remote system. This never returns if the login fails. */
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000701 ssh_login(&sensitive_data, host, (struct sockaddr *)&hostaddr, pw);
Damien Miller95def091999-11-25 00:26:21 +1100702
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000703 /* We no longer need the private host keys. Clear them now. */
704 if (sensitive_data.nkeys != 0) {
705 for (i = 0; i < sensitive_data.nkeys; i++) {
706 if (sensitive_data.keys[i] != NULL) {
707 /* Destroys contents safely */
708 debug3("clear hostkey %d", i);
709 key_free(sensitive_data.keys[i]);
710 sensitive_data.keys[i] = NULL;
711 }
712 }
713 xfree(sensitive_data.keys);
714 }
Ben Lindstroma6c8a8d2001-08-06 21:42:00 +0000715 for (i = 0; i < options.num_identity_files; i++) {
716 if (options.identity_files[i]) {
717 xfree(options.identity_files[i]);
718 options.identity_files[i] = NULL;
719 }
720 if (options.identity_keys[i]) {
721 key_free(options.identity_keys[i]);
722 options.identity_keys[i] = NULL;
723 }
724 }
Damien Miller95def091999-11-25 00:26:21 +1100725
Damien Miller1383bd82000-04-06 12:32:37 +1000726 exit_status = compat20 ? ssh_session2() : ssh_session();
727 packet_close();
Damien Miller8c4e18a2002-09-19 12:05:02 +1000728
729 /*
730 * Send SIGHUP to proxy command if used. We don't wait() in
731 * case it hangs and instead rely on init to reap the child
732 */
733 if (proxy_command_pid > 1)
734 kill(proxy_command_pid, SIGHUP);
735
Damien Miller1383bd82000-04-06 12:32:37 +1000736 return exit_status;
737}
738
Ben Lindstrombba81212001-06-25 05:01:22 +0000739static void
Ben Lindstrom4a4bd712001-12-06 17:45:19 +0000740x11_get_proto(char **_proto, char **_data)
Damien Millerbd483e72000-04-30 10:00:53 +1000741{
742 char line[512];
Ben Lindstrom4a4bd712001-12-06 17:45:19 +0000743 static char proto[512], data[512];
Damien Millerbd483e72000-04-30 10:00:53 +1000744 FILE *f;
745 int got_data = 0, i;
Damien Miller35b13d62002-02-05 12:12:09 +1100746 char *display;
Ben Lindstromee8d52d2002-07-23 21:03:02 +0000747 struct stat st;
Damien Millerbd483e72000-04-30 10:00:53 +1000748
Ben Lindstrom4a4bd712001-12-06 17:45:19 +0000749 *_proto = proto;
750 *_data = data;
751 proto[0] = data[0] = '\0';
Ben Lindstromee8d52d2002-07-23 21:03:02 +0000752 if (!options.xauth_location ||
753 (stat(options.xauth_location, &st) == -1)) {
754 debug("No xauth program.");
755 } else {
756 if ((display = getenv("DISPLAY")) == NULL) {
757 debug("x11_get_proto: DISPLAY not set");
758 return;
759 }
Damien Millerd3a18572000-06-07 19:55:44 +1000760 /* Try to get Xauthority information for the display. */
Damien Miller35b13d62002-02-05 12:12:09 +1100761 if (strncmp(display, "localhost:", 10) == 0)
762 /*
763 * Handle FamilyLocal case where $DISPLAY does
764 * not match an authorization entry. For this we
765 * just try "xauth list unix:displaynum.screennum".
766 * XXX: "localhost" match to determine FamilyLocal
767 * is not perfect.
768 */
Ben Lindstromfac77692002-06-06 19:49:54 +0000769 snprintf(line, sizeof line, "%s list unix:%s 2>"
Damien Miller35b13d62002-02-05 12:12:09 +1100770 _PATH_DEVNULL, options.xauth_location, display+10);
771 else
Ben Lindstromfac77692002-06-06 19:49:54 +0000772 snprintf(line, sizeof line, "%s list %.200s 2>"
Damien Miller35b13d62002-02-05 12:12:09 +1100773 _PATH_DEVNULL, options.xauth_location, display);
Ben Lindstromee8d52d2002-07-23 21:03:02 +0000774 debug2("x11_get_proto: %s", line);
Damien Millerd3a18572000-06-07 19:55:44 +1000775 f = popen(line, "r");
776 if (f && fgets(line, sizeof(line), f) &&
Ben Lindstrom4a4bd712001-12-06 17:45:19 +0000777 sscanf(line, "%*s %511s %511s", proto, data) == 2)
Damien Millerd3a18572000-06-07 19:55:44 +1000778 got_data = 1;
779 if (f)
780 pclose(f);
781 }
Damien Millerbd483e72000-04-30 10:00:53 +1000782 /*
783 * If we didn't get authentication data, just make up some
784 * data. The forwarding code will check the validity of the
785 * response anyway, and substitute this data. The X11
786 * server, however, will ignore this fake data and use
787 * whatever authentication mechanisms it was using otherwise
788 * for the local connection.
789 */
790 if (!got_data) {
791 u_int32_t rand = 0;
792
Ben Lindstromee8d52d2002-07-23 21:03:02 +0000793 log("Warning: No xauth data; using fake authentication data for X11 forwarding.");
Ben Lindstrom4a4bd712001-12-06 17:45:19 +0000794 strlcpy(proto, "MIT-MAGIC-COOKIE-1", sizeof proto);
Damien Millerbd483e72000-04-30 10:00:53 +1000795 for (i = 0; i < 16; i++) {
796 if (i % 4 == 0)
797 rand = arc4random();
Ben Lindstrom4a4bd712001-12-06 17:45:19 +0000798 snprintf(data + 2 * i, sizeof data - 2 * i, "%02x", rand & 0xff);
Damien Millerbd483e72000-04-30 10:00:53 +1000799 rand >>= 8;
800 }
801 }
802}
803
Ben Lindstrombba81212001-06-25 05:01:22 +0000804static void
Damien Miller0bc1bd82000-11-13 22:57:25 +1100805ssh_init_forwarding(void)
806{
Kevin Steves12057502001-02-05 14:54:34 +0000807 int success = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100808 int i;
Kevin Steves12057502001-02-05 14:54:34 +0000809
Damien Miller0bc1bd82000-11-13 22:57:25 +1100810 /* Initiate local TCP/IP port forwardings. */
811 for (i = 0; i < options.num_local_forwards; i++) {
812 debug("Connections to local port %d forwarded to remote address %.200s:%d",
813 options.local_forwards[i].port,
814 options.local_forwards[i].host,
815 options.local_forwards[i].host_port);
Damien Millerb16461c2002-01-22 23:29:22 +1100816 success += channel_setup_local_fwd_listener(
Damien Miller0bc1bd82000-11-13 22:57:25 +1100817 options.local_forwards[i].port,
818 options.local_forwards[i].host,
819 options.local_forwards[i].host_port,
820 options.gateway_ports);
821 }
Kevin Steves12057502001-02-05 14:54:34 +0000822 if (i > 0 && success == 0)
823 error("Could not request local forwarding.");
Damien Miller0bc1bd82000-11-13 22:57:25 +1100824
825 /* Initiate remote TCP/IP port forwardings. */
826 for (i = 0; i < options.num_remote_forwards; i++) {
827 debug("Connections to remote port %d forwarded to local address %.200s:%d",
828 options.remote_forwards[i].port,
829 options.remote_forwards[i].host,
830 options.remote_forwards[i].host_port);
831 channel_request_remote_forwarding(
832 options.remote_forwards[i].port,
833 options.remote_forwards[i].host,
834 options.remote_forwards[i].host_port);
835 }
836}
837
Ben Lindstrombba81212001-06-25 05:01:22 +0000838static void
Damien Miller0bc1bd82000-11-13 22:57:25 +1100839check_agent_present(void)
840{
841 if (options.forward_agent) {
842 /* Clear agent forwarding if we don\'t have an agent. */
Damien Miller789e95d2002-09-12 09:52:46 +1000843 if (!ssh_agent_present())
Damien Miller0bc1bd82000-11-13 22:57:25 +1100844 options.forward_agent = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100845 }
846}
847
Ben Lindstrombba81212001-06-25 05:01:22 +0000848static int
Damien Miller1383bd82000-04-06 12:32:37 +1000849ssh_session(void)
850{
851 int type;
Damien Miller1383bd82000-04-06 12:32:37 +1000852 int interactive = 0;
853 int have_tty = 0;
854 struct winsize ws;
Damien Miller1383bd82000-04-06 12:32:37 +1000855 char *cp;
856
Damien Miller95def091999-11-25 00:26:21 +1100857 /* Enable compression if requested. */
858 if (options.compression) {
859 debug("Requesting compression at level %d.", options.compression_level);
860
861 if (options.compression_level < 1 || options.compression_level > 9)
862 fatal("Compression level must be from 1 (fast) to 9 (slow, best).");
863
864 /* Send the request. */
865 packet_start(SSH_CMSG_REQUEST_COMPRESSION);
866 packet_put_int(options.compression_level);
867 packet_send();
868 packet_write_wait();
Damien Millerdff50992002-01-22 23:16:32 +1100869 type = packet_read();
Damien Miller95def091999-11-25 00:26:21 +1100870 if (type == SSH_SMSG_SUCCESS)
871 packet_start_compression(options.compression_level);
872 else if (type == SSH_SMSG_FAILURE)
873 log("Warning: Remote host refused compression.");
874 else
875 packet_disconnect("Protocol error waiting for compression response.");
876 }
877 /* Allocate a pseudo tty if appropriate. */
878 if (tty_flag) {
879 debug("Requesting pty.");
880
881 /* Start the packet. */
882 packet_start(SSH_CMSG_REQUEST_PTY);
883
884 /* Store TERM in the packet. There is no limit on the
885 length of the string. */
886 cp = getenv("TERM");
887 if (!cp)
888 cp = "";
Ben Lindstrom664408d2001-06-09 01:42:01 +0000889 packet_put_cstring(cp);
Damien Miller95def091999-11-25 00:26:21 +1100890
891 /* Store window size in the packet. */
892 if (ioctl(fileno(stdin), TIOCGWINSZ, &ws) < 0)
893 memset(&ws, 0, sizeof(ws));
894 packet_put_int(ws.ws_row);
895 packet_put_int(ws.ws_col);
896 packet_put_int(ws.ws_xpixel);
897 packet_put_int(ws.ws_ypixel);
898
899 /* Store tty modes in the packet. */
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000900 tty_make_modes(fileno(stdin), NULL);
Damien Miller95def091999-11-25 00:26:21 +1100901
902 /* Send the packet, and wait for it to leave. */
903 packet_send();
904 packet_write_wait();
905
906 /* Read response from the server. */
Damien Millerdff50992002-01-22 23:16:32 +1100907 type = packet_read();
Damien Miller450a7a12000-03-26 13:04:51 +1000908 if (type == SSH_SMSG_SUCCESS) {
Damien Miller95def091999-11-25 00:26:21 +1100909 interactive = 1;
Damien Miller1383bd82000-04-06 12:32:37 +1000910 have_tty = 1;
Damien Miller450a7a12000-03-26 13:04:51 +1000911 } else if (type == SSH_SMSG_FAILURE)
Damien Miller95def091999-11-25 00:26:21 +1100912 log("Warning: Remote host failed or refused to allocate a pseudo tty.");
913 else
914 packet_disconnect("Protocol error waiting for pty request response.");
915 }
916 /* Request X11 forwarding if enabled and DISPLAY is set. */
917 if (options.forward_x11 && getenv("DISPLAY") != NULL) {
Ben Lindstrom4a4bd712001-12-06 17:45:19 +0000918 char *proto, *data;
Damien Millerbd483e72000-04-30 10:00:53 +1000919 /* Get reasonable local authentication information. */
Ben Lindstrom4a4bd712001-12-06 17:45:19 +0000920 x11_get_proto(&proto, &data);
Damien Millerbd483e72000-04-30 10:00:53 +1000921 /* Request forwarding with authentication spoofing. */
Damien Miller95def091999-11-25 00:26:21 +1100922 debug("Requesting X11 forwarding with authentication spoofing.");
Damien Millerbd483e72000-04-30 10:00:53 +1000923 x11_request_forwarding_with_spoofing(0, proto, data);
Damien Miller95def091999-11-25 00:26:21 +1100924
925 /* Read response from the server. */
Damien Millerdff50992002-01-22 23:16:32 +1100926 type = packet_read();
Damien Miller95def091999-11-25 00:26:21 +1100927 if (type == SSH_SMSG_SUCCESS) {
Damien Miller95def091999-11-25 00:26:21 +1100928 interactive = 1;
Damien Millerbd483e72000-04-30 10:00:53 +1000929 } else if (type == SSH_SMSG_FAILURE) {
Damien Miller95def091999-11-25 00:26:21 +1100930 log("Warning: Remote host denied X11 forwarding.");
Damien Millerbd483e72000-04-30 10:00:53 +1000931 } else {
Damien Miller95def091999-11-25 00:26:21 +1100932 packet_disconnect("Protocol error waiting for X11 forwarding");
Damien Millerbd483e72000-04-30 10:00:53 +1000933 }
Damien Miller95def091999-11-25 00:26:21 +1100934 }
935 /* Tell the packet module whether this is an interactive session. */
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000936 packet_set_interactive(interactive);
Damien Miller95def091999-11-25 00:26:21 +1100937
938 /* Request authentication agent forwarding if appropriate. */
Damien Miller0bc1bd82000-11-13 22:57:25 +1100939 check_agent_present();
940
Damien Miller95def091999-11-25 00:26:21 +1100941 if (options.forward_agent) {
942 debug("Requesting authentication agent forwarding.");
943 auth_request_forwarding();
944
945 /* Read response from the server. */
Damien Millerdff50992002-01-22 23:16:32 +1100946 type = packet_read();
Damien Miller48b03fc2002-01-22 23:11:40 +1100947 packet_check_eom();
Damien Miller95def091999-11-25 00:26:21 +1100948 if (type != SSH_SMSG_SUCCESS)
949 log("Warning: Remote host denied authentication agent forwarding.");
950 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000951
Damien Miller0bc1bd82000-11-13 22:57:25 +1100952 /* Initiate port forwardings. */
953 ssh_init_forwarding();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000954
Damien Miller5428f641999-11-25 11:54:57 +1100955 /* If requested, let ssh continue in the background. */
Damien Miller4af51302000-04-16 11:18:38 +1000956 if (fork_after_authentication_flag)
Damien Miller5428f641999-11-25 11:54:57 +1100957 if (daemon(1, 1) < 0)
958 fatal("daemon() failed: %.200s", strerror(errno));
959
960 /*
961 * If a command was specified on the command line, execute the
962 * command now. Otherwise request the server to start a shell.
963 */
Damien Miller95def091999-11-25 00:26:21 +1100964 if (buffer_len(&command) > 0) {
965 int len = buffer_len(&command);
966 if (len > 900)
967 len = 900;
Damien Miller5a6b4fe2001-12-21 14:56:54 +1100968 debug("Sending command: %.*s", len, (u_char *)buffer_ptr(&command));
Damien Miller95def091999-11-25 00:26:21 +1100969 packet_start(SSH_CMSG_EXEC_CMD);
970 packet_put_string(buffer_ptr(&command), buffer_len(&command));
971 packet_send();
972 packet_write_wait();
973 } else {
974 debug("Requesting shell.");
975 packet_start(SSH_CMSG_EXEC_SHELL);
976 packet_send();
977 packet_write_wait();
978 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000979
Damien Miller95def091999-11-25 00:26:21 +1100980 /* Enter the interactive session. */
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +0000981 return client_loop(have_tty, tty_flag ?
982 options.escape_char : SSH_ESCAPECHAR_NONE, 0);
Damien Miller1383bd82000-04-06 12:32:37 +1000983}
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000984
Ben Lindstrombba81212001-06-25 05:01:22 +0000985static void
Damien Miller630d6f42002-01-22 23:17:30 +1100986client_subsystem_reply(int type, u_int32_t seq, void *ctxt)
Ben Lindstrom1e7d3062001-02-09 02:36:43 +0000987{
988 int id, len;
989
990 id = packet_get_int();
991 len = buffer_len(&command);
Ben Lindstrom4040fe12001-03-05 06:52:57 +0000992 if (len > 900)
993 len = 900;
Damien Miller48b03fc2002-01-22 23:11:40 +1100994 packet_check_eom();
Ben Lindstrom1e7d3062001-02-09 02:36:43 +0000995 if (type == SSH2_MSG_CHANNEL_FAILURE)
996 fatal("Request for subsystem '%.*s' failed on channel %d",
Damien Miller5a6b4fe2001-12-21 14:56:54 +1100997 len, (u_char *)buffer_ptr(&command), id);
Ben Lindstrom1e7d3062001-02-09 02:36:43 +0000998}
999
Damien Miller2797f7f2002-04-23 21:09:44 +10001000void
1001client_global_request_reply(int type, u_int32_t seq, void *ctxt)
1002{
1003 int i;
1004
1005 i = client_global_request_id++;
1006 if (i >= options.num_remote_forwards) {
1007 debug("client_global_request_reply: too many replies %d > %d",
1008 i, options.num_remote_forwards);
1009 return;
1010 }
1011 debug("remote forward %s for: listen %d, connect %s:%d",
1012 type == SSH2_MSG_REQUEST_SUCCESS ? "success" : "failure",
1013 options.remote_forwards[i].port,
1014 options.remote_forwards[i].host,
1015 options.remote_forwards[i].host_port);
1016 if (type == SSH2_MSG_REQUEST_FAILURE)
1017 log("Warning: remote port forwarding failed for listen port %d",
1018 options.remote_forwards[i].port);
1019}
1020
Ben Lindstromf558cf62001-09-20 23:13:49 +00001021/* request pty/x11/agent/tcpfwd/shell for channel */
Ben Lindstrombba81212001-06-25 05:01:22 +00001022static void
Ben Lindstromf558cf62001-09-20 23:13:49 +00001023ssh_session2_setup(int id, void *arg)
Damien Miller1383bd82000-04-06 12:32:37 +10001024{
1025 int len;
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001026 int interactive = 0;
Ben Lindstromae8e2d32001-04-14 23:13:02 +00001027 struct termios tio;
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001028
Ben Lindstromf558cf62001-09-20 23:13:49 +00001029 debug("ssh_session2_setup: id %d", id);
Damien Miller1383bd82000-04-06 12:32:37 +10001030
Damien Miller1383bd82000-04-06 12:32:37 +10001031 if (tty_flag) {
1032 struct winsize ws;
1033 char *cp;
1034 cp = getenv("TERM");
1035 if (!cp)
1036 cp = "";
1037 /* Store window size in the packet. */
1038 if (ioctl(fileno(stdin), TIOCGWINSZ, &ws) < 0)
1039 memset(&ws, 0, sizeof(ws));
1040
1041 channel_request_start(id, "pty-req", 0);
1042 packet_put_cstring(cp);
1043 packet_put_int(ws.ws_col);
1044 packet_put_int(ws.ws_row);
1045 packet_put_int(ws.ws_xpixel);
1046 packet_put_int(ws.ws_ypixel);
Ben Lindstromae8e2d32001-04-14 23:13:02 +00001047 tio = get_saved_tio();
1048 tty_make_modes(/*ignored*/ 0, &tio);
Damien Miller1383bd82000-04-06 12:32:37 +10001049 packet_send();
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001050 interactive = 1;
Damien Miller1383bd82000-04-06 12:32:37 +10001051 /* XXX wait for reply */
1052 }
Damien Millerbd483e72000-04-30 10:00:53 +10001053 if (options.forward_x11 &&
1054 getenv("DISPLAY") != NULL) {
Ben Lindstrom4a4bd712001-12-06 17:45:19 +00001055 char *proto, *data;
Damien Millerbd483e72000-04-30 10:00:53 +10001056 /* Get reasonable local authentication information. */
Ben Lindstrom4a4bd712001-12-06 17:45:19 +00001057 x11_get_proto(&proto, &data);
Damien Millerbd483e72000-04-30 10:00:53 +10001058 /* Request forwarding with authentication spoofing. */
1059 debug("Requesting X11 forwarding with authentication spoofing.");
1060 x11_request_forwarding_with_spoofing(id, proto, data);
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001061 interactive = 1;
Damien Millerbd483e72000-04-30 10:00:53 +10001062 /* XXX wait for reply */
1063 }
1064
Damien Miller0bc1bd82000-11-13 22:57:25 +11001065 check_agent_present();
1066 if (options.forward_agent) {
1067 debug("Requesting authentication agent forwarding.");
1068 channel_request_start(id, "auth-agent-req@openssh.com", 0);
1069 packet_send();
1070 }
1071
Damien Miller1383bd82000-04-06 12:32:37 +10001072 len = buffer_len(&command);
1073 if (len > 0) {
1074 if (len > 900)
1075 len = 900;
Damien Miller832562e2001-01-30 09:30:01 +11001076 if (subsystem_flag) {
Damien Miller5a6b4fe2001-12-21 14:56:54 +11001077 debug("Sending subsystem: %.*s", len, (u_char *)buffer_ptr(&command));
Ben Lindstrom1e7d3062001-02-09 02:36:43 +00001078 channel_request_start(id, "subsystem", /*want reply*/ 1);
1079 /* register callback for reply */
Ben Lindstromf666fec2002-06-06 19:51:58 +00001080 /* XXX we assume that client_loop has already been called */
Ben Lindstrom1e7d3062001-02-09 02:36:43 +00001081 dispatch_set(SSH2_MSG_CHANNEL_FAILURE, &client_subsystem_reply);
1082 dispatch_set(SSH2_MSG_CHANNEL_SUCCESS, &client_subsystem_reply);
Damien Miller832562e2001-01-30 09:30:01 +11001083 } else {
Damien Miller5a6b4fe2001-12-21 14:56:54 +11001084 debug("Sending command: %.*s", len, (u_char *)buffer_ptr(&command));
Damien Miller832562e2001-01-30 09:30:01 +11001085 channel_request_start(id, "exec", 0);
1086 }
Ben Lindstrom4040fe12001-03-05 06:52:57 +00001087 packet_put_string(buffer_ptr(&command), buffer_len(&command));
Damien Miller1383bd82000-04-06 12:32:37 +10001088 packet_send();
1089 } else {
Damien Millera500cd62002-02-08 22:04:26 +11001090 channel_request_start(id, "shell", 0);
1091 packet_send();
Damien Miller1383bd82000-04-06 12:32:37 +10001092 }
Ben Lindstrom1e7d3062001-02-09 02:36:43 +00001093
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001094 packet_set_interactive(interactive);
Damien Miller1383bd82000-04-06 12:32:37 +10001095}
1096
Ben Lindstromf558cf62001-09-20 23:13:49 +00001097/* open new channel for a session */
Ben Lindstrombba81212001-06-25 05:01:22 +00001098static int
Ben Lindstromf558cf62001-09-20 23:13:49 +00001099ssh_session2_open(void)
Damien Miller1383bd82000-04-06 12:32:37 +10001100{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001101 Channel *c;
1102 int window, packetmax, in, out, err;
Damien Millerad833b32000-08-23 10:46:23 +10001103
Damien Millercaf6dd62000-08-29 11:33:50 +11001104 if (stdin_null_flag) {
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001105 in = open(_PATH_DEVNULL, O_RDONLY);
Damien Millercaf6dd62000-08-29 11:33:50 +11001106 } else {
1107 in = dup(STDIN_FILENO);
1108 }
1109 out = dup(STDOUT_FILENO);
1110 err = dup(STDERR_FILENO);
1111
1112 if (in < 0 || out < 0 || err < 0)
1113 fatal("dup() in/out/err failed");
1114
Damien Miller69b69aa2000-10-28 14:19:58 +11001115 /* enable nonblocking unless tty */
1116 if (!isatty(in))
1117 set_nonblock(in);
1118 if (!isatty(out))
1119 set_nonblock(out);
1120 if (!isatty(err))
1121 set_nonblock(err);
1122
Damien Millere4340be2000-09-16 13:29:08 +11001123 window = CHAN_SES_WINDOW_DEFAULT;
1124 packetmax = CHAN_SES_PACKET_DEFAULT;
Damien Miller19a59452002-02-19 15:20:57 +11001125 if (tty_flag) {
1126 window >>= 1;
1127 packetmax >>= 1;
Damien Miller1383bd82000-04-06 12:32:37 +10001128 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001129 c = channel_new(
Damien Miller1383bd82000-04-06 12:32:37 +10001130 "session", SSH_CHANNEL_OPENING, in, out, err,
Damien Millere4340be2000-09-16 13:29:08 +11001131 window, packetmax, CHAN_EXTENDED_WRITE,
Damien Miller69b69aa2000-10-28 14:19:58 +11001132 xstrdup("client-session"), /*nonblock*/0);
Damien Miller1383bd82000-04-06 12:32:37 +10001133
Ben Lindstromf558cf62001-09-20 23:13:49 +00001134 debug3("ssh_session2_open: channel_new: %d", c->self);
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001135
Ben Lindstrom5ec26452001-06-09 00:18:51 +00001136 channel_send_open(c->self);
Ben Lindstromf558cf62001-09-20 23:13:49 +00001137 if (!no_shell_flag)
Damien Miller67f0bc02002-02-05 12:23:08 +11001138 channel_register_confirm(c->self, ssh_session2_setup);
Damien Miller1383bd82000-04-06 12:32:37 +10001139
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001140 return c->self;
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001141}
1142
Ben Lindstrombba81212001-06-25 05:01:22 +00001143static int
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001144ssh_session2(void)
1145{
Ben Lindstromf558cf62001-09-20 23:13:49 +00001146 int id = -1;
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001147
1148 /* XXX should be pre-session */
1149 ssh_init_forwarding();
1150
Ben Lindstromf558cf62001-09-20 23:13:49 +00001151 if (!no_shell_flag || (datafellows & SSH_BUG_DUMMYCHAN))
1152 id = ssh_session2_open();
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001153
1154 /* If requested, let ssh continue in the background. */
1155 if (fork_after_authentication_flag)
1156 if (daemon(1, 1) < 0)
1157 fatal("daemon() failed: %.200s", strerror(errno));
1158
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +00001159 return client_loop(tty_flag, tty_flag ?
1160 options.escape_char : SSH_ESCAPECHAR_NONE, id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001161}
Damien Miller0bc1bd82000-11-13 22:57:25 +11001162
Ben Lindstrombba81212001-06-25 05:01:22 +00001163static void
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001164load_public_identity_files(void)
1165{
1166 char *filename;
Ben Lindstrom711b04a2001-08-06 21:12:42 +00001167 int i = 0;
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001168 Key *public;
Ben Lindstrom711b04a2001-08-06 21:12:42 +00001169#ifdef SMARTCARD
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001170 Key **keys;
1171
Ben Lindstromf7db3bb2001-08-06 21:35:51 +00001172 if (options.smartcard_device != NULL &&
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001173 options.num_identity_files < SSH_MAX_IDENTITY_FILES &&
1174 (keys = sc_get_keys(options.smartcard_device, NULL)) != NULL ) {
1175 int count = 0;
1176 for (i = 0; keys[i] != NULL; i++) {
1177 count++;
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001178 memmove(&options.identity_files[1], &options.identity_files[0],
1179 sizeof(char *) * (SSH_MAX_IDENTITY_FILES - 1));
1180 memmove(&options.identity_keys[1], &options.identity_keys[0],
1181 sizeof(Key *) * (SSH_MAX_IDENTITY_FILES - 1));
1182 options.num_identity_files++;
1183 options.identity_keys[0] = keys[i];
1184 options.identity_files[0] = xstrdup("smartcard key");;
1185 }
Ben Lindstrom4f054602002-03-26 03:23:00 +00001186 if (options.num_identity_files > SSH_MAX_IDENTITY_FILES)
1187 options.num_identity_files = SSH_MAX_IDENTITY_FILES;
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001188 i = count;
1189 xfree(keys);
Ben Lindstrom711b04a2001-08-06 21:12:42 +00001190 }
Ben Lindstromffce1472001-08-06 21:57:31 +00001191#endif /* SMARTCARD */
Ben Lindstrom711b04a2001-08-06 21:12:42 +00001192 for (; i < options.num_identity_files; i++) {
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001193 filename = tilde_expand_filename(options.identity_files[i],
1194 original_real_uid);
Ben Lindstromd0fca422001-03-26 13:44:06 +00001195 public = key_load_public(filename, NULL);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001196 debug("identity file %s type %d", filename,
1197 public ? public->type : -1);
1198 xfree(options.identity_files[i]);
1199 options.identity_files[i] = filename;
1200 options.identity_keys[i] = public;
1201 }
1202}