- (dtucker) [openbsd-compat/port-linux.c] Check is_selinux_enabled for exact
[openssh-git.git] / ssh.c
blob1cdfc58e3bac16f67a6ceb64e775787f1abd09a4
1 /* $OpenBSD: ssh.c,v 1.349 2010/08/31 11:54:45 djm Exp $ */
2 /*
3 * Author: Tatu Ylonen <ylo@cs.hut.fi>
4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
5 * All rights reserved
6 * Ssh client program. This program can be used to log into a remote machine.
7 * The software supports strong authentication, encryption, and forwarding
8 * of X11, TCP/IP, and authentication connections.
10 * As far as I am concerned, the code I have written for this software
11 * can be used freely for any purpose. Any derived versions of this
12 * software must be clearly marked as such, and if the derived work is
13 * incompatible with the protocol description in the RFC file, it must be
14 * called by a name other than "ssh" or "Secure Shell".
16 * Copyright (c) 1999 Niels Provos. All rights reserved.
17 * Copyright (c) 2000, 2001, 2002, 2003 Markus Friedl. All rights reserved.
19 * Modified to work with SSL by Niels Provos <provos@citi.umich.edu>
20 * in Canada (German citizen).
22 * Redistribution and use in source and binary forms, with or without
23 * modification, are permitted provided that the following conditions
24 * are met:
25 * 1. Redistributions of source code must retain the above copyright
26 * notice, this list of conditions and the following disclaimer.
27 * 2. Redistributions in binary form must reproduce the above copyright
28 * notice, this list of conditions and the following disclaimer in the
29 * documentation and/or other materials provided with the distribution.
31 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
32 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
33 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
34 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
35 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
36 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
37 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
38 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
39 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
40 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
43 #include "includes.h"
45 #include <sys/types.h>
46 #ifdef HAVE_SYS_STAT_H
47 # include <sys/stat.h>
48 #endif
49 #include <sys/resource.h>
50 #include <sys/ioctl.h>
51 #include <sys/param.h>
52 #include <sys/socket.h>
54 #include <ctype.h>
55 #include <errno.h>
56 #include <fcntl.h>
57 #include <netdb.h>
58 #ifdef HAVE_PATHS_H
59 #include <paths.h>
60 #endif
61 #include <pwd.h>
62 #include <signal.h>
63 #include <stdarg.h>
64 #include <stddef.h>
65 #include <stdio.h>
66 #include <stdlib.h>
67 #include <string.h>
68 #include <unistd.h>
70 #include <netinet/in.h>
71 #include <arpa/inet.h>
73 #include <openssl/evp.h>
74 #include <openssl/err.h>
75 #include "openbsd-compat/openssl-compat.h"
76 #include "openbsd-compat/sys-queue.h"
78 #include "xmalloc.h"
79 #include "ssh.h"
80 #include "ssh1.h"
81 #include "ssh2.h"
82 #include "canohost.h"
83 #include "compat.h"
84 #include "cipher.h"
85 #include "packet.h"
86 #include "buffer.h"
87 #include "channels.h"
88 #include "key.h"
89 #include "authfd.h"
90 #include "authfile.h"
91 #include "pathnames.h"
92 #include "dispatch.h"
93 #include "clientloop.h"
94 #include "log.h"
95 #include "readconf.h"
96 #include "sshconnect.h"
97 #include "misc.h"
98 #include "kex.h"
99 #include "mac.h"
100 #include "sshpty.h"
101 #include "match.h"
102 #include "msg.h"
103 #include "uidswap.h"
104 #include "roaming.h"
105 #include "version.h"
107 #ifdef ENABLE_PKCS11
108 #include "ssh-pkcs11.h"
109 #endif
111 extern char *__progname;
113 /* Flag indicating whether debug mode is on. May be set on the command line. */
114 int debug_flag = 0;
116 /* Flag indicating whether a tty should be allocated */
117 int tty_flag = 0;
118 int no_tty_flag = 0;
119 int force_tty_flag = 0;
121 /* don't exec a shell */
122 int no_shell_flag = 0;
125 * Flag indicating that nothing should be read from stdin. This can be set
126 * on the command line.
128 int stdin_null_flag = 0;
131 * Flag indicating that the current process should be backgrounded and
132 * a new slave launched in the foreground for ControlPersist.
134 int need_controlpersist_detach = 0;
136 /* Copies of flags for ControlPersist foreground slave */
137 int ostdin_null_flag, ono_shell_flag, ono_tty_flag, otty_flag;
140 * Flag indicating that ssh should fork after authentication. This is useful
141 * so that the passphrase can be entered manually, and then ssh goes to the
142 * background.
144 int fork_after_authentication_flag = 0;
146 /* forward stdio to remote host and port */
147 char *stdio_forward_host = NULL;
148 int stdio_forward_port = 0;
151 * General data structure for command line options and options configurable
152 * in configuration files. See readconf.h.
154 Options options;
156 /* optional user configfile */
157 char *config = NULL;
160 * Name of the host we are connecting to. This is the name given on the
161 * command line, or the HostName specified for the user-supplied name in a
162 * configuration file.
164 char *host;
166 /* socket address the host resolves to */
167 struct sockaddr_storage hostaddr;
169 /* Private host keys. */
170 Sensitive sensitive_data;
172 /* Original real UID. */
173 uid_t original_real_uid;
174 uid_t original_effective_uid;
176 /* command to be executed */
177 Buffer command;
179 /* Should we execute a command or invoke a subsystem? */
180 int subsystem_flag = 0;
182 /* # of replies received for global requests */
183 static int remote_forward_confirms_received = 0;
185 /* pid of proxycommand child process */
186 pid_t proxy_command_pid = 0;
188 /* mux.c */
189 extern int muxserver_sock;
190 extern u_int muxclient_command;
192 /* Prints a help message to the user. This function never returns. */
194 static void
195 usage(void)
197 fprintf(stderr,
198 "usage: ssh [-1246AaCfgKkMNnqsTtVvXxYy] [-b bind_address] [-c cipher_spec]\n"
199 " [-D [bind_address:]port] [-e escape_char] [-F configfile]\n"
200 " [-I pkcs11] [-i identity_file]\n"
201 " [-L [bind_address:]port:host:hostport]\n"
202 " [-l login_name] [-m mac_spec] [-O ctl_cmd] [-o option] [-p port]\n"
203 " [-R [bind_address:]port:host:hostport] [-S ctl_path]\n"
204 " [-W host:port] [-w local_tun[:remote_tun]]\n"
205 " [user@]hostname [command]\n"
207 exit(255);
210 static int ssh_session(void);
211 static int ssh_session2(void);
212 static void load_public_identity_files(void);
214 /* from muxclient.c */
215 void muxclient(const char *);
216 void muxserver_listen(void);
219 * Main program for the ssh client.
222 main(int ac, char **av)
224 int i, r, opt, exit_status, use_syslog;
225 char *p, *cp, *line, *argv0, buf[MAXPATHLEN];
226 struct stat st;
227 struct passwd *pw;
228 int dummy, timeout_ms;
229 extern int optind, optreset;
230 extern char *optarg;
231 struct servent *sp;
232 Forward fwd;
234 /* Ensure that fds 0, 1 and 2 are open or directed to /dev/null */
235 sanitise_stdfd();
237 __progname = ssh_get_progname(av[0]);
238 init_rng();
241 * Discard other fds that are hanging around. These can cause problem
242 * with backgrounded ssh processes started by ControlPersist.
244 closefrom(STDERR_FILENO + 1);
247 * Save the original real uid. It will be needed later (uid-swapping
248 * may clobber the real uid).
250 original_real_uid = getuid();
251 original_effective_uid = geteuid();
254 * Use uid-swapping to give up root privileges for the duration of
255 * option processing. We will re-instantiate the rights when we are
256 * ready to create the privileged port, and will permanently drop
257 * them when the port has been created (actually, when the connection
258 * has been made, as we may need to create the port several times).
260 PRIV_END;
262 #ifdef HAVE_SETRLIMIT
263 /* If we are installed setuid root be careful to not drop core. */
264 if (original_real_uid != original_effective_uid) {
265 struct rlimit rlim;
266 rlim.rlim_cur = rlim.rlim_max = 0;
267 if (setrlimit(RLIMIT_CORE, &rlim) < 0)
268 fatal("setrlimit failed: %.100s", strerror(errno));
270 #endif
271 /* Get user data. */
272 pw = getpwuid(original_real_uid);
273 if (!pw) {
274 logit("You don't exist, go away!");
275 exit(255);
277 /* Take a copy of the returned structure. */
278 pw = pwcopy(pw);
281 * Set our umask to something reasonable, as some files are created
282 * with the default umask. This will make them world-readable but
283 * writable only by the owner, which is ok for all files for which we
284 * don't set the modes explicitly.
286 umask(022);
289 * Initialize option structure to indicate that no values have been
290 * set.
292 initialize_options(&options);
294 /* Parse command-line arguments. */
295 host = NULL;
296 use_syslog = 0;
297 argv0 = av[0];
299 again:
300 while ((opt = getopt(ac, av, "1246ab:c:e:fgi:kl:m:no:p:qstvx"
301 "ACD:F:I:KL:MNO:PR:S:TVw:W:XYy")) != -1) {
302 switch (opt) {
303 case '1':
304 options.protocol = SSH_PROTO_1;
305 break;
306 case '2':
307 options.protocol = SSH_PROTO_2;
308 break;
309 case '4':
310 options.address_family = AF_INET;
311 break;
312 case '6':
313 options.address_family = AF_INET6;
314 break;
315 case 'n':
316 stdin_null_flag = 1;
317 break;
318 case 'f':
319 fork_after_authentication_flag = 1;
320 stdin_null_flag = 1;
321 break;
322 case 'x':
323 options.forward_x11 = 0;
324 break;
325 case 'X':
326 options.forward_x11 = 1;
327 break;
328 case 'y':
329 use_syslog = 1;
330 break;
331 case 'Y':
332 options.forward_x11 = 1;
333 options.forward_x11_trusted = 1;
334 break;
335 case 'g':
336 options.gateway_ports = 1;
337 break;
338 case 'O':
339 if (stdio_forward_host != NULL)
340 fatal("Cannot specify multiplexing "
341 "command with -W");
342 else if (muxclient_command != 0)
343 fatal("Multiplexing command already specified");
344 if (strcmp(optarg, "check") == 0)
345 muxclient_command = SSHMUX_COMMAND_ALIVE_CHECK;
346 else if (strcmp(optarg, "forward") == 0)
347 muxclient_command = SSHMUX_COMMAND_FORWARD;
348 else if (strcmp(optarg, "exit") == 0)
349 muxclient_command = SSHMUX_COMMAND_TERMINATE;
350 else
351 fatal("Invalid multiplex command.");
352 break;
353 case 'P': /* deprecated */
354 options.use_privileged_port = 0;
355 break;
356 case 'a':
357 options.forward_agent = 0;
358 break;
359 case 'A':
360 options.forward_agent = 1;
361 break;
362 case 'k':
363 options.gss_deleg_creds = 0;
364 break;
365 case 'K':
366 options.gss_authentication = 1;
367 options.gss_deleg_creds = 1;
368 break;
369 case 'i':
370 if (stat(optarg, &st) < 0) {
371 fprintf(stderr, "Warning: Identity file %s "
372 "not accessible: %s.\n", optarg,
373 strerror(errno));
374 break;
376 if (options.num_identity_files >=
377 SSH_MAX_IDENTITY_FILES)
378 fatal("Too many identity files specified "
379 "(max %d)", SSH_MAX_IDENTITY_FILES);
380 options.identity_files[options.num_identity_files++] =
381 xstrdup(optarg);
382 break;
383 case 'I':
384 #ifdef ENABLE_PKCS11
385 options.pkcs11_provider = xstrdup(optarg);
386 #else
387 fprintf(stderr, "no support for PKCS#11.\n");
388 #endif
389 break;
390 case 't':
391 if (tty_flag)
392 force_tty_flag = 1;
393 tty_flag = 1;
394 break;
395 case 'v':
396 if (debug_flag == 0) {
397 debug_flag = 1;
398 options.log_level = SYSLOG_LEVEL_DEBUG1;
399 } else {
400 if (options.log_level < SYSLOG_LEVEL_DEBUG3)
401 options.log_level++;
402 break;
404 /* FALLTHROUGH */
405 case 'V':
406 fprintf(stderr, "%s, %s\n",
407 SSH_RELEASE, SSLeay_version(SSLEAY_VERSION));
408 if (opt == 'V')
409 exit(0);
410 break;
411 case 'w':
412 if (options.tun_open == -1)
413 options.tun_open = SSH_TUNMODE_DEFAULT;
414 options.tun_local = a2tun(optarg, &options.tun_remote);
415 if (options.tun_local == SSH_TUNID_ERR) {
416 fprintf(stderr,
417 "Bad tun device '%s'\n", optarg);
418 exit(255);
420 break;
421 case 'W':
422 if (stdio_forward_host != NULL)
423 fatal("stdio forward already specified");
424 if (muxclient_command != 0)
425 fatal("Cannot specify stdio forward with -O");
426 if (parse_forward(&fwd, optarg, 1, 0)) {
427 stdio_forward_host = fwd.listen_host;
428 stdio_forward_port = fwd.listen_port;
429 xfree(fwd.connect_host);
430 } else {
431 fprintf(stderr,
432 "Bad stdio forwarding specification '%s'\n",
433 optarg);
434 exit(255);
436 no_tty_flag = 1;
437 no_shell_flag = 1;
438 options.clear_forwardings = 1;
439 options.exit_on_forward_failure = 1;
440 break;
441 case 'q':
442 options.log_level = SYSLOG_LEVEL_QUIET;
443 break;
444 case 'e':
445 if (optarg[0] == '^' && optarg[2] == 0 &&
446 (u_char) optarg[1] >= 64 &&
447 (u_char) optarg[1] < 128)
448 options.escape_char = (u_char) optarg[1] & 31;
449 else if (strlen(optarg) == 1)
450 options.escape_char = (u_char) optarg[0];
451 else if (strcmp(optarg, "none") == 0)
452 options.escape_char = SSH_ESCAPECHAR_NONE;
453 else {
454 fprintf(stderr, "Bad escape character '%s'.\n",
455 optarg);
456 exit(255);
458 break;
459 case 'c':
460 if (ciphers_valid(optarg)) {
461 /* SSH2 only */
462 options.ciphers = xstrdup(optarg);
463 options.cipher = SSH_CIPHER_INVALID;
464 } else {
465 /* SSH1 only */
466 options.cipher = cipher_number(optarg);
467 if (options.cipher == -1) {
468 fprintf(stderr,
469 "Unknown cipher type '%s'\n",
470 optarg);
471 exit(255);
473 if (options.cipher == SSH_CIPHER_3DES)
474 options.ciphers = "3des-cbc";
475 else if (options.cipher == SSH_CIPHER_BLOWFISH)
476 options.ciphers = "blowfish-cbc";
477 else
478 options.ciphers = (char *)-1;
480 break;
481 case 'm':
482 if (mac_valid(optarg))
483 options.macs = xstrdup(optarg);
484 else {
485 fprintf(stderr, "Unknown mac type '%s'\n",
486 optarg);
487 exit(255);
489 break;
490 case 'M':
491 if (options.control_master == SSHCTL_MASTER_YES)
492 options.control_master = SSHCTL_MASTER_ASK;
493 else
494 options.control_master = SSHCTL_MASTER_YES;
495 break;
496 case 'p':
497 options.port = a2port(optarg);
498 if (options.port <= 0) {
499 fprintf(stderr, "Bad port '%s'\n", optarg);
500 exit(255);
502 break;
503 case 'l':
504 options.user = optarg;
505 break;
507 case 'L':
508 if (parse_forward(&fwd, optarg, 0, 0))
509 add_local_forward(&options, &fwd);
510 else {
511 fprintf(stderr,
512 "Bad local forwarding specification '%s'\n",
513 optarg);
514 exit(255);
516 break;
518 case 'R':
519 if (parse_forward(&fwd, optarg, 0, 1)) {
520 add_remote_forward(&options, &fwd);
521 } else {
522 fprintf(stderr,
523 "Bad remote forwarding specification "
524 "'%s'\n", optarg);
525 exit(255);
527 break;
529 case 'D':
530 if (parse_forward(&fwd, optarg, 1, 0)) {
531 add_local_forward(&options, &fwd);
532 } else {
533 fprintf(stderr,
534 "Bad dynamic forwarding specification "
535 "'%s'\n", optarg);
536 exit(255);
538 break;
540 case 'C':
541 options.compression = 1;
542 break;
543 case 'N':
544 no_shell_flag = 1;
545 no_tty_flag = 1;
546 break;
547 case 'T':
548 no_tty_flag = 1;
549 break;
550 case 'o':
551 dummy = 1;
552 line = xstrdup(optarg);
553 if (process_config_line(&options, host ? host : "",
554 line, "command-line", 0, &dummy) != 0)
555 exit(255);
556 xfree(line);
557 break;
558 case 's':
559 subsystem_flag = 1;
560 break;
561 case 'S':
562 if (options.control_path != NULL)
563 free(options.control_path);
564 options.control_path = xstrdup(optarg);
565 break;
566 case 'b':
567 options.bind_address = optarg;
568 break;
569 case 'F':
570 config = optarg;
571 break;
572 default:
573 usage();
577 ac -= optind;
578 av += optind;
580 if (ac > 0 && !host) {
581 if (strrchr(*av, '@')) {
582 p = xstrdup(*av);
583 cp = strrchr(p, '@');
584 if (cp == NULL || cp == p)
585 usage();
586 options.user = p;
587 *cp = '\0';
588 host = ++cp;
589 } else
590 host = *av;
591 if (ac > 1) {
592 optind = optreset = 1;
593 goto again;
595 ac--, av++;
598 /* Check that we got a host name. */
599 if (!host)
600 usage();
602 SSLeay_add_all_algorithms();
603 ERR_load_crypto_strings();
605 /* Initialize the command to execute on remote host. */
606 buffer_init(&command);
609 * Save the command to execute on the remote host in a buffer. There
610 * is no limit on the length of the command, except by the maximum
611 * packet size. Also sets the tty flag if there is no command.
613 if (!ac) {
614 /* No command specified - execute shell on a tty. */
615 tty_flag = 1;
616 if (subsystem_flag) {
617 fprintf(stderr,
618 "You must specify a subsystem to invoke.\n");
619 usage();
621 } else {
622 /* A command has been specified. Store it into the buffer. */
623 for (i = 0; i < ac; i++) {
624 if (i)
625 buffer_append(&command, " ", 1);
626 buffer_append(&command, av[i], strlen(av[i]));
630 /* Cannot fork to background if no command. */
631 if (fork_after_authentication_flag && buffer_len(&command) == 0 &&
632 !no_shell_flag)
633 fatal("Cannot fork into background without a command "
634 "to execute.");
636 /* Allocate a tty by default if no command specified. */
637 if (buffer_len(&command) == 0)
638 tty_flag = 1;
640 /* Force no tty */
641 if (no_tty_flag || muxclient_command != 0)
642 tty_flag = 0;
643 /* Do not allocate a tty if stdin is not a tty. */
644 if ((!isatty(fileno(stdin)) || stdin_null_flag) && !force_tty_flag) {
645 if (tty_flag)
646 logit("Pseudo-terminal will not be allocated because "
647 "stdin is not a terminal.");
648 tty_flag = 0;
652 * Initialize "log" output. Since we are the client all output
653 * actually goes to stderr.
655 log_init(argv0,
656 options.log_level == -1 ? SYSLOG_LEVEL_INFO : options.log_level,
657 SYSLOG_FACILITY_USER, !use_syslog);
660 * Read per-user configuration file. Ignore the system wide config
661 * file if the user specifies a config file on the command line.
663 if (config != NULL) {
664 if (!read_config_file(config, host, &options, 0))
665 fatal("Can't open user config file %.100s: "
666 "%.100s", config, strerror(errno));
667 } else {
668 r = snprintf(buf, sizeof buf, "%s/%s", pw->pw_dir,
669 _PATH_SSH_USER_CONFFILE);
670 if (r > 0 && (size_t)r < sizeof(buf))
671 (void)read_config_file(buf, host, &options, 1);
673 /* Read systemwide configuration file after use config. */
674 (void)read_config_file(_PATH_HOST_CONFIG_FILE, host,
675 &options, 0);
678 /* Fill configuration defaults. */
679 fill_default_options(&options);
681 channel_set_af(options.address_family);
683 /* reinit */
684 log_init(argv0, options.log_level, SYSLOG_FACILITY_USER, !use_syslog);
686 seed_rng();
688 if (options.user == NULL)
689 options.user = xstrdup(pw->pw_name);
691 /* Get default port if port has not been set. */
692 if (options.port == 0) {
693 sp = getservbyname(SSH_SERVICE_NAME, "tcp");
694 options.port = sp ? ntohs(sp->s_port) : SSH_DEFAULT_PORT;
697 if (options.hostname != NULL) {
698 host = percent_expand(options.hostname,
699 "h", host, (char *)NULL);
702 if (options.local_command != NULL) {
703 char thishost[NI_MAXHOST];
705 if (gethostname(thishost, sizeof(thishost)) == -1)
706 fatal("gethostname: %s", strerror(errno));
707 snprintf(buf, sizeof(buf), "%d", options.port);
708 debug3("expanding LocalCommand: %s", options.local_command);
709 cp = options.local_command;
710 options.local_command = percent_expand(cp, "d", pw->pw_dir,
711 "h", host, "l", thishost, "n", host, "r", options.user,
712 "p", buf, "u", pw->pw_name, (char *)NULL);
713 debug3("expanded LocalCommand: %s", options.local_command);
714 xfree(cp);
717 /* force lowercase for hostkey matching */
718 if (options.host_key_alias != NULL) {
719 for (p = options.host_key_alias; *p; p++)
720 if (isupper(*p))
721 *p = (char)tolower(*p);
724 if (options.proxy_command != NULL &&
725 strcmp(options.proxy_command, "none") == 0) {
726 xfree(options.proxy_command);
727 options.proxy_command = NULL;
729 if (options.control_path != NULL &&
730 strcmp(options.control_path, "none") == 0) {
731 xfree(options.control_path);
732 options.control_path = NULL;
735 if (options.control_path != NULL) {
736 char thishost[NI_MAXHOST];
738 if (gethostname(thishost, sizeof(thishost)) == -1)
739 fatal("gethostname: %s", strerror(errno));
740 snprintf(buf, sizeof(buf), "%d", options.port);
741 cp = tilde_expand_filename(options.control_path,
742 original_real_uid);
743 xfree(options.control_path);
744 options.control_path = percent_expand(cp, "p", buf, "h", host,
745 "r", options.user, "l", thishost, (char *)NULL);
746 xfree(cp);
748 if (muxclient_command != 0 && options.control_path == NULL)
749 fatal("No ControlPath specified for \"-O\" command");
750 if (options.control_path != NULL)
751 muxclient(options.control_path);
753 timeout_ms = options.connection_timeout * 1000;
755 /* Open a connection to the remote host. */
756 if (ssh_connect(host, &hostaddr, options.port,
757 options.address_family, options.connection_attempts, &timeout_ms,
758 options.tcp_keep_alive,
759 #ifdef HAVE_CYGWIN
760 options.use_privileged_port,
761 #else
762 original_effective_uid == 0 && options.use_privileged_port,
763 #endif
764 options.proxy_command) != 0)
765 exit(255);
767 if (timeout_ms > 0)
768 debug3("timeout: %d ms remain after connect", timeout_ms);
771 * If we successfully made the connection, load the host private key
772 * in case we will need it later for combined rsa-rhosts
773 * authentication. This must be done before releasing extra
774 * privileges, because the file is only readable by root.
775 * If we cannot access the private keys, load the public keys
776 * instead and try to execute the ssh-keysign helper instead.
778 sensitive_data.nkeys = 0;
779 sensitive_data.keys = NULL;
780 sensitive_data.external_keysign = 0;
781 if (options.rhosts_rsa_authentication ||
782 options.hostbased_authentication) {
783 sensitive_data.nkeys = 7;
784 sensitive_data.keys = xcalloc(sensitive_data.nkeys,
785 sizeof(Key));
787 PRIV_START;
788 sensitive_data.keys[0] = key_load_private_type(KEY_RSA1,
789 _PATH_HOST_KEY_FILE, "", NULL, NULL);
790 sensitive_data.keys[1] = key_load_private_cert(KEY_DSA,
791 _PATH_HOST_DSA_KEY_FILE, "", NULL);
792 sensitive_data.keys[2] = key_load_private_cert(KEY_ECDSA,
793 _PATH_HOST_ECDSA_KEY_FILE, "", NULL);
794 sensitive_data.keys[3] = key_load_private_cert(KEY_RSA,
795 _PATH_HOST_RSA_KEY_FILE, "", NULL);
796 sensitive_data.keys[4] = key_load_private_type(KEY_DSA,
797 _PATH_HOST_DSA_KEY_FILE, "", NULL, NULL);
798 sensitive_data.keys[5] = key_load_private_type(KEY_ECDSA,
799 _PATH_HOST_ECDSA_KEY_FILE, "", NULL, NULL);
800 sensitive_data.keys[6] = key_load_private_type(KEY_RSA,
801 _PATH_HOST_RSA_KEY_FILE, "", NULL, NULL);
802 PRIV_END;
804 if (options.hostbased_authentication == 1 &&
805 sensitive_data.keys[0] == NULL &&
806 sensitive_data.keys[4] == NULL &&
807 sensitive_data.keys[5] == NULL &&
808 sensitive_data.keys[6] == NULL) {
809 sensitive_data.keys[1] = key_load_cert(
810 _PATH_HOST_DSA_KEY_FILE);
811 sensitive_data.keys[2] = key_load_cert(
812 _PATH_HOST_ECDSA_KEY_FILE);
813 sensitive_data.keys[3] = key_load_cert(
814 _PATH_HOST_RSA_KEY_FILE);
815 sensitive_data.keys[4] = key_load_public(
816 _PATH_HOST_DSA_KEY_FILE, NULL);
817 sensitive_data.keys[5] = key_load_public(
818 _PATH_HOST_ECDSA_KEY_FILE, NULL);
819 sensitive_data.keys[6] = key_load_public(
820 _PATH_HOST_RSA_KEY_FILE, NULL);
821 sensitive_data.external_keysign = 1;
825 * Get rid of any extra privileges that we may have. We will no
826 * longer need them. Also, extra privileges could make it very hard
827 * to read identity files and other non-world-readable files from the
828 * user's home directory if it happens to be on a NFS volume where
829 * root is mapped to nobody.
831 if (original_effective_uid == 0) {
832 PRIV_START;
833 permanently_set_uid(pw);
837 * Now that we are back to our own permissions, create ~/.ssh
838 * directory if it doesn't already exist.
840 r = snprintf(buf, sizeof buf, "%s%s%s", pw->pw_dir,
841 strcmp(pw->pw_dir, "/") ? "/" : "", _PATH_SSH_USER_DIR);
842 if (r > 0 && (size_t)r < sizeof(buf) && stat(buf, &st) < 0)
843 if (mkdir(buf, 0700) < 0)
844 error("Could not create directory '%.200s'.", buf);
846 /* load options.identity_files */
847 load_public_identity_files();
849 /* Expand ~ in known host file names. */
850 /* XXX mem-leaks: */
851 options.system_hostfile =
852 tilde_expand_filename(options.system_hostfile, original_real_uid);
853 options.user_hostfile =
854 tilde_expand_filename(options.user_hostfile, original_real_uid);
855 options.system_hostfile2 =
856 tilde_expand_filename(options.system_hostfile2, original_real_uid);
857 options.user_hostfile2 =
858 tilde_expand_filename(options.user_hostfile2, original_real_uid);
860 signal(SIGPIPE, SIG_IGN); /* ignore SIGPIPE early */
862 /* Log into the remote system. Never returns if the login fails. */
863 ssh_login(&sensitive_data, host, (struct sockaddr *)&hostaddr,
864 pw, timeout_ms);
866 if (packet_connection_is_on_socket()) {
867 verbose("Authenticated to %s ([%s]:%d).", host,
868 get_remote_ipaddr(), get_remote_port());
869 } else {
870 verbose("Authenticated to %s (via proxy).", host);
873 /* We no longer need the private host keys. Clear them now. */
874 if (sensitive_data.nkeys != 0) {
875 for (i = 0; i < sensitive_data.nkeys; i++) {
876 if (sensitive_data.keys[i] != NULL) {
877 /* Destroys contents safely */
878 debug3("clear hostkey %d", i);
879 key_free(sensitive_data.keys[i]);
880 sensitive_data.keys[i] = NULL;
883 xfree(sensitive_data.keys);
885 for (i = 0; i < options.num_identity_files; i++) {
886 if (options.identity_files[i]) {
887 xfree(options.identity_files[i]);
888 options.identity_files[i] = NULL;
890 if (options.identity_keys[i]) {
891 key_free(options.identity_keys[i]);
892 options.identity_keys[i] = NULL;
896 exit_status = compat20 ? ssh_session2() : ssh_session();
897 packet_close();
899 if (options.control_path != NULL && muxserver_sock != -1)
900 unlink(options.control_path);
903 * Send SIGHUP to proxy command if used. We don't wait() in
904 * case it hangs and instead rely on init to reap the child
906 if (proxy_command_pid > 1)
907 kill(proxy_command_pid, SIGHUP);
909 return exit_status;
912 static void
913 control_persist_detach(void)
915 pid_t pid;
916 int devnull;
918 debug("%s: backgrounding master process", __func__);
921 * master (current process) into the background, and make the
922 * foreground process a client of the backgrounded master.
924 switch ((pid = fork())) {
925 case -1:
926 fatal("%s: fork: %s", __func__, strerror(errno));
927 case 0:
928 /* Child: master process continues mainloop */
929 break;
930 default:
931 /* Parent: set up mux slave to connect to backgrounded master */
932 debug2("%s: background process is %ld", __func__, (long)pid);
933 stdin_null_flag = ostdin_null_flag;
934 no_shell_flag = ono_shell_flag;
935 no_tty_flag = ono_tty_flag;
936 tty_flag = otty_flag;
937 close(muxserver_sock);
938 muxserver_sock = -1;
939 muxclient(options.control_path);
940 /* muxclient() doesn't return on success. */
941 fatal("Failed to connect to new control master");
943 if ((devnull = open(_PATH_DEVNULL, O_RDWR)) == -1) {
944 error("%s: open(\"/dev/null\"): %s", __func__,
945 strerror(errno));
946 } else {
947 if (dup2(devnull, STDIN_FILENO) == -1 ||
948 dup2(devnull, STDOUT_FILENO) == -1)
949 error("%s: dup2: %s", __func__, strerror(errno));
950 if (devnull > STDERR_FILENO)
951 close(devnull);
955 /* Do fork() after authentication. Used by "ssh -f" */
956 static void
957 fork_postauth(void)
959 if (need_controlpersist_detach)
960 control_persist_detach();
961 debug("forking to background");
962 fork_after_authentication_flag = 0;
963 if (daemon(1, 1) < 0)
964 fatal("daemon() failed: %.200s", strerror(errno));
967 /* Callback for remote forward global requests */
968 static void
969 ssh_confirm_remote_forward(int type, u_int32_t seq, void *ctxt)
971 Forward *rfwd = (Forward *)ctxt;
973 /* XXX verbose() on failure? */
974 debug("remote forward %s for: listen %d, connect %s:%d",
975 type == SSH2_MSG_REQUEST_SUCCESS ? "success" : "failure",
976 rfwd->listen_port, rfwd->connect_host, rfwd->connect_port);
977 if (type == SSH2_MSG_REQUEST_SUCCESS && rfwd->listen_port == 0) {
978 rfwd->allocated_port = packet_get_int();
979 logit("Allocated port %u for remote forward to %s:%d",
980 rfwd->allocated_port,
981 rfwd->connect_host, rfwd->connect_port);
984 if (type == SSH2_MSG_REQUEST_FAILURE) {
985 if (options.exit_on_forward_failure)
986 fatal("Error: remote port forwarding failed for "
987 "listen port %d", rfwd->listen_port);
988 else
989 logit("Warning: remote port forwarding failed for "
990 "listen port %d", rfwd->listen_port);
992 if (++remote_forward_confirms_received == options.num_remote_forwards) {
993 debug("All remote forwarding requests processed");
994 if (fork_after_authentication_flag)
995 fork_postauth();
999 static void
1000 client_cleanup_stdio_fwd(int id, void *arg)
1002 debug("stdio forwarding: done");
1003 cleanup_exit(0);
1006 static int
1007 client_setup_stdio_fwd(const char *host_to_connect, u_short port_to_connect)
1009 Channel *c;
1010 int in, out;
1012 debug3("client_setup_stdio_fwd %s:%d", host_to_connect,
1013 port_to_connect);
1015 in = dup(STDIN_FILENO);
1016 out = dup(STDOUT_FILENO);
1017 if (in < 0 || out < 0)
1018 fatal("channel_connect_stdio_fwd: dup() in/out failed");
1020 if ((c = channel_connect_stdio_fwd(host_to_connect, port_to_connect,
1021 in, out)) == NULL)
1022 return 0;
1023 channel_register_cleanup(c->self, client_cleanup_stdio_fwd, 0);
1024 return 1;
1027 static void
1028 ssh_init_forwarding(void)
1030 int success = 0;
1031 int i;
1033 if (stdio_forward_host != NULL) {
1034 if (!compat20) {
1035 fatal("stdio forwarding require Protocol 2");
1037 if (!client_setup_stdio_fwd(stdio_forward_host,
1038 stdio_forward_port))
1039 fatal("Failed to connect in stdio forward mode.");
1042 /* Initiate local TCP/IP port forwardings. */
1043 for (i = 0; i < options.num_local_forwards; i++) {
1044 debug("Local connections to %.200s:%d forwarded to remote "
1045 "address %.200s:%d",
1046 (options.local_forwards[i].listen_host == NULL) ?
1047 (options.gateway_ports ? "*" : "LOCALHOST") :
1048 options.local_forwards[i].listen_host,
1049 options.local_forwards[i].listen_port,
1050 options.local_forwards[i].connect_host,
1051 options.local_forwards[i].connect_port);
1052 success += channel_setup_local_fwd_listener(
1053 options.local_forwards[i].listen_host,
1054 options.local_forwards[i].listen_port,
1055 options.local_forwards[i].connect_host,
1056 options.local_forwards[i].connect_port,
1057 options.gateway_ports);
1059 if (i > 0 && success != i && options.exit_on_forward_failure)
1060 fatal("Could not request local forwarding.");
1061 if (i > 0 && success == 0)
1062 error("Could not request local forwarding.");
1064 /* Initiate remote TCP/IP port forwardings. */
1065 for (i = 0; i < options.num_remote_forwards; i++) {
1066 debug("Remote connections from %.200s:%d forwarded to "
1067 "local address %.200s:%d",
1068 (options.remote_forwards[i].listen_host == NULL) ?
1069 "LOCALHOST" : options.remote_forwards[i].listen_host,
1070 options.remote_forwards[i].listen_port,
1071 options.remote_forwards[i].connect_host,
1072 options.remote_forwards[i].connect_port);
1073 if (channel_request_remote_forwarding(
1074 options.remote_forwards[i].listen_host,
1075 options.remote_forwards[i].listen_port,
1076 options.remote_forwards[i].connect_host,
1077 options.remote_forwards[i].connect_port) < 0) {
1078 if (options.exit_on_forward_failure)
1079 fatal("Could not request remote forwarding.");
1080 else
1081 logit("Warning: Could not request remote "
1082 "forwarding.");
1084 client_register_global_confirm(ssh_confirm_remote_forward,
1085 &options.remote_forwards[i]);
1088 /* Initiate tunnel forwarding. */
1089 if (options.tun_open != SSH_TUNMODE_NO) {
1090 if (client_request_tun_fwd(options.tun_open,
1091 options.tun_local, options.tun_remote) == -1) {
1092 if (options.exit_on_forward_failure)
1093 fatal("Could not request tunnel forwarding.");
1094 else
1095 error("Could not request tunnel forwarding.");
1100 static void
1101 check_agent_present(void)
1103 if (options.forward_agent) {
1104 /* Clear agent forwarding if we don't have an agent. */
1105 if (!ssh_agent_present())
1106 options.forward_agent = 0;
1110 static int
1111 ssh_session(void)
1113 int type;
1114 int interactive = 0;
1115 int have_tty = 0;
1116 struct winsize ws;
1117 char *cp;
1118 const char *display;
1120 /* Enable compression if requested. */
1121 if (options.compression) {
1122 debug("Requesting compression at level %d.",
1123 options.compression_level);
1125 if (options.compression_level < 1 ||
1126 options.compression_level > 9)
1127 fatal("Compression level must be from 1 (fast) to "
1128 "9 (slow, best).");
1130 /* Send the request. */
1131 packet_start(SSH_CMSG_REQUEST_COMPRESSION);
1132 packet_put_int(options.compression_level);
1133 packet_send();
1134 packet_write_wait();
1135 type = packet_read();
1136 if (type == SSH_SMSG_SUCCESS)
1137 packet_start_compression(options.compression_level);
1138 else if (type == SSH_SMSG_FAILURE)
1139 logit("Warning: Remote host refused compression.");
1140 else
1141 packet_disconnect("Protocol error waiting for "
1142 "compression response.");
1144 /* Allocate a pseudo tty if appropriate. */
1145 if (tty_flag) {
1146 debug("Requesting pty.");
1148 /* Start the packet. */
1149 packet_start(SSH_CMSG_REQUEST_PTY);
1151 /* Store TERM in the packet. There is no limit on the
1152 length of the string. */
1153 cp = getenv("TERM");
1154 if (!cp)
1155 cp = "";
1156 packet_put_cstring(cp);
1158 /* Store window size in the packet. */
1159 if (ioctl(fileno(stdin), TIOCGWINSZ, &ws) < 0)
1160 memset(&ws, 0, sizeof(ws));
1161 packet_put_int((u_int)ws.ws_row);
1162 packet_put_int((u_int)ws.ws_col);
1163 packet_put_int((u_int)ws.ws_xpixel);
1164 packet_put_int((u_int)ws.ws_ypixel);
1166 /* Store tty modes in the packet. */
1167 tty_make_modes(fileno(stdin), NULL);
1169 /* Send the packet, and wait for it to leave. */
1170 packet_send();
1171 packet_write_wait();
1173 /* Read response from the server. */
1174 type = packet_read();
1175 if (type == SSH_SMSG_SUCCESS) {
1176 interactive = 1;
1177 have_tty = 1;
1178 } else if (type == SSH_SMSG_FAILURE)
1179 logit("Warning: Remote host failed or refused to "
1180 "allocate a pseudo tty.");
1181 else
1182 packet_disconnect("Protocol error waiting for pty "
1183 "request response.");
1185 /* Request X11 forwarding if enabled and DISPLAY is set. */
1186 display = getenv("DISPLAY");
1187 if (options.forward_x11 && display != NULL) {
1188 char *proto, *data;
1189 /* Get reasonable local authentication information. */
1190 client_x11_get_proto(display, options.xauth_location,
1191 options.forward_x11_trusted,
1192 options.forward_x11_timeout,
1193 &proto, &data);
1194 /* Request forwarding with authentication spoofing. */
1195 debug("Requesting X11 forwarding with authentication "
1196 "spoofing.");
1197 x11_request_forwarding_with_spoofing(0, display, proto, data);
1199 /* Read response from the server. */
1200 type = packet_read();
1201 if (type == SSH_SMSG_SUCCESS) {
1202 interactive = 1;
1203 } else if (type == SSH_SMSG_FAILURE) {
1204 logit("Warning: Remote host denied X11 forwarding.");
1205 } else {
1206 packet_disconnect("Protocol error waiting for X11 "
1207 "forwarding");
1210 /* Tell the packet module whether this is an interactive session. */
1211 packet_set_interactive(interactive);
1213 /* Request authentication agent forwarding if appropriate. */
1214 check_agent_present();
1216 if (options.forward_agent) {
1217 debug("Requesting authentication agent forwarding.");
1218 auth_request_forwarding();
1220 /* Read response from the server. */
1221 type = packet_read();
1222 packet_check_eom();
1223 if (type != SSH_SMSG_SUCCESS)
1224 logit("Warning: Remote host denied authentication agent forwarding.");
1227 /* Initiate port forwardings. */
1228 ssh_init_forwarding();
1230 /* Execute a local command */
1231 if (options.local_command != NULL &&
1232 options.permit_local_command)
1233 ssh_local_cmd(options.local_command);
1236 * If requested and we are not interested in replies to remote
1237 * forwarding requests, then let ssh continue in the background.
1239 if (fork_after_authentication_flag) {
1240 if (options.exit_on_forward_failure &&
1241 options.num_remote_forwards > 0) {
1242 debug("deferring postauth fork until remote forward "
1243 "confirmation received");
1244 } else
1245 fork_postauth();
1249 * If a command was specified on the command line, execute the
1250 * command now. Otherwise request the server to start a shell.
1252 if (buffer_len(&command) > 0) {
1253 int len = buffer_len(&command);
1254 if (len > 900)
1255 len = 900;
1256 debug("Sending command: %.*s", len,
1257 (u_char *)buffer_ptr(&command));
1258 packet_start(SSH_CMSG_EXEC_CMD);
1259 packet_put_string(buffer_ptr(&command), buffer_len(&command));
1260 packet_send();
1261 packet_write_wait();
1262 } else {
1263 debug("Requesting shell.");
1264 packet_start(SSH_CMSG_EXEC_SHELL);
1265 packet_send();
1266 packet_write_wait();
1269 /* Enter the interactive session. */
1270 return client_loop(have_tty, tty_flag ?
1271 options.escape_char : SSH_ESCAPECHAR_NONE, 0);
1274 /* request pty/x11/agent/tcpfwd/shell for channel */
1275 static void
1276 ssh_session2_setup(int id, int success, void *arg)
1278 extern char **environ;
1279 const char *display;
1280 int interactive = tty_flag;
1282 if (!success)
1283 return; /* No need for error message, channels code sens one */
1285 display = getenv("DISPLAY");
1286 if (options.forward_x11 && display != NULL) {
1287 char *proto, *data;
1288 /* Get reasonable local authentication information. */
1289 client_x11_get_proto(display, options.xauth_location,
1290 options.forward_x11_trusted,
1291 options.forward_x11_timeout, &proto, &data);
1292 /* Request forwarding with authentication spoofing. */
1293 debug("Requesting X11 forwarding with authentication "
1294 "spoofing.");
1295 x11_request_forwarding_with_spoofing(id, display, proto, data);
1296 interactive = 1;
1297 /* XXX wait for reply */
1300 check_agent_present();
1301 if (options.forward_agent) {
1302 debug("Requesting authentication agent forwarding.");
1303 channel_request_start(id, "auth-agent-req@openssh.com", 0);
1304 packet_send();
1307 client_session2_setup(id, tty_flag, subsystem_flag, getenv("TERM"),
1308 NULL, fileno(stdin), &command, environ);
1310 packet_set_interactive(interactive);
1313 /* open new channel for a session */
1314 static int
1315 ssh_session2_open(void)
1317 Channel *c;
1318 int window, packetmax, in, out, err;
1320 if (stdin_null_flag) {
1321 in = open(_PATH_DEVNULL, O_RDONLY);
1322 } else {
1323 in = dup(STDIN_FILENO);
1325 out = dup(STDOUT_FILENO);
1326 err = dup(STDERR_FILENO);
1328 if (in < 0 || out < 0 || err < 0)
1329 fatal("dup() in/out/err failed");
1331 /* enable nonblocking unless tty */
1332 if (!isatty(in))
1333 set_nonblock(in);
1334 if (!isatty(out))
1335 set_nonblock(out);
1336 if (!isatty(err))
1337 set_nonblock(err);
1339 window = CHAN_SES_WINDOW_DEFAULT;
1340 packetmax = CHAN_SES_PACKET_DEFAULT;
1341 if (tty_flag) {
1342 window >>= 1;
1343 packetmax >>= 1;
1345 c = channel_new(
1346 "session", SSH_CHANNEL_OPENING, in, out, err,
1347 window, packetmax, CHAN_EXTENDED_WRITE,
1348 "client-session", /*nonblock*/0);
1350 debug3("ssh_session2_open: channel_new: %d", c->self);
1352 channel_send_open(c->self);
1353 if (!no_shell_flag)
1354 channel_register_open_confirm(c->self,
1355 ssh_session2_setup, NULL);
1357 return c->self;
1360 static int
1361 ssh_session2(void)
1363 int id = -1;
1365 /* XXX should be pre-session */
1366 ssh_init_forwarding();
1368 /* Start listening for multiplex clients */
1369 muxserver_listen();
1372 * If we are in control persist mode, then prepare to background
1373 * ourselves and have a foreground client attach as a control
1374 * slave. NB. we must save copies of the flags that we override for
1375 * the backgrounding, since we defer attachment of the slave until
1376 * after the connection is fully established (in particular,
1377 * async rfwd replies have been received for ExitOnForwardFailure).
1379 if (options.control_persist && muxserver_sock != -1) {
1380 ostdin_null_flag = stdin_null_flag;
1381 ono_shell_flag = no_shell_flag;
1382 ono_tty_flag = no_tty_flag;
1383 otty_flag = tty_flag;
1384 stdin_null_flag = 1;
1385 no_shell_flag = 1;
1386 no_tty_flag = 1;
1387 tty_flag = 0;
1388 if (!fork_after_authentication_flag)
1389 need_controlpersist_detach = 1;
1390 fork_after_authentication_flag = 1;
1393 if (!no_shell_flag || (datafellows & SSH_BUG_DUMMYCHAN))
1394 id = ssh_session2_open();
1396 /* If we don't expect to open a new session, then disallow it */
1397 if (options.control_master == SSHCTL_MASTER_NO &&
1398 (datafellows & SSH_NEW_OPENSSH)) {
1399 debug("Requesting no-more-sessions@openssh.com");
1400 packet_start(SSH2_MSG_GLOBAL_REQUEST);
1401 packet_put_cstring("no-more-sessions@openssh.com");
1402 packet_put_char(0);
1403 packet_send();
1406 /* Execute a local command */
1407 if (options.local_command != NULL &&
1408 options.permit_local_command)
1409 ssh_local_cmd(options.local_command);
1412 * If requested and we are not interested in replies to remote
1413 * forwarding requests, then let ssh continue in the background.
1415 if (fork_after_authentication_flag) {
1416 if (options.exit_on_forward_failure &&
1417 options.num_remote_forwards > 0) {
1418 debug("deferring postauth fork until remote forward "
1419 "confirmation received");
1420 } else
1421 fork_postauth();
1424 if (options.use_roaming)
1425 request_roaming();
1427 return client_loop(tty_flag, tty_flag ?
1428 options.escape_char : SSH_ESCAPECHAR_NONE, id);
1431 static void
1432 load_public_identity_files(void)
1434 char *filename, *cp, thishost[NI_MAXHOST];
1435 char *pwdir = NULL, *pwname = NULL;
1436 int i = 0;
1437 Key *public;
1438 struct passwd *pw;
1439 u_int n_ids;
1440 char *identity_files[SSH_MAX_IDENTITY_FILES];
1441 Key *identity_keys[SSH_MAX_IDENTITY_FILES];
1442 #ifdef ENABLE_PKCS11
1443 Key **keys;
1444 int nkeys;
1445 #endif /* PKCS11 */
1447 n_ids = 0;
1448 bzero(identity_files, sizeof(identity_files));
1449 bzero(identity_keys, sizeof(identity_keys));
1451 #ifdef ENABLE_PKCS11
1452 if (options.pkcs11_provider != NULL &&
1453 options.num_identity_files < SSH_MAX_IDENTITY_FILES &&
1454 (pkcs11_init(!options.batch_mode) == 0) &&
1455 (nkeys = pkcs11_add_provider(options.pkcs11_provider, NULL,
1456 &keys)) > 0) {
1457 for (i = 0; i < nkeys; i++) {
1458 if (n_ids >= SSH_MAX_IDENTITY_FILES) {
1459 key_free(keys[i]);
1460 continue;
1462 identity_keys[n_ids] = keys[i];
1463 identity_files[n_ids] =
1464 xstrdup(options.pkcs11_provider); /* XXX */
1465 n_ids++;
1467 xfree(keys);
1469 #endif /* ENABLE_PKCS11 */
1470 if ((pw = getpwuid(original_real_uid)) == NULL)
1471 fatal("load_public_identity_files: getpwuid failed");
1472 pwname = xstrdup(pw->pw_name);
1473 pwdir = xstrdup(pw->pw_dir);
1474 if (gethostname(thishost, sizeof(thishost)) == -1)
1475 fatal("load_public_identity_files: gethostname: %s",
1476 strerror(errno));
1477 for (i = 0; i < options.num_identity_files; i++) {
1478 if (n_ids >= SSH_MAX_IDENTITY_FILES) {
1479 xfree(options.identity_files[i]);
1480 continue;
1482 cp = tilde_expand_filename(options.identity_files[i],
1483 original_real_uid);
1484 filename = percent_expand(cp, "d", pwdir,
1485 "u", pwname, "l", thishost, "h", host,
1486 "r", options.user, (char *)NULL);
1487 xfree(cp);
1488 public = key_load_public(filename, NULL);
1489 debug("identity file %s type %d", filename,
1490 public ? public->type : -1);
1491 xfree(options.identity_files[i]);
1492 identity_files[n_ids] = filename;
1493 identity_keys[n_ids] = public;
1495 if (++n_ids >= SSH_MAX_IDENTITY_FILES)
1496 continue;
1498 /* Try to add the certificate variant too */
1499 xasprintf(&cp, "%s-cert", filename);
1500 public = key_load_public(cp, NULL);
1501 debug("identity file %s type %d", cp,
1502 public ? public->type : -1);
1503 if (public == NULL) {
1504 xfree(cp);
1505 continue;
1507 if (!key_is_cert(public)) {
1508 debug("%s: key %s type %s is not a certificate",
1509 __func__, cp, key_type(public));
1510 key_free(public);
1511 xfree(cp);
1512 continue;
1514 identity_keys[n_ids] = public;
1515 /* point to the original path, most likely the private key */
1516 identity_files[n_ids] = xstrdup(filename);
1517 n_ids++;
1519 options.num_identity_files = n_ids;
1520 memcpy(options.identity_files, identity_files, sizeof(identity_files));
1521 memcpy(options.identity_keys, identity_keys, sizeof(identity_keys));
1523 bzero(pwname, strlen(pwname));
1524 xfree(pwname);
1525 bzero(pwdir, strlen(pwdir));
1526 xfree(pwdir);