]> andersk Git - openssh.git/blame - ssh.c
- markus@cvs.openbsd.org 2001/10/09 10:12:08
[openssh.git] / ssh.c
CommitLineData
8efc0c15 1/*
5260325f 2 * Author: Tatu Ylonen <ylo@cs.hut.fi>
3 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
4 * All rights reserved
5260325f 5 * 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 *
bcbf86ec 9 * 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.
5260325f 39 */
8efc0c15 40
41#include "includes.h"
dab89049 42RCSID("$OpenBSD: ssh.c,v 1.147 2001/10/08 19:05:05 markus Exp $");
8efc0c15 43
a306f2dd 44#include <openssl/evp.h>
fa08c86b 45#include <openssl/err.h>
a306f2dd 46
8efc0c15 47#include "ssh.h"
42f11eb2 48#include "ssh1.h"
49#include "ssh2.h"
50#include "compat.h"
51#include "cipher.h"
52#include "xmalloc.h"
8efc0c15 53#include "packet.h"
54#include "buffer.h"
8efc0c15 55#include "uidswap.h"
a5efa1bb 56#include "channels.h"
a306f2dd 57#include "key.h"
4c8722d9 58#include "authfd.h"
a306f2dd 59#include "authfile.h"
42f11eb2 60#include "pathnames.h"
b5c334cc 61#include "clientloop.h"
42f11eb2 62#include "log.h"
63#include "readconf.h"
64#include "sshconnect.h"
65#include "tildexpand.h"
1f3bf5aa 66#include "dispatch.h"
42f11eb2 67#include "misc.h"
b2552997 68#include "kex.h"
69#include "mac.h"
30dcc918 70#include "sshtty.h"
8efc0c15 71
383546c4 72#ifdef SMARTCARD
73#include <openssl/engine.h>
74#include "scard.h"
dd2495cb 75#endif
383546c4 76
f601d847 77#ifdef HAVE___PROGNAME
78extern char *__progname;
260d427b 79#else
80char *__progname;
81#endif
f601d847 82
48e671d5 83/* 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. */
59e76f33 85#ifdef IPV4_DEFAULT
86int IPv4or6 = AF_INET;
87#else
48e671d5 88int IPv4or6 = AF_UNSPEC;
59e76f33 89#endif
48e671d5 90
5260325f 91/* Flag indicating whether debug mode is on. This can be set on the command line. */
8efc0c15 92int debug_flag = 0;
93
a8be9f80 94/* Flag indicating whether a tty should be allocated */
8efc0c15 95int tty_flag = 0;
8abcdba4 96int no_tty_flag = 0;
97int force_tty_flag = 0;
8efc0c15 98
8ce64345 99/* don't exec a shell */
100int no_shell_flag = 0;
8ce64345 101
aa3378df 102/*
103 * Flag indicating that nothing should be read from stdin. This can be set
104 * on the command line.
105 */
8efc0c15 106int stdin_null_flag = 0;
107
aa3378df 108/*
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 */
8efc0c15 113int fork_after_authentication_flag = 0;
114
aa3378df 115/*
116 * General data structure for command line options and options configurable
117 * in configuration files. See readconf.h.
118 */
8efc0c15 119Options options;
120
e591b98a 121/* optional user configfile */
122char *config = NULL;
123
aa3378df 124/*
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 */
8efc0c15 129char *host;
130
131/* socket address the host resolves to */
48e671d5 132struct sockaddr_storage hostaddr;
8efc0c15 133
aa3378df 134/*
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 */
8efc0c15 140volatile int received_window_change_signal = 0;
141
8002af61 142/* Private host keys. */
143struct {
144 Key **keys;
145 int nkeys;
146} sensitive_data;
8efc0c15 147
148/* Original real UID. */
149uid_t original_real_uid;
150
8ce64345 151/* command to be executed */
152Buffer command;
153
ae810de7 154/* Should we execute a command or invoke a subsystem? */
155int subsystem_flag = 0;
156
8efc0c15 157/* Prints a help message to the user. This function never returns. */
158
396c147e 159static void
5ca51e19 160usage(void)
8efc0c15 161{
1fe6a48f 162 fprintf(stderr, "Usage: %s [options] host [command]\n", __progname);
5260325f 163 fprintf(stderr, "Options:\n");
164 fprintf(stderr, " -l user Log in using this user name.\n");
5ca51e19 165 fprintf(stderr, " -n Redirect input from " _PATH_DEVNULL ".\n");
e591b98a 166 fprintf(stderr, " -F config Config file (default: ~/%s).\n",
167 _PATH_SSH_USER_CONFFILE);
71276795 168 fprintf(stderr, " -A Enable authentication agent forwarding.\n");
63cd7dd0 169 fprintf(stderr, " -a Disable authentication agent forwarding (default).\n");
8efc0c15 170#ifdef AFS
5260325f 171 fprintf(stderr, " -k Disable Kerberos ticket and AFS token forwarding.\n");
172#endif /* AFS */
2b87da3b 173 fprintf(stderr, " -X Enable X11 connection forwarding.\n");
63cd7dd0 174 fprintf(stderr, " -x Disable X11 connection forwarding (default).\n");
a01a5f30 175 fprintf(stderr, " -i file Identity for public key authentication "
176 "(default: ~/.ssh/identity)\n");
315dfb04 177#ifdef SMARTCARD
178 fprintf(stderr, " -I reader Set smartcard reader.\n");
dd2495cb 179#endif
5260325f 180 fprintf(stderr, " -t Tty; allocate a tty even if command is given.\n");
8ce64345 181 fprintf(stderr, " -T Do not allocate a tty.\n");
5260325f 182 fprintf(stderr, " -v Verbose; display verbose debugging messages.\n");
bcbf86ec 183 fprintf(stderr, " Multiple -v increases verbosity.\n");
5260325f 184 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");
189
63cd7dd0 190 fprintf(stderr, " -c cipher Select encryption algorithm\n");
38967add 191 fprintf(stderr, " -m macs Specify MAC algorithms for protocol version 2.\n");
5260325f 192 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");
1fe6a48f 195 fprintf(stderr, " These cause %s to listen for connections on a port, and\n", __progname);
5260325f 196 fprintf(stderr, " forward them to the other side by connecting to host:port.\n");
4c780c2a 197 fprintf(stderr, " -D port Enable dynamic application-level port forwarding.\n");
5260325f 198 fprintf(stderr, " -C Enable compression.\n");
8ce64345 199 fprintf(stderr, " -N Do not execute a shell or command.\n");
5260325f 200 fprintf(stderr, " -g Allow remote hosts to connect to forwarded ports.\n");
1f3bf5aa 201 fprintf(stderr, " -1 Force protocol version 1.\n");
202 fprintf(stderr, " -2 Force protocol version 2.\n");
48e671d5 203 fprintf(stderr, " -4 Use IPv4 only.\n");
204 fprintf(stderr, " -6 Use IPv6 only.\n");
5260325f 205 fprintf(stderr, " -o 'option' Process the option as if it was read from a configuration file.\n");
ae810de7 206 fprintf(stderr, " -s Invoke command (mandatory) as SSH2 subsystem.\n");
63cd7dd0 207 fprintf(stderr, " -b addr Local IP address.\n");
5260325f 208 exit(1);
8efc0c15 209}
210
5260325f 211/*
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 */
396c147e 215static void
5260325f 216rsh_connect(char *host, char *user, Buffer * command)
8efc0c15 217{
5260325f 218 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;
230 }
231 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");
8efc0c15 243 }
5260325f 244 execv(_PATH_RSH, args);
245 perror(_PATH_RSH);
246 exit(1);
8efc0c15 247}
248
396c147e 249static int ssh_session(void);
250static int ssh_session2(void);
251static void load_public_identity_files(void);
8ce64345 252
5260325f 253/*
254 * Main program for the ssh client.
255 */
8efc0c15 256int
257main(int ac, char **av)
258{
ce773142 259 int i, opt, exit_status, cerr;
57112b5a 260 u_short fwd_port, fwd_host_port;
d2e3df16 261 char sfwd_port[6], sfwd_host_port[6];
f5a1a01a 262 char *p, *cp, buf[256];
5260325f 263 struct stat st;
3b1a83df 264 struct passwd *pw;
8ce64345 265 int dummy;
5260325f 266 uid_t original_effective_uid;
57dade33 267 extern int optind, optreset;
1812a662 268 extern char *optarg;
5260325f 269
260d427b 270 __progname = get_progname(av[0]);
264dce47 271 init_rng();
272
aa3378df 273 /*
274 * Save the original real uid. It will be needed later (uid-swapping
275 * may clobber the real uid).
276 */
5260325f 277 original_real_uid = getuid();
278 original_effective_uid = geteuid();
279
7322ef0e 280#ifdef HAVE_SETRLIMIT
5260325f 281 /* If we are installed setuid root be careful to not drop core. */
282 if (original_real_uid != original_effective_uid) {
283 struct rlimit rlim;
284 rlim.rlim_cur = rlim.rlim_max = 0;
285 if (setrlimit(RLIMIT_CORE, &rlim) < 0)
286 fatal("setrlimit failed: %.100s", strerror(errno));
8efc0c15 287 }
3c62e7eb 288#endif
63bd8c36 289 /* Get user data. */
290 pw = getpwuid(original_real_uid);
291 if (!pw) {
292 log("You don't exist, go away!");
293 exit(1);
294 }
295 /* Take a copy of the returned structure. */
296 pw = pwcopy(pw);
297
aa3378df 298 /*
299 * Use uid-swapping to give up root privileges for the duration of
300 * option processing. We will re-instantiate the rights when we are
301 * ready to create the privileged port, and will permanently drop
302 * them when the port has been created (actually, when the connection
303 * has been made, as we may need to create the port several times).
304 */
63bd8c36 305 temporarily_use_uid(pw);
5260325f 306
aa3378df 307 /*
308 * Set our umask to something reasonable, as some files are created
309 * with the default umask. This will make them world-readable but
310 * writable only by the owner, which is ok for all files for which we
311 * don't set the modes explicitly.
312 */
5260325f 313 umask(022);
314
5260325f 315 /* Initialize option structure to indicate that no values have been set. */
316 initialize_options(&options);
317
318 /* Parse command-line arguments. */
319 host = NULL;
320
f5a1a01a 321again:
322 while ((opt = getopt(ac, av,
e591b98a 323 "1246ab:c:e:fgi:kl:m:no:p:qstvxACD:F:I:L:NPR:TVX")) != -1) {
5260325f 324 switch (opt) {
1f3bf5aa 325 case '1':
326 options.protocol = SSH_PROTO_1;
327 break;
6ae2364d 328 case '2':
329 options.protocol = SSH_PROTO_2;
330 break;
48e671d5 331 case '4':
332 IPv4or6 = AF_INET;
333 break;
48e671d5 334 case '6':
335 IPv4or6 = AF_INET6;
336 break;
5260325f 337 case 'n':
338 stdin_null_flag = 1;
339 break;
5260325f 340 case 'f':
341 fork_after_authentication_flag = 1;
342 stdin_null_flag = 1;
343 break;
5260325f 344 case 'x':
345 options.forward_x11 = 0;
346 break;
5260325f 347 case 'X':
348 options.forward_x11 = 1;
349 break;
5260325f 350 case 'g':
351 options.gateway_ports = 1;
352 break;
5260325f 353 case 'P':
354 options.use_privileged_port = 0;
355 break;
5260325f 356 case 'a':
357 options.forward_agent = 0;
358 break;
71276795 359 case 'A':
360 options.forward_agent = 1;
361 break;
5260325f 362#ifdef AFS
363 case 'k':
364 options.kerberos_tgt_passing = 0;
365 options.afs_token_passing = 0;
366 break;
367#endif
368 case 'i':
369 if (stat(optarg, &st) < 0) {
f5a1a01a 370 fprintf(stderr, "Warning: Identity file %s "
371 "does not exist.\n", optarg);
5260325f 372 break;
373 }
f5a1a01a 374 if (options.num_identity_files >=
375 SSH_MAX_IDENTITY_FILES)
376 fatal("Too many identity files specified "
377 "(max %d)", SSH_MAX_IDENTITY_FILES);
378 options.identity_files[options.num_identity_files++] =
379 xstrdup(optarg);
5260325f 380 break;
383546c4 381 case 'I':
382#ifdef SMARTCARD
9ff6f66f 383 options.smartcard_device = xstrdup(optarg);
dd2495cb 384#else
383546c4 385 fprintf(stderr, "no support for smartcards.\n");
dd2495cb 386#endif
383546c4 387 break;
5260325f 388 case 't':
8abcdba4 389 if (tty_flag)
390 force_tty_flag = 1;
5260325f 391 tty_flag = 1;
392 break;
5260325f 393 case 'v':
bcbf86ec 394 if (0 == debug_flag) {
395 debug_flag = 1;
396 options.log_level = SYSLOG_LEVEL_DEBUG1;
397 } else if (options.log_level < SYSLOG_LEVEL_DEBUG3) {
398 options.log_level++;
399 break;
f5a1a01a 400 } else
54b974dc 401 fatal("Too high debugging level.");
bcbf86ec 402 /* fallthrough */
5260325f 403 case 'V':
e68225b2 404 fprintf(stderr,
405 "%s, SSH protocols %d.%d/%d.%d, OpenSSL 0x%8.8lx\n",
a8be9f80 406 SSH_VERSION,
407 PROTOCOL_MAJOR_1, PROTOCOL_MINOR_1,
e68225b2 408 PROTOCOL_MAJOR_2, PROTOCOL_MINOR_2,
409 SSLeay());
5260325f 410 if (opt == 'V')
411 exit(0);
5260325f 412 break;
5260325f 413 case 'q':
414 options.log_level = SYSLOG_LEVEL_QUIET;
415 break;
5260325f 416 case 'e':
417 if (optarg[0] == '^' && optarg[2] == 0 &&
f5a1a01a 418 (u_char) optarg[1] >= 64 &&
419 (u_char) optarg[1] < 128)
1e3b8b07 420 options.escape_char = (u_char) optarg[1] & 31;
5260325f 421 else if (strlen(optarg) == 1)
1e3b8b07 422 options.escape_char = (u_char) optarg[0];
5260325f 423 else if (strcmp(optarg, "none") == 0)
4bf9c10e 424 options.escape_char = SSH_ESCAPECHAR_NONE;
5260325f 425 else {
f5a1a01a 426 fprintf(stderr, "Bad escape character '%s'.\n",
427 optarg);
5260325f 428 exit(1);
429 }
430 break;
5260325f 431 case 'c':
a306f2dd 432 if (ciphers_valid(optarg)) {
433 /* SSH2 only */
434 options.ciphers = xstrdup(optarg);
d0c832f3 435 options.cipher = SSH_CIPHER_ILLEGAL;
a306f2dd 436 } else {
437 /* SSH1 only */
c523303b 438 options.cipher = cipher_number(optarg);
439 if (options.cipher == -1) {
f5a1a01a 440 fprintf(stderr,
441 "Unknown cipher type '%s'\n",
442 optarg);
a306f2dd 443 exit(1);
444 }
f5a1a01a 445 if (options.cipher == SSH_CIPHER_3DES)
c523303b 446 options.ciphers = "3des-cbc";
f5a1a01a 447 else if (options.cipher == SSH_CIPHER_BLOWFISH)
c523303b 448 options.ciphers = "blowfish-cbc";
f5a1a01a 449 else
c523303b 450 options.ciphers = (char *)-1;
5260325f 451 }
452 break;
b2552997 453 case 'm':
454 if (mac_valid(optarg))
455 options.macs = xstrdup(optarg);
456 else {
f5a1a01a 457 fprintf(stderr, "Unknown mac type '%s'\n",
458 optarg);
b2552997 459 exit(1);
460 }
461 break;
5260325f 462 case 'p':
2d2a2c65 463 options.port = a2port(optarg);
464 if (options.port == 0) {
6031af8d 465 fprintf(stderr, "Bad port '%s'\n", optarg);
466 exit(1);
467 }
5260325f 468 break;
5260325f 469 case 'l':
470 options.user = optarg;
471 break;
d2e3df16 472
473 case 'L':
5260325f 474 case 'R':
d2e3df16 475 if (sscanf(optarg, "%5[0-9]:%255[^:]:%5[0-9]",
476 sfwd_port, buf, sfwd_host_port) != 3 &&
477 sscanf(optarg, "%5[0-9]/%255[^/]/%5[0-9]",
478 sfwd_port, buf, sfwd_host_port) != 3) {
f5a1a01a 479 fprintf(stderr,
d2e3df16 480 "Bad forwarding specification '%s'\n",
f5a1a01a 481 optarg);
5260325f 482 usage();
483 /* NOTREACHED */
484 }
d2e3df16 485 if ((fwd_port = a2port(sfwd_port)) == 0 ||
486 (fwd_host_port = a2port(sfwd_host_port)) == 0) {
f5a1a01a 487 fprintf(stderr,
d2e3df16 488 "Bad forwarding port(s) '%s'\n", optarg);
489 exit(1);
5260325f 490 }
d2e3df16 491 if (opt == 'L')
492 add_local_forward(&options, fwd_port, buf,
493 fwd_host_port);
494 else if (opt == 'R')
495 add_remote_forward(&options, fwd_port, buf,
496 fwd_host_port);
5260325f 497 break;
0490e609 498
499 case 'D':
2d2a2c65 500 fwd_port = a2port(optarg);
501 if (fwd_port == 0) {
f5a1a01a 502 fprintf(stderr, "Bad dynamic port '%s'\n",
503 optarg);
6031af8d 504 exit(1);
505 }
0490e609 506 add_local_forward(&options, fwd_port, "socks4", 0);
507 break;
508
5260325f 509 case 'C':
510 options.compression = 1;
511 break;
8ce64345 512 case 'N':
513 no_shell_flag = 1;
514 no_tty_flag = 1;
515 break;
8ce64345 516 case 'T':
517 no_tty_flag = 1;
518 break;
5260325f 519 case 'o':
520 dummy = 1;
f5a1a01a 521 if (process_config_line(&options, host ? host : "",
522 optarg, "command-line", 0, &dummy) != 0)
5260325f 523 exit(1);
524 break;
ae810de7 525 case 's':
526 subsystem_flag = 1;
527 break;
3435f5a6 528 case 'b':
529 options.bind_address = optarg;
530 break;
e591b98a 531 case 'F':
532 config = optarg;
533 break;
5260325f 534 default:
535 usage();
536 }
537 }
538
f5a1a01a 539 ac -= optind;
540 av += optind;
541
542 if (ac > 0 && !host && **av != '-') {
543 if (strchr(*av, '@')) {
544 p = xstrdup(*av);
545 cp = strchr(p, '@');
546 if (cp == NULL || cp == p)
547 usage();
548 options.user = p;
549 *cp = '\0';
550 host = ++cp;
551 } else
552 host = *av;
553 ac--, av++;
554 if (ac > 0) {
555 optind = 0;
556 optreset = 1;
557 goto again;
558 }
559 }
560
5260325f 561 /* Check that we got a host name. */
562 if (!host)
8efc0c15 563 usage();
5260325f 564
22d89d24 565 SSLeay_add_all_algorithms();
fa08c86b 566 ERR_load_crypto_strings();
5e4a7219 567 channel_set_af(IPv4or6);
22d89d24 568
5260325f 569 /* Initialize the command to execute on remote host. */
570 buffer_init(&command);
571
aa3378df 572 /*
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 */
f5a1a01a 577 if (!ac) {
5260325f 578 /* No command specified - execute shell on a tty. */
579 tty_flag = 1;
ae810de7 580 if (subsystem_flag) {
f5a1a01a 581 fprintf(stderr,
582 "You must specify a subsystem to invoke.\n");
ae810de7 583 usage();
584 }
5260325f 585 } else {
f5a1a01a 586 /* A command has been specified. Store it into the buffer. */
587 for (i = 0; i < ac; i++) {
588 if (i)
5260325f 589 buffer_append(&command, " ", 1);
590 buffer_append(&command, av[i], strlen(av[i]));
591 }
8efc0c15 592 }
5260325f 593
594 /* Cannot fork to background if no command. */
14a9a859 595 if (fork_after_authentication_flag && buffer_len(&command) == 0 && !no_shell_flag)
5260325f 596 fatal("Cannot fork into background without a command to execute.");
597
598 /* Allocate a tty by default if no command specified. */
599 if (buffer_len(&command) == 0)
600 tty_flag = 1;
601
0b6fbf03 602 /* Force no tty*/
603 if (no_tty_flag)
604 tty_flag = 0;
5260325f 605 /* Do not allocate a tty if stdin is not a tty. */
8abcdba4 606 if (!isatty(fileno(stdin)) && !force_tty_flag) {
5260325f 607 if (tty_flag)
54b974dc 608 log("Pseudo-terminal will not be allocated because stdin is not a terminal.");
5260325f 609 tty_flag = 0;
610 }
8ce64345 611
20244695 612 /*
613 * Initialize "log" output. Since we are the client all output
614 * actually goes to stderr.
615 */
cc44f691 616 log_init(av[0], options.log_level == -1 ? SYSLOG_LEVEL_INFO : options.log_level,
617 SYSLOG_FACILITY_USER, 1);
5260325f 618
e591b98a 619 /*
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) {
93111dfa 624 if (!read_config_file(config, host, &options))
625 fatal("Can't open user config file %.100s: "
626 "%.100s", config, strerror(errno));
e591b98a 627 } else {
628 snprintf(buf, sizeof buf, "%.100s/%.100s", pw->pw_dir,
629 _PATH_SSH_USER_CONFFILE);
f67792f2 630 (void)read_config_file(buf, host, &options);
e591b98a 631
f67792f2 632 /* Read systemwide configuration file after use config. */
93111dfa 633 (void)read_config_file(_PATH_HOST_CONFIG_FILE, host, &options);
e591b98a 634 }
5260325f 635
636 /* Fill configuration defaults. */
637 fill_default_options(&options);
638
639 /* reinit */
20244695 640 log_init(av[0], options.log_level, SYSLOG_FACILITY_USER, 1);
5260325f 641
e339aa53 642 seed_rng();
643
5260325f 644 if (options.user == NULL)
645 options.user = xstrdup(pw->pw_name);
646
647 if (options.hostname != NULL)
648 host = options.hostname;
649
5260325f 650 /* Disable rhosts authentication if not running as root. */
3c62e7eb 651#ifdef HAVE_CYGWIN
652 /* Ignore uid if running under Windows */
653 if (!options.use_privileged_port) {
654#else
5260325f 655 if (original_effective_uid != 0 || !options.use_privileged_port) {
3c62e7eb 656#endif
6ffc9c88 657 debug("Rhosts Authentication disabled, "
658 "originating port will not be trusted.");
5260325f 659 options.rhosts_authentication = 0;
5260325f 660 }
aa3378df 661 /*
662 * If using rsh has been selected, exec it now (without trying
663 * anything else). Note that we must release privileges first.
664 */
5260325f 665 if (options.use_rsh) {
aa3378df 666 /*
667 * Restore our superuser privileges. This must be done
668 * before permanently setting the uid.
669 */
5260325f 670 restore_uid();
671
672 /* Switch to the original uid permanently. */
63bd8c36 673 permanently_set_uid(pw);
5260325f 674
675 /* Execute rsh. */
676 rsh_connect(host, options.user, &command);
677 fatal("rsh_connect returned");
8efc0c15 678 }
5260325f 679 /* Restore our superuser privileges. */
680 restore_uid();
681
6ffc9c88 682 /* Open a connection to the remote host. */
5260325f 683
dab89049 684 cerr = ssh_connect(host, &hostaddr, options.port, IPv4or6,
6ffc9c88 685 options.connection_attempts,
686 original_effective_uid != 0 || !options.use_privileged_port,
63bd8c36 687 pw, options.proxy_command);
5260325f 688
aa3378df 689 /*
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 */
8002af61 695 sensitive_data.nkeys = 0;
696 sensitive_data.keys = NULL;
ce773142 697 if (!cerr && (options.rhosts_rsa_authentication ||
8002af61 698 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,
aeaa3d9e 702 _PATH_HOST_KEY_FILE, "", NULL);
8002af61 703 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);
5260325f 707 }
aa3378df 708 /*
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 */
715
716 /*
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 */
63bd8c36 723 permanently_set_uid(pw);
5260325f 724
aa3378df 725 /*
726 * Now that we are back to our own permissions, create ~/.ssh
727 * directory if it doesn\'t already exist.
728 */
c3abff07 729 snprintf(buf, sizeof buf, "%.100s%s%.100s", pw->pw_dir, strcmp(pw->pw_dir, "/") ? "/" : "", _PATH_SSH_USER_DIR);
5260325f 730 if (stat(buf, &st) < 0)
704b1659 731 if (mkdir(buf, 0700) < 0)
5260325f 732 error("Could not create directory '%.200s'.", buf);
733
734 /* Check if the connection failed, and try "rsh" if appropriate. */
ce773142 735 if (cerr) {
736 if (!options.fallback_to_rsh)
737 exit(1);
5260325f 738 if (options.port != 0)
ce773142 739 log("Secure connection to %.100s on port %hu refused; "
740 "reverting to insecure method",
741 host, options.port);
5260325f 742 else
ce773142 743 log("Secure connection to %.100s refused; "
744 "reverting to insecure method.", host);
5260325f 745
ce773142 746 rsh_connect(host, options.user, &command);
747 fatal("rsh_connect returned");
8efc0c15 748 }
fee56204 749 /* load options.identity_files */
750 load_public_identity_files();
751
752 /* Expand ~ in known host file names. */
753 /* XXX mem-leaks: */
fa08c86b 754 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);
5260325f 762
763 /* Log into the remote system. This never returns if the login fails. */
8002af61 764 ssh_login(sensitive_data.keys, sensitive_data.nkeys,
765 host, (struct sockaddr *)&hostaddr, pw);
766
767 /* 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 }
05b7537a 779 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 }
5260325f 789
8ce64345 790 exit_status = compat20 ? ssh_session2() : ssh_session();
791 packet_close();
792 return exit_status;
793}
794
396c147e 795static void
0b242b12 796x11_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
fa649821 802 if (options.xauth_location) {
803 /* Try to get Xauthority information for the display. */
5ca51e19 804 snprintf(line, sizeof line, "%.100s list %.200s 2>" _PATH_DEVNULL,
fa649821 805 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 }
0b242b12 813 /*
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
396c147e 834static void
fa08c86b 835ssh_init_forwarding(void)
836{
02a024dd 837 int success = 0;
fa08c86b 838 int i;
02a024dd 839
fa08c86b 840 /* 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);
02a024dd 846 success += channel_request_local_forwarding(
fa08c86b 847 options.local_forwards[i].port,
848 options.local_forwards[i].host,
849 options.local_forwards[i].host_port,
850 options.gateway_ports);
851 }
02a024dd 852 if (i > 0 && success == 0)
853 error("Could not request local forwarding.");
fa08c86b 854
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
396c147e 868static void
fa08c86b 869check_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
396c147e 881static int
8ce64345 882ssh_session(void)
883{
884 int type;
8ce64345 885 int plen;
886 int interactive = 0;
887 int have_tty = 0;
888 struct winsize ws;
8ce64345 889 char *cp;
890
5260325f 891 /* 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 = "";
449c5ba5 923 packet_put_cstring(cp);
5260325f 924
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. */
30dcc918 934 tty_make_modes(fileno(stdin), NULL);
5260325f 935
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);
4fe2af09 942 if (type == SSH_SMSG_SUCCESS) {
5260325f 943 interactive = 1;
8ce64345 944 have_tty = 1;
4fe2af09 945 } else if (type == SSH_SMSG_FAILURE)
5260325f 946 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) {
0b242b12 952 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. */
5260325f 956 debug("Requesting X11 forwarding with authentication spoofing.");
0b242b12 957 x11_request_forwarding_with_spoofing(0, proto, data);
5260325f 958
959 /* Read response from the server. */
960 type = packet_read(&plen);
961 if (type == SSH_SMSG_SUCCESS) {
5260325f 962 interactive = 1;
0b242b12 963 } else if (type == SSH_SMSG_FAILURE) {
5260325f 964 log("Warning: Remote host denied X11 forwarding.");
0b242b12 965 } else {
5260325f 966 packet_disconnect("Protocol error waiting for X11 forwarding");
0b242b12 967 }
5260325f 968 }
969 /* Tell the packet module whether this is an interactive session. */
b5c334cc 970 packet_set_interactive(interactive);
5260325f 971
972 /* Request authentication agent forwarding if appropriate. */
fa08c86b 973 check_agent_present();
974
5260325f 975 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 }
8efc0c15 985
fa08c86b 986 /* Initiate port forwardings. */
987 ssh_init_forwarding();
5260325f 988
aa3378df 989 /* If requested, let ssh continue in the background. */
6ae2364d 990 if (fork_after_authentication_flag)
aa3378df 991 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 */
5260325f 998 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 }
1013
1014 /* Enter the interactive session. */
4bf9c10e 1015 return client_loop(have_tty, tty_flag ?
1016 options.escape_char : SSH_ESCAPECHAR_NONE, 0);
8ce64345 1017}
5260325f 1018
396c147e 1019static void
1f3bf5aa 1020client_subsystem_reply(int type, int plen, void *ctxt)
1021{
1022 int id, len;
1023
1024 id = packet_get_int();
1025 len = buffer_len(&command);
ce91d6f8 1026 if (len > 900)
1027 len = 900;
1f3bf5aa 1028 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
bcdb96c2 1034/* request pty/x11/agent/tcpfwd/shell for channel */
396c147e 1035static void
bcdb96c2 1036ssh_session2_setup(int id, void *arg)
8ce64345 1037{
1038 int len;
b5c334cc 1039 int interactive = 0;
30dcc918 1040 struct termios tio;
b5c334cc 1041
bcdb96c2 1042 debug("ssh_session2_setup: id %d", id);
8ce64345 1043
8ce64345 1044 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);
30dcc918 1060 tio = get_saved_tio();
1061 tty_make_modes(/*ignored*/ 0, &tio);
8ce64345 1062 packet_send();
b5c334cc 1063 interactive = 1;
8ce64345 1064 /* XXX wait for reply */
1065 }
0b242b12 1066 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);
b5c334cc 1074 interactive = 1;
0b242b12 1075 /* XXX wait for reply */
1076 }
1077
fa08c86b 1078 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
8ce64345 1085 len = buffer_len(&command);
1086 if (len > 0) {
1087 if (len > 900)
1088 len = 900;
ae810de7 1089 if (subsystem_flag) {
1090 debug("Sending subsystem: %.*s", len, buffer_ptr(&command));
1f3bf5aa 1091 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);
ae810de7 1096 } else {
1097 debug("Sending command: %.*s", len, buffer_ptr(&command));
1098 channel_request_start(id, "exec", 0);
1099 }
ce91d6f8 1100 packet_put_string(buffer_ptr(&command), buffer_len(&command));
8ce64345 1101 packet_send();
1102 } else {
1103 channel_request(id, "shell", 0);
1104 }
1105 /* channel_callback(id, SSH2_MSG_OPEN_CONFIGMATION, client_init, 0); */
1f3bf5aa 1106
8ce64345 1107 /* register different callback, etc. XXX */
b5c334cc 1108 packet_set_interactive(interactive);
8ce64345 1109}
1110
bcdb96c2 1111/* open new channel for a session */
396c147e 1112static int
bcdb96c2 1113ssh_session2_open(void)
8ce64345 1114{
719fc62f 1115 Channel *c;
1116 int window, packetmax, in, out, err;
2e73a022 1117
14a9a859 1118 if (stdin_null_flag) {
5ca51e19 1119 in = open(_PATH_DEVNULL, O_RDONLY);
14a9a859 1120 } else {
1121 in = dup(STDIN_FILENO);
1122 }
2e73a022 1123 out = dup(STDOUT_FILENO);
1124 err = dup(STDERR_FILENO);
8ce64345 1125
1126 if (in < 0 || out < 0 || err < 0)
14a9a859 1127 fatal("dup() in/out/err failed");
8ce64345 1128
a22aff1f 1129 /* 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
bcbf86ec 1137 window = CHAN_SES_WINDOW_DEFAULT;
1138 packetmax = CHAN_SES_PACKET_DEFAULT;
1139 if (!tty_flag) {
8ce64345 1140 window *= 2;
bcbf86ec 1141 packetmax *=2;
8ce64345 1142 }
719fc62f 1143 c = channel_new(
8ce64345 1144 "session", SSH_CHANNEL_OPENING, in, out, err,
bcbf86ec 1145 window, packetmax, CHAN_EXTENDED_WRITE,
a22aff1f 1146 xstrdup("client-session"), /*nonblock*/0);
719fc62f 1147 if (c == NULL)
bcdb96c2 1148 fatal("ssh_session2_open: channel_new failed");
8ce64345 1149
bcdb96c2 1150 debug3("ssh_session2_open: channel_new: %d", c->self);
eb0dd41f 1151
36e1f6a1 1152 channel_send_open(c->self);
bcdb96c2 1153 if (!no_shell_flag)
1154 channel_register_callback(c->self,
1155 SSH2_MSG_CHANNEL_OPEN_CONFIRMATION,
1156 ssh_session2_setup, (void *)0);
5260325f 1157
719fc62f 1158 return c->self;
eb0dd41f 1159}
1160
396c147e 1161static int
eb0dd41f 1162ssh_session2(void)
1163{
bcdb96c2 1164 int id = -1;
eb0dd41f 1165
1166 /* XXX should be pre-session */
1167 ssh_init_forwarding();
1168
bcdb96c2 1169 if (!no_shell_flag || (datafellows & SSH_BUG_DUMMYCHAN))
1170 id = ssh_session2_open();
eb0dd41f 1171
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
4bf9c10e 1177 return client_loop(tty_flag, tty_flag ?
1178 options.escape_char : SSH_ESCAPECHAR_NONE, id);
8efc0c15 1179}
fa08c86b 1180
396c147e 1181static void
fee56204 1182load_public_identity_files(void)
1183{
1184 char *filename;
1185 Key *public;
2e23cde0 1186 int i = 0;
fee56204 1187
383546c4 1188#ifdef SMARTCARD
9ff6f66f 1189 if (options.smartcard_device != NULL &&
383546c4 1190 options.num_identity_files + 1 < SSH_MAX_IDENTITY_FILES &&
eea098a3 1191 (public = sc_get_key(options.smartcard_device)) != NULL ) {
383546c4 1192 Key *new;
1193
2e23cde0 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
383546c4 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());
2e23cde0 1207 options.identity_keys[0] = new;
1208 options.identity_files[0] = xstrdup("smartcard rsa key");;
383546c4 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());
2e23cde0 1215 options.identity_keys[1] = new;
1216 options.identity_files[1] = xstrdup("smartcard rsa1 key");
383546c4 1217
1218 key_free(public);
1219 }
3e984472 1220#endif /* SMARTCARD */
2e23cde0 1221 for (; i < options.num_identity_files; i++) {
1222 filename = tilde_expand_filename(options.identity_files[i],
1223 original_real_uid);
1224 public = key_load_public(filename, NULL);
1225 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 }
fee56204 1231}
This page took 0.386407 seconds and 5 git commands to generate.