blob: be9c78b0fc28f1fa865ea4ac4d335f50a26c2949 [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"
Ben Lindstromf9c48842002-06-11 16:37:51 +000043RCSID("$OpenBSD: ssh.c,v 1.177 2002/06/11 04:14:26 markus Exp $");
Damien Millereba71ba2000-04-29 23:57:08 +100044
45#include <openssl/evp.h>
Damien Miller0bc1bd82000-11-13 22:57:25 +110046#include <openssl/err.h>
Damien Millerd4a8b7e1999-10-27 13:42:43 +100047
Damien Millerd4a8b7e1999-10-27 13:42:43 +100048#include "ssh.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000049#include "ssh1.h"
Damien Miller1383bd82000-04-06 12:32:37 +100050#include "ssh2.h"
51#include "compat.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000052#include "cipher.h"
53#include "xmalloc.h"
54#include "packet.h"
55#include "buffer.h"
Ben Lindstromc7637672001-06-09 00:36:26 +000056#include "channels.h"
Damien Millereba71ba2000-04-29 23:57:08 +100057#include "key.h"
Damien Miller994cf142000-07-21 10:19:44 +100058#include "authfd.h"
Damien Millereba71ba2000-04-29 23:57:08 +100059#include "authfile.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000060#include "pathnames.h"
Ben Lindstrombf555ba2001-01-18 02:04:35 +000061#include "clientloop.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000062#include "log.h"
63#include "readconf.h"
64#include "sshconnect.h"
65#include "tildexpand.h"
Ben Lindstrom1e7d3062001-02-09 02:36:43 +000066#include "dispatch.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000067#include "misc.h"
Ben Lindstrom06b33aa2001-02-15 03:01:59 +000068#include "kex.h"
69#include "mac.h"
Ben Lindstromae8e2d32001-04-14 23:13:02 +000070#include "sshtty.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100071
Ben Lindstromc5b68002001-07-04 04:52:03 +000072#ifdef SMARTCARD
Ben Lindstromc5b68002001-07-04 04:52:03 +000073#include "scard.h"
Ben Lindstrombcc18082001-08-06 21:59:25 +000074#endif
Ben Lindstromc5b68002001-07-04 04:52:03 +000075
Damien Miller3f905871999-11-15 17:10:57 +110076#ifdef HAVE___PROGNAME
77extern char *__progname;
Ben Lindstrom49a79c02000-11-17 03:47:20 +000078#else
79char *__progname;
80#endif
Damien Miller3f905871999-11-15 17:10:57 +110081
Damien Miller34132e52000-01-14 15:45:46 +110082/* Flag indicating whether IPv4 or IPv6. This can be set on the command line.
83 Default value is AF_UNSPEC means both IPv4 and IPv6. */
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");
177 fprintf(stderr, " -P Don't allocate a privileged port.\n");
178 fprintf(stderr, " -q Quiet; don't display any warning messages.\n");
179 fprintf(stderr, " -f Fork into background after authentication.\n");
180 fprintf(stderr, " -e char Set escape character; ``none'' = disable (default: ~).\n");
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000181
Ben Lindstrom3b89c5e2001-06-05 20:44:16 +0000182 fprintf(stderr, " -c cipher Select encryption algorithm\n");
Ben Lindstrom3d73a342001-03-05 07:39:01 +0000183 fprintf(stderr, " -m macs Specify MAC algorithms for protocol version 2.\n");
Damien Miller95def091999-11-25 00:26:21 +1100184 fprintf(stderr, " -p port Connect to this port. Server must be on the same port.\n");
185 fprintf(stderr, " -L listen-port:host:port Forward local port to remote address\n");
186 fprintf(stderr, " -R listen-port:host:port Forward remote port to local address\n");
Kevin Stevesec84dc12000-12-13 17:45:15 +0000187 fprintf(stderr, " These cause %s to listen for connections on a port, and\n", __progname);
Damien Miller95def091999-11-25 00:26:21 +1100188 fprintf(stderr, " forward them to the other side by connecting to host:port.\n");
Ben Lindstrom19ceb172001-09-12 17:54:24 +0000189 fprintf(stderr, " -D port Enable dynamic application-level port forwarding.\n");
Damien Miller95def091999-11-25 00:26:21 +1100190 fprintf(stderr, " -C Enable compression.\n");
Damien Miller1383bd82000-04-06 12:32:37 +1000191 fprintf(stderr, " -N Do not execute a shell or command.\n");
Damien Miller95def091999-11-25 00:26:21 +1100192 fprintf(stderr, " -g Allow remote hosts to connect to forwarded ports.\n");
Ben Lindstrom1e7d3062001-02-09 02:36:43 +0000193 fprintf(stderr, " -1 Force protocol version 1.\n");
194 fprintf(stderr, " -2 Force protocol version 2.\n");
Damien Miller34132e52000-01-14 15:45:46 +1100195 fprintf(stderr, " -4 Use IPv4 only.\n");
196 fprintf(stderr, " -6 Use IPv6 only.\n");
Damien Miller95def091999-11-25 00:26:21 +1100197 fprintf(stderr, " -o 'option' Process the option as if it was read from a configuration file.\n");
Damien Miller832562e2001-01-30 09:30:01 +1100198 fprintf(stderr, " -s Invoke command (mandatory) as SSH2 subsystem.\n");
Ben Lindstrom3b89c5e2001-06-05 20:44:16 +0000199 fprintf(stderr, " -b addr Local IP address.\n");
Damien Miller95def091999-11-25 00:26:21 +1100200 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000201}
202
Ben Lindstrombba81212001-06-25 05:01:22 +0000203static int ssh_session(void);
204static int ssh_session2(void);
205static void load_public_identity_files(void);
Damien Miller1383bd82000-04-06 12:32:37 +1000206
Damien Miller95def091999-11-25 00:26:21 +1100207/*
208 * Main program for the ssh client.
209 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000210int
211main(int ac, char **av)
212{
Ben Lindstromf9cedb92001-08-06 21:07:11 +0000213 int i, opt, exit_status, cerr;
Damien Milleraae6c611999-12-06 11:47:28 +1100214 u_short fwd_port, fwd_host_port;
Ben Lindstrom1a174712001-09-12 17:56:15 +0000215 char sfwd_port[6], sfwd_host_port[6];
Damien Millerf4614452001-07-14 12:18:10 +1000216 char *p, *cp, buf[256];
Damien Miller95def091999-11-25 00:26:21 +1100217 struct stat st;
Ben Lindstrom086cf212001-03-05 05:56:40 +0000218 struct passwd *pw;
Damien Miller1383bd82000-04-06 12:32:37 +1000219 int dummy;
Ben Lindstrom5ccf63a2001-09-24 20:00:10 +0000220 extern int optind, optreset;
Damien Miller4f8e6692001-07-14 13:22:53 +1000221 extern char *optarg;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000222
Ben Lindstrom49a79c02000-11-17 03:47:20 +0000223 __progname = get_progname(av[0]);
Damien Millerf9b625c2000-07-09 22:42:32 +1000224 init_rng();
225
Damien Miller5428f641999-11-25 11:54:57 +1100226 /*
227 * Save the original real uid. It will be needed later (uid-swapping
228 * may clobber the real uid).
229 */
Damien Miller95def091999-11-25 00:26:21 +1100230 original_real_uid = getuid();
231 original_effective_uid = geteuid();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000232
Damien Miller05dd7952000-10-01 00:42:48 +1100233#ifdef HAVE_SETRLIMIT
Damien Miller95def091999-11-25 00:26:21 +1100234 /* If we are installed setuid root be careful to not drop core. */
235 if (original_real_uid != original_effective_uid) {
236 struct rlimit rlim;
237 rlim.rlim_cur = rlim.rlim_max = 0;
238 if (setrlimit(RLIMIT_CORE, &rlim) < 0)
239 fatal("setrlimit failed: %.100s", strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000240 }
Damien Millerbac2d8a2000-09-05 16:13:06 +1100241#endif
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000242 /* Get user data. */
243 pw = getpwuid(original_real_uid);
244 if (!pw) {
245 log("You don't exist, go away!");
246 exit(1);
247 }
248 /* Take a copy of the returned structure. */
249 pw = pwcopy(pw);
250
Damien Miller5428f641999-11-25 11:54:57 +1100251 /*
252 * Use uid-swapping to give up root privileges for the duration of
253 * option processing. We will re-instantiate the rights when we are
254 * ready to create the privileged port, and will permanently drop
255 * them when the port has been created (actually, when the connection
256 * has been made, as we may need to create the port several times).
257 */
Ben Lindstromf9c48842002-06-11 16:37:51 +0000258 PRIV_END;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000259
Damien Miller5428f641999-11-25 11:54:57 +1100260 /*
261 * Set our umask to something reasonable, as some files are created
262 * with the default umask. This will make them world-readable but
263 * writable only by the owner, which is ok for all files for which we
264 * don't set the modes explicitly.
265 */
Damien Miller95def091999-11-25 00:26:21 +1100266 umask(022);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000267
Damien Miller95def091999-11-25 00:26:21 +1100268 /* Initialize option structure to indicate that no values have been set. */
269 initialize_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000270
Damien Miller95def091999-11-25 00:26:21 +1100271 /* Parse command-line arguments. */
272 host = NULL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000273
Damien Millerf4614452001-07-14 12:18:10 +1000274again:
275 while ((opt = getopt(ac, av,
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000276 "1246ab:c:e:fgi:kl:m:no:p:qstvxACD:F:I:L:NPR:TVX")) != -1) {
Damien Miller95def091999-11-25 00:26:21 +1100277 switch (opt) {
Ben Lindstrom1e7d3062001-02-09 02:36:43 +0000278 case '1':
279 options.protocol = SSH_PROTO_1;
280 break;
Damien Miller4af51302000-04-16 11:18:38 +1000281 case '2':
282 options.protocol = SSH_PROTO_2;
283 break;
Damien Miller34132e52000-01-14 15:45:46 +1100284 case '4':
285 IPv4or6 = AF_INET;
286 break;
Damien Miller34132e52000-01-14 15:45:46 +1100287 case '6':
288 IPv4or6 = AF_INET6;
289 break;
Damien Miller95def091999-11-25 00:26:21 +1100290 case 'n':
291 stdin_null_flag = 1;
292 break;
Damien Miller95def091999-11-25 00:26:21 +1100293 case 'f':
294 fork_after_authentication_flag = 1;
295 stdin_null_flag = 1;
296 break;
Damien Miller95def091999-11-25 00:26:21 +1100297 case 'x':
298 options.forward_x11 = 0;
299 break;
Damien Miller95def091999-11-25 00:26:21 +1100300 case 'X':
301 options.forward_x11 = 1;
302 break;
Damien Miller95def091999-11-25 00:26:21 +1100303 case 'g':
304 options.gateway_ports = 1;
305 break;
Damien Miller95def091999-11-25 00:26:21 +1100306 case 'P':
307 options.use_privileged_port = 0;
308 break;
Damien Miller95def091999-11-25 00:26:21 +1100309 case 'a':
310 options.forward_agent = 0;
311 break;
Damien Millerb1715dc2000-05-30 13:44:51 +1000312 case 'A':
313 options.forward_agent = 1;
314 break;
Damien Miller95def091999-11-25 00:26:21 +1100315#ifdef AFS
316 case 'k':
317 options.kerberos_tgt_passing = 0;
318 options.afs_token_passing = 0;
319 break;
320#endif
321 case 'i':
322 if (stat(optarg, &st) < 0) {
Damien Millerf4614452001-07-14 12:18:10 +1000323 fprintf(stderr, "Warning: Identity file %s "
324 "does not exist.\n", optarg);
Damien Miller95def091999-11-25 00:26:21 +1100325 break;
326 }
Damien Millerf4614452001-07-14 12:18:10 +1000327 if (options.num_identity_files >=
328 SSH_MAX_IDENTITY_FILES)
329 fatal("Too many identity files specified "
330 "(max %d)", SSH_MAX_IDENTITY_FILES);
331 options.identity_files[options.num_identity_files++] =
332 xstrdup(optarg);
Damien Miller95def091999-11-25 00:26:21 +1100333 break;
Ben Lindstromc5b68002001-07-04 04:52:03 +0000334 case 'I':
335#ifdef SMARTCARD
Ben Lindstromf7db3bb2001-08-06 21:35:51 +0000336 options.smartcard_device = xstrdup(optarg);
Ben Lindstrombcc18082001-08-06 21:59:25 +0000337#else
Ben Lindstromc5b68002001-07-04 04:52:03 +0000338 fprintf(stderr, "no support for smartcards.\n");
Ben Lindstrombcc18082001-08-06 21:59:25 +0000339#endif
Ben Lindstromc5b68002001-07-04 04:52:03 +0000340 break;
Damien Miller95def091999-11-25 00:26:21 +1100341 case 't':
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000342 if (tty_flag)
343 force_tty_flag = 1;
Damien Miller95def091999-11-25 00:26:21 +1100344 tty_flag = 1;
345 break;
Damien Miller95def091999-11-25 00:26:21 +1100346 case 'v':
Damien Millere4340be2000-09-16 13:29:08 +1100347 if (0 == debug_flag) {
348 debug_flag = 1;
349 options.log_level = SYSLOG_LEVEL_DEBUG1;
350 } else if (options.log_level < SYSLOG_LEVEL_DEBUG3) {
351 options.log_level++;
352 break;
Damien Millerf4614452001-07-14 12:18:10 +1000353 } else
Ben Lindstrom6df8ef42001-03-05 07:47:23 +0000354 fatal("Too high debugging level.");
Damien Millere4340be2000-09-16 13:29:08 +1100355 /* fallthrough */
Damien Miller95def091999-11-25 00:26:21 +1100356 case 'V':
Damien Miller225736c2001-02-19 21:51:08 +1100357 fprintf(stderr,
358 "%s, SSH protocols %d.%d/%d.%d, OpenSSL 0x%8.8lx\n",
Damien Miller78928792000-04-12 20:17:38 +1000359 SSH_VERSION,
360 PROTOCOL_MAJOR_1, PROTOCOL_MINOR_1,
Damien Miller225736c2001-02-19 21:51:08 +1100361 PROTOCOL_MAJOR_2, PROTOCOL_MINOR_2,
362 SSLeay());
Damien Miller95def091999-11-25 00:26:21 +1100363 if (opt == 'V')
364 exit(0);
Damien Miller95def091999-11-25 00:26:21 +1100365 break;
Damien Miller95def091999-11-25 00:26:21 +1100366 case 'q':
367 options.log_level = SYSLOG_LEVEL_QUIET;
368 break;
Damien Miller95def091999-11-25 00:26:21 +1100369 case 'e':
370 if (optarg[0] == '^' && optarg[2] == 0 &&
Damien Millerf4614452001-07-14 12:18:10 +1000371 (u_char) optarg[1] >= 64 &&
372 (u_char) optarg[1] < 128)
Ben Lindstrom46c16222000-12-22 01:43:59 +0000373 options.escape_char = (u_char) optarg[1] & 31;
Damien Miller95def091999-11-25 00:26:21 +1100374 else if (strlen(optarg) == 1)
Ben Lindstrom46c16222000-12-22 01:43:59 +0000375 options.escape_char = (u_char) optarg[0];
Damien Miller95def091999-11-25 00:26:21 +1100376 else if (strcmp(optarg, "none") == 0)
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +0000377 options.escape_char = SSH_ESCAPECHAR_NONE;
Damien Miller95def091999-11-25 00:26:21 +1100378 else {
Damien Millerf4614452001-07-14 12:18:10 +1000379 fprintf(stderr, "Bad escape character '%s'.\n",
380 optarg);
Damien Miller95def091999-11-25 00:26:21 +1100381 exit(1);
382 }
383 break;
Damien Miller95def091999-11-25 00:26:21 +1100384 case 'c':
Damien Millereba71ba2000-04-29 23:57:08 +1000385 if (ciphers_valid(optarg)) {
386 /* SSH2 only */
387 options.ciphers = xstrdup(optarg);
Damien Miller30c3d422000-05-09 11:02:59 +1000388 options.cipher = SSH_CIPHER_ILLEGAL;
Damien Millereba71ba2000-04-29 23:57:08 +1000389 } else {
390 /* SSH1 only */
Damien Millere39cacc2000-11-29 12:18:44 +1100391 options.cipher = cipher_number(optarg);
392 if (options.cipher == -1) {
Damien Millerf4614452001-07-14 12:18:10 +1000393 fprintf(stderr,
394 "Unknown cipher type '%s'\n",
395 optarg);
Damien Millereba71ba2000-04-29 23:57:08 +1000396 exit(1);
397 }
Damien Millerf4614452001-07-14 12:18:10 +1000398 if (options.cipher == SSH_CIPHER_3DES)
Damien Millere39cacc2000-11-29 12:18:44 +1100399 options.ciphers = "3des-cbc";
Damien Millerf4614452001-07-14 12:18:10 +1000400 else if (options.cipher == SSH_CIPHER_BLOWFISH)
Damien Millere39cacc2000-11-29 12:18:44 +1100401 options.ciphers = "blowfish-cbc";
Damien Millerf4614452001-07-14 12:18:10 +1000402 else
Damien Millere39cacc2000-11-29 12:18:44 +1100403 options.ciphers = (char *)-1;
Damien Miller95def091999-11-25 00:26:21 +1100404 }
405 break;
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000406 case 'm':
407 if (mac_valid(optarg))
408 options.macs = xstrdup(optarg);
409 else {
Damien Millerf4614452001-07-14 12:18:10 +1000410 fprintf(stderr, "Unknown mac type '%s'\n",
411 optarg);
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000412 exit(1);
413 }
414 break;
Damien Miller95def091999-11-25 00:26:21 +1100415 case 'p':
Ben Lindstrom19066a12001-04-12 23:39:26 +0000416 options.port = a2port(optarg);
417 if (options.port == 0) {
Ben Lindstrom146edb92001-04-11 23:06:28 +0000418 fprintf(stderr, "Bad port '%s'\n", optarg);
419 exit(1);
420 }
Damien Miller95def091999-11-25 00:26:21 +1100421 break;
Damien Miller95def091999-11-25 00:26:21 +1100422 case 'l':
423 options.user = optarg;
424 break;
Ben Lindstrom1a174712001-09-12 17:56:15 +0000425
Damien Miller95def091999-11-25 00:26:21 +1100426 case 'L':
Ben Lindstrom1a174712001-09-12 17:56:15 +0000427 case 'R':
428 if (sscanf(optarg, "%5[0-9]:%255[^:]:%5[0-9]",
429 sfwd_port, buf, sfwd_host_port) != 3 &&
430 sscanf(optarg, "%5[0-9]/%255[^/]/%5[0-9]",
431 sfwd_port, buf, sfwd_host_port) != 3) {
Damien Millerf4614452001-07-14 12:18:10 +1000432 fprintf(stderr,
Ben Lindstrom1a174712001-09-12 17:56:15 +0000433 "Bad forwarding specification '%s'\n",
Damien Millerf4614452001-07-14 12:18:10 +1000434 optarg);
Damien Miller95def091999-11-25 00:26:21 +1100435 usage();
436 /* NOTREACHED */
437 }
Ben Lindstrom1a174712001-09-12 17:56:15 +0000438 if ((fwd_port = a2port(sfwd_port)) == 0 ||
Ben Lindstrom6328ab32002-03-22 02:54:23 +0000439 (fwd_host_port = a2port(sfwd_host_port)) == 0) {
Ben Lindstrom1a174712001-09-12 17:56:15 +0000440 fprintf(stderr,
441 "Bad forwarding port(s) '%s'\n", optarg);
442 exit(1);
443 }
444 if (opt == 'L')
445 add_local_forward(&options, fwd_port, buf,
446 fwd_host_port);
447 else if (opt == 'R')
448 add_remote_forward(&options, fwd_port, buf,
Damien Miller9f0f5c62001-12-21 14:45:46 +1100449 fwd_host_port);
Damien Miller95def091999-11-25 00:26:21 +1100450 break;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000451
452 case 'D':
Ben Lindstrom19066a12001-04-12 23:39:26 +0000453 fwd_port = a2port(optarg);
454 if (fwd_port == 0) {
Damien Millerf4614452001-07-14 12:18:10 +1000455 fprintf(stderr, "Bad dynamic port '%s'\n",
456 optarg);
Ben Lindstrom146edb92001-04-11 23:06:28 +0000457 exit(1);
458 }
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000459 add_local_forward(&options, fwd_port, "socks4", 0);
460 break;
461
Damien Miller95def091999-11-25 00:26:21 +1100462 case 'C':
463 options.compression = 1;
464 break;
Damien Miller1383bd82000-04-06 12:32:37 +1000465 case 'N':
466 no_shell_flag = 1;
467 no_tty_flag = 1;
468 break;
Damien Miller1383bd82000-04-06 12:32:37 +1000469 case 'T':
470 no_tty_flag = 1;
471 break;
Damien Miller95def091999-11-25 00:26:21 +1100472 case 'o':
473 dummy = 1;
Damien Millerf4614452001-07-14 12:18:10 +1000474 if (process_config_line(&options, host ? host : "",
475 optarg, "command-line", 0, &dummy) != 0)
Damien Miller95def091999-11-25 00:26:21 +1100476 exit(1);
477 break;
Damien Miller832562e2001-01-30 09:30:01 +1100478 case 's':
479 subsystem_flag = 1;
480 break;
Ben Lindstrome0f88042001-04-30 13:06:24 +0000481 case 'b':
482 options.bind_address = optarg;
483 break;
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000484 case 'F':
485 config = optarg;
486 break;
Damien Miller95def091999-11-25 00:26:21 +1100487 default:
488 usage();
489 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000490 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000491
Damien Millerf4614452001-07-14 12:18:10 +1000492 ac -= optind;
493 av += optind;
494
495 if (ac > 0 && !host && **av != '-') {
496 if (strchr(*av, '@')) {
497 p = xstrdup(*av);
498 cp = strchr(p, '@');
499 if (cp == NULL || cp == p)
500 usage();
501 options.user = p;
502 *cp = '\0';
503 host = ++cp;
504 } else
505 host = *av;
506 ac--, av++;
507 if (ac > 0) {
508 optind = 0;
509 optreset = 1;
510 goto again;
511 }
512 }
513
Damien Miller95def091999-11-25 00:26:21 +1100514 /* Check that we got a host name. */
515 if (!host)
516 usage();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000517
Damien Millercb5e44a2000-09-29 12:12:36 +1100518 SSLeay_add_all_algorithms();
Damien Miller0bc1bd82000-11-13 22:57:25 +1100519 ERR_load_crypto_strings();
Ben Lindstrom908afed2001-10-03 17:34:59 +0000520 channel_set_af(IPv4or6);
Damien Millercb5e44a2000-09-29 12:12:36 +1100521
Damien Miller95def091999-11-25 00:26:21 +1100522 /* Initialize the command to execute on remote host. */
523 buffer_init(&command);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000524
Damien Miller5428f641999-11-25 11:54:57 +1100525 /*
526 * Save the command to execute on the remote host in a buffer. There
527 * is no limit on the length of the command, except by the maximum
528 * packet size. Also sets the tty flag if there is no command.
529 */
Damien Millerf4614452001-07-14 12:18:10 +1000530 if (!ac) {
Damien Miller95def091999-11-25 00:26:21 +1100531 /* No command specified - execute shell on a tty. */
532 tty_flag = 1;
Damien Miller832562e2001-01-30 09:30:01 +1100533 if (subsystem_flag) {
Damien Millerf4614452001-07-14 12:18:10 +1000534 fprintf(stderr,
535 "You must specify a subsystem to invoke.\n");
Damien Miller832562e2001-01-30 09:30:01 +1100536 usage();
537 }
Damien Miller95def091999-11-25 00:26:21 +1100538 } else {
Damien Millerf4614452001-07-14 12:18:10 +1000539 /* A command has been specified. Store it into the buffer. */
540 for (i = 0; i < ac; i++) {
541 if (i)
Damien Miller95def091999-11-25 00:26:21 +1100542 buffer_append(&command, " ", 1);
543 buffer_append(&command, av[i], strlen(av[i]));
544 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000545 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000546
Damien Miller95def091999-11-25 00:26:21 +1100547 /* Cannot fork to background if no command. */
Damien Millercaf6dd62000-08-29 11:33:50 +1100548 if (fork_after_authentication_flag && buffer_len(&command) == 0 && !no_shell_flag)
Damien Miller95def091999-11-25 00:26:21 +1100549 fatal("Cannot fork into background without a command to execute.");
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000550
Damien Miller95def091999-11-25 00:26:21 +1100551 /* Allocate a tty by default if no command specified. */
552 if (buffer_len(&command) == 0)
553 tty_flag = 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000554
Ben Lindstromc72745a2000-12-02 19:03:54 +0000555 /* Force no tty*/
556 if (no_tty_flag)
557 tty_flag = 0;
Damien Miller95def091999-11-25 00:26:21 +1100558 /* Do not allocate a tty if stdin is not a tty. */
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000559 if (!isatty(fileno(stdin)) && !force_tty_flag) {
Damien Miller95def091999-11-25 00:26:21 +1100560 if (tty_flag)
Ben Lindstrom6df8ef42001-03-05 07:47:23 +0000561 log("Pseudo-terminal will not be allocated because stdin is not a terminal.");
Damien Miller95def091999-11-25 00:26:21 +1100562 tty_flag = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000563 }
Damien Miller1383bd82000-04-06 12:32:37 +1000564
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000565 /*
566 * Initialize "log" output. Since we are the client all output
567 * actually goes to stderr.
568 */
Ben Lindstrom2b646522001-04-12 16:16:57 +0000569 log_init(av[0], options.log_level == -1 ? SYSLOG_LEVEL_INFO : options.log_level,
570 SYSLOG_FACILITY_USER, 1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000571
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000572 /*
573 * Read per-user configuration file. Ignore the system wide config
574 * file if the user specifies a config file on the command line.
575 */
576 if (config != NULL) {
Ben Lindstromedc0cf22001-09-12 18:32:20 +0000577 if (!read_config_file(config, host, &options))
578 fatal("Can't open user config file %.100s: "
579 "%.100s", config, strerror(errno));
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000580 } else {
581 snprintf(buf, sizeof buf, "%.100s/%.100s", pw->pw_dir,
582 _PATH_SSH_USER_CONFFILE);
Ben Lindstromedc0cf22001-09-12 18:32:20 +0000583 (void)read_config_file(buf, host, &options);
Ben Lindstrom83f07d12001-10-03 17:22:29 +0000584
585 /* Read systemwide configuration file after use config. */
586 (void)read_config_file(_PATH_HOST_CONFIG_FILE, host, &options);
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000587 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000588
Damien Miller95def091999-11-25 00:26:21 +1100589 /* Fill configuration defaults. */
590 fill_default_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000591
Damien Miller95def091999-11-25 00:26:21 +1100592 /* reinit */
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000593 log_init(av[0], options.log_level, SYSLOG_FACILITY_USER, 1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000594
Damien Miller60bc5172001-03-19 09:38:15 +1100595 seed_rng();
596
Damien Miller95def091999-11-25 00:26:21 +1100597 if (options.user == NULL)
598 options.user = xstrdup(pw->pw_name);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000599
Damien Miller95def091999-11-25 00:26:21 +1100600 if (options.hostname != NULL)
601 host = options.hostname;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000602
Damien Miller95def091999-11-25 00:26:21 +1100603 /* Disable rhosts authentication if not running as root. */
Damien Millerbac2d8a2000-09-05 16:13:06 +1100604#ifdef HAVE_CYGWIN
605 /* Ignore uid if running under Windows */
606 if (!options.use_privileged_port) {
607#else
Damien Miller95def091999-11-25 00:26:21 +1100608 if (original_effective_uid != 0 || !options.use_privileged_port) {
Damien Millerbac2d8a2000-09-05 16:13:06 +1100609#endif
Kevin Stevesfcec7f82000-12-15 19:55:48 +0000610 debug("Rhosts Authentication disabled, "
611 "originating port will not be trusted.");
Damien Miller95def091999-11-25 00:26:21 +1100612 options.rhosts_authentication = 0;
Damien Miller95def091999-11-25 00:26:21 +1100613 }
Kevin Stevesfcec7f82000-12-15 19:55:48 +0000614 /* Open a connection to the remote host. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000615
Damien Miller139d4cd2001-10-10 15:07:44 +1000616 cerr = ssh_connect(host, &hostaddr, options.port, IPv4or6,
Kevin Stevesfcec7f82000-12-15 19:55:48 +0000617 options.connection_attempts,
Ben Lindstrom1aa64272002-06-11 20:28:05 +0000618#ifdef HAVE_CYGWIN
619 options.use_privileged_port,
620#else
Ben Lindstromf9c48842002-06-11 16:37:51 +0000621 original_effective_uid == 0 && options.use_privileged_port,
Ben Lindstrom1aa64272002-06-11 20:28:05 +0000622#endif
Ben Lindstromf9c48842002-06-11 16:37:51 +0000623 options.proxy_command);
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 Lindstromf9cedb92001-08-06 21:07:11 +0000636 if (!cerr && (options.rhosts_rsa_authentication ||
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000637 options.hostbased_authentication)) {
638 sensitive_data.nkeys = 3;
639 sensitive_data.keys = xmalloc(sensitive_data.nkeys*sizeof(Key));
Ben Lindstromf9c48842002-06-11 16:37:51 +0000640
641 PRIV_START;
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000642 sensitive_data.keys[0] = key_load_private_type(KEY_RSA1,
Ben Lindstromd0fca422001-03-26 13:44:06 +0000643 _PATH_HOST_KEY_FILE, "", NULL);
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000644 sensitive_data.keys[1] = key_load_private_type(KEY_DSA,
645 _PATH_HOST_DSA_KEY_FILE, "", NULL);
646 sensitive_data.keys[2] = key_load_private_type(KEY_RSA,
647 _PATH_HOST_RSA_KEY_FILE, "", NULL);
Ben Lindstromf9c48842002-06-11 16:37:51 +0000648 PRIV_END;
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000649
650 if (sensitive_data.keys[0] == NULL &&
651 sensitive_data.keys[1] == NULL &&
652 sensitive_data.keys[2] == NULL) {
653 sensitive_data.keys[1] = key_load_public(
654 _PATH_HOST_DSA_KEY_FILE, NULL);
655 sensitive_data.keys[2] = key_load_public(
656 _PATH_HOST_RSA_KEY_FILE, NULL);
657 sensitive_data.external_keysign = 1;
658 }
Damien Miller95def091999-11-25 00:26:21 +1100659 }
Damien Miller5428f641999-11-25 11:54:57 +1100660 /*
661 * Get rid of any extra privileges that we may have. We will no
662 * longer need them. Also, extra privileges could make it very hard
663 * to read identity files and other non-world-readable files from the
664 * user's home directory if it happens to be on a NFS volume where
665 * root is mapped to nobody.
666 */
Ben Lindstromf9c48842002-06-11 16:37:51 +0000667 seteuid(original_real_uid);
668 setuid(original_real_uid);
Damien Miller95def091999-11-25 00:26:21 +1100669
Damien Miller5428f641999-11-25 11:54:57 +1100670 /*
671 * Now that we are back to our own permissions, create ~/.ssh
672 * directory if it doesn\'t already exist.
673 */
Ben Lindstrom930b14a2001-08-15 23:19:21 +0000674 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 +1100675 if (stat(buf, &st) < 0)
Damien Millerbe484b52000-07-15 14:14:16 +1000676 if (mkdir(buf, 0700) < 0)
Damien Miller95def091999-11-25 00:26:21 +1100677 error("Could not create directory '%.200s'.", buf);
678
Ben Lindstrom4daea862002-06-09 20:04:02 +0000679 if (cerr)
680 exit(1);
Damien Miller95def091999-11-25 00:26:21 +1100681
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000682 /* load options.identity_files */
683 load_public_identity_files();
684
685 /* Expand ~ in known host file names. */
686 /* XXX mem-leaks: */
Damien Miller0bc1bd82000-11-13 22:57:25 +1100687 options.system_hostfile =
688 tilde_expand_filename(options.system_hostfile, original_real_uid);
689 options.user_hostfile =
690 tilde_expand_filename(options.user_hostfile, original_real_uid);
691 options.system_hostfile2 =
692 tilde_expand_filename(options.system_hostfile2, original_real_uid);
693 options.user_hostfile2 =
694 tilde_expand_filename(options.user_hostfile2, original_real_uid);
Damien Miller95def091999-11-25 00:26:21 +1100695
Damien Miller07cd5892001-11-12 10:52:03 +1100696 signal(SIGPIPE, SIG_IGN); /* ignore SIGPIPE early */
697
Damien Miller95def091999-11-25 00:26:21 +1100698 /* Log into the remote system. This never returns if the login fails. */
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000699 ssh_login(&sensitive_data, host, (struct sockaddr *)&hostaddr, pw);
Damien Miller95def091999-11-25 00:26:21 +1100700
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000701 /* We no longer need the private host keys. Clear them now. */
702 if (sensitive_data.nkeys != 0) {
703 for (i = 0; i < sensitive_data.nkeys; i++) {
704 if (sensitive_data.keys[i] != NULL) {
705 /* Destroys contents safely */
706 debug3("clear hostkey %d", i);
707 key_free(sensitive_data.keys[i]);
708 sensitive_data.keys[i] = NULL;
709 }
710 }
711 xfree(sensitive_data.keys);
712 }
Ben Lindstroma6c8a8d2001-08-06 21:42:00 +0000713 for (i = 0; i < options.num_identity_files; i++) {
714 if (options.identity_files[i]) {
715 xfree(options.identity_files[i]);
716 options.identity_files[i] = NULL;
717 }
718 if (options.identity_keys[i]) {
719 key_free(options.identity_keys[i]);
720 options.identity_keys[i] = NULL;
721 }
722 }
Damien Miller95def091999-11-25 00:26:21 +1100723
Damien Miller1383bd82000-04-06 12:32:37 +1000724 exit_status = compat20 ? ssh_session2() : ssh_session();
725 packet_close();
726 return exit_status;
727}
728
Ben Lindstrombba81212001-06-25 05:01:22 +0000729static void
Ben Lindstrom4a4bd712001-12-06 17:45:19 +0000730x11_get_proto(char **_proto, char **_data)
Damien Millerbd483e72000-04-30 10:00:53 +1000731{
732 char line[512];
Ben Lindstrom4a4bd712001-12-06 17:45:19 +0000733 static char proto[512], data[512];
Damien Millerbd483e72000-04-30 10:00:53 +1000734 FILE *f;
735 int got_data = 0, i;
Damien Miller35b13d62002-02-05 12:12:09 +1100736 char *display;
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';
Damien Miller35b13d62002-02-05 12:12:09 +1100741 if (options.xauth_location && (display = getenv("DISPLAY"))) {
Damien Millerd3a18572000-06-07 19:55:44 +1000742 /* Try to get Xauthority information for the display. */
Damien Miller35b13d62002-02-05 12:12:09 +1100743 if (strncmp(display, "localhost:", 10) == 0)
744 /*
745 * Handle FamilyLocal case where $DISPLAY does
746 * not match an authorization entry. For this we
747 * just try "xauth list unix:displaynum.screennum".
748 * XXX: "localhost" match to determine FamilyLocal
749 * is not perfect.
750 */
Ben Lindstromfac77692002-06-06 19:49:54 +0000751 snprintf(line, sizeof line, "%s list unix:%s 2>"
Damien Miller35b13d62002-02-05 12:12:09 +1100752 _PATH_DEVNULL, options.xauth_location, display+10);
753 else
Ben Lindstromfac77692002-06-06 19:49:54 +0000754 snprintf(line, sizeof line, "%s list %.200s 2>"
Damien Miller35b13d62002-02-05 12:12:09 +1100755 _PATH_DEVNULL, options.xauth_location, display);
756 debug2("x11_get_proto %s", line);
Damien Millerd3a18572000-06-07 19:55:44 +1000757 f = popen(line, "r");
758 if (f && fgets(line, sizeof(line), f) &&
Ben Lindstrom4a4bd712001-12-06 17:45:19 +0000759 sscanf(line, "%*s %511s %511s", proto, data) == 2)
Damien Millerd3a18572000-06-07 19:55:44 +1000760 got_data = 1;
761 if (f)
762 pclose(f);
763 }
Damien Millerbd483e72000-04-30 10:00:53 +1000764 /*
765 * If we didn't get authentication data, just make up some
766 * data. The forwarding code will check the validity of the
767 * response anyway, and substitute this data. The X11
768 * server, however, will ignore this fake data and use
769 * whatever authentication mechanisms it was using otherwise
770 * for the local connection.
771 */
772 if (!got_data) {
773 u_int32_t rand = 0;
774
Ben Lindstrom4a4bd712001-12-06 17:45:19 +0000775 strlcpy(proto, "MIT-MAGIC-COOKIE-1", sizeof proto);
Damien Millerbd483e72000-04-30 10:00:53 +1000776 for (i = 0; i < 16; i++) {
777 if (i % 4 == 0)
778 rand = arc4random();
Ben Lindstrom4a4bd712001-12-06 17:45:19 +0000779 snprintf(data + 2 * i, sizeof data - 2 * i, "%02x", rand & 0xff);
Damien Millerbd483e72000-04-30 10:00:53 +1000780 rand >>= 8;
781 }
782 }
783}
784
Ben Lindstrombba81212001-06-25 05:01:22 +0000785static void
Damien Miller0bc1bd82000-11-13 22:57:25 +1100786ssh_init_forwarding(void)
787{
Kevin Steves12057502001-02-05 14:54:34 +0000788 int success = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100789 int i;
Kevin Steves12057502001-02-05 14:54:34 +0000790
Damien Miller0bc1bd82000-11-13 22:57:25 +1100791 /* Initiate local TCP/IP port forwardings. */
792 for (i = 0; i < options.num_local_forwards; i++) {
793 debug("Connections to local port %d forwarded to remote address %.200s:%d",
794 options.local_forwards[i].port,
795 options.local_forwards[i].host,
796 options.local_forwards[i].host_port);
Damien Millerb16461c2002-01-22 23:29:22 +1100797 success += channel_setup_local_fwd_listener(
Damien Miller0bc1bd82000-11-13 22:57:25 +1100798 options.local_forwards[i].port,
799 options.local_forwards[i].host,
800 options.local_forwards[i].host_port,
801 options.gateway_ports);
802 }
Kevin Steves12057502001-02-05 14:54:34 +0000803 if (i > 0 && success == 0)
804 error("Could not request local forwarding.");
Damien Miller0bc1bd82000-11-13 22:57:25 +1100805
806 /* Initiate remote TCP/IP port forwardings. */
807 for (i = 0; i < options.num_remote_forwards; i++) {
808 debug("Connections to remote port %d forwarded to local address %.200s:%d",
809 options.remote_forwards[i].port,
810 options.remote_forwards[i].host,
811 options.remote_forwards[i].host_port);
812 channel_request_remote_forwarding(
813 options.remote_forwards[i].port,
814 options.remote_forwards[i].host,
815 options.remote_forwards[i].host_port);
816 }
817}
818
Ben Lindstrombba81212001-06-25 05:01:22 +0000819static void
Damien Miller0bc1bd82000-11-13 22:57:25 +1100820check_agent_present(void)
821{
822 if (options.forward_agent) {
823 /* Clear agent forwarding if we don\'t have an agent. */
824 int authfd = ssh_get_authentication_socket();
825 if (authfd < 0)
826 options.forward_agent = 0;
827 else
828 ssh_close_authentication_socket(authfd);
829 }
830}
831
Ben Lindstrombba81212001-06-25 05:01:22 +0000832static int
Damien Miller1383bd82000-04-06 12:32:37 +1000833ssh_session(void)
834{
835 int type;
Damien Miller1383bd82000-04-06 12:32:37 +1000836 int interactive = 0;
837 int have_tty = 0;
838 struct winsize ws;
Damien Miller1383bd82000-04-06 12:32:37 +1000839 char *cp;
840
Damien Miller95def091999-11-25 00:26:21 +1100841 /* Enable compression if requested. */
842 if (options.compression) {
843 debug("Requesting compression at level %d.", options.compression_level);
844
845 if (options.compression_level < 1 || options.compression_level > 9)
846 fatal("Compression level must be from 1 (fast) to 9 (slow, best).");
847
848 /* Send the request. */
849 packet_start(SSH_CMSG_REQUEST_COMPRESSION);
850 packet_put_int(options.compression_level);
851 packet_send();
852 packet_write_wait();
Damien Millerdff50992002-01-22 23:16:32 +1100853 type = packet_read();
Damien Miller95def091999-11-25 00:26:21 +1100854 if (type == SSH_SMSG_SUCCESS)
855 packet_start_compression(options.compression_level);
856 else if (type == SSH_SMSG_FAILURE)
857 log("Warning: Remote host refused compression.");
858 else
859 packet_disconnect("Protocol error waiting for compression response.");
860 }
861 /* Allocate a pseudo tty if appropriate. */
862 if (tty_flag) {
863 debug("Requesting pty.");
864
865 /* Start the packet. */
866 packet_start(SSH_CMSG_REQUEST_PTY);
867
868 /* Store TERM in the packet. There is no limit on the
869 length of the string. */
870 cp = getenv("TERM");
871 if (!cp)
872 cp = "";
Ben Lindstrom664408d2001-06-09 01:42:01 +0000873 packet_put_cstring(cp);
Damien Miller95def091999-11-25 00:26:21 +1100874
875 /* Store window size in the packet. */
876 if (ioctl(fileno(stdin), TIOCGWINSZ, &ws) < 0)
877 memset(&ws, 0, sizeof(ws));
878 packet_put_int(ws.ws_row);
879 packet_put_int(ws.ws_col);
880 packet_put_int(ws.ws_xpixel);
881 packet_put_int(ws.ws_ypixel);
882
883 /* Store tty modes in the packet. */
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000884 tty_make_modes(fileno(stdin), NULL);
Damien Miller95def091999-11-25 00:26:21 +1100885
886 /* Send the packet, and wait for it to leave. */
887 packet_send();
888 packet_write_wait();
889
890 /* Read response from the server. */
Damien Millerdff50992002-01-22 23:16:32 +1100891 type = packet_read();
Damien Miller450a7a12000-03-26 13:04:51 +1000892 if (type == SSH_SMSG_SUCCESS) {
Damien Miller95def091999-11-25 00:26:21 +1100893 interactive = 1;
Damien Miller1383bd82000-04-06 12:32:37 +1000894 have_tty = 1;
Damien Miller450a7a12000-03-26 13:04:51 +1000895 } else if (type == SSH_SMSG_FAILURE)
Damien Miller95def091999-11-25 00:26:21 +1100896 log("Warning: Remote host failed or refused to allocate a pseudo tty.");
897 else
898 packet_disconnect("Protocol error waiting for pty request response.");
899 }
900 /* Request X11 forwarding if enabled and DISPLAY is set. */
901 if (options.forward_x11 && getenv("DISPLAY") != NULL) {
Ben Lindstrom4a4bd712001-12-06 17:45:19 +0000902 char *proto, *data;
Damien Millerbd483e72000-04-30 10:00:53 +1000903 /* Get reasonable local authentication information. */
Ben Lindstrom4a4bd712001-12-06 17:45:19 +0000904 x11_get_proto(&proto, &data);
Damien Millerbd483e72000-04-30 10:00:53 +1000905 /* Request forwarding with authentication spoofing. */
Damien Miller95def091999-11-25 00:26:21 +1100906 debug("Requesting X11 forwarding with authentication spoofing.");
Damien Millerbd483e72000-04-30 10:00:53 +1000907 x11_request_forwarding_with_spoofing(0, proto, data);
Damien Miller95def091999-11-25 00:26:21 +1100908
909 /* Read response from the server. */
Damien Millerdff50992002-01-22 23:16:32 +1100910 type = packet_read();
Damien Miller95def091999-11-25 00:26:21 +1100911 if (type == SSH_SMSG_SUCCESS) {
Damien Miller95def091999-11-25 00:26:21 +1100912 interactive = 1;
Damien Millerbd483e72000-04-30 10:00:53 +1000913 } else if (type == SSH_SMSG_FAILURE) {
Damien Miller95def091999-11-25 00:26:21 +1100914 log("Warning: Remote host denied X11 forwarding.");
Damien Millerbd483e72000-04-30 10:00:53 +1000915 } else {
Damien Miller95def091999-11-25 00:26:21 +1100916 packet_disconnect("Protocol error waiting for X11 forwarding");
Damien Millerbd483e72000-04-30 10:00:53 +1000917 }
Damien Miller95def091999-11-25 00:26:21 +1100918 }
919 /* Tell the packet module whether this is an interactive session. */
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000920 packet_set_interactive(interactive);
Damien Miller95def091999-11-25 00:26:21 +1100921
922 /* Request authentication agent forwarding if appropriate. */
Damien Miller0bc1bd82000-11-13 22:57:25 +1100923 check_agent_present();
924
Damien Miller95def091999-11-25 00:26:21 +1100925 if (options.forward_agent) {
926 debug("Requesting authentication agent forwarding.");
927 auth_request_forwarding();
928
929 /* Read response from the server. */
Damien Millerdff50992002-01-22 23:16:32 +1100930 type = packet_read();
Damien Miller48b03fc2002-01-22 23:11:40 +1100931 packet_check_eom();
Damien Miller95def091999-11-25 00:26:21 +1100932 if (type != SSH_SMSG_SUCCESS)
933 log("Warning: Remote host denied authentication agent forwarding.");
934 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000935
Damien Miller0bc1bd82000-11-13 22:57:25 +1100936 /* Initiate port forwardings. */
937 ssh_init_forwarding();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000938
Damien Miller5428f641999-11-25 11:54:57 +1100939 /* If requested, let ssh continue in the background. */
Damien Miller4af51302000-04-16 11:18:38 +1000940 if (fork_after_authentication_flag)
Damien Miller5428f641999-11-25 11:54:57 +1100941 if (daemon(1, 1) < 0)
942 fatal("daemon() failed: %.200s", strerror(errno));
943
944 /*
945 * If a command was specified on the command line, execute the
946 * command now. Otherwise request the server to start a shell.
947 */
Damien Miller95def091999-11-25 00:26:21 +1100948 if (buffer_len(&command) > 0) {
949 int len = buffer_len(&command);
950 if (len > 900)
951 len = 900;
Damien Miller5a6b4fe2001-12-21 14:56:54 +1100952 debug("Sending command: %.*s", len, (u_char *)buffer_ptr(&command));
Damien Miller95def091999-11-25 00:26:21 +1100953 packet_start(SSH_CMSG_EXEC_CMD);
954 packet_put_string(buffer_ptr(&command), buffer_len(&command));
955 packet_send();
956 packet_write_wait();
957 } else {
958 debug("Requesting shell.");
959 packet_start(SSH_CMSG_EXEC_SHELL);
960 packet_send();
961 packet_write_wait();
962 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000963
Damien Miller95def091999-11-25 00:26:21 +1100964 /* Enter the interactive session. */
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +0000965 return client_loop(have_tty, tty_flag ?
966 options.escape_char : SSH_ESCAPECHAR_NONE, 0);
Damien Miller1383bd82000-04-06 12:32:37 +1000967}
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000968
Ben Lindstrombba81212001-06-25 05:01:22 +0000969static void
Damien Miller630d6f42002-01-22 23:17:30 +1100970client_subsystem_reply(int type, u_int32_t seq, void *ctxt)
Ben Lindstrom1e7d3062001-02-09 02:36:43 +0000971{
972 int id, len;
973
974 id = packet_get_int();
975 len = buffer_len(&command);
Ben Lindstrom4040fe12001-03-05 06:52:57 +0000976 if (len > 900)
977 len = 900;
Damien Miller48b03fc2002-01-22 23:11:40 +1100978 packet_check_eom();
Ben Lindstrom1e7d3062001-02-09 02:36:43 +0000979 if (type == SSH2_MSG_CHANNEL_FAILURE)
980 fatal("Request for subsystem '%.*s' failed on channel %d",
Damien Miller5a6b4fe2001-12-21 14:56:54 +1100981 len, (u_char *)buffer_ptr(&command), id);
Ben Lindstrom1e7d3062001-02-09 02:36:43 +0000982}
983
Damien Miller2797f7f2002-04-23 21:09:44 +1000984void
985client_global_request_reply(int type, u_int32_t seq, void *ctxt)
986{
987 int i;
988
989 i = client_global_request_id++;
990 if (i >= options.num_remote_forwards) {
991 debug("client_global_request_reply: too many replies %d > %d",
992 i, options.num_remote_forwards);
993 return;
994 }
995 debug("remote forward %s for: listen %d, connect %s:%d",
996 type == SSH2_MSG_REQUEST_SUCCESS ? "success" : "failure",
997 options.remote_forwards[i].port,
998 options.remote_forwards[i].host,
999 options.remote_forwards[i].host_port);
1000 if (type == SSH2_MSG_REQUEST_FAILURE)
1001 log("Warning: remote port forwarding failed for listen port %d",
1002 options.remote_forwards[i].port);
1003}
1004
Ben Lindstromf558cf62001-09-20 23:13:49 +00001005/* request pty/x11/agent/tcpfwd/shell for channel */
Ben Lindstrombba81212001-06-25 05:01:22 +00001006static void
Ben Lindstromf558cf62001-09-20 23:13:49 +00001007ssh_session2_setup(int id, void *arg)
Damien Miller1383bd82000-04-06 12:32:37 +10001008{
1009 int len;
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001010 int interactive = 0;
Ben Lindstromae8e2d32001-04-14 23:13:02 +00001011 struct termios tio;
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001012
Ben Lindstromf558cf62001-09-20 23:13:49 +00001013 debug("ssh_session2_setup: id %d", id);
Damien Miller1383bd82000-04-06 12:32:37 +10001014
Damien Miller1383bd82000-04-06 12:32:37 +10001015 if (tty_flag) {
1016 struct winsize ws;
1017 char *cp;
1018 cp = getenv("TERM");
1019 if (!cp)
1020 cp = "";
1021 /* Store window size in the packet. */
1022 if (ioctl(fileno(stdin), TIOCGWINSZ, &ws) < 0)
1023 memset(&ws, 0, sizeof(ws));
1024
1025 channel_request_start(id, "pty-req", 0);
1026 packet_put_cstring(cp);
1027 packet_put_int(ws.ws_col);
1028 packet_put_int(ws.ws_row);
1029 packet_put_int(ws.ws_xpixel);
1030 packet_put_int(ws.ws_ypixel);
Ben Lindstromae8e2d32001-04-14 23:13:02 +00001031 tio = get_saved_tio();
1032 tty_make_modes(/*ignored*/ 0, &tio);
Damien Miller1383bd82000-04-06 12:32:37 +10001033 packet_send();
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001034 interactive = 1;
Damien Miller1383bd82000-04-06 12:32:37 +10001035 /* XXX wait for reply */
1036 }
Damien Millerbd483e72000-04-30 10:00:53 +10001037 if (options.forward_x11 &&
1038 getenv("DISPLAY") != NULL) {
Ben Lindstrom4a4bd712001-12-06 17:45:19 +00001039 char *proto, *data;
Damien Millerbd483e72000-04-30 10:00:53 +10001040 /* Get reasonable local authentication information. */
Ben Lindstrom4a4bd712001-12-06 17:45:19 +00001041 x11_get_proto(&proto, &data);
Damien Millerbd483e72000-04-30 10:00:53 +10001042 /* Request forwarding with authentication spoofing. */
1043 debug("Requesting X11 forwarding with authentication spoofing.");
1044 x11_request_forwarding_with_spoofing(id, proto, data);
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001045 interactive = 1;
Damien Millerbd483e72000-04-30 10:00:53 +10001046 /* XXX wait for reply */
1047 }
1048
Damien Miller0bc1bd82000-11-13 22:57:25 +11001049 check_agent_present();
1050 if (options.forward_agent) {
1051 debug("Requesting authentication agent forwarding.");
1052 channel_request_start(id, "auth-agent-req@openssh.com", 0);
1053 packet_send();
1054 }
1055
Damien Miller1383bd82000-04-06 12:32:37 +10001056 len = buffer_len(&command);
1057 if (len > 0) {
1058 if (len > 900)
1059 len = 900;
Damien Miller832562e2001-01-30 09:30:01 +11001060 if (subsystem_flag) {
Damien Miller5a6b4fe2001-12-21 14:56:54 +11001061 debug("Sending subsystem: %.*s", len, (u_char *)buffer_ptr(&command));
Ben Lindstrom1e7d3062001-02-09 02:36:43 +00001062 channel_request_start(id, "subsystem", /*want reply*/ 1);
1063 /* register callback for reply */
Ben Lindstromf666fec2002-06-06 19:51:58 +00001064 /* XXX we assume that client_loop has already been called */
Ben Lindstrom1e7d3062001-02-09 02:36:43 +00001065 dispatch_set(SSH2_MSG_CHANNEL_FAILURE, &client_subsystem_reply);
1066 dispatch_set(SSH2_MSG_CHANNEL_SUCCESS, &client_subsystem_reply);
Damien Miller832562e2001-01-30 09:30:01 +11001067 } else {
Damien Miller5a6b4fe2001-12-21 14:56:54 +11001068 debug("Sending command: %.*s", len, (u_char *)buffer_ptr(&command));
Damien Miller832562e2001-01-30 09:30:01 +11001069 channel_request_start(id, "exec", 0);
1070 }
Ben Lindstrom4040fe12001-03-05 06:52:57 +00001071 packet_put_string(buffer_ptr(&command), buffer_len(&command));
Damien Miller1383bd82000-04-06 12:32:37 +10001072 packet_send();
1073 } else {
Damien Millera500cd62002-02-08 22:04:26 +11001074 channel_request_start(id, "shell", 0);
1075 packet_send();
Damien Miller1383bd82000-04-06 12:32:37 +10001076 }
Ben Lindstrom1e7d3062001-02-09 02:36:43 +00001077
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001078 packet_set_interactive(interactive);
Damien Miller1383bd82000-04-06 12:32:37 +10001079}
1080
Ben Lindstromf558cf62001-09-20 23:13:49 +00001081/* open new channel for a session */
Ben Lindstrombba81212001-06-25 05:01:22 +00001082static int
Ben Lindstromf558cf62001-09-20 23:13:49 +00001083ssh_session2_open(void)
Damien Miller1383bd82000-04-06 12:32:37 +10001084{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001085 Channel *c;
1086 int window, packetmax, in, out, err;
Damien Millerad833b32000-08-23 10:46:23 +10001087
Damien Millercaf6dd62000-08-29 11:33:50 +11001088 if (stdin_null_flag) {
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001089 in = open(_PATH_DEVNULL, O_RDONLY);
Damien Millercaf6dd62000-08-29 11:33:50 +11001090 } else {
1091 in = dup(STDIN_FILENO);
1092 }
1093 out = dup(STDOUT_FILENO);
1094 err = dup(STDERR_FILENO);
1095
1096 if (in < 0 || out < 0 || err < 0)
1097 fatal("dup() in/out/err failed");
1098
Damien Miller69b69aa2000-10-28 14:19:58 +11001099 /* enable nonblocking unless tty */
1100 if (!isatty(in))
1101 set_nonblock(in);
1102 if (!isatty(out))
1103 set_nonblock(out);
1104 if (!isatty(err))
1105 set_nonblock(err);
1106
Damien Millere4340be2000-09-16 13:29:08 +11001107 window = CHAN_SES_WINDOW_DEFAULT;
1108 packetmax = CHAN_SES_PACKET_DEFAULT;
Damien Miller19a59452002-02-19 15:20:57 +11001109 if (tty_flag) {
1110 window >>= 1;
1111 packetmax >>= 1;
Damien Miller1383bd82000-04-06 12:32:37 +10001112 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001113 c = channel_new(
Damien Miller1383bd82000-04-06 12:32:37 +10001114 "session", SSH_CHANNEL_OPENING, in, out, err,
Damien Millere4340be2000-09-16 13:29:08 +11001115 window, packetmax, CHAN_EXTENDED_WRITE,
Damien Miller69b69aa2000-10-28 14:19:58 +11001116 xstrdup("client-session"), /*nonblock*/0);
Damien Miller1383bd82000-04-06 12:32:37 +10001117
Ben Lindstromf558cf62001-09-20 23:13:49 +00001118 debug3("ssh_session2_open: channel_new: %d", c->self);
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001119
Ben Lindstrom5ec26452001-06-09 00:18:51 +00001120 channel_send_open(c->self);
Ben Lindstromf558cf62001-09-20 23:13:49 +00001121 if (!no_shell_flag)
Damien Miller67f0bc02002-02-05 12:23:08 +11001122 channel_register_confirm(c->self, ssh_session2_setup);
Damien Miller1383bd82000-04-06 12:32:37 +10001123
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001124 return c->self;
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001125}
1126
Ben Lindstrombba81212001-06-25 05:01:22 +00001127static int
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001128ssh_session2(void)
1129{
Ben Lindstromf558cf62001-09-20 23:13:49 +00001130 int id = -1;
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001131
1132 /* XXX should be pre-session */
1133 ssh_init_forwarding();
1134
Ben Lindstromf558cf62001-09-20 23:13:49 +00001135 if (!no_shell_flag || (datafellows & SSH_BUG_DUMMYCHAN))
1136 id = ssh_session2_open();
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001137
1138 /* If requested, let ssh continue in the background. */
1139 if (fork_after_authentication_flag)
1140 if (daemon(1, 1) < 0)
1141 fatal("daemon() failed: %.200s", strerror(errno));
1142
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +00001143 return client_loop(tty_flag, tty_flag ?
1144 options.escape_char : SSH_ESCAPECHAR_NONE, id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001145}
Damien Miller0bc1bd82000-11-13 22:57:25 +11001146
Ben Lindstrombba81212001-06-25 05:01:22 +00001147static void
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001148load_public_identity_files(void)
1149{
1150 char *filename;
Ben Lindstrom711b04a2001-08-06 21:12:42 +00001151 int i = 0;
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001152 Key *public;
Ben Lindstrom711b04a2001-08-06 21:12:42 +00001153#ifdef SMARTCARD
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001154 Key **keys;
1155
Ben Lindstromf7db3bb2001-08-06 21:35:51 +00001156 if (options.smartcard_device != NULL &&
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001157 options.num_identity_files < SSH_MAX_IDENTITY_FILES &&
1158 (keys = sc_get_keys(options.smartcard_device, NULL)) != NULL ) {
1159 int count = 0;
1160 for (i = 0; keys[i] != NULL; i++) {
1161 count++;
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001162 memmove(&options.identity_files[1], &options.identity_files[0],
1163 sizeof(char *) * (SSH_MAX_IDENTITY_FILES - 1));
1164 memmove(&options.identity_keys[1], &options.identity_keys[0],
1165 sizeof(Key *) * (SSH_MAX_IDENTITY_FILES - 1));
1166 options.num_identity_files++;
1167 options.identity_keys[0] = keys[i];
1168 options.identity_files[0] = xstrdup("smartcard key");;
1169 }
Ben Lindstrom4f054602002-03-26 03:23:00 +00001170 if (options.num_identity_files > SSH_MAX_IDENTITY_FILES)
1171 options.num_identity_files = SSH_MAX_IDENTITY_FILES;
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001172 i = count;
1173 xfree(keys);
Ben Lindstrom711b04a2001-08-06 21:12:42 +00001174 }
Ben Lindstromffce1472001-08-06 21:57:31 +00001175#endif /* SMARTCARD */
Ben Lindstrom711b04a2001-08-06 21:12:42 +00001176 for (; i < options.num_identity_files; i++) {
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001177 filename = tilde_expand_filename(options.identity_files[i],
1178 original_real_uid);
Ben Lindstromd0fca422001-03-26 13:44:06 +00001179 public = key_load_public(filename, NULL);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001180 debug("identity file %s type %d", filename,
1181 public ? public->type : -1);
1182 xfree(options.identity_files[i]);
1183 options.identity_files[i] = filename;
1184 options.identity_keys[i] = public;
1185 }
1186}