blob: 6cee5c3bac98d7e4f93feaaa52ebd12b6a2c2d9d [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.
16 *
17 * Modified to work with SSL by Niels Provos <provos@citi.umich.edu>
18 * in Canada (German citizen).
19 *
20 * Redistribution and use in source and binary forms, with or without
21 * modification, are permitted provided that the following conditions
22 * are met:
23 * 1. Redistributions of source code must retain the above copyright
24 * notice, this list of conditions and the following disclaimer.
25 * 2. Redistributions in binary form must reproduce the above copyright
26 * notice, this list of conditions and the following disclaimer in the
27 * documentation and/or other materials provided with the distribution.
28 *
29 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
30 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
31 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
32 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
33 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
34 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
35 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
36 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
37 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
38 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Damien Miller95def091999-11-25 00:26:21 +110039 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100040
41#include "includes.h"
Ben Lindstrom5ccf63a2001-09-24 20:00:10 +000042RCSID("$OpenBSD: ssh.c,v 1.144 2001/09/24 03:38:58 stevesk Exp $");
Damien Millereba71ba2000-04-29 23:57:08 +100043
44#include <openssl/evp.h>
Damien Miller0bc1bd82000-11-13 22:57:25 +110045#include <openssl/err.h>
Damien Millerd4a8b7e1999-10-27 13:42:43 +100046
Damien Millerd4a8b7e1999-10-27 13:42:43 +100047#include "ssh.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000048#include "ssh1.h"
Damien Miller1383bd82000-04-06 12:32:37 +100049#include "ssh2.h"
50#include "compat.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000051#include "cipher.h"
52#include "xmalloc.h"
53#include "packet.h"
54#include "buffer.h"
55#include "uidswap.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
73#include <openssl/engine.h>
74#include "scard.h"
Ben Lindstrombcc18082001-08-06 21:59:25 +000075#endif
Ben Lindstromc5b68002001-07-04 04:52:03 +000076
Damien Miller3f905871999-11-15 17:10:57 +110077#ifdef HAVE___PROGNAME
78extern char *__progname;
Ben Lindstrom49a79c02000-11-17 03:47:20 +000079#else
80char *__progname;
81#endif
Damien Miller3f905871999-11-15 17:10:57 +110082
Damien Miller34132e52000-01-14 15:45:46 +110083/* Flag indicating whether IPv4 or IPv6. This can be set on the command line.
84 Default value is AF_UNSPEC means both IPv4 and IPv6. */
Damien Miller7d80e342000-01-19 14:36:49 +110085#ifdef IPV4_DEFAULT
86int IPv4or6 = AF_INET;
87#else
Damien Miller34132e52000-01-14 15:45:46 +110088int IPv4or6 = AF_UNSPEC;
Damien Miller7d80e342000-01-19 14:36:49 +110089#endif
Damien Miller34132e52000-01-14 15:45:46 +110090
Damien Miller95def091999-11-25 00:26:21 +110091/* Flag indicating whether debug mode is on. This can be set on the command line. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100092int debug_flag = 0;
93
Damien Miller78928792000-04-12 20:17:38 +100094/* Flag indicating whether a tty should be allocated */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100095int tty_flag = 0;
Ben Lindstrom4dccfa52000-12-28 16:40:05 +000096int no_tty_flag = 0;
97int force_tty_flag = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100098
Damien Miller1383bd82000-04-06 12:32:37 +100099/* don't exec a shell */
100int no_shell_flag = 0;
Damien Miller1383bd82000-04-06 12:32:37 +1000101
Damien Miller5428f641999-11-25 11:54:57 +1100102/*
103 * Flag indicating that nothing should be read from stdin. This can be set
104 * on the command line.
105 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000106int stdin_null_flag = 0;
107
Damien Miller5428f641999-11-25 11:54:57 +1100108/*
109 * Flag indicating that ssh should fork after authentication. This is useful
110 * so that the pasphrase can be entered manually, and then ssh goes to the
111 * background.
112 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000113int fork_after_authentication_flag = 0;
114
Damien Miller5428f641999-11-25 11:54:57 +1100115/*
116 * General data structure for command line options and options configurable
117 * in configuration files. See readconf.h.
118 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000119Options options;
120
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000121/* optional user configfile */
122char *config = NULL;
123
Damien Miller5428f641999-11-25 11:54:57 +1100124/*
125 * Name of the host we are connecting to. This is the name given on the
126 * command line, or the HostName specified for the user-supplied name in a
127 * configuration file.
128 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000129char *host;
130
131/* socket address the host resolves to */
Damien Miller34132e52000-01-14 15:45:46 +1100132struct sockaddr_storage hostaddr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000133
Damien Miller5428f641999-11-25 11:54:57 +1100134/*
135 * Flag to indicate that we have received a window change signal which has
136 * not yet been processed. This will cause a message indicating the new
137 * window size to be sent to the server a little later. This is volatile
138 * because this is updated in a signal handler.
139 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000140volatile int received_window_change_signal = 0;
141
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000142/* Private host keys. */
143struct {
144 Key **keys;
145 int nkeys;
146} sensitive_data;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000147
148/* Original real UID. */
149uid_t original_real_uid;
150
Damien Miller1383bd82000-04-06 12:32:37 +1000151/* command to be executed */
152Buffer command;
153
Damien Miller832562e2001-01-30 09:30:01 +1100154/* Should we execute a command or invoke a subsystem? */
155int subsystem_flag = 0;
156
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000157/* Prints a help message to the user. This function never returns. */
158
Ben Lindstrombba81212001-06-25 05:01:22 +0000159static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000160usage(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000161{
Kevin Stevesec84dc12000-12-13 17:45:15 +0000162 fprintf(stderr, "Usage: %s [options] host [command]\n", __progname);
Damien Miller95def091999-11-25 00:26:21 +1100163 fprintf(stderr, "Options:\n");
164 fprintf(stderr, " -l user Log in using this user name.\n");
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000165 fprintf(stderr, " -n Redirect input from " _PATH_DEVNULL ".\n");
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000166 fprintf(stderr, " -F config Config file (default: ~/%s).\n",
167 _PATH_SSH_USER_CONFFILE);
Damien Millerb1715dc2000-05-30 13:44:51 +1000168 fprintf(stderr, " -A Enable authentication agent forwarding.\n");
Ben Lindstrom3b89c5e2001-06-05 20:44:16 +0000169 fprintf(stderr, " -a Disable authentication agent forwarding (default).\n");
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000170#ifdef AFS
Damien Miller95def091999-11-25 00:26:21 +1100171 fprintf(stderr, " -k Disable Kerberos ticket and AFS token forwarding.\n");
172#endif /* AFS */
Kevin Stevesef4eea92001-02-05 12:42:17 +0000173 fprintf(stderr, " -X Enable X11 connection forwarding.\n");
Ben Lindstrom3b89c5e2001-06-05 20:44:16 +0000174 fprintf(stderr, " -x Disable X11 connection forwarding (default).\n");
Ben Lindstrom0ab2a012001-03-05 06:45:21 +0000175 fprintf(stderr, " -i file Identity for public key authentication "
176 "(default: ~/.ssh/identity)\n");
Ben Lindstrom61eb9562001-08-06 21:53:42 +0000177#ifdef SMARTCARD
178 fprintf(stderr, " -I reader Set smartcard reader.\n");
Ben Lindstrombcc18082001-08-06 21:59:25 +0000179#endif
Damien Miller95def091999-11-25 00:26:21 +1100180 fprintf(stderr, " -t Tty; allocate a tty even if command is given.\n");
Damien Miller1383bd82000-04-06 12:32:37 +1000181 fprintf(stderr, " -T Do not allocate a tty.\n");
Damien Miller95def091999-11-25 00:26:21 +1100182 fprintf(stderr, " -v Verbose; display verbose debugging messages.\n");
Damien Millere4340be2000-09-16 13:29:08 +1100183 fprintf(stderr, " Multiple -v increases verbosity.\n");
Damien Miller95def091999-11-25 00:26:21 +1100184 fprintf(stderr, " -V Display version number only.\n");
185 fprintf(stderr, " -P Don't allocate a privileged port.\n");
186 fprintf(stderr, " -q Quiet; don't display any warning messages.\n");
187 fprintf(stderr, " -f Fork into background after authentication.\n");
188 fprintf(stderr, " -e char Set escape character; ``none'' = disable (default: ~).\n");
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000189
Ben Lindstrom3b89c5e2001-06-05 20:44:16 +0000190 fprintf(stderr, " -c cipher Select encryption algorithm\n");
Ben Lindstrom3d73a342001-03-05 07:39:01 +0000191 fprintf(stderr, " -m macs Specify MAC algorithms for protocol version 2.\n");
Damien Miller95def091999-11-25 00:26:21 +1100192 fprintf(stderr, " -p port Connect to this port. Server must be on the same port.\n");
193 fprintf(stderr, " -L listen-port:host:port Forward local port to remote address\n");
194 fprintf(stderr, " -R listen-port:host:port Forward remote port to local address\n");
Kevin Stevesec84dc12000-12-13 17:45:15 +0000195 fprintf(stderr, " These cause %s to listen for connections on a port, and\n", __progname);
Damien Miller95def091999-11-25 00:26:21 +1100196 fprintf(stderr, " forward them to the other side by connecting to host:port.\n");
Ben Lindstrom19ceb172001-09-12 17:54:24 +0000197 fprintf(stderr, " -D port Enable dynamic application-level port forwarding.\n");
Damien Miller95def091999-11-25 00:26:21 +1100198 fprintf(stderr, " -C Enable compression.\n");
Damien Miller1383bd82000-04-06 12:32:37 +1000199 fprintf(stderr, " -N Do not execute a shell or command.\n");
Damien Miller95def091999-11-25 00:26:21 +1100200 fprintf(stderr, " -g Allow remote hosts to connect to forwarded ports.\n");
Ben Lindstrom1e7d3062001-02-09 02:36:43 +0000201 fprintf(stderr, " -1 Force protocol version 1.\n");
202 fprintf(stderr, " -2 Force protocol version 2.\n");
Damien Miller34132e52000-01-14 15:45:46 +1100203 fprintf(stderr, " -4 Use IPv4 only.\n");
204 fprintf(stderr, " -6 Use IPv6 only.\n");
Damien Miller95def091999-11-25 00:26:21 +1100205 fprintf(stderr, " -o 'option' Process the option as if it was read from a configuration file.\n");
Damien Miller832562e2001-01-30 09:30:01 +1100206 fprintf(stderr, " -s Invoke command (mandatory) as SSH2 subsystem.\n");
Ben Lindstrom3b89c5e2001-06-05 20:44:16 +0000207 fprintf(stderr, " -b addr Local IP address.\n");
Damien Miller95def091999-11-25 00:26:21 +1100208 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000209}
210
Damien Miller95def091999-11-25 00:26:21 +1100211/*
212 * Connects to the given host using rsh (or prints an error message and exits
213 * if rsh is not available). This function never returns.
214 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000215static void
Damien Miller95def091999-11-25 00:26:21 +1100216rsh_connect(char *host, char *user, Buffer * command)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000217{
Damien Miller95def091999-11-25 00:26:21 +1100218 char *args[10];
219 int i;
220
221 log("Using rsh. WARNING: Connection will not be encrypted.");
222 /* Build argument list for rsh. */
223 i = 0;
224 args[i++] = _PATH_RSH;
225 /* host may have to come after user on some systems */
226 args[i++] = host;
227 if (user) {
228 args[i++] = "-l";
229 args[i++] = user;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000230 }
Damien Miller95def091999-11-25 00:26:21 +1100231 if (buffer_len(command) > 0) {
232 buffer_append(command, "\0", 1);
233 args[i++] = buffer_ptr(command);
234 }
235 args[i++] = NULL;
236 if (debug_flag) {
237 for (i = 0; args[i]; i++) {
238 if (i != 0)
239 fprintf(stderr, " ");
240 fprintf(stderr, "%s", args[i]);
241 }
242 fprintf(stderr, "\n");
243 }
244 execv(_PATH_RSH, args);
245 perror(_PATH_RSH);
246 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000247}
248
Ben Lindstrombba81212001-06-25 05:01:22 +0000249static int ssh_session(void);
250static int ssh_session2(void);
251static void load_public_identity_files(void);
Damien Miller1383bd82000-04-06 12:32:37 +1000252
Damien Miller95def091999-11-25 00:26:21 +1100253/*
254 * Main program for the ssh client.
255 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000256int
257main(int ac, char **av)
258{
Ben Lindstromf9cedb92001-08-06 21:07:11 +0000259 int i, opt, exit_status, cerr;
Damien Milleraae6c611999-12-06 11:47:28 +1100260 u_short fwd_port, fwd_host_port;
Ben Lindstrom1a174712001-09-12 17:56:15 +0000261 char sfwd_port[6], sfwd_host_port[6];
Damien Millerf4614452001-07-14 12:18:10 +1000262 char *p, *cp, buf[256];
Damien Miller95def091999-11-25 00:26:21 +1100263 struct stat st;
Ben Lindstrom086cf212001-03-05 05:56:40 +0000264 struct passwd *pw;
Damien Miller1383bd82000-04-06 12:32:37 +1000265 int dummy;
Damien Miller95def091999-11-25 00:26:21 +1100266 uid_t original_effective_uid;
Damien Miller4f8e6692001-07-14 13:22:53 +1000267 extern int optopt;
Ben Lindstrom5ccf63a2001-09-24 20:00:10 +0000268 extern int optind, optreset;
Damien Miller4f8e6692001-07-14 13:22:53 +1000269 extern char *optarg;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000270
Ben Lindstrom49a79c02000-11-17 03:47:20 +0000271 __progname = get_progname(av[0]);
Damien Millerf9b625c2000-07-09 22:42:32 +1000272 init_rng();
273
Damien Miller5428f641999-11-25 11:54:57 +1100274 /*
275 * Save the original real uid. It will be needed later (uid-swapping
276 * may clobber the real uid).
277 */
Damien Miller95def091999-11-25 00:26:21 +1100278 original_real_uid = getuid();
279 original_effective_uid = geteuid();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000280
Damien Miller05dd7952000-10-01 00:42:48 +1100281#ifdef HAVE_SETRLIMIT
Damien Miller95def091999-11-25 00:26:21 +1100282 /* If we are installed setuid root be careful to not drop core. */
283 if (original_real_uid != original_effective_uid) {
284 struct rlimit rlim;
285 rlim.rlim_cur = rlim.rlim_max = 0;
286 if (setrlimit(RLIMIT_CORE, &rlim) < 0)
287 fatal("setrlimit failed: %.100s", strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000288 }
Damien Millerbac2d8a2000-09-05 16:13:06 +1100289#endif
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000290 /* Get user data. */
291 pw = getpwuid(original_real_uid);
292 if (!pw) {
293 log("You don't exist, go away!");
294 exit(1);
295 }
296 /* Take a copy of the returned structure. */
297 pw = pwcopy(pw);
298
Damien Miller5428f641999-11-25 11:54:57 +1100299 /*
300 * Use uid-swapping to give up root privileges for the duration of
301 * option processing. We will re-instantiate the rights when we are
302 * ready to create the privileged port, and will permanently drop
303 * them when the port has been created (actually, when the connection
304 * has been made, as we may need to create the port several times).
305 */
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000306 temporarily_use_uid(pw);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000307
Damien Miller5428f641999-11-25 11:54:57 +1100308 /*
309 * Set our umask to something reasonable, as some files are created
310 * with the default umask. This will make them world-readable but
311 * writable only by the owner, which is ok for all files for which we
312 * don't set the modes explicitly.
313 */
Damien Miller95def091999-11-25 00:26:21 +1100314 umask(022);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000315
Damien Miller95def091999-11-25 00:26:21 +1100316 /* Initialize option structure to indicate that no values have been set. */
317 initialize_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000318
Damien Miller95def091999-11-25 00:26:21 +1100319 /* Parse command-line arguments. */
320 host = NULL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000321
Damien Millerf4614452001-07-14 12:18:10 +1000322again:
323 while ((opt = getopt(ac, av,
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000324 "1246ab:c:e:fgi:kl:m:no:p:qstvxACD:F:I:L:NPR:TVX")) != -1) {
Damien Miller95def091999-11-25 00:26:21 +1100325 switch (opt) {
Ben Lindstrom1e7d3062001-02-09 02:36:43 +0000326 case '1':
327 options.protocol = SSH_PROTO_1;
328 break;
Damien Miller4af51302000-04-16 11:18:38 +1000329 case '2':
330 options.protocol = SSH_PROTO_2;
331 break;
Damien Miller34132e52000-01-14 15:45:46 +1100332 case '4':
333 IPv4or6 = AF_INET;
334 break;
Damien Miller34132e52000-01-14 15:45:46 +1100335 case '6':
336 IPv4or6 = AF_INET6;
337 break;
Damien Miller95def091999-11-25 00:26:21 +1100338 case 'n':
339 stdin_null_flag = 1;
340 break;
Damien Miller95def091999-11-25 00:26:21 +1100341 case 'f':
342 fork_after_authentication_flag = 1;
343 stdin_null_flag = 1;
344 break;
Damien Miller95def091999-11-25 00:26:21 +1100345 case 'x':
346 options.forward_x11 = 0;
347 break;
Damien Miller95def091999-11-25 00:26:21 +1100348 case 'X':
349 options.forward_x11 = 1;
350 break;
Damien Miller95def091999-11-25 00:26:21 +1100351 case 'g':
352 options.gateway_ports = 1;
353 break;
Damien Miller95def091999-11-25 00:26:21 +1100354 case 'P':
355 options.use_privileged_port = 0;
356 break;
Damien Miller95def091999-11-25 00:26:21 +1100357 case 'a':
358 options.forward_agent = 0;
359 break;
Damien Millerb1715dc2000-05-30 13:44:51 +1000360 case 'A':
361 options.forward_agent = 1;
362 break;
Damien Miller95def091999-11-25 00:26:21 +1100363#ifdef AFS
364 case 'k':
365 options.kerberos_tgt_passing = 0;
366 options.afs_token_passing = 0;
367 break;
368#endif
369 case 'i':
370 if (stat(optarg, &st) < 0) {
Damien Millerf4614452001-07-14 12:18:10 +1000371 fprintf(stderr, "Warning: Identity file %s "
372 "does not exist.\n", optarg);
Damien Miller95def091999-11-25 00:26:21 +1100373 break;
374 }
Damien Millerf4614452001-07-14 12:18:10 +1000375 if (options.num_identity_files >=
376 SSH_MAX_IDENTITY_FILES)
377 fatal("Too many identity files specified "
378 "(max %d)", SSH_MAX_IDENTITY_FILES);
379 options.identity_files[options.num_identity_files++] =
380 xstrdup(optarg);
Damien Miller95def091999-11-25 00:26:21 +1100381 break;
Ben Lindstromc5b68002001-07-04 04:52:03 +0000382 case 'I':
383#ifdef SMARTCARD
Ben Lindstromf7db3bb2001-08-06 21:35:51 +0000384 options.smartcard_device = xstrdup(optarg);
Ben Lindstrombcc18082001-08-06 21:59:25 +0000385#else
Ben Lindstromc5b68002001-07-04 04:52:03 +0000386 fprintf(stderr, "no support for smartcards.\n");
Ben Lindstrombcc18082001-08-06 21:59:25 +0000387#endif
Ben Lindstromc5b68002001-07-04 04:52:03 +0000388 break;
Damien Miller95def091999-11-25 00:26:21 +1100389 case 't':
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000390 if (tty_flag)
391 force_tty_flag = 1;
Damien Miller95def091999-11-25 00:26:21 +1100392 tty_flag = 1;
393 break;
Damien Miller95def091999-11-25 00:26:21 +1100394 case 'v':
Damien Millere4340be2000-09-16 13:29:08 +1100395 if (0 == debug_flag) {
396 debug_flag = 1;
397 options.log_level = SYSLOG_LEVEL_DEBUG1;
398 } else if (options.log_level < SYSLOG_LEVEL_DEBUG3) {
399 options.log_level++;
400 break;
Damien Millerf4614452001-07-14 12:18:10 +1000401 } else
Ben Lindstrom6df8ef42001-03-05 07:47:23 +0000402 fatal("Too high debugging level.");
Damien Millere4340be2000-09-16 13:29:08 +1100403 /* fallthrough */
Damien Miller95def091999-11-25 00:26:21 +1100404 case 'V':
Damien Miller225736c2001-02-19 21:51:08 +1100405 fprintf(stderr,
406 "%s, SSH protocols %d.%d/%d.%d, OpenSSL 0x%8.8lx\n",
Damien Miller78928792000-04-12 20:17:38 +1000407 SSH_VERSION,
408 PROTOCOL_MAJOR_1, PROTOCOL_MINOR_1,
Damien Miller225736c2001-02-19 21:51:08 +1100409 PROTOCOL_MAJOR_2, PROTOCOL_MINOR_2,
410 SSLeay());
Damien Miller95def091999-11-25 00:26:21 +1100411 if (opt == 'V')
412 exit(0);
Damien Miller95def091999-11-25 00:26:21 +1100413 break;
Damien Miller95def091999-11-25 00:26:21 +1100414 case 'q':
415 options.log_level = SYSLOG_LEVEL_QUIET;
416 break;
Damien Miller95def091999-11-25 00:26:21 +1100417 case 'e':
418 if (optarg[0] == '^' && optarg[2] == 0 &&
Damien Millerf4614452001-07-14 12:18:10 +1000419 (u_char) optarg[1] >= 64 &&
420 (u_char) optarg[1] < 128)
Ben Lindstrom46c16222000-12-22 01:43:59 +0000421 options.escape_char = (u_char) optarg[1] & 31;
Damien Miller95def091999-11-25 00:26:21 +1100422 else if (strlen(optarg) == 1)
Ben Lindstrom46c16222000-12-22 01:43:59 +0000423 options.escape_char = (u_char) optarg[0];
Damien Miller95def091999-11-25 00:26:21 +1100424 else if (strcmp(optarg, "none") == 0)
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +0000425 options.escape_char = SSH_ESCAPECHAR_NONE;
Damien Miller95def091999-11-25 00:26:21 +1100426 else {
Damien Millerf4614452001-07-14 12:18:10 +1000427 fprintf(stderr, "Bad escape character '%s'.\n",
428 optarg);
Damien Miller95def091999-11-25 00:26:21 +1100429 exit(1);
430 }
431 break;
Damien Miller95def091999-11-25 00:26:21 +1100432 case 'c':
Damien Millereba71ba2000-04-29 23:57:08 +1000433 if (ciphers_valid(optarg)) {
434 /* SSH2 only */
435 options.ciphers = xstrdup(optarg);
Damien Miller30c3d422000-05-09 11:02:59 +1000436 options.cipher = SSH_CIPHER_ILLEGAL;
Damien Millereba71ba2000-04-29 23:57:08 +1000437 } else {
438 /* SSH1 only */
Damien Millere39cacc2000-11-29 12:18:44 +1100439 options.cipher = cipher_number(optarg);
440 if (options.cipher == -1) {
Damien Millerf4614452001-07-14 12:18:10 +1000441 fprintf(stderr,
442 "Unknown cipher type '%s'\n",
443 optarg);
Damien Millereba71ba2000-04-29 23:57:08 +1000444 exit(1);
445 }
Damien Millerf4614452001-07-14 12:18:10 +1000446 if (options.cipher == SSH_CIPHER_3DES)
Damien Millere39cacc2000-11-29 12:18:44 +1100447 options.ciphers = "3des-cbc";
Damien Millerf4614452001-07-14 12:18:10 +1000448 else if (options.cipher == SSH_CIPHER_BLOWFISH)
Damien Millere39cacc2000-11-29 12:18:44 +1100449 options.ciphers = "blowfish-cbc";
Damien Millerf4614452001-07-14 12:18:10 +1000450 else
Damien Millere39cacc2000-11-29 12:18:44 +1100451 options.ciphers = (char *)-1;
Damien Miller95def091999-11-25 00:26:21 +1100452 }
453 break;
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000454 case 'm':
455 if (mac_valid(optarg))
456 options.macs = xstrdup(optarg);
457 else {
Damien Millerf4614452001-07-14 12:18:10 +1000458 fprintf(stderr, "Unknown mac type '%s'\n",
459 optarg);
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000460 exit(1);
461 }
462 break;
Damien Miller95def091999-11-25 00:26:21 +1100463 case 'p':
Ben Lindstrom19066a12001-04-12 23:39:26 +0000464 options.port = a2port(optarg);
465 if (options.port == 0) {
Ben Lindstrom146edb92001-04-11 23:06:28 +0000466 fprintf(stderr, "Bad port '%s'\n", optarg);
467 exit(1);
468 }
Damien Miller95def091999-11-25 00:26:21 +1100469 break;
Damien Miller95def091999-11-25 00:26:21 +1100470 case 'l':
471 options.user = optarg;
472 break;
Ben Lindstrom1a174712001-09-12 17:56:15 +0000473
Damien Miller95def091999-11-25 00:26:21 +1100474 case 'L':
Ben Lindstrom1a174712001-09-12 17:56:15 +0000475 case 'R':
476 if (sscanf(optarg, "%5[0-9]:%255[^:]:%5[0-9]",
477 sfwd_port, buf, sfwd_host_port) != 3 &&
478 sscanf(optarg, "%5[0-9]/%255[^/]/%5[0-9]",
479 sfwd_port, buf, sfwd_host_port) != 3) {
Damien Millerf4614452001-07-14 12:18:10 +1000480 fprintf(stderr,
Ben Lindstrom1a174712001-09-12 17:56:15 +0000481 "Bad forwarding specification '%s'\n",
Damien Millerf4614452001-07-14 12:18:10 +1000482 optarg);
Damien Miller95def091999-11-25 00:26:21 +1100483 usage();
484 /* NOTREACHED */
485 }
Ben Lindstrom1a174712001-09-12 17:56:15 +0000486 if ((fwd_port = a2port(sfwd_port)) == 0 ||
487 (fwd_host_port = a2port(sfwd_host_port)) == 0) {
488 fprintf(stderr,
489 "Bad forwarding port(s) '%s'\n", optarg);
490 exit(1);
491 }
492 if (opt == 'L')
493 add_local_forward(&options, fwd_port, buf,
494 fwd_host_port);
495 else if (opt == 'R')
496 add_remote_forward(&options, fwd_port, buf,
497 fwd_host_port);
Damien Miller95def091999-11-25 00:26:21 +1100498 break;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000499
500 case 'D':
Ben Lindstrom19066a12001-04-12 23:39:26 +0000501 fwd_port = a2port(optarg);
502 if (fwd_port == 0) {
Damien Millerf4614452001-07-14 12:18:10 +1000503 fprintf(stderr, "Bad dynamic port '%s'\n",
504 optarg);
Ben Lindstrom146edb92001-04-11 23:06:28 +0000505 exit(1);
506 }
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000507 add_local_forward(&options, fwd_port, "socks4", 0);
508 break;
509
Damien Miller95def091999-11-25 00:26:21 +1100510 case 'C':
511 options.compression = 1;
512 break;
Damien Miller1383bd82000-04-06 12:32:37 +1000513 case 'N':
514 no_shell_flag = 1;
515 no_tty_flag = 1;
516 break;
Damien Miller1383bd82000-04-06 12:32:37 +1000517 case 'T':
518 no_tty_flag = 1;
519 break;
Damien Miller95def091999-11-25 00:26:21 +1100520 case 'o':
521 dummy = 1;
Damien Millerf4614452001-07-14 12:18:10 +1000522 if (process_config_line(&options, host ? host : "",
523 optarg, "command-line", 0, &dummy) != 0)
Damien Miller95def091999-11-25 00:26:21 +1100524 exit(1);
525 break;
Damien Miller832562e2001-01-30 09:30:01 +1100526 case 's':
527 subsystem_flag = 1;
528 break;
Ben Lindstrome0f88042001-04-30 13:06:24 +0000529 case 'b':
530 options.bind_address = optarg;
531 break;
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000532 case 'F':
533 config = optarg;
534 break;
Damien Miller95def091999-11-25 00:26:21 +1100535 default:
536 usage();
537 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000538 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000539
Damien Millerf4614452001-07-14 12:18:10 +1000540 ac -= optind;
541 av += optind;
542
543 if (ac > 0 && !host && **av != '-') {
544 if (strchr(*av, '@')) {
545 p = xstrdup(*av);
546 cp = strchr(p, '@');
547 if (cp == NULL || cp == p)
548 usage();
549 options.user = p;
550 *cp = '\0';
551 host = ++cp;
552 } else
553 host = *av;
554 ac--, av++;
555 if (ac > 0) {
556 optind = 0;
557 optreset = 1;
558 goto again;
559 }
560 }
561
Damien Miller95def091999-11-25 00:26:21 +1100562 /* Check that we got a host name. */
563 if (!host)
564 usage();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000565
Damien Millercb5e44a2000-09-29 12:12:36 +1100566 SSLeay_add_all_algorithms();
Damien Miller0bc1bd82000-11-13 22:57:25 +1100567 ERR_load_crypto_strings();
Damien Millercb5e44a2000-09-29 12:12:36 +1100568
Damien Miller95def091999-11-25 00:26:21 +1100569 /* Initialize the command to execute on remote host. */
570 buffer_init(&command);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000571
Damien Miller5428f641999-11-25 11:54:57 +1100572 /*
573 * Save the command to execute on the remote host in a buffer. There
574 * is no limit on the length of the command, except by the maximum
575 * packet size. Also sets the tty flag if there is no command.
576 */
Damien Millerf4614452001-07-14 12:18:10 +1000577 if (!ac) {
Damien Miller95def091999-11-25 00:26:21 +1100578 /* No command specified - execute shell on a tty. */
579 tty_flag = 1;
Damien Miller832562e2001-01-30 09:30:01 +1100580 if (subsystem_flag) {
Damien Millerf4614452001-07-14 12:18:10 +1000581 fprintf(stderr,
582 "You must specify a subsystem to invoke.\n");
Damien Miller832562e2001-01-30 09:30:01 +1100583 usage();
584 }
Damien Miller95def091999-11-25 00:26:21 +1100585 } else {
Damien Millerf4614452001-07-14 12:18:10 +1000586 /* A command has been specified. Store it into the buffer. */
587 for (i = 0; i < ac; i++) {
588 if (i)
Damien Miller95def091999-11-25 00:26:21 +1100589 buffer_append(&command, " ", 1);
590 buffer_append(&command, av[i], strlen(av[i]));
591 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000592 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000593
Damien Miller95def091999-11-25 00:26:21 +1100594 /* Cannot fork to background if no command. */
Damien Millercaf6dd62000-08-29 11:33:50 +1100595 if (fork_after_authentication_flag && buffer_len(&command) == 0 && !no_shell_flag)
Damien Miller95def091999-11-25 00:26:21 +1100596 fatal("Cannot fork into background without a command to execute.");
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000597
Damien Miller95def091999-11-25 00:26:21 +1100598 /* Allocate a tty by default if no command specified. */
599 if (buffer_len(&command) == 0)
600 tty_flag = 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000601
Ben Lindstromc72745a2000-12-02 19:03:54 +0000602 /* Force no tty*/
603 if (no_tty_flag)
604 tty_flag = 0;
Damien Miller95def091999-11-25 00:26:21 +1100605 /* Do not allocate a tty if stdin is not a tty. */
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000606 if (!isatty(fileno(stdin)) && !force_tty_flag) {
Damien Miller95def091999-11-25 00:26:21 +1100607 if (tty_flag)
Ben Lindstrom6df8ef42001-03-05 07:47:23 +0000608 log("Pseudo-terminal will not be allocated because stdin is not a terminal.");
Damien Miller95def091999-11-25 00:26:21 +1100609 tty_flag = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000610 }
Damien Miller1383bd82000-04-06 12:32:37 +1000611
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000612 /*
613 * Initialize "log" output. Since we are the client all output
614 * actually goes to stderr.
615 */
Ben Lindstrom2b646522001-04-12 16:16:57 +0000616 log_init(av[0], options.log_level == -1 ? SYSLOG_LEVEL_INFO : options.log_level,
617 SYSLOG_FACILITY_USER, 1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000618
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000619 /*
620 * Read per-user configuration file. Ignore the system wide config
621 * file if the user specifies a config file on the command line.
622 */
623 if (config != NULL) {
Ben Lindstromedc0cf22001-09-12 18:32:20 +0000624 if (!read_config_file(config, host, &options))
625 fatal("Can't open user config file %.100s: "
626 "%.100s", config, strerror(errno));
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000627 } else {
628 snprintf(buf, sizeof buf, "%.100s/%.100s", pw->pw_dir,
629 _PATH_SSH_USER_CONFFILE);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000630
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000631 /* Read systemwide configuration file. */
Ben Lindstromedc0cf22001-09-12 18:32:20 +0000632 (void)read_config_file(_PATH_HOST_CONFIG_FILE, host, &options);
633 (void)read_config_file(buf, host, &options);
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000634 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000635
Damien Miller95def091999-11-25 00:26:21 +1100636 /* Fill configuration defaults. */
637 fill_default_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000638
Damien Miller95def091999-11-25 00:26:21 +1100639 /* reinit */
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000640 log_init(av[0], options.log_level, SYSLOG_FACILITY_USER, 1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000641
Damien Miller60bc5172001-03-19 09:38:15 +1100642 seed_rng();
643
Damien Miller95def091999-11-25 00:26:21 +1100644 if (options.user == NULL)
645 options.user = xstrdup(pw->pw_name);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000646
Damien Miller95def091999-11-25 00:26:21 +1100647 if (options.hostname != NULL)
648 host = options.hostname;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000649
Damien Miller95def091999-11-25 00:26:21 +1100650 /* Disable rhosts authentication if not running as root. */
Damien Millerbac2d8a2000-09-05 16:13:06 +1100651#ifdef HAVE_CYGWIN
652 /* Ignore uid if running under Windows */
653 if (!options.use_privileged_port) {
654#else
Damien Miller95def091999-11-25 00:26:21 +1100655 if (original_effective_uid != 0 || !options.use_privileged_port) {
Damien Millerbac2d8a2000-09-05 16:13:06 +1100656#endif
Kevin Stevesfcec7f82000-12-15 19:55:48 +0000657 debug("Rhosts Authentication disabled, "
658 "originating port will not be trusted.");
Damien Miller95def091999-11-25 00:26:21 +1100659 options.rhosts_authentication = 0;
Damien Miller95def091999-11-25 00:26:21 +1100660 }
Damien Miller5428f641999-11-25 11:54:57 +1100661 /*
662 * If using rsh has been selected, exec it now (without trying
663 * anything else). Note that we must release privileges first.
664 */
Damien Miller95def091999-11-25 00:26:21 +1100665 if (options.use_rsh) {
Damien Miller5428f641999-11-25 11:54:57 +1100666 /*
667 * Restore our superuser privileges. This must be done
668 * before permanently setting the uid.
669 */
Damien Miller95def091999-11-25 00:26:21 +1100670 restore_uid();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000671
Damien Miller95def091999-11-25 00:26:21 +1100672 /* Switch to the original uid permanently. */
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000673 permanently_set_uid(pw);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000674
Damien Miller95def091999-11-25 00:26:21 +1100675 /* Execute rsh. */
676 rsh_connect(host, options.user, &command);
677 fatal("rsh_connect returned");
678 }
679 /* Restore our superuser privileges. */
680 restore_uid();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000681
Kevin Stevesfcec7f82000-12-15 19:55:48 +0000682 /* Open a connection to the remote host. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000683
Ben Lindstromf9cedb92001-08-06 21:07:11 +0000684 cerr = ssh_connect(host, &hostaddr, options.port,
Kevin Stevesfcec7f82000-12-15 19:55:48 +0000685 options.connection_attempts,
686 original_effective_uid != 0 || !options.use_privileged_port,
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000687 pw, options.proxy_command);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000688
Damien Miller5428f641999-11-25 11:54:57 +1100689 /*
690 * If we successfully made the connection, load the host private key
691 * in case we will need it later for combined rsa-rhosts
692 * authentication. This must be done before releasing extra
693 * privileges, because the file is only readable by root.
694 */
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000695 sensitive_data.nkeys = 0;
696 sensitive_data.keys = NULL;
Ben Lindstromf9cedb92001-08-06 21:07:11 +0000697 if (!cerr && (options.rhosts_rsa_authentication ||
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000698 options.hostbased_authentication)) {
699 sensitive_data.nkeys = 3;
700 sensitive_data.keys = xmalloc(sensitive_data.nkeys*sizeof(Key));
701 sensitive_data.keys[0] = key_load_private_type(KEY_RSA1,
Ben Lindstromd0fca422001-03-26 13:44:06 +0000702 _PATH_HOST_KEY_FILE, "", NULL);
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000703 sensitive_data.keys[1] = key_load_private_type(KEY_DSA,
704 _PATH_HOST_DSA_KEY_FILE, "", NULL);
705 sensitive_data.keys[2] = key_load_private_type(KEY_RSA,
706 _PATH_HOST_RSA_KEY_FILE, "", NULL);
Damien Miller95def091999-11-25 00:26:21 +1100707 }
Damien Miller5428f641999-11-25 11:54:57 +1100708 /*
709 * Get rid of any extra privileges that we may have. We will no
710 * longer need them. Also, extra privileges could make it very hard
711 * to read identity files and other non-world-readable files from the
712 * user's home directory if it happens to be on a NFS volume where
713 * root is mapped to nobody.
714 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000715
Damien Miller5428f641999-11-25 11:54:57 +1100716 /*
717 * Note that some legacy systems need to postpone the following call
718 * to permanently_set_uid() until the private hostkey is destroyed
719 * with RSA_free(). Otherwise the calling user could ptrace() the
720 * process, read the private hostkey and impersonate the host.
721 * OpenBSD does not allow ptracing of setuid processes.
722 */
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000723 permanently_set_uid(pw);
Damien Miller95def091999-11-25 00:26:21 +1100724
Damien Miller5428f641999-11-25 11:54:57 +1100725 /*
726 * Now that we are back to our own permissions, create ~/.ssh
727 * directory if it doesn\'t already exist.
728 */
Ben Lindstrom930b14a2001-08-15 23:19:21 +0000729 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 +1100730 if (stat(buf, &st) < 0)
Damien Millerbe484b52000-07-15 14:14:16 +1000731 if (mkdir(buf, 0700) < 0)
Damien Miller95def091999-11-25 00:26:21 +1100732 error("Could not create directory '%.200s'.", buf);
733
734 /* Check if the connection failed, and try "rsh" if appropriate. */
Ben Lindstromf9cedb92001-08-06 21:07:11 +0000735 if (cerr) {
736 if (!options.fallback_to_rsh)
737 exit(1);
Damien Miller95def091999-11-25 00:26:21 +1100738 if (options.port != 0)
Ben Lindstromf9cedb92001-08-06 21:07:11 +0000739 log("Secure connection to %.100s on port %hu refused; "
740 "reverting to insecure method",
741 host, options.port);
Damien Miller95def091999-11-25 00:26:21 +1100742 else
Ben Lindstromf9cedb92001-08-06 21:07:11 +0000743 log("Secure connection to %.100s refused; "
744 "reverting to insecure method.", host);
Damien Miller95def091999-11-25 00:26:21 +1100745
Ben Lindstromf9cedb92001-08-06 21:07:11 +0000746 rsh_connect(host, options.user, &command);
747 fatal("rsh_connect returned");
Damien Miller95def091999-11-25 00:26:21 +1100748 }
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000749 /* load options.identity_files */
750 load_public_identity_files();
751
752 /* Expand ~ in known host file names. */
753 /* XXX mem-leaks: */
Damien Miller0bc1bd82000-11-13 22:57:25 +1100754 options.system_hostfile =
755 tilde_expand_filename(options.system_hostfile, original_real_uid);
756 options.user_hostfile =
757 tilde_expand_filename(options.user_hostfile, original_real_uid);
758 options.system_hostfile2 =
759 tilde_expand_filename(options.system_hostfile2, original_real_uid);
760 options.user_hostfile2 =
761 tilde_expand_filename(options.user_hostfile2, original_real_uid);
Damien Miller95def091999-11-25 00:26:21 +1100762
763 /* Log into the remote system. This never returns if the login fails. */
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000764 ssh_login(sensitive_data.keys, sensitive_data.nkeys,
765 host, (struct sockaddr *)&hostaddr, pw);
Damien Miller95def091999-11-25 00:26:21 +1100766
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000767 /* We no longer need the private host keys. Clear them now. */
768 if (sensitive_data.nkeys != 0) {
769 for (i = 0; i < sensitive_data.nkeys; i++) {
770 if (sensitive_data.keys[i] != NULL) {
771 /* Destroys contents safely */
772 debug3("clear hostkey %d", i);
773 key_free(sensitive_data.keys[i]);
774 sensitive_data.keys[i] = NULL;
775 }
776 }
777 xfree(sensitive_data.keys);
778 }
Ben Lindstroma6c8a8d2001-08-06 21:42:00 +0000779 for (i = 0; i < options.num_identity_files; i++) {
780 if (options.identity_files[i]) {
781 xfree(options.identity_files[i]);
782 options.identity_files[i] = NULL;
783 }
784 if (options.identity_keys[i]) {
785 key_free(options.identity_keys[i]);
786 options.identity_keys[i] = NULL;
787 }
788 }
Damien Miller95def091999-11-25 00:26:21 +1100789
Damien Miller1383bd82000-04-06 12:32:37 +1000790 exit_status = compat20 ? ssh_session2() : ssh_session();
791 packet_close();
792 return exit_status;
793}
794
Ben Lindstrombba81212001-06-25 05:01:22 +0000795static void
Damien Millerbd483e72000-04-30 10:00:53 +1000796x11_get_proto(char *proto, int proto_len, char *data, int data_len)
797{
798 char line[512];
799 FILE *f;
800 int got_data = 0, i;
801
Damien Millerd3a18572000-06-07 19:55:44 +1000802 if (options.xauth_location) {
803 /* Try to get Xauthority information for the display. */
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000804 snprintf(line, sizeof line, "%.100s list %.200s 2>" _PATH_DEVNULL,
Damien Millerd3a18572000-06-07 19:55:44 +1000805 options.xauth_location, getenv("DISPLAY"));
806 f = popen(line, "r");
807 if (f && fgets(line, sizeof(line), f) &&
808 sscanf(line, "%*s %s %s", proto, data) == 2)
809 got_data = 1;
810 if (f)
811 pclose(f);
812 }
Damien Millerbd483e72000-04-30 10:00:53 +1000813 /*
814 * If we didn't get authentication data, just make up some
815 * data. The forwarding code will check the validity of the
816 * response anyway, and substitute this data. The X11
817 * server, however, will ignore this fake data and use
818 * whatever authentication mechanisms it was using otherwise
819 * for the local connection.
820 */
821 if (!got_data) {
822 u_int32_t rand = 0;
823
824 strlcpy(proto, "MIT-MAGIC-COOKIE-1", proto_len);
825 for (i = 0; i < 16; i++) {
826 if (i % 4 == 0)
827 rand = arc4random();
828 snprintf(data + 2 * i, data_len - 2 * i, "%02x", rand & 0xff);
829 rand >>= 8;
830 }
831 }
832}
833
Ben Lindstrombba81212001-06-25 05:01:22 +0000834static void
Damien Miller0bc1bd82000-11-13 22:57:25 +1100835ssh_init_forwarding(void)
836{
Kevin Steves12057502001-02-05 14:54:34 +0000837 int success = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100838 int i;
Kevin Steves12057502001-02-05 14:54:34 +0000839
Damien Miller0bc1bd82000-11-13 22:57:25 +1100840 /* Initiate local TCP/IP port forwardings. */
841 for (i = 0; i < options.num_local_forwards; i++) {
842 debug("Connections to local port %d forwarded to remote address %.200s:%d",
843 options.local_forwards[i].port,
844 options.local_forwards[i].host,
845 options.local_forwards[i].host_port);
Kevin Steves12057502001-02-05 14:54:34 +0000846 success += channel_request_local_forwarding(
Damien Miller0bc1bd82000-11-13 22:57:25 +1100847 options.local_forwards[i].port,
848 options.local_forwards[i].host,
849 options.local_forwards[i].host_port,
850 options.gateway_ports);
851 }
Kevin Steves12057502001-02-05 14:54:34 +0000852 if (i > 0 && success == 0)
853 error("Could not request local forwarding.");
Damien Miller0bc1bd82000-11-13 22:57:25 +1100854
855 /* Initiate remote TCP/IP port forwardings. */
856 for (i = 0; i < options.num_remote_forwards; i++) {
857 debug("Connections to remote port %d forwarded to local address %.200s:%d",
858 options.remote_forwards[i].port,
859 options.remote_forwards[i].host,
860 options.remote_forwards[i].host_port);
861 channel_request_remote_forwarding(
862 options.remote_forwards[i].port,
863 options.remote_forwards[i].host,
864 options.remote_forwards[i].host_port);
865 }
866}
867
Ben Lindstrombba81212001-06-25 05:01:22 +0000868static void
Damien Miller0bc1bd82000-11-13 22:57:25 +1100869check_agent_present(void)
870{
871 if (options.forward_agent) {
872 /* Clear agent forwarding if we don\'t have an agent. */
873 int authfd = ssh_get_authentication_socket();
874 if (authfd < 0)
875 options.forward_agent = 0;
876 else
877 ssh_close_authentication_socket(authfd);
878 }
879}
880
Ben Lindstrombba81212001-06-25 05:01:22 +0000881static int
Damien Miller1383bd82000-04-06 12:32:37 +1000882ssh_session(void)
883{
884 int type;
Damien Miller1383bd82000-04-06 12:32:37 +1000885 int plen;
886 int interactive = 0;
887 int have_tty = 0;
888 struct winsize ws;
Damien Miller1383bd82000-04-06 12:32:37 +1000889 char *cp;
890
Damien Miller95def091999-11-25 00:26:21 +1100891 /* Enable compression if requested. */
892 if (options.compression) {
893 debug("Requesting compression at level %d.", options.compression_level);
894
895 if (options.compression_level < 1 || options.compression_level > 9)
896 fatal("Compression level must be from 1 (fast) to 9 (slow, best).");
897
898 /* Send the request. */
899 packet_start(SSH_CMSG_REQUEST_COMPRESSION);
900 packet_put_int(options.compression_level);
901 packet_send();
902 packet_write_wait();
903 type = packet_read(&plen);
904 if (type == SSH_SMSG_SUCCESS)
905 packet_start_compression(options.compression_level);
906 else if (type == SSH_SMSG_FAILURE)
907 log("Warning: Remote host refused compression.");
908 else
909 packet_disconnect("Protocol error waiting for compression response.");
910 }
911 /* Allocate a pseudo tty if appropriate. */
912 if (tty_flag) {
913 debug("Requesting pty.");
914
915 /* Start the packet. */
916 packet_start(SSH_CMSG_REQUEST_PTY);
917
918 /* Store TERM in the packet. There is no limit on the
919 length of the string. */
920 cp = getenv("TERM");
921 if (!cp)
922 cp = "";
Ben Lindstrom664408d2001-06-09 01:42:01 +0000923 packet_put_cstring(cp);
Damien Miller95def091999-11-25 00:26:21 +1100924
925 /* Store window size in the packet. */
926 if (ioctl(fileno(stdin), TIOCGWINSZ, &ws) < 0)
927 memset(&ws, 0, sizeof(ws));
928 packet_put_int(ws.ws_row);
929 packet_put_int(ws.ws_col);
930 packet_put_int(ws.ws_xpixel);
931 packet_put_int(ws.ws_ypixel);
932
933 /* Store tty modes in the packet. */
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000934 tty_make_modes(fileno(stdin), NULL);
Damien Miller95def091999-11-25 00:26:21 +1100935
936 /* Send the packet, and wait for it to leave. */
937 packet_send();
938 packet_write_wait();
939
940 /* Read response from the server. */
941 type = packet_read(&plen);
Damien Miller450a7a12000-03-26 13:04:51 +1000942 if (type == SSH_SMSG_SUCCESS) {
Damien Miller95def091999-11-25 00:26:21 +1100943 interactive = 1;
Damien Miller1383bd82000-04-06 12:32:37 +1000944 have_tty = 1;
Damien Miller450a7a12000-03-26 13:04:51 +1000945 } else if (type == SSH_SMSG_FAILURE)
Damien Miller95def091999-11-25 00:26:21 +1100946 log("Warning: Remote host failed or refused to allocate a pseudo tty.");
947 else
948 packet_disconnect("Protocol error waiting for pty request response.");
949 }
950 /* Request X11 forwarding if enabled and DISPLAY is set. */
951 if (options.forward_x11 && getenv("DISPLAY") != NULL) {
Damien Millerbd483e72000-04-30 10:00:53 +1000952 char proto[512], data[512];
953 /* Get reasonable local authentication information. */
954 x11_get_proto(proto, sizeof proto, data, sizeof data);
955 /* Request forwarding with authentication spoofing. */
Damien Miller95def091999-11-25 00:26:21 +1100956 debug("Requesting X11 forwarding with authentication spoofing.");
Damien Millerbd483e72000-04-30 10:00:53 +1000957 x11_request_forwarding_with_spoofing(0, proto, data);
Damien Miller95def091999-11-25 00:26:21 +1100958
959 /* Read response from the server. */
960 type = packet_read(&plen);
961 if (type == SSH_SMSG_SUCCESS) {
Damien Miller95def091999-11-25 00:26:21 +1100962 interactive = 1;
Damien Millerbd483e72000-04-30 10:00:53 +1000963 } else if (type == SSH_SMSG_FAILURE) {
Damien Miller95def091999-11-25 00:26:21 +1100964 log("Warning: Remote host denied X11 forwarding.");
Damien Millerbd483e72000-04-30 10:00:53 +1000965 } else {
Damien Miller95def091999-11-25 00:26:21 +1100966 packet_disconnect("Protocol error waiting for X11 forwarding");
Damien Millerbd483e72000-04-30 10:00:53 +1000967 }
Damien Miller95def091999-11-25 00:26:21 +1100968 }
969 /* Tell the packet module whether this is an interactive session. */
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000970 packet_set_interactive(interactive);
Damien Miller95def091999-11-25 00:26:21 +1100971
972 /* Request authentication agent forwarding if appropriate. */
Damien Miller0bc1bd82000-11-13 22:57:25 +1100973 check_agent_present();
974
Damien Miller95def091999-11-25 00:26:21 +1100975 if (options.forward_agent) {
976 debug("Requesting authentication agent forwarding.");
977 auth_request_forwarding();
978
979 /* Read response from the server. */
980 type = packet_read(&plen);
981 packet_integrity_check(plen, 0, type);
982 if (type != SSH_SMSG_SUCCESS)
983 log("Warning: Remote host denied authentication agent forwarding.");
984 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000985
Damien Miller0bc1bd82000-11-13 22:57:25 +1100986 /* Initiate port forwardings. */
987 ssh_init_forwarding();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000988
Damien Miller5428f641999-11-25 11:54:57 +1100989 /* If requested, let ssh continue in the background. */
Damien Miller4af51302000-04-16 11:18:38 +1000990 if (fork_after_authentication_flag)
Damien Miller5428f641999-11-25 11:54:57 +1100991 if (daemon(1, 1) < 0)
992 fatal("daemon() failed: %.200s", strerror(errno));
993
994 /*
995 * If a command was specified on the command line, execute the
996 * command now. Otherwise request the server to start a shell.
997 */
Damien Miller95def091999-11-25 00:26:21 +1100998 if (buffer_len(&command) > 0) {
999 int len = buffer_len(&command);
1000 if (len > 900)
1001 len = 900;
1002 debug("Sending command: %.*s", len, buffer_ptr(&command));
1003 packet_start(SSH_CMSG_EXEC_CMD);
1004 packet_put_string(buffer_ptr(&command), buffer_len(&command));
1005 packet_send();
1006 packet_write_wait();
1007 } else {
1008 debug("Requesting shell.");
1009 packet_start(SSH_CMSG_EXEC_SHELL);
1010 packet_send();
1011 packet_write_wait();
1012 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001013
Damien Miller95def091999-11-25 00:26:21 +11001014 /* Enter the interactive session. */
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +00001015 return client_loop(have_tty, tty_flag ?
1016 options.escape_char : SSH_ESCAPECHAR_NONE, 0);
Damien Miller1383bd82000-04-06 12:32:37 +10001017}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001018
Ben Lindstrombba81212001-06-25 05:01:22 +00001019static void
Ben Lindstrom1e7d3062001-02-09 02:36:43 +00001020client_subsystem_reply(int type, int plen, void *ctxt)
1021{
1022 int id, len;
1023
1024 id = packet_get_int();
1025 len = buffer_len(&command);
Ben Lindstrom4040fe12001-03-05 06:52:57 +00001026 if (len > 900)
1027 len = 900;
Ben Lindstrom1e7d3062001-02-09 02:36:43 +00001028 packet_done();
1029 if (type == SSH2_MSG_CHANNEL_FAILURE)
1030 fatal("Request for subsystem '%.*s' failed on channel %d",
1031 len, buffer_ptr(&command), id);
1032}
1033
Ben Lindstromf558cf62001-09-20 23:13:49 +00001034/* request pty/x11/agent/tcpfwd/shell for channel */
Ben Lindstrombba81212001-06-25 05:01:22 +00001035static void
Ben Lindstromf558cf62001-09-20 23:13:49 +00001036ssh_session2_setup(int id, void *arg)
Damien Miller1383bd82000-04-06 12:32:37 +10001037{
1038 int len;
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001039 int interactive = 0;
Ben Lindstromae8e2d32001-04-14 23:13:02 +00001040 struct termios tio;
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001041
Ben Lindstromf558cf62001-09-20 23:13:49 +00001042 debug("ssh_session2_setup: id %d", id);
Damien Miller1383bd82000-04-06 12:32:37 +10001043
Damien Miller1383bd82000-04-06 12:32:37 +10001044 if (tty_flag) {
1045 struct winsize ws;
1046 char *cp;
1047 cp = getenv("TERM");
1048 if (!cp)
1049 cp = "";
1050 /* Store window size in the packet. */
1051 if (ioctl(fileno(stdin), TIOCGWINSZ, &ws) < 0)
1052 memset(&ws, 0, sizeof(ws));
1053
1054 channel_request_start(id, "pty-req", 0);
1055 packet_put_cstring(cp);
1056 packet_put_int(ws.ws_col);
1057 packet_put_int(ws.ws_row);
1058 packet_put_int(ws.ws_xpixel);
1059 packet_put_int(ws.ws_ypixel);
Ben Lindstromae8e2d32001-04-14 23:13:02 +00001060 tio = get_saved_tio();
1061 tty_make_modes(/*ignored*/ 0, &tio);
Damien Miller1383bd82000-04-06 12:32:37 +10001062 packet_send();
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001063 interactive = 1;
Damien Miller1383bd82000-04-06 12:32:37 +10001064 /* XXX wait for reply */
1065 }
Damien Millerbd483e72000-04-30 10:00:53 +10001066 if (options.forward_x11 &&
1067 getenv("DISPLAY") != NULL) {
1068 char proto[512], data[512];
1069 /* Get reasonable local authentication information. */
1070 x11_get_proto(proto, sizeof proto, data, sizeof data);
1071 /* Request forwarding with authentication spoofing. */
1072 debug("Requesting X11 forwarding with authentication spoofing.");
1073 x11_request_forwarding_with_spoofing(id, proto, data);
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001074 interactive = 1;
Damien Millerbd483e72000-04-30 10:00:53 +10001075 /* XXX wait for reply */
1076 }
1077
Damien Miller0bc1bd82000-11-13 22:57:25 +11001078 check_agent_present();
1079 if (options.forward_agent) {
1080 debug("Requesting authentication agent forwarding.");
1081 channel_request_start(id, "auth-agent-req@openssh.com", 0);
1082 packet_send();
1083 }
1084
Damien Miller1383bd82000-04-06 12:32:37 +10001085 len = buffer_len(&command);
1086 if (len > 0) {
1087 if (len > 900)
1088 len = 900;
Damien Miller832562e2001-01-30 09:30:01 +11001089 if (subsystem_flag) {
1090 debug("Sending subsystem: %.*s", len, buffer_ptr(&command));
Ben Lindstrom1e7d3062001-02-09 02:36:43 +00001091 channel_request_start(id, "subsystem", /*want reply*/ 1);
1092 /* register callback for reply */
1093 /* XXX we asume that client_loop has already been called */
1094 dispatch_set(SSH2_MSG_CHANNEL_FAILURE, &client_subsystem_reply);
1095 dispatch_set(SSH2_MSG_CHANNEL_SUCCESS, &client_subsystem_reply);
Damien Miller832562e2001-01-30 09:30:01 +11001096 } else {
1097 debug("Sending command: %.*s", len, buffer_ptr(&command));
1098 channel_request_start(id, "exec", 0);
1099 }
Ben Lindstrom4040fe12001-03-05 06:52:57 +00001100 packet_put_string(buffer_ptr(&command), buffer_len(&command));
Damien Miller1383bd82000-04-06 12:32:37 +10001101 packet_send();
1102 } else {
1103 channel_request(id, "shell", 0);
1104 }
1105 /* channel_callback(id, SSH2_MSG_OPEN_CONFIGMATION, client_init, 0); */
Ben Lindstrom1e7d3062001-02-09 02:36:43 +00001106
Damien Miller1383bd82000-04-06 12:32:37 +10001107 /* register different callback, etc. XXX */
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001108 packet_set_interactive(interactive);
Damien Miller1383bd82000-04-06 12:32:37 +10001109}
1110
Ben Lindstromf558cf62001-09-20 23:13:49 +00001111/* open new channel for a session */
Ben Lindstrombba81212001-06-25 05:01:22 +00001112static int
Ben Lindstromf558cf62001-09-20 23:13:49 +00001113ssh_session2_open(void)
Damien Miller1383bd82000-04-06 12:32:37 +10001114{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001115 Channel *c;
1116 int window, packetmax, in, out, err;
Damien Millerad833b32000-08-23 10:46:23 +10001117
Damien Millercaf6dd62000-08-29 11:33:50 +11001118 if (stdin_null_flag) {
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001119 in = open(_PATH_DEVNULL, O_RDONLY);
Damien Millercaf6dd62000-08-29 11:33:50 +11001120 } else {
1121 in = dup(STDIN_FILENO);
1122 }
1123 out = dup(STDOUT_FILENO);
1124 err = dup(STDERR_FILENO);
1125
1126 if (in < 0 || out < 0 || err < 0)
1127 fatal("dup() in/out/err failed");
1128
Damien Miller69b69aa2000-10-28 14:19:58 +11001129 /* enable nonblocking unless tty */
1130 if (!isatty(in))
1131 set_nonblock(in);
1132 if (!isatty(out))
1133 set_nonblock(out);
1134 if (!isatty(err))
1135 set_nonblock(err);
1136
Damien Millere4340be2000-09-16 13:29:08 +11001137 window = CHAN_SES_WINDOW_DEFAULT;
1138 packetmax = CHAN_SES_PACKET_DEFAULT;
1139 if (!tty_flag) {
Damien Miller1383bd82000-04-06 12:32:37 +10001140 window *= 2;
Damien Millere4340be2000-09-16 13:29:08 +11001141 packetmax *=2;
Damien Miller1383bd82000-04-06 12:32:37 +10001142 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001143 c = channel_new(
Damien Miller1383bd82000-04-06 12:32:37 +10001144 "session", SSH_CHANNEL_OPENING, in, out, err,
Damien Millere4340be2000-09-16 13:29:08 +11001145 window, packetmax, CHAN_EXTENDED_WRITE,
Damien Miller69b69aa2000-10-28 14:19:58 +11001146 xstrdup("client-session"), /*nonblock*/0);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001147 if (c == NULL)
Ben Lindstromf558cf62001-09-20 23:13:49 +00001148 fatal("ssh_session2_open: channel_new failed");
Damien Miller1383bd82000-04-06 12:32:37 +10001149
Ben Lindstromf558cf62001-09-20 23:13:49 +00001150 debug3("ssh_session2_open: channel_new: %d", c->self);
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001151
Ben Lindstrom5ec26452001-06-09 00:18:51 +00001152 channel_send_open(c->self);
Ben Lindstromf558cf62001-09-20 23:13:49 +00001153 if (!no_shell_flag)
1154 channel_register_callback(c->self,
1155 SSH2_MSG_CHANNEL_OPEN_CONFIRMATION,
1156 ssh_session2_setup, (void *)0);
Damien Miller1383bd82000-04-06 12:32:37 +10001157
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001158 return c->self;
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001159}
1160
Ben Lindstrombba81212001-06-25 05:01:22 +00001161static int
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001162ssh_session2(void)
1163{
Ben Lindstromf558cf62001-09-20 23:13:49 +00001164 int id = -1;
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001165
1166 /* XXX should be pre-session */
1167 ssh_init_forwarding();
1168
Ben Lindstromf558cf62001-09-20 23:13:49 +00001169 if (!no_shell_flag || (datafellows & SSH_BUG_DUMMYCHAN))
1170 id = ssh_session2_open();
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001171
1172 /* If requested, let ssh continue in the background. */
1173 if (fork_after_authentication_flag)
1174 if (daemon(1, 1) < 0)
1175 fatal("daemon() failed: %.200s", strerror(errno));
1176
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +00001177 return client_loop(tty_flag, tty_flag ?
1178 options.escape_char : SSH_ESCAPECHAR_NONE, id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001179}
Damien Miller0bc1bd82000-11-13 22:57:25 +11001180
Ben Lindstrombba81212001-06-25 05:01:22 +00001181static void
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001182load_public_identity_files(void)
1183{
1184 char *filename;
1185 Key *public;
Ben Lindstrom711b04a2001-08-06 21:12:42 +00001186 int i = 0;
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001187
Ben Lindstrom711b04a2001-08-06 21:12:42 +00001188#ifdef SMARTCARD
Ben Lindstromf7db3bb2001-08-06 21:35:51 +00001189 if (options.smartcard_device != NULL &&
Ben Lindstrom711b04a2001-08-06 21:12:42 +00001190 options.num_identity_files + 1 < SSH_MAX_IDENTITY_FILES &&
Ben Lindstromae996bf2001-08-06 21:27:53 +00001191 (public = sc_get_key(options.smartcard_device)) != NULL ) {
Ben Lindstrom711b04a2001-08-06 21:12:42 +00001192 Key *new;
1193
1194 if (options.num_identity_files + 2 > SSH_MAX_IDENTITY_FILES)
1195 options.num_identity_files = SSH_MAX_IDENTITY_FILES - 2;
1196 memmove(&options.identity_files[2], &options.identity_files[0],
1197 sizeof(char *) * options.num_identity_files);
1198 options.num_identity_files += 2;
1199 i = 2;
1200
1201 /* XXX ssh1 vs ssh2 */
1202 new = key_new(KEY_RSA);
1203 new->flags = KEY_FLAG_EXT;
1204 BN_copy(new->rsa->n, public->rsa->n);
1205 BN_copy(new->rsa->e, public->rsa->e);
1206 RSA_set_method(new->rsa, sc_get_engine());
1207 options.identity_keys[0] = new;
1208 options.identity_files[0] = xstrdup("smartcard rsa key");;
1209
1210 new = key_new(KEY_RSA1);
1211 new->flags = KEY_FLAG_EXT;
1212 BN_copy(new->rsa->n, public->rsa->n);
1213 BN_copy(new->rsa->e, public->rsa->e);
1214 RSA_set_method(new->rsa, sc_get_engine());
1215 options.identity_keys[1] = new;
1216 options.identity_files[1] = xstrdup("smartcard rsa1 key");
1217
1218 key_free(public);
1219 }
Ben Lindstromffce1472001-08-06 21:57:31 +00001220#endif /* SMARTCARD */
Ben Lindstrom711b04a2001-08-06 21:12:42 +00001221 for (; i < options.num_identity_files; i++) {
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001222 filename = tilde_expand_filename(options.identity_files[i],
1223 original_real_uid);
Ben Lindstromd0fca422001-03-26 13:44:06 +00001224 public = key_load_public(filename, NULL);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001225 debug("identity file %s type %d", filename,
1226 public ? public->type : -1);
1227 xfree(options.identity_files[i]);
1228 options.identity_files[i] = filename;
1229 options.identity_keys[i] = public;
1230 }
1231}