]> andersk Git - openssh.git/blame - ssh.c
- markus@cvs.openbsd.org 2002/06/11 04:14:26
[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.
5fb274c1 16 * Copyright (c) 2000, 2001, 2002 Markus Friedl. All rights reserved.
bcbf86ec 17 *
18 * Modified to work with SSL by Niels Provos <provos@citi.umich.edu>
19 * in Canada (German citizen).
20 *
21 * Redistribution and use in source and binary forms, with or without
22 * modification, are permitted provided that the following conditions
23 * are met:
24 * 1. Redistributions of source code must retain the above copyright
25 * notice, this list of conditions and the following disclaimer.
26 * 2. Redistributions in binary form must reproduce the above copyright
27 * notice, this list of conditions and the following disclaimer in the
28 * documentation and/or other materials provided with the distribution.
29 *
30 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
31 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
32 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
33 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
34 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
35 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
36 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
37 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
38 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
39 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
5260325f 40 */
8efc0c15 41
42#include "includes.h"
3fb156df 43RCSID("$OpenBSD: ssh.c,v 1.177 2002/06/11 04:14:26 markus Exp $");
8efc0c15 44
a306f2dd 45#include <openssl/evp.h>
fa08c86b 46#include <openssl/err.h>
a306f2dd 47
8efc0c15 48#include "ssh.h"
42f11eb2 49#include "ssh1.h"
50#include "ssh2.h"
51#include "compat.h"
52#include "cipher.h"
53#include "xmalloc.h"
8efc0c15 54#include "packet.h"
55#include "buffer.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
383546c4 73#include "scard.h"
dd2495cb 74#endif
383546c4 75
f601d847 76#ifdef HAVE___PROGNAME
77extern char *__progname;
260d427b 78#else
79char *__progname;
80#endif
f601d847 81
48e671d5 82/* Flag indicating whether IPv4 or IPv6. This can be set on the command line.
83 Default value is AF_UNSPEC means both IPv4 and IPv6. */
59e76f33 84#ifdef IPV4_DEFAULT
85int IPv4or6 = AF_INET;
86#else
48e671d5 87int IPv4or6 = AF_UNSPEC;
59e76f33 88#endif
48e671d5 89
5260325f 90/* Flag indicating whether debug mode is on. This can be set on the command line. */
8efc0c15 91int debug_flag = 0;
92
a8be9f80 93/* Flag indicating whether a tty should be allocated */
8efc0c15 94int tty_flag = 0;
8abcdba4 95int no_tty_flag = 0;
96int force_tty_flag = 0;
8efc0c15 97
8ce64345 98/* don't exec a shell */
99int no_shell_flag = 0;
8ce64345 100
aa3378df 101/*
102 * Flag indicating that nothing should be read from stdin. This can be set
103 * on the command line.
104 */
8efc0c15 105int stdin_null_flag = 0;
106
aa3378df 107/*
108 * Flag indicating that ssh should fork after authentication. This is useful
c242fc96 109 * so that the passphrase can be entered manually, and then ssh goes to the
aa3378df 110 * background.
111 */
8efc0c15 112int fork_after_authentication_flag = 0;
113
aa3378df 114/*
115 * General data structure for command line options and options configurable
116 * in configuration files. See readconf.h.
117 */
8efc0c15 118Options options;
119
e591b98a 120/* optional user configfile */
121char *config = NULL;
122
aa3378df 123/*
124 * Name of the host we are connecting to. This is the name given on the
125 * command line, or the HostName specified for the user-supplied name in a
126 * configuration file.
127 */
8efc0c15 128char *host;
129
130/* socket address the host resolves to */
48e671d5 131struct sockaddr_storage hostaddr;
8efc0c15 132
8002af61 133/* Private host keys. */
39c00dc2 134Sensitive sensitive_data;
8efc0c15 135
136/* Original real UID. */
137uid_t original_real_uid;
3fb156df 138uid_t original_effective_uid;
8efc0c15 139
8ce64345 140/* command to be executed */
141Buffer command;
142
ae810de7 143/* Should we execute a command or invoke a subsystem? */
144int subsystem_flag = 0;
145
e0ae8728 146/* # of replies received for global requests */
147static int client_global_request_id = 0;
148
8efc0c15 149/* Prints a help message to the user. This function never returns. */
150
396c147e 151static void
5ca51e19 152usage(void)
8efc0c15 153{
1fe6a48f 154 fprintf(stderr, "Usage: %s [options] host [command]\n", __progname);
5260325f 155 fprintf(stderr, "Options:\n");
156 fprintf(stderr, " -l user Log in using this user name.\n");
5ca51e19 157 fprintf(stderr, " -n Redirect input from " _PATH_DEVNULL ".\n");
e591b98a 158 fprintf(stderr, " -F config Config file (default: ~/%s).\n",
159 _PATH_SSH_USER_CONFFILE);
71276795 160 fprintf(stderr, " -A Enable authentication agent forwarding.\n");
63cd7dd0 161 fprintf(stderr, " -a Disable authentication agent forwarding (default).\n");
8efc0c15 162#ifdef AFS
5260325f 163 fprintf(stderr, " -k Disable Kerberos ticket and AFS token forwarding.\n");
164#endif /* AFS */
2b87da3b 165 fprintf(stderr, " -X Enable X11 connection forwarding.\n");
63cd7dd0 166 fprintf(stderr, " -x Disable X11 connection forwarding (default).\n");
a01a5f30 167 fprintf(stderr, " -i file Identity for public key authentication "
168 "(default: ~/.ssh/identity)\n");
315dfb04 169#ifdef SMARTCARD
170 fprintf(stderr, " -I reader Set smartcard reader.\n");
dd2495cb 171#endif
5260325f 172 fprintf(stderr, " -t Tty; allocate a tty even if command is given.\n");
8ce64345 173 fprintf(stderr, " -T Do not allocate a tty.\n");
5260325f 174 fprintf(stderr, " -v Verbose; display verbose debugging messages.\n");
bcbf86ec 175 fprintf(stderr, " Multiple -v increases verbosity.\n");
5260325f 176 fprintf(stderr, " -V Display version number only.\n");
177 fprintf(stderr, " -P Don't allocate a privileged port.\n");
178 fprintf(stderr, " -q Quiet; don't display any warning messages.\n");
179 fprintf(stderr, " -f Fork into background after authentication.\n");
180 fprintf(stderr, " -e char Set escape character; ``none'' = disable (default: ~).\n");
181
63cd7dd0 182 fprintf(stderr, " -c cipher Select encryption algorithm\n");
38967add 183 fprintf(stderr, " -m macs Specify MAC algorithms for protocol version 2.\n");
5260325f 184 fprintf(stderr, " -p port Connect to this port. Server must be on the same port.\n");
185 fprintf(stderr, " -L listen-port:host:port Forward local port to remote address\n");
186 fprintf(stderr, " -R listen-port:host:port Forward remote port to local address\n");
1fe6a48f 187 fprintf(stderr, " These cause %s to listen for connections on a port, and\n", __progname);
5260325f 188 fprintf(stderr, " forward them to the other side by connecting to host:port.\n");
4c780c2a 189 fprintf(stderr, " -D port Enable dynamic application-level port forwarding.\n");
5260325f 190 fprintf(stderr, " -C Enable compression.\n");
8ce64345 191 fprintf(stderr, " -N Do not execute a shell or command.\n");
5260325f 192 fprintf(stderr, " -g Allow remote hosts to connect to forwarded ports.\n");
1f3bf5aa 193 fprintf(stderr, " -1 Force protocol version 1.\n");
194 fprintf(stderr, " -2 Force protocol version 2.\n");
48e671d5 195 fprintf(stderr, " -4 Use IPv4 only.\n");
196 fprintf(stderr, " -6 Use IPv6 only.\n");
5260325f 197 fprintf(stderr, " -o 'option' Process the option as if it was read from a configuration file.\n");
ae810de7 198 fprintf(stderr, " -s Invoke command (mandatory) as SSH2 subsystem.\n");
63cd7dd0 199 fprintf(stderr, " -b addr Local IP address.\n");
5260325f 200 exit(1);
8efc0c15 201}
202
396c147e 203static int ssh_session(void);
204static int ssh_session2(void);
205static void load_public_identity_files(void);
8ce64345 206
5260325f 207/*
208 * Main program for the ssh client.
209 */
8efc0c15 210int
211main(int ac, char **av)
212{
ce773142 213 int i, opt, exit_status, cerr;
57112b5a 214 u_short fwd_port, fwd_host_port;
d2e3df16 215 char sfwd_port[6], sfwd_host_port[6];
f5a1a01a 216 char *p, *cp, buf[256];
5260325f 217 struct stat st;
3b1a83df 218 struct passwd *pw;
8ce64345 219 int dummy;
57dade33 220 extern int optind, optreset;
1812a662 221 extern char *optarg;
5260325f 222
260d427b 223 __progname = get_progname(av[0]);
264dce47 224 init_rng();
225
aa3378df 226 /*
227 * Save the original real uid. It will be needed later (uid-swapping
228 * may clobber the real uid).
229 */
5260325f 230 original_real_uid = getuid();
231 original_effective_uid = geteuid();
232
7322ef0e 233#ifdef HAVE_SETRLIMIT
5260325f 234 /* If we are installed setuid root be careful to not drop core. */
235 if (original_real_uid != original_effective_uid) {
236 struct rlimit rlim;
237 rlim.rlim_cur = rlim.rlim_max = 0;
238 if (setrlimit(RLIMIT_CORE, &rlim) < 0)
239 fatal("setrlimit failed: %.100s", strerror(errno));
8efc0c15 240 }
3c62e7eb 241#endif
63bd8c36 242 /* Get user data. */
243 pw = getpwuid(original_real_uid);
244 if (!pw) {
245 log("You don't exist, go away!");
246 exit(1);
247 }
248 /* Take a copy of the returned structure. */
249 pw = pwcopy(pw);
250
aa3378df 251 /*
252 * Use uid-swapping to give up root privileges for the duration of
253 * option processing. We will re-instantiate the rights when we are
254 * ready to create the privileged port, and will permanently drop
255 * them when the port has been created (actually, when the connection
256 * has been made, as we may need to create the port several times).
257 */
3fb156df 258 PRIV_END;
5260325f 259
aa3378df 260 /*
261 * Set our umask to something reasonable, as some files are created
262 * with the default umask. This will make them world-readable but
263 * writable only by the owner, which is ok for all files for which we
264 * don't set the modes explicitly.
265 */
5260325f 266 umask(022);
267
5260325f 268 /* Initialize option structure to indicate that no values have been set. */
269 initialize_options(&options);
270
271 /* Parse command-line arguments. */
272 host = NULL;
273
f5a1a01a 274again:
275 while ((opt = getopt(ac, av,
e591b98a 276 "1246ab:c:e:fgi:kl:m:no:p:qstvxACD:F:I:L:NPR:TVX")) != -1) {
5260325f 277 switch (opt) {
1f3bf5aa 278 case '1':
279 options.protocol = SSH_PROTO_1;
280 break;
6ae2364d 281 case '2':
282 options.protocol = SSH_PROTO_2;
283 break;
48e671d5 284 case '4':
285 IPv4or6 = AF_INET;
286 break;
48e671d5 287 case '6':
288 IPv4or6 = AF_INET6;
289 break;
5260325f 290 case 'n':
291 stdin_null_flag = 1;
292 break;
5260325f 293 case 'f':
294 fork_after_authentication_flag = 1;
295 stdin_null_flag = 1;
296 break;
5260325f 297 case 'x':
298 options.forward_x11 = 0;
299 break;
5260325f 300 case 'X':
301 options.forward_x11 = 1;
302 break;
5260325f 303 case 'g':
304 options.gateway_ports = 1;
305 break;
5260325f 306 case 'P':
307 options.use_privileged_port = 0;
308 break;
5260325f 309 case 'a':
310 options.forward_agent = 0;
311 break;
71276795 312 case 'A':
313 options.forward_agent = 1;
314 break;
5260325f 315#ifdef AFS
316 case 'k':
317 options.kerberos_tgt_passing = 0;
318 options.afs_token_passing = 0;
319 break;
320#endif
321 case 'i':
322 if (stat(optarg, &st) < 0) {
f5a1a01a 323 fprintf(stderr, "Warning: Identity file %s "
324 "does not exist.\n", optarg);
5260325f 325 break;
326 }
f5a1a01a 327 if (options.num_identity_files >=
328 SSH_MAX_IDENTITY_FILES)
329 fatal("Too many identity files specified "
330 "(max %d)", SSH_MAX_IDENTITY_FILES);
331 options.identity_files[options.num_identity_files++] =
332 xstrdup(optarg);
5260325f 333 break;
383546c4 334 case 'I':
335#ifdef SMARTCARD
9ff6f66f 336 options.smartcard_device = xstrdup(optarg);
dd2495cb 337#else
383546c4 338 fprintf(stderr, "no support for smartcards.\n");
dd2495cb 339#endif
383546c4 340 break;
5260325f 341 case 't':
8abcdba4 342 if (tty_flag)
343 force_tty_flag = 1;
5260325f 344 tty_flag = 1;
345 break;
5260325f 346 case 'v':
bcbf86ec 347 if (0 == debug_flag) {
348 debug_flag = 1;
349 options.log_level = SYSLOG_LEVEL_DEBUG1;
350 } else if (options.log_level < SYSLOG_LEVEL_DEBUG3) {
351 options.log_level++;
352 break;
f5a1a01a 353 } else
54b974dc 354 fatal("Too high debugging level.");
bcbf86ec 355 /* fallthrough */
5260325f 356 case 'V':
e68225b2 357 fprintf(stderr,
358 "%s, SSH protocols %d.%d/%d.%d, OpenSSL 0x%8.8lx\n",
a8be9f80 359 SSH_VERSION,
360 PROTOCOL_MAJOR_1, PROTOCOL_MINOR_1,
e68225b2 361 PROTOCOL_MAJOR_2, PROTOCOL_MINOR_2,
362 SSLeay());
5260325f 363 if (opt == 'V')
364 exit(0);
5260325f 365 break;
5260325f 366 case 'q':
367 options.log_level = SYSLOG_LEVEL_QUIET;
368 break;
5260325f 369 case 'e':
370 if (optarg[0] == '^' && optarg[2] == 0 &&
f5a1a01a 371 (u_char) optarg[1] >= 64 &&
372 (u_char) optarg[1] < 128)
1e3b8b07 373 options.escape_char = (u_char) optarg[1] & 31;
5260325f 374 else if (strlen(optarg) == 1)
1e3b8b07 375 options.escape_char = (u_char) optarg[0];
5260325f 376 else if (strcmp(optarg, "none") == 0)
4bf9c10e 377 options.escape_char = SSH_ESCAPECHAR_NONE;
5260325f 378 else {
f5a1a01a 379 fprintf(stderr, "Bad escape character '%s'.\n",
380 optarg);
5260325f 381 exit(1);
382 }
383 break;
5260325f 384 case 'c':
a306f2dd 385 if (ciphers_valid(optarg)) {
386 /* SSH2 only */
387 options.ciphers = xstrdup(optarg);
d0c832f3 388 options.cipher = SSH_CIPHER_ILLEGAL;
a306f2dd 389 } else {
390 /* SSH1 only */
c523303b 391 options.cipher = cipher_number(optarg);
392 if (options.cipher == -1) {
f5a1a01a 393 fprintf(stderr,
394 "Unknown cipher type '%s'\n",
395 optarg);
a306f2dd 396 exit(1);
397 }
f5a1a01a 398 if (options.cipher == SSH_CIPHER_3DES)
c523303b 399 options.ciphers = "3des-cbc";
f5a1a01a 400 else if (options.cipher == SSH_CIPHER_BLOWFISH)
c523303b 401 options.ciphers = "blowfish-cbc";
f5a1a01a 402 else
c523303b 403 options.ciphers = (char *)-1;
5260325f 404 }
405 break;
b2552997 406 case 'm':
407 if (mac_valid(optarg))
408 options.macs = xstrdup(optarg);
409 else {
f5a1a01a 410 fprintf(stderr, "Unknown mac type '%s'\n",
411 optarg);
b2552997 412 exit(1);
413 }
414 break;
5260325f 415 case 'p':
2d2a2c65 416 options.port = a2port(optarg);
417 if (options.port == 0) {
6031af8d 418 fprintf(stderr, "Bad port '%s'\n", optarg);
419 exit(1);
420 }
5260325f 421 break;
5260325f 422 case 'l':
423 options.user = optarg;
424 break;
d2e3df16 425
426 case 'L':
5260325f 427 case 'R':
d2e3df16 428 if (sscanf(optarg, "%5[0-9]:%255[^:]:%5[0-9]",
429 sfwd_port, buf, sfwd_host_port) != 3 &&
430 sscanf(optarg, "%5[0-9]/%255[^/]/%5[0-9]",
431 sfwd_port, buf, sfwd_host_port) != 3) {
f5a1a01a 432 fprintf(stderr,
d2e3df16 433 "Bad forwarding specification '%s'\n",
f5a1a01a 434 optarg);
5260325f 435 usage();
436 /* NOTREACHED */
437 }
d2e3df16 438 if ((fwd_port = a2port(sfwd_port)) == 0 ||
762715ce 439 (fwd_host_port = a2port(sfwd_host_port)) == 0) {
f5a1a01a 440 fprintf(stderr,
d2e3df16 441 "Bad forwarding port(s) '%s'\n", optarg);
442 exit(1);
5260325f 443 }
d2e3df16 444 if (opt == 'L')
445 add_local_forward(&options, fwd_port, buf,
446 fwd_host_port);
447 else if (opt == 'R')
448 add_remote_forward(&options, fwd_port, buf,
184eed6a 449 fwd_host_port);
5260325f 450 break;
0490e609 451
452 case 'D':
2d2a2c65 453 fwd_port = a2port(optarg);
454 if (fwd_port == 0) {
f5a1a01a 455 fprintf(stderr, "Bad dynamic port '%s'\n",
456 optarg);
6031af8d 457 exit(1);
458 }
0490e609 459 add_local_forward(&options, fwd_port, "socks4", 0);
460 break;
461
5260325f 462 case 'C':
463 options.compression = 1;
464 break;
8ce64345 465 case 'N':
466 no_shell_flag = 1;
467 no_tty_flag = 1;
468 break;
8ce64345 469 case 'T':
470 no_tty_flag = 1;
471 break;
5260325f 472 case 'o':
473 dummy = 1;
f5a1a01a 474 if (process_config_line(&options, host ? host : "",
475 optarg, "command-line", 0, &dummy) != 0)
5260325f 476 exit(1);
477 break;
ae810de7 478 case 's':
479 subsystem_flag = 1;
480 break;
3435f5a6 481 case 'b':
482 options.bind_address = optarg;
483 break;
e591b98a 484 case 'F':
485 config = optarg;
486 break;
5260325f 487 default:
488 usage();
489 }
490 }
491
f5a1a01a 492 ac -= optind;
493 av += optind;
494
495 if (ac > 0 && !host && **av != '-') {
496 if (strchr(*av, '@')) {
497 p = xstrdup(*av);
498 cp = strchr(p, '@');
499 if (cp == NULL || cp == p)
500 usage();
501 options.user = p;
502 *cp = '\0';
503 host = ++cp;
504 } else
505 host = *av;
506 ac--, av++;
507 if (ac > 0) {
508 optind = 0;
509 optreset = 1;
510 goto again;
511 }
512 }
513
5260325f 514 /* Check that we got a host name. */
515 if (!host)
8efc0c15 516 usage();
5260325f 517
22d89d24 518 SSLeay_add_all_algorithms();
fa08c86b 519 ERR_load_crypto_strings();
5e4a7219 520 channel_set_af(IPv4or6);
22d89d24 521
5260325f 522 /* Initialize the command to execute on remote host. */
523 buffer_init(&command);
524
aa3378df 525 /*
526 * Save the command to execute on the remote host in a buffer. There
527 * is no limit on the length of the command, except by the maximum
528 * packet size. Also sets the tty flag if there is no command.
529 */
f5a1a01a 530 if (!ac) {
5260325f 531 /* No command specified - execute shell on a tty. */
532 tty_flag = 1;
ae810de7 533 if (subsystem_flag) {
f5a1a01a 534 fprintf(stderr,
535 "You must specify a subsystem to invoke.\n");
ae810de7 536 usage();
537 }
5260325f 538 } else {
f5a1a01a 539 /* A command has been specified. Store it into the buffer. */
540 for (i = 0; i < ac; i++) {
541 if (i)
5260325f 542 buffer_append(&command, " ", 1);
543 buffer_append(&command, av[i], strlen(av[i]));
544 }
8efc0c15 545 }
5260325f 546
547 /* Cannot fork to background if no command. */
14a9a859 548 if (fork_after_authentication_flag && buffer_len(&command) == 0 && !no_shell_flag)
5260325f 549 fatal("Cannot fork into background without a command to execute.");
550
551 /* Allocate a tty by default if no command specified. */
552 if (buffer_len(&command) == 0)
553 tty_flag = 1;
554
0b6fbf03 555 /* Force no tty*/
556 if (no_tty_flag)
557 tty_flag = 0;
5260325f 558 /* Do not allocate a tty if stdin is not a tty. */
8abcdba4 559 if (!isatty(fileno(stdin)) && !force_tty_flag) {
5260325f 560 if (tty_flag)
54b974dc 561 log("Pseudo-terminal will not be allocated because stdin is not a terminal.");
5260325f 562 tty_flag = 0;
563 }
8ce64345 564
20244695 565 /*
566 * Initialize "log" output. Since we are the client all output
567 * actually goes to stderr.
568 */
cc44f691 569 log_init(av[0], options.log_level == -1 ? SYSLOG_LEVEL_INFO : options.log_level,
570 SYSLOG_FACILITY_USER, 1);
5260325f 571
e591b98a 572 /*
573 * Read per-user configuration file. Ignore the system wide config
574 * file if the user specifies a config file on the command line.
575 */
576 if (config != NULL) {
93111dfa 577 if (!read_config_file(config, host, &options))
578 fatal("Can't open user config file %.100s: "
579 "%.100s", config, strerror(errno));
e591b98a 580 } else {
581 snprintf(buf, sizeof buf, "%.100s/%.100s", pw->pw_dir,
582 _PATH_SSH_USER_CONFFILE);
f67792f2 583 (void)read_config_file(buf, host, &options);
e591b98a 584
f67792f2 585 /* Read systemwide configuration file after use config. */
93111dfa 586 (void)read_config_file(_PATH_HOST_CONFIG_FILE, host, &options);
e591b98a 587 }
5260325f 588
589 /* Fill configuration defaults. */
590 fill_default_options(&options);
591
592 /* reinit */
20244695 593 log_init(av[0], options.log_level, SYSLOG_FACILITY_USER, 1);
5260325f 594
e339aa53 595 seed_rng();
596
5260325f 597 if (options.user == NULL)
598 options.user = xstrdup(pw->pw_name);
599
600 if (options.hostname != NULL)
601 host = options.hostname;
602
5260325f 603 /* Disable rhosts authentication if not running as root. */
3c62e7eb 604#ifdef HAVE_CYGWIN
605 /* Ignore uid if running under Windows */
606 if (!options.use_privileged_port) {
607#else
5260325f 608 if (original_effective_uid != 0 || !options.use_privileged_port) {
3c62e7eb 609#endif
6ffc9c88 610 debug("Rhosts Authentication disabled, "
611 "originating port will not be trusted.");
5260325f 612 options.rhosts_authentication = 0;
5260325f 613 }
6ffc9c88 614 /* Open a connection to the remote host. */
5260325f 615
dab89049 616 cerr = ssh_connect(host, &hostaddr, options.port, IPv4or6,
6ffc9c88 617 options.connection_attempts,
3fb156df 618 original_effective_uid == 0 && options.use_privileged_port,
619 options.proxy_command);
5260325f 620
aa3378df 621 /*
622 * If we successfully made the connection, load the host private key
623 * in case we will need it later for combined rsa-rhosts
624 * authentication. This must be done before releasing extra
625 * privileges, because the file is only readable by root.
78660ed4 626 * If we cannot access the private keys, load the public keys
627 * instead and try to execute the ssh-keysign helper instead.
aa3378df 628 */
8002af61 629 sensitive_data.nkeys = 0;
630 sensitive_data.keys = NULL;
39c00dc2 631 sensitive_data.external_keysign = 0;
ce773142 632 if (!cerr && (options.rhosts_rsa_authentication ||
8002af61 633 options.hostbased_authentication)) {
634 sensitive_data.nkeys = 3;
635 sensitive_data.keys = xmalloc(sensitive_data.nkeys*sizeof(Key));
3fb156df 636
637 PRIV_START;
8002af61 638 sensitive_data.keys[0] = key_load_private_type(KEY_RSA1,
aeaa3d9e 639 _PATH_HOST_KEY_FILE, "", NULL);
8002af61 640 sensitive_data.keys[1] = key_load_private_type(KEY_DSA,
641 _PATH_HOST_DSA_KEY_FILE, "", NULL);
642 sensitive_data.keys[2] = key_load_private_type(KEY_RSA,
643 _PATH_HOST_RSA_KEY_FILE, "", NULL);
3fb156df 644 PRIV_END;
39c00dc2 645
646 if (sensitive_data.keys[0] == NULL &&
647 sensitive_data.keys[1] == NULL &&
648 sensitive_data.keys[2] == NULL) {
649 sensitive_data.keys[1] = key_load_public(
650 _PATH_HOST_DSA_KEY_FILE, NULL);
651 sensitive_data.keys[2] = key_load_public(
652 _PATH_HOST_RSA_KEY_FILE, NULL);
653 sensitive_data.external_keysign = 1;
654 }
5260325f 655 }
aa3378df 656 /*
657 * Get rid of any extra privileges that we may have. We will no
658 * longer need them. Also, extra privileges could make it very hard
659 * to read identity files and other non-world-readable files from the
660 * user's home directory if it happens to be on a NFS volume where
661 * root is mapped to nobody.
662 */
3fb156df 663 seteuid(original_real_uid);
664 setuid(original_real_uid);
5260325f 665
aa3378df 666 /*
667 * Now that we are back to our own permissions, create ~/.ssh
668 * directory if it doesn\'t already exist.
669 */
c3abff07 670 snprintf(buf, sizeof buf, "%.100s%s%.100s", pw->pw_dir, strcmp(pw->pw_dir, "/") ? "/" : "", _PATH_SSH_USER_DIR);
5260325f 671 if (stat(buf, &st) < 0)
704b1659 672 if (mkdir(buf, 0700) < 0)
5260325f 673 error("Could not create directory '%.200s'.", buf);
674
80fcb74e 675 if (cerr)
676 exit(1);
677
fee56204 678 /* load options.identity_files */
679 load_public_identity_files();
680
681 /* Expand ~ in known host file names. */
682 /* XXX mem-leaks: */
fa08c86b 683 options.system_hostfile =
684 tilde_expand_filename(options.system_hostfile, original_real_uid);
685 options.user_hostfile =
686 tilde_expand_filename(options.user_hostfile, original_real_uid);
687 options.system_hostfile2 =
688 tilde_expand_filename(options.system_hostfile2, original_real_uid);
689 options.user_hostfile2 =
690 tilde_expand_filename(options.user_hostfile2, original_real_uid);
5260325f 691
67b75437 692 signal(SIGPIPE, SIG_IGN); /* ignore SIGPIPE early */
693
5260325f 694 /* Log into the remote system. This never returns if the login fails. */
39c00dc2 695 ssh_login(&sensitive_data, host, (struct sockaddr *)&hostaddr, pw);
8002af61 696
697 /* We no longer need the private host keys. Clear them now. */
698 if (sensitive_data.nkeys != 0) {
699 for (i = 0; i < sensitive_data.nkeys; i++) {
700 if (sensitive_data.keys[i] != NULL) {
701 /* Destroys contents safely */
702 debug3("clear hostkey %d", i);
703 key_free(sensitive_data.keys[i]);
704 sensitive_data.keys[i] = NULL;
705 }
706 }
707 xfree(sensitive_data.keys);
708 }
05b7537a 709 for (i = 0; i < options.num_identity_files; i++) {
710 if (options.identity_files[i]) {
711 xfree(options.identity_files[i]);
712 options.identity_files[i] = NULL;
713 }
714 if (options.identity_keys[i]) {
715 key_free(options.identity_keys[i]);
716 options.identity_keys[i] = NULL;
717 }
718 }
5260325f 719
8ce64345 720 exit_status = compat20 ? ssh_session2() : ssh_session();
721 packet_close();
722 return exit_status;
723}
724
396c147e 725static void
b48eeb07 726x11_get_proto(char **_proto, char **_data)
0b242b12 727{
728 char line[512];
b48eeb07 729 static char proto[512], data[512];
0b242b12 730 FILE *f;
731 int got_data = 0, i;
75a624f0 732 char *display;
0b242b12 733
b48eeb07 734 *_proto = proto;
735 *_data = data;
736 proto[0] = data[0] = '\0';
75a624f0 737 if (options.xauth_location && (display = getenv("DISPLAY"))) {
fa649821 738 /* Try to get Xauthority information for the display. */
75a624f0 739 if (strncmp(display, "localhost:", 10) == 0)
740 /*
741 * Handle FamilyLocal case where $DISPLAY does
742 * not match an authorization entry. For this we
743 * just try "xauth list unix:displaynum.screennum".
744 * XXX: "localhost" match to determine FamilyLocal
745 * is not perfect.
746 */
375e20e7 747 snprintf(line, sizeof line, "%s list unix:%s 2>"
75a624f0 748 _PATH_DEVNULL, options.xauth_location, display+10);
749 else
375e20e7 750 snprintf(line, sizeof line, "%s list %.200s 2>"
75a624f0 751 _PATH_DEVNULL, options.xauth_location, display);
752 debug2("x11_get_proto %s", line);
fa649821 753 f = popen(line, "r");
754 if (f && fgets(line, sizeof(line), f) &&
b48eeb07 755 sscanf(line, "%*s %511s %511s", proto, data) == 2)
fa649821 756 got_data = 1;
757 if (f)
758 pclose(f);
759 }
0b242b12 760 /*
761 * If we didn't get authentication data, just make up some
762 * data. The forwarding code will check the validity of the
763 * response anyway, and substitute this data. The X11
764 * server, however, will ignore this fake data and use
765 * whatever authentication mechanisms it was using otherwise
766 * for the local connection.
767 */
768 if (!got_data) {
769 u_int32_t rand = 0;
770
b48eeb07 771 strlcpy(proto, "MIT-MAGIC-COOKIE-1", sizeof proto);
0b242b12 772 for (i = 0; i < 16; i++) {
773 if (i % 4 == 0)
774 rand = arc4random();
b48eeb07 775 snprintf(data + 2 * i, sizeof data - 2 * i, "%02x", rand & 0xff);
0b242b12 776 rand >>= 8;
777 }
778 }
779}
780
396c147e 781static void
fa08c86b 782ssh_init_forwarding(void)
783{
02a024dd 784 int success = 0;
fa08c86b 785 int i;
02a024dd 786
fa08c86b 787 /* Initiate local TCP/IP port forwardings. */
788 for (i = 0; i < options.num_local_forwards; i++) {
789 debug("Connections to local port %d forwarded to remote address %.200s:%d",
790 options.local_forwards[i].port,
791 options.local_forwards[i].host,
792 options.local_forwards[i].host_port);
5641aefa 793 success += channel_setup_local_fwd_listener(
fa08c86b 794 options.local_forwards[i].port,
795 options.local_forwards[i].host,
796 options.local_forwards[i].host_port,
797 options.gateway_ports);
798 }
02a024dd 799 if (i > 0 && success == 0)
800 error("Could not request local forwarding.");
fa08c86b 801
802 /* Initiate remote TCP/IP port forwardings. */
803 for (i = 0; i < options.num_remote_forwards; i++) {
804 debug("Connections to remote port %d forwarded to local address %.200s:%d",
805 options.remote_forwards[i].port,
806 options.remote_forwards[i].host,
807 options.remote_forwards[i].host_port);
808 channel_request_remote_forwarding(
809 options.remote_forwards[i].port,
810 options.remote_forwards[i].host,
811 options.remote_forwards[i].host_port);
812 }
813}
814
396c147e 815static void
fa08c86b 816check_agent_present(void)
817{
818 if (options.forward_agent) {
819 /* Clear agent forwarding if we don\'t have an agent. */
820 int authfd = ssh_get_authentication_socket();
821 if (authfd < 0)
822 options.forward_agent = 0;
823 else
824 ssh_close_authentication_socket(authfd);
825 }
826}
827
396c147e 828static int
8ce64345 829ssh_session(void)
830{
831 int type;
8ce64345 832 int interactive = 0;
833 int have_tty = 0;
834 struct winsize ws;
8ce64345 835 char *cp;
836
5260325f 837 /* Enable compression if requested. */
838 if (options.compression) {
839 debug("Requesting compression at level %d.", options.compression_level);
840
841 if (options.compression_level < 1 || options.compression_level > 9)
842 fatal("Compression level must be from 1 (fast) to 9 (slow, best).");
843
844 /* Send the request. */
845 packet_start(SSH_CMSG_REQUEST_COMPRESSION);
846 packet_put_int(options.compression_level);
847 packet_send();
848 packet_write_wait();
54a5250f 849 type = packet_read();
5260325f 850 if (type == SSH_SMSG_SUCCESS)
851 packet_start_compression(options.compression_level);
852 else if (type == SSH_SMSG_FAILURE)
853 log("Warning: Remote host refused compression.");
854 else
855 packet_disconnect("Protocol error waiting for compression response.");
856 }
857 /* Allocate a pseudo tty if appropriate. */
858 if (tty_flag) {
859 debug("Requesting pty.");
860
861 /* Start the packet. */
862 packet_start(SSH_CMSG_REQUEST_PTY);
863
864 /* Store TERM in the packet. There is no limit on the
865 length of the string. */
866 cp = getenv("TERM");
867 if (!cp)
868 cp = "";
449c5ba5 869 packet_put_cstring(cp);
5260325f 870
871 /* Store window size in the packet. */
872 if (ioctl(fileno(stdin), TIOCGWINSZ, &ws) < 0)
873 memset(&ws, 0, sizeof(ws));
874 packet_put_int(ws.ws_row);
875 packet_put_int(ws.ws_col);
876 packet_put_int(ws.ws_xpixel);
877 packet_put_int(ws.ws_ypixel);
878
879 /* Store tty modes in the packet. */
30dcc918 880 tty_make_modes(fileno(stdin), NULL);
5260325f 881
882 /* Send the packet, and wait for it to leave. */
883 packet_send();
884 packet_write_wait();
885
886 /* Read response from the server. */
54a5250f 887 type = packet_read();
4fe2af09 888 if (type == SSH_SMSG_SUCCESS) {
5260325f 889 interactive = 1;
8ce64345 890 have_tty = 1;
4fe2af09 891 } else if (type == SSH_SMSG_FAILURE)
5260325f 892 log("Warning: Remote host failed or refused to allocate a pseudo tty.");
893 else
894 packet_disconnect("Protocol error waiting for pty request response.");
895 }
896 /* Request X11 forwarding if enabled and DISPLAY is set. */
897 if (options.forward_x11 && getenv("DISPLAY") != NULL) {
b48eeb07 898 char *proto, *data;
0b242b12 899 /* Get reasonable local authentication information. */
b48eeb07 900 x11_get_proto(&proto, &data);
0b242b12 901 /* Request forwarding with authentication spoofing. */
5260325f 902 debug("Requesting X11 forwarding with authentication spoofing.");
0b242b12 903 x11_request_forwarding_with_spoofing(0, proto, data);
5260325f 904
905 /* Read response from the server. */
54a5250f 906 type = packet_read();
5260325f 907 if (type == SSH_SMSG_SUCCESS) {
5260325f 908 interactive = 1;
0b242b12 909 } else if (type == SSH_SMSG_FAILURE) {
5260325f 910 log("Warning: Remote host denied X11 forwarding.");
0b242b12 911 } else {
5260325f 912 packet_disconnect("Protocol error waiting for X11 forwarding");
0b242b12 913 }
5260325f 914 }
915 /* Tell the packet module whether this is an interactive session. */
b5c334cc 916 packet_set_interactive(interactive);
5260325f 917
918 /* Request authentication agent forwarding if appropriate. */
fa08c86b 919 check_agent_present();
920
5260325f 921 if (options.forward_agent) {
922 debug("Requesting authentication agent forwarding.");
923 auth_request_forwarding();
924
925 /* Read response from the server. */
54a5250f 926 type = packet_read();
95500969 927 packet_check_eom();
5260325f 928 if (type != SSH_SMSG_SUCCESS)
929 log("Warning: Remote host denied authentication agent forwarding.");
930 }
8efc0c15 931
fa08c86b 932 /* Initiate port forwardings. */
933 ssh_init_forwarding();
5260325f 934
aa3378df 935 /* If requested, let ssh continue in the background. */
6ae2364d 936 if (fork_after_authentication_flag)
aa3378df 937 if (daemon(1, 1) < 0)
938 fatal("daemon() failed: %.200s", strerror(errno));
939
940 /*
941 * If a command was specified on the command line, execute the
942 * command now. Otherwise request the server to start a shell.
943 */
5260325f 944 if (buffer_len(&command) > 0) {
945 int len = buffer_len(&command);
946 if (len > 900)
947 len = 900;
6c0fa2b1 948 debug("Sending command: %.*s", len, (u_char *)buffer_ptr(&command));
5260325f 949 packet_start(SSH_CMSG_EXEC_CMD);
950 packet_put_string(buffer_ptr(&command), buffer_len(&command));
951 packet_send();
952 packet_write_wait();
953 } else {
954 debug("Requesting shell.");
955 packet_start(SSH_CMSG_EXEC_SHELL);
956 packet_send();
957 packet_write_wait();
958 }
959
960 /* Enter the interactive session. */
4bf9c10e 961 return client_loop(have_tty, tty_flag ?
962 options.escape_char : SSH_ESCAPECHAR_NONE, 0);
8ce64345 963}
5260325f 964
396c147e 965static void
7819b5c3 966client_subsystem_reply(int type, u_int32_t seq, void *ctxt)
1f3bf5aa 967{
968 int id, len;
969
970 id = packet_get_int();
971 len = buffer_len(&command);
ce91d6f8 972 if (len > 900)
973 len = 900;
95500969 974 packet_check_eom();
1f3bf5aa 975 if (type == SSH2_MSG_CHANNEL_FAILURE)
976 fatal("Request for subsystem '%.*s' failed on channel %d",
6c0fa2b1 977 len, (u_char *)buffer_ptr(&command), id);
1f3bf5aa 978}
979
e0ae8728 980void
981client_global_request_reply(int type, u_int32_t seq, void *ctxt)
982{
983 int i;
984
985 i = client_global_request_id++;
986 if (i >= options.num_remote_forwards) {
987 debug("client_global_request_reply: too many replies %d > %d",
988 i, options.num_remote_forwards);
989 return;
990 }
991 debug("remote forward %s for: listen %d, connect %s:%d",
992 type == SSH2_MSG_REQUEST_SUCCESS ? "success" : "failure",
993 options.remote_forwards[i].port,
994 options.remote_forwards[i].host,
995 options.remote_forwards[i].host_port);
996 if (type == SSH2_MSG_REQUEST_FAILURE)
997 log("Warning: remote port forwarding failed for listen port %d",
998 options.remote_forwards[i].port);
999}
1000
bcdb96c2 1001/* request pty/x11/agent/tcpfwd/shell for channel */
396c147e 1002static void
bcdb96c2 1003ssh_session2_setup(int id, void *arg)
8ce64345 1004{
1005 int len;
b5c334cc 1006 int interactive = 0;
30dcc918 1007 struct termios tio;
b5c334cc 1008
bcdb96c2 1009 debug("ssh_session2_setup: id %d", id);
8ce64345 1010
8ce64345 1011 if (tty_flag) {
1012 struct winsize ws;
1013 char *cp;
1014 cp = getenv("TERM");
1015 if (!cp)
1016 cp = "";
1017 /* Store window size in the packet. */
1018 if (ioctl(fileno(stdin), TIOCGWINSZ, &ws) < 0)
1019 memset(&ws, 0, sizeof(ws));
1020
1021 channel_request_start(id, "pty-req", 0);
1022 packet_put_cstring(cp);
1023 packet_put_int(ws.ws_col);
1024 packet_put_int(ws.ws_row);
1025 packet_put_int(ws.ws_xpixel);
1026 packet_put_int(ws.ws_ypixel);
30dcc918 1027 tio = get_saved_tio();
1028 tty_make_modes(/*ignored*/ 0, &tio);
8ce64345 1029 packet_send();
b5c334cc 1030 interactive = 1;
8ce64345 1031 /* XXX wait for reply */
1032 }
0b242b12 1033 if (options.forward_x11 &&
1034 getenv("DISPLAY") != NULL) {
b48eeb07 1035 char *proto, *data;
0b242b12 1036 /* Get reasonable local authentication information. */
b48eeb07 1037 x11_get_proto(&proto, &data);
0b242b12 1038 /* Request forwarding with authentication spoofing. */
1039 debug("Requesting X11 forwarding with authentication spoofing.");
1040 x11_request_forwarding_with_spoofing(id, proto, data);
b5c334cc 1041 interactive = 1;
0b242b12 1042 /* XXX wait for reply */
1043 }
1044
fa08c86b 1045 check_agent_present();
1046 if (options.forward_agent) {
1047 debug("Requesting authentication agent forwarding.");
1048 channel_request_start(id, "auth-agent-req@openssh.com", 0);
1049 packet_send();
1050 }
1051
8ce64345 1052 len = buffer_len(&command);
1053 if (len > 0) {
1054 if (len > 900)
1055 len = 900;
ae810de7 1056 if (subsystem_flag) {
6c0fa2b1 1057 debug("Sending subsystem: %.*s", len, (u_char *)buffer_ptr(&command));
1f3bf5aa 1058 channel_request_start(id, "subsystem", /*want reply*/ 1);
1059 /* register callback for reply */
c242fc96 1060 /* XXX we assume that client_loop has already been called */
1f3bf5aa 1061 dispatch_set(SSH2_MSG_CHANNEL_FAILURE, &client_subsystem_reply);
1062 dispatch_set(SSH2_MSG_CHANNEL_SUCCESS, &client_subsystem_reply);
ae810de7 1063 } else {
6c0fa2b1 1064 debug("Sending command: %.*s", len, (u_char *)buffer_ptr(&command));
ae810de7 1065 channel_request_start(id, "exec", 0);
1066 }
ce91d6f8 1067 packet_put_string(buffer_ptr(&command), buffer_len(&command));
8ce64345 1068 packet_send();
1069 } else {
06ee33fb 1070 channel_request_start(id, "shell", 0);
1071 packet_send();
8ce64345 1072 }
1f3bf5aa 1073
b5c334cc 1074 packet_set_interactive(interactive);
8ce64345 1075}
1076
bcdb96c2 1077/* open new channel for a session */
396c147e 1078static int
bcdb96c2 1079ssh_session2_open(void)
8ce64345 1080{
719fc62f 1081 Channel *c;
1082 int window, packetmax, in, out, err;
2e73a022 1083
14a9a859 1084 if (stdin_null_flag) {
5ca51e19 1085 in = open(_PATH_DEVNULL, O_RDONLY);
14a9a859 1086 } else {
1087 in = dup(STDIN_FILENO);
1088 }
2e73a022 1089 out = dup(STDOUT_FILENO);
1090 err = dup(STDERR_FILENO);
8ce64345 1091
1092 if (in < 0 || out < 0 || err < 0)
14a9a859 1093 fatal("dup() in/out/err failed");
8ce64345 1094
a22aff1f 1095 /* enable nonblocking unless tty */
1096 if (!isatty(in))
1097 set_nonblock(in);
1098 if (!isatty(out))
1099 set_nonblock(out);
1100 if (!isatty(err))
1101 set_nonblock(err);
1102
bcbf86ec 1103 window = CHAN_SES_WINDOW_DEFAULT;
1104 packetmax = CHAN_SES_PACKET_DEFAULT;
ea9700ba 1105 if (tty_flag) {
1106 window >>= 1;
1107 packetmax >>= 1;
8ce64345 1108 }
719fc62f 1109 c = channel_new(
8ce64345 1110 "session", SSH_CHANNEL_OPENING, in, out, err,
bcbf86ec 1111 window, packetmax, CHAN_EXTENDED_WRITE,
a22aff1f 1112 xstrdup("client-session"), /*nonblock*/0);
8ce64345 1113
bcdb96c2 1114 debug3("ssh_session2_open: channel_new: %d", c->self);
eb0dd41f 1115
36e1f6a1 1116 channel_send_open(c->self);
bcdb96c2 1117 if (!no_shell_flag)
05ca0898 1118 channel_register_confirm(c->self, ssh_session2_setup);
5260325f 1119
719fc62f 1120 return c->self;
eb0dd41f 1121}
1122
396c147e 1123static int
eb0dd41f 1124ssh_session2(void)
1125{
bcdb96c2 1126 int id = -1;
eb0dd41f 1127
1128 /* XXX should be pre-session */
1129 ssh_init_forwarding();
1130
bcdb96c2 1131 if (!no_shell_flag || (datafellows & SSH_BUG_DUMMYCHAN))
1132 id = ssh_session2_open();
eb0dd41f 1133
1134 /* If requested, let ssh continue in the background. */
1135 if (fork_after_authentication_flag)
1136 if (daemon(1, 1) < 0)
1137 fatal("daemon() failed: %.200s", strerror(errno));
1138
4bf9c10e 1139 return client_loop(tty_flag, tty_flag ?
1140 options.escape_char : SSH_ESCAPECHAR_NONE, id);
8efc0c15 1141}
fa08c86b 1142
396c147e 1143static void
fee56204 1144load_public_identity_files(void)
1145{
1146 char *filename;
2e23cde0 1147 int i = 0;
0659cace 1148 Key *public;
383546c4 1149#ifdef SMARTCARD
0659cace 1150 Key **keys;
1151
9ff6f66f 1152 if (options.smartcard_device != NULL &&
0659cace 1153 options.num_identity_files < SSH_MAX_IDENTITY_FILES &&
1154 (keys = sc_get_keys(options.smartcard_device, NULL)) != NULL ) {
1155 int count = 0;
1156 for (i = 0; keys[i] != NULL; i++) {
1157 count++;
0659cace 1158 memmove(&options.identity_files[1], &options.identity_files[0],
1159 sizeof(char *) * (SSH_MAX_IDENTITY_FILES - 1));
1160 memmove(&options.identity_keys[1], &options.identity_keys[0],
1161 sizeof(Key *) * (SSH_MAX_IDENTITY_FILES - 1));
1162 options.num_identity_files++;
1163 options.identity_keys[0] = keys[i];
1164 options.identity_files[0] = xstrdup("smartcard key");;
1165 }
1c2deed1 1166 if (options.num_identity_files > SSH_MAX_IDENTITY_FILES)
1167 options.num_identity_files = SSH_MAX_IDENTITY_FILES;
0659cace 1168 i = count;
1169 xfree(keys);
383546c4 1170 }
3e984472 1171#endif /* SMARTCARD */
2e23cde0 1172 for (; i < options.num_identity_files; i++) {
1173 filename = tilde_expand_filename(options.identity_files[i],
1174 original_real_uid);
1175 public = key_load_public(filename, NULL);
1176 debug("identity file %s type %d", filename,
1177 public ? public->type : -1);
1178 xfree(options.identity_files[i]);
1179 options.identity_files[i] = filename;
1180 options.identity_keys[i] = public;
1181 }
fee56204 1182}
This page took 0.364074 seconds and 5 git commands to generate.