3e1f219fe3d216fed1d27ef0ceb5fa8face2ba28
[dragonfly.git] / crypto / openssh / ssh.c
1 /* $OpenBSD: ssh.c,v 1.407 2014/07/17 07:22:19 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.
9  *
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".
15  *
16  * Copyright (c) 1999 Niels Provos.  All rights reserved.
17  * Copyright (c) 2000, 2001, 2002, 2003 Markus Friedl.  All rights reserved.
18  *
19  * Modified to work with SSL by Niels Provos <provos@citi.umich.edu>
20  * in Canada (German citizen).
21  *
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.
30  *
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.
41  */
42
43 #include "includes.h"
44
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>
53 #include <sys/wait.h>
54
55 #include <ctype.h>
56 #include <errno.h>
57 #include <fcntl.h>
58 #include <netdb.h>
59 #ifdef HAVE_PATHS_H
60 #include <paths.h>
61 #endif
62 #include <pwd.h>
63 #include <signal.h>
64 #include <stdarg.h>
65 #include <stddef.h>
66 #include <stdio.h>
67 #include <stdlib.h>
68 #include <string.h>
69 #include <unistd.h>
70
71 #include <netinet/in.h>
72 #include <arpa/inet.h>
73
74 #ifdef WITH_OPENSSL
75 #include <openssl/evp.h>
76 #include <openssl/err.h>
77 #endif
78 #include "openbsd-compat/openssl-compat.h"
79 #include "openbsd-compat/sys-queue.h"
80
81 #include "xmalloc.h"
82 #include "ssh.h"
83 #include "ssh1.h"
84 #include "ssh2.h"
85 #include "canohost.h"
86 #include "compat.h"
87 #include "cipher.h"
88 #include "digest.h"
89 #include "packet.h"
90 #include "buffer.h"
91 #include "channels.h"
92 #include "key.h"
93 #include "authfd.h"
94 #include "authfile.h"
95 #include "pathnames.h"
96 #include "dispatch.h"
97 #include "clientloop.h"
98 #include "log.h"
99 #include "misc.h"
100 #include "readconf.h"
101 #include "sshconnect.h"
102 #include "kex.h"
103 #include "mac.h"
104 #include "sshpty.h"
105 #include "match.h"
106 #include "msg.h"
107 #include "uidswap.h"
108 #include "roaming.h"
109 #include "version.h"
110
111 #ifdef ENABLE_PKCS11
112 #include "ssh-pkcs11.h"
113 #endif
114
115 extern char *__progname;
116
117 /* Saves a copy of argv for setproctitle emulation */
118 #ifndef HAVE_SETPROCTITLE
119 static char **saved_av;
120 #endif
121
122 /* Flag indicating whether debug mode is on.  May be set on the command line. */
123 int debug_flag = 0;
124
125 /* Flag indicating whether a tty should be requested */
126 int tty_flag = 0;
127
128 /* don't exec a shell */
129 int no_shell_flag = 0;
130
131 /*
132  * Flag indicating that nothing should be read from stdin.  This can be set
133  * on the command line.
134  */
135 int stdin_null_flag = 0;
136
137 /*
138  * Flag indicating that the current process should be backgrounded and
139  * a new slave launched in the foreground for ControlPersist.
140  */
141 int need_controlpersist_detach = 0;
142
143 /* Copies of flags for ControlPersist foreground slave */
144 int ostdin_null_flag, ono_shell_flag, otty_flag, orequest_tty;
145
146 /*
147  * Flag indicating that ssh should fork after authentication.  This is useful
148  * so that the passphrase can be entered manually, and then ssh goes to the
149  * background.
150  */
151 int fork_after_authentication_flag = 0;
152
153 /* forward stdio to remote host and port */
154 char *stdio_forward_host = NULL;
155 int stdio_forward_port = 0;
156
157 /*
158  * General data structure for command line options and options configurable
159  * in configuration files.  See readconf.h.
160  */
161 Options options;
162
163 /* optional user configfile */
164 char *config = NULL;
165
166 /*
167  * Name of the host we are connecting to.  This is the name given on the
168  * command line, or the HostName specified for the user-supplied name in a
169  * configuration file.
170  */
171 char *host;
172
173 /* socket address the host resolves to */
174 struct sockaddr_storage hostaddr;
175
176 /* Private host keys. */
177 Sensitive sensitive_data;
178
179 /* Original real UID. */
180 uid_t original_real_uid;
181 uid_t original_effective_uid;
182
183 /* command to be executed */
184 Buffer command;
185
186 /* Should we execute a command or invoke a subsystem? */
187 int subsystem_flag = 0;
188
189 /* # of replies received for global requests */
190 static int remote_forward_confirms_received = 0;
191
192 /* mux.c */
193 extern int muxserver_sock;
194 extern u_int muxclient_command;
195
196 /* Prints a help message to the user.  This function never returns. */
197
198 static void
199 usage(void)
200 {
201         fprintf(stderr,
202 "usage: ssh [-1246AaCfgKkMNnqsTtVvXxYy] [-b bind_address] [-c cipher_spec]\n"
203 "           [-D [bind_address:]port] [-E log_file] [-e escape_char]\n"
204 "           [-F configfile] [-I pkcs11] [-i identity_file]\n"
205 "           [-L [bind_address:]port:host:hostport] [-l login_name] [-m mac_spec]\n"
206 "           [-O ctl_cmd] [-o option] [-p port]\n"
207 "           [-Q cipher | cipher-auth | mac | kex | key]\n"
208 "           [-R [bind_address:]port:host:hostport] [-S ctl_path] [-W host:port]\n"
209 "           [-w local_tun[:remote_tun]] [user@]hostname [command]\n"
210         );
211         exit(255);
212 }
213
214 static int ssh_session(void);
215 static int ssh_session2(void);
216 static void load_public_identity_files(void);
217 static void main_sigchld_handler(int);
218
219 /* from muxclient.c */
220 void muxclient(const char *);
221 void muxserver_listen(void);
222
223 /* ~/ expand a list of paths. NB. assumes path[n] is heap-allocated. */
224 static void
225 tilde_expand_paths(char **paths, u_int num_paths)
226 {
227         u_int i;
228         char *cp;
229
230         for (i = 0; i < num_paths; i++) {
231                 cp = tilde_expand_filename(paths[i], original_real_uid);
232                 free(paths[i]);
233                 paths[i] = cp;
234         }
235 }
236
237 /*
238  * Attempt to resolve a host name / port to a set of addresses and
239  * optionally return any CNAMEs encountered along the way.
240  * Returns NULL on failure.
241  * NB. this function must operate with a options having undefined members.
242  */
243 static struct addrinfo *
244 resolve_host(const char *name, int port, int logerr, char *cname, size_t clen)
245 {
246         char strport[NI_MAXSERV];
247         struct addrinfo hints, *res;
248         int gaierr, loglevel = SYSLOG_LEVEL_DEBUG1;
249
250         if (port <= 0)
251                 port = default_ssh_port();
252
253         snprintf(strport, sizeof strport, "%u", port);
254         memset(&hints, 0, sizeof(hints));
255         hints.ai_family = options.address_family == -1 ?
256             AF_UNSPEC : options.address_family;
257         hints.ai_socktype = SOCK_STREAM;
258         if (cname != NULL)
259                 hints.ai_flags = AI_CANONNAME;
260         if ((gaierr = getaddrinfo(name, strport, &hints, &res)) != 0) {
261                 if (logerr || (gaierr != EAI_NONAME && gaierr != EAI_NODATA))
262                         loglevel = SYSLOG_LEVEL_ERROR;
263                 do_log2(loglevel, "%s: Could not resolve hostname %.100s: %s",
264                     __progname, name, ssh_gai_strerror(gaierr));
265                 return NULL;
266         }
267         if (cname != NULL && res->ai_canonname != NULL) {
268                 if (strlcpy(cname, res->ai_canonname, clen) >= clen) {
269                         error("%s: host \"%s\" cname \"%s\" too long (max %lu)",
270                             __func__, name,  res->ai_canonname, (u_long)clen);
271                         if (clen > 0)
272                                 *cname = '\0';
273                 }
274         }
275         return res;
276 }
277
278 /*
279  * Check whether the cname is a permitted replacement for the hostname
280  * and perform the replacement if it is.
281  * NB. this function must operate with a options having undefined members.
282  */
283 static int
284 check_follow_cname(char **namep, const char *cname)
285 {
286         int i;
287         struct allowed_cname *rule;
288
289         if (*cname == '\0' || options.num_permitted_cnames == 0 ||
290             strcmp(*namep, cname) == 0)
291                 return 0;
292         if (options.canonicalize_hostname == SSH_CANONICALISE_NO)
293                 return 0;
294         /*
295          * Don't attempt to canonicalize names that will be interpreted by
296          * a proxy unless the user specifically requests so.
297          */
298         if (!option_clear_or_none(options.proxy_command) &&
299             options.canonicalize_hostname != SSH_CANONICALISE_ALWAYS)
300                 return 0;
301         debug3("%s: check \"%s\" CNAME \"%s\"", __func__, *namep, cname);
302         for (i = 0; i < options.num_permitted_cnames; i++) {
303                 rule = options.permitted_cnames + i;
304                 if (match_pattern_list(*namep, rule->source_list,
305                     strlen(rule->source_list), 1) != 1 ||
306                     match_pattern_list(cname, rule->target_list,
307                     strlen(rule->target_list), 1) != 1)
308                         continue;
309                 verbose("Canonicalized DNS aliased hostname "
310                     "\"%s\" => \"%s\"", *namep, cname);
311                 free(*namep);
312                 *namep = xstrdup(cname);
313                 return 1;
314         }
315         return 0;
316 }
317
318 /*
319  * Attempt to resolve the supplied hostname after applying the user's
320  * canonicalization rules. Returns the address list for the host or NULL
321  * if no name was found after canonicalization.
322  * NB. this function must operate with a options having undefined members.
323  */
324 static struct addrinfo *
325 resolve_canonicalize(char **hostp, int port)
326 {
327         int i, ndots;
328         char *cp, *fullhost, cname_target[NI_MAXHOST];
329         struct addrinfo *addrs;
330
331         if (options.canonicalize_hostname == SSH_CANONICALISE_NO)
332                 return NULL;
333
334         /*
335          * Don't attempt to canonicalize names that will be interpreted by
336          * a proxy unless the user specifically requests so.
337          */
338         if (!option_clear_or_none(options.proxy_command) &&
339             options.canonicalize_hostname != SSH_CANONICALISE_ALWAYS)
340                 return NULL;
341
342         /* Don't apply canonicalization to sufficiently-qualified hostnames */
343         ndots = 0;
344         for (cp = *hostp; *cp != '\0'; cp++) {
345                 if (*cp == '.')
346                         ndots++;
347         }
348         if (ndots > options.canonicalize_max_dots) {
349                 debug3("%s: not canonicalizing hostname \"%s\" (max dots %d)",
350                     __func__, *hostp, options.canonicalize_max_dots);
351                 return NULL;
352         }
353         /* Attempt each supplied suffix */
354         for (i = 0; i < options.num_canonical_domains; i++) {
355                 *cname_target = '\0';
356                 xasprintf(&fullhost, "%s.%s.", *hostp,
357                     options.canonical_domains[i]);
358                 debug3("%s: attempting \"%s\" => \"%s\"", __func__,
359                     *hostp, fullhost);
360                 if ((addrs = resolve_host(fullhost, port, 0,
361                     cname_target, sizeof(cname_target))) == NULL) {
362                         free(fullhost);
363                         continue;
364                 }
365                 /* Remove trailing '.' */
366                 fullhost[strlen(fullhost) - 1] = '\0';
367                 /* Follow CNAME if requested */
368                 if (!check_follow_cname(&fullhost, cname_target)) {
369                         debug("Canonicalized hostname \"%s\" => \"%s\"",
370                             *hostp, fullhost);
371                 }
372                 free(*hostp);
373                 *hostp = fullhost;
374                 return addrs;
375         }
376         if (!options.canonicalize_fallback_local)
377                 fatal("%s: Could not resolve host \"%s\"", __progname, *hostp);
378         debug2("%s: host %s not found in any suffix", __func__, *hostp);
379         return NULL;
380 }
381
382 /*
383  * Read per-user configuration file.  Ignore the system wide config
384  * file if the user specifies a config file on the command line.
385  */
386 static void
387 process_config_files(struct passwd *pw)
388 {
389         char buf[MAXPATHLEN];
390         int r;
391
392         if (config != NULL) {
393                 if (strcasecmp(config, "none") != 0 &&
394                     !read_config_file(config, pw, host, &options,
395                     SSHCONF_USERCONF))
396                         fatal("Can't open user config file %.100s: "
397                             "%.100s", config, strerror(errno));
398         } else {
399                 r = snprintf(buf, sizeof buf, "%s/%s", pw->pw_dir,
400                     _PATH_SSH_USER_CONFFILE);
401                 if (r > 0 && (size_t)r < sizeof(buf))
402                         (void)read_config_file(buf, pw, host, &options,
403                              SSHCONF_CHECKPERM|SSHCONF_USERCONF);
404
405                 /* Read systemwide configuration file after user config. */
406                 (void)read_config_file(_PATH_HOST_CONFIG_FILE, pw, host,
407                     &options, 0);
408         }
409 }
410
411 /*
412  * Main program for the ssh client.
413  */
414 int
415 main(int ac, char **av)
416 {
417         int i, r, opt, exit_status, use_syslog;
418         char *p, *cp, *line, *argv0, buf[MAXPATHLEN], *host_arg, *logfile;
419         char thishost[NI_MAXHOST], shorthost[NI_MAXHOST], portstr[NI_MAXSERV];
420         char cname[NI_MAXHOST];
421         struct stat st;
422         struct passwd *pw;
423         int timeout_ms;
424         extern int optind, optreset;
425         extern char *optarg;
426         struct Forward fwd;
427         struct addrinfo *addrs = NULL;
428         struct ssh_digest_ctx *md;
429         u_char conn_hash[SSH_DIGEST_MAX_LENGTH];
430         char *conn_hash_hex;
431
432         /* Ensure that fds 0, 1 and 2 are open or directed to /dev/null */
433         sanitise_stdfd();
434
435         __progname = ssh_get_progname(av[0]);
436
437 #ifndef HAVE_SETPROCTITLE
438         /* Prepare for later setproctitle emulation */
439         /* Save argv so it isn't clobbered by setproctitle() emulation */
440         saved_av = xcalloc(ac + 1, sizeof(*saved_av));
441         for (i = 0; i < ac; i++)
442                 saved_av[i] = xstrdup(av[i]);
443         saved_av[i] = NULL;
444         compat_init_setproctitle(ac, av);
445         av = saved_av;
446 #endif
447
448         /*
449          * Discard other fds that are hanging around. These can cause problem
450          * with backgrounded ssh processes started by ControlPersist.
451          */
452         closefrom(STDERR_FILENO + 1);
453
454         /*
455          * Save the original real uid.  It will be needed later (uid-swapping
456          * may clobber the real uid).
457          */
458         original_real_uid = getuid();
459         original_effective_uid = geteuid();
460
461         /*
462          * Use uid-swapping to give up root privileges for the duration of
463          * option processing.  We will re-instantiate the rights when we are
464          * ready to create the privileged port, and will permanently drop
465          * them when the port has been created (actually, when the connection
466          * has been made, as we may need to create the port several times).
467          */
468         PRIV_END;
469
470 #ifdef HAVE_SETRLIMIT
471         /* If we are installed setuid root be careful to not drop core. */
472         if (original_real_uid != original_effective_uid) {
473                 struct rlimit rlim;
474                 rlim.rlim_cur = rlim.rlim_max = 0;
475                 if (setrlimit(RLIMIT_CORE, &rlim) < 0)
476                         fatal("setrlimit failed: %.100s", strerror(errno));
477         }
478 #endif
479         /* Get user data. */
480         pw = getpwuid(original_real_uid);
481         if (!pw) {
482                 logit("No user exists for uid %lu", (u_long)original_real_uid);
483                 exit(255);
484         }
485         /* Take a copy of the returned structure. */
486         pw = pwcopy(pw);
487
488         /*
489          * Set our umask to something reasonable, as some files are created
490          * with the default umask.  This will make them world-readable but
491          * writable only by the owner, which is ok for all files for which we
492          * don't set the modes explicitly.
493          */
494         umask(022);
495
496         /*
497          * Initialize option structure to indicate that no values have been
498          * set.
499          */
500         initialize_options(&options);
501
502         /* Parse command-line arguments. */
503         host = NULL;
504         use_syslog = 0;
505         logfile = NULL;
506         argv0 = av[0];
507
508  again:
509         while ((opt = getopt(ac, av, "1246ab:c:e:fgi:kl:m:no:p:qstvx"
510             "ACD:E:F:I:KL:MNO:PQ:R:S:TVw:W:XYy")) != -1) {
511                 switch (opt) {
512                 case '1':
513                         options.protocol = SSH_PROTO_1;
514                         break;
515                 case '2':
516                         options.protocol = SSH_PROTO_2;
517                         break;
518                 case '4':
519                         options.address_family = AF_INET;
520                         break;
521                 case '6':
522                         options.address_family = AF_INET6;
523                         break;
524                 case 'n':
525                         stdin_null_flag = 1;
526                         break;
527                 case 'f':
528                         fork_after_authentication_flag = 1;
529                         stdin_null_flag = 1;
530                         break;
531                 case 'x':
532                         options.forward_x11 = 0;
533                         break;
534                 case 'X':
535                         options.forward_x11 = 1;
536                         break;
537                 case 'y':
538                         use_syslog = 1;
539                         break;
540                 case 'E':
541                         logfile = xstrdup(optarg);
542                         break;
543                 case 'Y':
544                         options.forward_x11 = 1;
545                         options.forward_x11_trusted = 1;
546                         break;
547                 case 'g':
548                         options.fwd_opts.gateway_ports = 1;
549                         break;
550                 case 'O':
551                         if (stdio_forward_host != NULL)
552                                 fatal("Cannot specify multiplexing "
553                                     "command with -W");
554                         else if (muxclient_command != 0)
555                                 fatal("Multiplexing command already specified");
556                         if (strcmp(optarg, "check") == 0)
557                                 muxclient_command = SSHMUX_COMMAND_ALIVE_CHECK;
558                         else if (strcmp(optarg, "forward") == 0)
559                                 muxclient_command = SSHMUX_COMMAND_FORWARD;
560                         else if (strcmp(optarg, "exit") == 0)
561                                 muxclient_command = SSHMUX_COMMAND_TERMINATE;
562                         else if (strcmp(optarg, "stop") == 0)
563                                 muxclient_command = SSHMUX_COMMAND_STOP;
564                         else if (strcmp(optarg, "cancel") == 0)
565                                 muxclient_command = SSHMUX_COMMAND_CANCEL_FWD;
566                         else
567                                 fatal("Invalid multiplex command.");
568                         break;
569                 case 'P':       /* deprecated */
570                         options.use_privileged_port = 0;
571                         break;
572                 case 'Q':
573                         cp = NULL;
574                         if (strcmp(optarg, "cipher") == 0)
575                                 cp = cipher_alg_list('\n', 0);
576                         else if (strcmp(optarg, "cipher-auth") == 0)
577                                 cp = cipher_alg_list('\n', 1);
578                         else if (strcmp(optarg, "mac") == 0)
579                                 cp = mac_alg_list('\n');
580                         else if (strcmp(optarg, "kex") == 0)
581                                 cp = kex_alg_list('\n');
582                         else if (strcmp(optarg, "key") == 0)
583                                 cp = key_alg_list(0, 0);
584                         else if (strcmp(optarg, "key-cert") == 0)
585                                 cp = key_alg_list(1, 0);
586                         else if (strcmp(optarg, "key-plain") == 0)
587                                 cp = key_alg_list(0, 1);
588                         if (cp == NULL)
589                                 fatal("Unsupported query \"%s\"", optarg);
590                         printf("%s\n", cp);
591                         free(cp);
592                         exit(0);
593                         break;
594                 case 'a':
595                         options.forward_agent = 0;
596                         break;
597                 case 'A':
598                         options.forward_agent = 1;
599                         break;
600                 case 'k':
601                         options.gss_deleg_creds = 0;
602                         break;
603                 case 'K':
604                         options.gss_authentication = 1;
605                         options.gss_deleg_creds = 1;
606                         break;
607                 case 'i':
608                         if (stat(optarg, &st) < 0) {
609                                 fprintf(stderr, "Warning: Identity file %s "
610                                     "not accessible: %s.\n", optarg,
611                                     strerror(errno));
612                                 break;
613                         }
614                         add_identity_file(&options, NULL, optarg, 1);
615                         break;
616                 case 'I':
617 #ifdef ENABLE_PKCS11
618                         options.pkcs11_provider = xstrdup(optarg);
619 #else
620                         fprintf(stderr, "no support for PKCS#11.\n");
621 #endif
622                         break;
623                 case 't':
624                         if (options.request_tty == REQUEST_TTY_YES)
625                                 options.request_tty = REQUEST_TTY_FORCE;
626                         else
627                                 options.request_tty = REQUEST_TTY_YES;
628                         break;
629                 case 'v':
630                         if (debug_flag == 0) {
631                                 debug_flag = 1;
632                                 options.log_level = SYSLOG_LEVEL_DEBUG1;
633                         } else {
634                                 if (options.log_level < SYSLOG_LEVEL_DEBUG3)
635                                         options.log_level++;
636                         }
637                         break;
638                 case 'V':
639                         fprintf(stderr, "%s, %s\n",
640                             SSH_RELEASE,
641 #ifdef WITH_OPENSSL
642                             SSLeay_version(SSLEAY_VERSION)
643 #else
644                             "without OpenSSL"
645 #endif
646                         );
647                         if (opt == 'V')
648                                 exit(0);
649                         break;
650                 case 'w':
651                         if (options.tun_open == -1)
652                                 options.tun_open = SSH_TUNMODE_DEFAULT;
653                         options.tun_local = a2tun(optarg, &options.tun_remote);
654                         if (options.tun_local == SSH_TUNID_ERR) {
655                                 fprintf(stderr,
656                                     "Bad tun device '%s'\n", optarg);
657                                 exit(255);
658                         }
659                         break;
660                 case 'W':
661                         if (stdio_forward_host != NULL)
662                                 fatal("stdio forward already specified");
663                         if (muxclient_command != 0)
664                                 fatal("Cannot specify stdio forward with -O");
665                         if (parse_forward(&fwd, optarg, 1, 0)) {
666                                 stdio_forward_host = fwd.listen_host;
667                                 stdio_forward_port = fwd.listen_port;
668                                 free(fwd.connect_host);
669                         } else {
670                                 fprintf(stderr,
671                                     "Bad stdio forwarding specification '%s'\n",
672                                     optarg);
673                                 exit(255);
674                         }
675                         options.request_tty = REQUEST_TTY_NO;
676                         no_shell_flag = 1;
677                         options.clear_forwardings = 1;
678                         options.exit_on_forward_failure = 1;
679                         break;
680                 case 'q':
681                         options.log_level = SYSLOG_LEVEL_QUIET;
682                         break;
683                 case 'e':
684                         if (optarg[0] == '^' && optarg[2] == 0 &&
685                             (u_char) optarg[1] >= 64 &&
686                             (u_char) optarg[1] < 128)
687                                 options.escape_char = (u_char) optarg[1] & 31;
688                         else if (strlen(optarg) == 1)
689                                 options.escape_char = (u_char) optarg[0];
690                         else if (strcmp(optarg, "none") == 0)
691                                 options.escape_char = SSH_ESCAPECHAR_NONE;
692                         else {
693                                 fprintf(stderr, "Bad escape character '%s'.\n",
694                                     optarg);
695                                 exit(255);
696                         }
697                         break;
698                 case 'c':
699                         if (ciphers_valid(optarg)) {
700                                 /* SSH2 only */
701                                 options.ciphers = xstrdup(optarg);
702                                 options.cipher = SSH_CIPHER_INVALID;
703                         } else {
704                                 /* SSH1 only */
705                                 options.cipher = cipher_number(optarg);
706                                 if (options.cipher == -1) {
707                                         fprintf(stderr,
708                                             "Unknown cipher type '%s'\n",
709                                             optarg);
710                                         exit(255);
711                                 }
712                                 if (options.cipher == SSH_CIPHER_3DES)
713                                         options.ciphers = "3des-cbc";
714                                 else if (options.cipher == SSH_CIPHER_BLOWFISH)
715                                         options.ciphers = "blowfish-cbc";
716                                 else
717                                         options.ciphers = (char *)-1;
718                         }
719                         break;
720                 case 'm':
721                         if (mac_valid(optarg))
722                                 options.macs = xstrdup(optarg);
723                         else {
724                                 fprintf(stderr, "Unknown mac type '%s'\n",
725                                     optarg);
726                                 exit(255);
727                         }
728                         break;
729                 case 'M':
730                         if (options.control_master == SSHCTL_MASTER_YES)
731                                 options.control_master = SSHCTL_MASTER_ASK;
732                         else
733                                 options.control_master = SSHCTL_MASTER_YES;
734                         break;
735                 case 'p':
736                         options.port = a2port(optarg);
737                         if (options.port <= 0) {
738                                 fprintf(stderr, "Bad port '%s'\n", optarg);
739                                 exit(255);
740                         }
741                         break;
742                 case 'l':
743                         options.user = optarg;
744                         break;
745
746                 case 'L':
747                         if (parse_forward(&fwd, optarg, 0, 0))
748                                 add_local_forward(&options, &fwd);
749                         else {
750                                 fprintf(stderr,
751                                     "Bad local forwarding specification '%s'\n",
752                                     optarg);
753                                 exit(255);
754                         }
755                         break;
756
757                 case 'R':
758                         if (parse_forward(&fwd, optarg, 0, 1)) {
759                                 add_remote_forward(&options, &fwd);
760                         } else {
761                                 fprintf(stderr,
762                                     "Bad remote forwarding specification "
763                                     "'%s'\n", optarg);
764                                 exit(255);
765                         }
766                         break;
767
768                 case 'D':
769                         if (parse_forward(&fwd, optarg, 1, 0)) {
770                                 add_local_forward(&options, &fwd);
771                         } else {
772                                 fprintf(stderr,
773                                     "Bad dynamic forwarding specification "
774                                     "'%s'\n", optarg);
775                                 exit(255);
776                         }
777                         break;
778
779                 case 'C':
780                         options.compression = 1;
781                         break;
782                 case 'N':
783                         no_shell_flag = 1;
784                         options.request_tty = REQUEST_TTY_NO;
785                         break;
786                 case 'T':
787                         options.request_tty = REQUEST_TTY_NO;
788                         /* ensure that the user doesn't try to backdoor a */
789                         /* null cipher switch on an interactive session */
790                         /* so explicitly disable it no matter what */
791                         options.none_switch=0;
792                         break;
793                 case 'o':
794                         line = xstrdup(optarg);
795                         if (process_config_line(&options, pw, host ? host : "",
796                             line, "command-line", 0, NULL, SSHCONF_USERCONF)
797                             != 0)
798                                 exit(255);
799                         free(line);
800                         break;
801                 case 's':
802                         subsystem_flag = 1;
803                         break;
804                 case 'S':
805                         if (options.control_path != NULL)
806                                 free(options.control_path);
807                         options.control_path = xstrdup(optarg);
808                         break;
809                 case 'b':
810                         options.bind_address = optarg;
811                         break;
812                 case 'F':
813                         config = optarg;
814                         break;
815                 default:
816                         usage();
817                 }
818         }
819
820         ac -= optind;
821         av += optind;
822
823         if (ac > 0 && !host) {
824                 if (strrchr(*av, '@')) {
825                         p = xstrdup(*av);
826                         cp = strrchr(p, '@');
827                         if (cp == NULL || cp == p)
828                                 usage();
829                         options.user = p;
830                         *cp = '\0';
831                         host = xstrdup(++cp);
832                 } else
833                         host = xstrdup(*av);
834                 if (ac > 1) {
835                         optind = optreset = 1;
836                         goto again;
837                 }
838                 ac--, av++;
839         }
840
841         /* Check that we got a host name. */
842         if (!host)
843                 usage();
844
845         host_arg = xstrdup(host);
846
847 #ifdef WITH_OPENSSL
848         OpenSSL_add_all_algorithms();
849         ERR_load_crypto_strings();
850 #endif
851
852         /* Initialize the command to execute on remote host. */
853         buffer_init(&command);
854
855         /*
856          * Save the command to execute on the remote host in a buffer. There
857          * is no limit on the length of the command, except by the maximum
858          * packet size.  Also sets the tty flag if there is no command.
859          */
860         if (!ac) {
861                 /* No command specified - execute shell on a tty. */
862                 if (subsystem_flag) {
863                         fprintf(stderr,
864                             "You must specify a subsystem to invoke.\n");
865                         usage();
866                 }
867         } else {
868                 /* A command has been specified.  Store it into the buffer. */
869                 for (i = 0; i < ac; i++) {
870                         if (i)
871                                 buffer_append(&command, " ", 1);
872                         buffer_append(&command, av[i], strlen(av[i]));
873                 }
874         }
875
876         /* Cannot fork to background if no command. */
877         if (fork_after_authentication_flag && buffer_len(&command) == 0 &&
878             !no_shell_flag)
879                 fatal("Cannot fork into background without a command "
880                     "to execute.");
881
882         /*
883          * Initialize "log" output.  Since we are the client all output
884          * goes to stderr unless otherwise specified by -y or -E.
885          */
886         if (use_syslog && logfile != NULL)
887                 fatal("Can't specify both -y and -E");
888         if (logfile != NULL) {
889                 log_redirect_stderr_to(logfile);
890                 free(logfile);
891         }
892         log_init(argv0,
893             options.log_level == -1 ? SYSLOG_LEVEL_INFO : options.log_level,
894             SYSLOG_FACILITY_USER, !use_syslog);
895
896         if (debug_flag)
897                 logit("%s, %s", SSH_RELEASE,
898 #ifdef WITH_OPENSSL
899                     SSLeay_version(SSLEAY_VERSION)
900 #else
901                     "without OpenSSL"
902 #endif
903                 );
904
905         /* Parse the configuration files */
906         process_config_files(pw);
907
908         /* Hostname canonicalisation needs a few options filled. */
909         fill_default_options_for_canonicalization(&options);
910
911         /* If the user has replaced the hostname then take it into use now */
912         if (options.hostname != NULL) {
913                 /* NB. Please keep in sync with readconf.c:match_cfg_line() */
914                 cp = percent_expand(options.hostname,
915                     "h", host, (char *)NULL);
916                 free(host);
917                 host = cp;
918         }
919
920         /* If canonicalization requested then try to apply it */
921         lowercase(host);
922         if (options.canonicalize_hostname != SSH_CANONICALISE_NO)
923                 addrs = resolve_canonicalize(&host, options.port);
924
925         /*
926          * If CanonicalizePermittedCNAMEs have been specified but
927          * other canonicalization did not happen (by not being requested
928          * or by failing with fallback) then the hostname may still be changed
929          * as a result of CNAME following. 
930          *
931          * Try to resolve the bare hostname name using the system resolver's
932          * usual search rules and then apply the CNAME follow rules.
933          *
934          * Skip the lookup if a ProxyCommand is being used unless the user
935          * has specifically requested canonicalisation for this case via
936          * CanonicalizeHostname=always
937          */
938         if (addrs == NULL && options.num_permitted_cnames != 0 &&
939             (option_clear_or_none(options.proxy_command) ||
940             options.canonicalize_hostname == SSH_CANONICALISE_ALWAYS)) {
941                 if ((addrs = resolve_host(host, options.port,
942                     option_clear_or_none(options.proxy_command),
943                     cname, sizeof(cname))) == NULL) {
944                         /* Don't fatal proxied host names not in the DNS */
945                         if (option_clear_or_none(options.proxy_command))
946                                 cleanup_exit(255); /* logged in resolve_host */
947                 } else
948                         check_follow_cname(&host, cname);
949         }
950
951         /*
952          * If the target hostname has changed as a result of canonicalisation
953          * then re-parse the configuration files as new stanzas may match.
954          */
955         if (strcasecmp(host_arg, host) != 0) {
956                 debug("Hostname has changed; re-reading configuration");
957                 process_config_files(pw);
958         }
959
960         /* Fill configuration defaults. */
961         fill_default_options(&options);
962
963         if (options.port == 0)
964                 options.port = default_ssh_port();
965         channel_set_af(options.address_family);
966
967         /* Tidy and check options */
968         if (options.host_key_alias != NULL)
969                 lowercase(options.host_key_alias);
970         if (options.proxy_command != NULL &&
971             strcmp(options.proxy_command, "-") == 0 &&
972             options.proxy_use_fdpass)
973                 fatal("ProxyCommand=- and ProxyUseFDPass are incompatible");
974 #ifndef HAVE_CYGWIN
975         if (original_effective_uid != 0)
976                 options.use_privileged_port = 0;
977 #endif
978
979         /* reinit */
980         log_init(argv0, options.log_level, SYSLOG_FACILITY_USER, !use_syslog);
981
982         if (options.request_tty == REQUEST_TTY_YES ||
983             options.request_tty == REQUEST_TTY_FORCE)
984                 tty_flag = 1;
985
986         /* Allocate a tty by default if no command specified. */
987         if (buffer_len(&command) == 0)
988                 tty_flag = options.request_tty != REQUEST_TTY_NO;
989
990         /* Force no tty */
991         if (options.request_tty == REQUEST_TTY_NO || muxclient_command != 0)
992                 tty_flag = 0;
993         /* Do not allocate a tty if stdin is not a tty. */
994         if ((!isatty(fileno(stdin)) || stdin_null_flag) &&
995             options.request_tty != REQUEST_TTY_FORCE) {
996                 if (tty_flag)
997                         logit("Pseudo-terminal will not be allocated because "
998                             "stdin is not a terminal.");
999                 tty_flag = 0;
1000         }
1001
1002         seed_rng();
1003
1004         if (options.user == NULL)
1005                 options.user = xstrdup(pw->pw_name);
1006
1007         if (gethostname(thishost, sizeof(thishost)) == -1)
1008                 fatal("gethostname: %s", strerror(errno));
1009         strlcpy(shorthost, thishost, sizeof(shorthost));
1010         shorthost[strcspn(thishost, ".")] = '\0';
1011         snprintf(portstr, sizeof(portstr), "%d", options.port);
1012
1013         if ((md = ssh_digest_start(SSH_DIGEST_SHA1)) == NULL ||
1014             ssh_digest_update(md, thishost, strlen(thishost)) < 0 ||
1015             ssh_digest_update(md, host, strlen(host)) < 0 ||
1016             ssh_digest_update(md, portstr, strlen(portstr)) < 0 ||
1017             ssh_digest_update(md, options.user, strlen(options.user)) < 0 ||
1018             ssh_digest_final(md, conn_hash, sizeof(conn_hash)) < 0)
1019                 fatal("%s: mux digest failed", __func__);
1020         ssh_digest_free(md);
1021         conn_hash_hex = tohex(conn_hash, ssh_digest_bytes(SSH_DIGEST_SHA1));
1022
1023         if (options.local_command != NULL) {
1024                 debug3("expanding LocalCommand: %s", options.local_command);
1025                 cp = options.local_command;
1026                 options.local_command = percent_expand(cp,
1027                     "C", conn_hash_hex,
1028                     "L", shorthost,
1029                     "d", pw->pw_dir,
1030                     "h", host,
1031                     "l", thishost,
1032                     "n", host_arg,
1033                     "p", portstr,
1034                     "r", options.user,
1035                     "u", pw->pw_name,
1036                     (char *)NULL);
1037                 debug3("expanded LocalCommand: %s", options.local_command);
1038                 free(cp);
1039         }
1040
1041         if (options.control_path != NULL) {
1042                 cp = tilde_expand_filename(options.control_path,
1043                     original_real_uid);
1044                 free(options.control_path);
1045                 options.control_path = percent_expand(cp,
1046                     "C", conn_hash_hex,
1047                     "L", shorthost,
1048                     "h", host,
1049                     "l", thishost,
1050                     "n", host_arg,
1051                     "p", portstr,
1052                     "r", options.user,
1053                     "u", pw->pw_name,
1054                     (char *)NULL);
1055                 free(cp);
1056         }
1057         free(conn_hash_hex);
1058
1059         if (muxclient_command != 0 && options.control_path == NULL)
1060                 fatal("No ControlPath specified for \"-O\" command");
1061         if (options.control_path != NULL)
1062                 muxclient(options.control_path);
1063
1064         /*
1065          * If hostname canonicalisation was not enabled, then we may not
1066          * have yet resolved the hostname. Do so now.
1067          */
1068         if (addrs == NULL && options.proxy_command == NULL) {
1069                 if ((addrs = resolve_host(host, options.port, 1,
1070                     cname, sizeof(cname))) == NULL)
1071                         cleanup_exit(255); /* resolve_host logs the error */
1072         }
1073
1074         timeout_ms = options.connection_timeout * 1000;
1075
1076         /* Open a connection to the remote host. */
1077         if (ssh_connect(host, addrs, &hostaddr, options.port,
1078             options.address_family, options.connection_attempts,
1079             &timeout_ms, options.tcp_keep_alive,
1080             options.use_privileged_port) != 0)
1081                 exit(255);
1082
1083         if (addrs != NULL)
1084                 freeaddrinfo(addrs);
1085
1086         packet_set_timeout(options.server_alive_interval,
1087             options.server_alive_count_max);
1088
1089         if (timeout_ms > 0)
1090                 debug3("timeout: %d ms remain after connect", timeout_ms);
1091
1092         /*
1093          * If we successfully made the connection, load the host private key
1094          * in case we will need it later for combined rsa-rhosts
1095          * authentication. This must be done before releasing extra
1096          * privileges, because the file is only readable by root.
1097          * If we cannot access the private keys, load the public keys
1098          * instead and try to execute the ssh-keysign helper instead.
1099          */
1100         sensitive_data.nkeys = 0;
1101         sensitive_data.keys = NULL;
1102         sensitive_data.external_keysign = 0;
1103         if (options.rhosts_rsa_authentication ||
1104             options.hostbased_authentication) {
1105                 sensitive_data.nkeys = 9;
1106                 sensitive_data.keys = xcalloc(sensitive_data.nkeys,
1107                     sizeof(Key));
1108                 for (i = 0; i < sensitive_data.nkeys; i++)
1109                         sensitive_data.keys[i] = NULL;
1110
1111                 PRIV_START;
1112                 sensitive_data.keys[0] = key_load_private_type(KEY_RSA1,
1113                     _PATH_HOST_KEY_FILE, "", NULL, NULL);
1114                 sensitive_data.keys[1] = key_load_private_cert(KEY_DSA,
1115                     _PATH_HOST_DSA_KEY_FILE, "", NULL);
1116 #ifdef OPENSSL_HAS_ECC
1117                 sensitive_data.keys[2] = key_load_private_cert(KEY_ECDSA,
1118                     _PATH_HOST_ECDSA_KEY_FILE, "", NULL);
1119 #endif
1120                 sensitive_data.keys[3] = key_load_private_cert(KEY_RSA,
1121                     _PATH_HOST_RSA_KEY_FILE, "", NULL);
1122                 sensitive_data.keys[4] = key_load_private_cert(KEY_ED25519,
1123                     _PATH_HOST_ED25519_KEY_FILE, "", NULL);
1124                 sensitive_data.keys[5] = key_load_private_type(KEY_DSA,
1125                     _PATH_HOST_DSA_KEY_FILE, "", NULL, NULL);
1126 #ifdef OPENSSL_HAS_ECC
1127                 sensitive_data.keys[6] = key_load_private_type(KEY_ECDSA,
1128                     _PATH_HOST_ECDSA_KEY_FILE, "", NULL, NULL);
1129 #endif
1130                 sensitive_data.keys[7] = key_load_private_type(KEY_RSA,
1131                     _PATH_HOST_RSA_KEY_FILE, "", NULL, NULL);
1132                 sensitive_data.keys[8] = key_load_private_type(KEY_ED25519,
1133                     _PATH_HOST_ED25519_KEY_FILE, "", NULL, NULL);
1134                 PRIV_END;
1135
1136                 if (options.hostbased_authentication == 1 &&
1137                     sensitive_data.keys[0] == NULL &&
1138                     sensitive_data.keys[5] == NULL &&
1139                     sensitive_data.keys[6] == NULL &&
1140                     sensitive_data.keys[7] == NULL &&
1141                     sensitive_data.keys[8] == NULL) {
1142                         sensitive_data.keys[1] = key_load_cert(
1143                             _PATH_HOST_DSA_KEY_FILE);
1144 #ifdef OPENSSL_HAS_ECC
1145                         sensitive_data.keys[2] = key_load_cert(
1146                             _PATH_HOST_ECDSA_KEY_FILE);
1147 #endif
1148                         sensitive_data.keys[3] = key_load_cert(
1149                             _PATH_HOST_RSA_KEY_FILE);
1150                         sensitive_data.keys[4] = key_load_cert(
1151                             _PATH_HOST_ED25519_KEY_FILE);
1152                         sensitive_data.keys[5] = key_load_public(
1153                             _PATH_HOST_DSA_KEY_FILE, NULL);
1154 #ifdef OPENSSL_HAS_ECC
1155                         sensitive_data.keys[6] = key_load_public(
1156                             _PATH_HOST_ECDSA_KEY_FILE, NULL);
1157 #endif
1158                         sensitive_data.keys[7] = key_load_public(
1159                             _PATH_HOST_RSA_KEY_FILE, NULL);
1160                         sensitive_data.keys[8] = key_load_public(
1161                             _PATH_HOST_ED25519_KEY_FILE, NULL);
1162                         sensitive_data.external_keysign = 1;
1163                 }
1164         }
1165         /*
1166          * Get rid of any extra privileges that we may have.  We will no
1167          * longer need them.  Also, extra privileges could make it very hard
1168          * to read identity files and other non-world-readable files from the
1169          * user's home directory if it happens to be on a NFS volume where
1170          * root is mapped to nobody.
1171          */
1172         if (original_effective_uid == 0) {
1173                 PRIV_START;
1174                 permanently_set_uid(pw);
1175         }
1176
1177         /*
1178          * Now that we are back to our own permissions, create ~/.ssh
1179          * directory if it doesn't already exist.
1180          */
1181         if (config == NULL) {
1182                 r = snprintf(buf, sizeof buf, "%s%s%s", pw->pw_dir,
1183                     strcmp(pw->pw_dir, "/") ? "/" : "", _PATH_SSH_USER_DIR);
1184                 if (r > 0 && (size_t)r < sizeof(buf) && stat(buf, &st) < 0) {
1185 #ifdef WITH_SELINUX
1186                         ssh_selinux_setfscreatecon(buf);
1187 #endif
1188                         if (mkdir(buf, 0700) < 0)
1189                                 error("Could not create directory '%.200s'.",
1190                                     buf);
1191 #ifdef WITH_SELINUX
1192                         ssh_selinux_setfscreatecon(NULL);
1193 #endif
1194                 }
1195         }
1196         /* load options.identity_files */
1197         load_public_identity_files();
1198
1199         /* Expand ~ in known host file names. */
1200         tilde_expand_paths(options.system_hostfiles,
1201             options.num_system_hostfiles);
1202         tilde_expand_paths(options.user_hostfiles, options.num_user_hostfiles);
1203
1204         signal(SIGPIPE, SIG_IGN); /* ignore SIGPIPE early */
1205         signal(SIGCHLD, main_sigchld_handler);
1206
1207         /* Log into the remote system.  Never returns if the login fails. */
1208         ssh_login(&sensitive_data, host, (struct sockaddr *)&hostaddr,
1209             options.port, pw, timeout_ms);
1210
1211         if (packet_connection_is_on_socket()) {
1212                 verbose("Authenticated to %s ([%s]:%d).", host,
1213                     get_remote_ipaddr(), get_remote_port());
1214         } else {
1215                 verbose("Authenticated to %s (via proxy).", host);
1216         }
1217
1218         /* We no longer need the private host keys.  Clear them now. */
1219         if (sensitive_data.nkeys != 0) {
1220                 for (i = 0; i < sensitive_data.nkeys; i++) {
1221                         if (sensitive_data.keys[i] != NULL) {
1222                                 /* Destroys contents safely */
1223                                 debug3("clear hostkey %d", i);
1224                                 key_free(sensitive_data.keys[i]);
1225                                 sensitive_data.keys[i] = NULL;
1226                         }
1227                 }
1228                 free(sensitive_data.keys);
1229         }
1230         for (i = 0; i < options.num_identity_files; i++) {
1231                 free(options.identity_files[i]);
1232                 options.identity_files[i] = NULL;
1233                 if (options.identity_keys[i]) {
1234                         key_free(options.identity_keys[i]);
1235                         options.identity_keys[i] = NULL;
1236                 }
1237         }
1238
1239         exit_status = compat20 ? ssh_session2() : ssh_session();
1240         packet_close();
1241
1242         if (options.control_path != NULL && muxserver_sock != -1)
1243                 unlink(options.control_path);
1244
1245         /* Kill ProxyCommand if it is running. */
1246         ssh_kill_proxy_command();
1247
1248         return exit_status;
1249 }
1250
1251 static void
1252 control_persist_detach(void)
1253 {
1254         pid_t pid;
1255         int devnull;
1256
1257         debug("%s: backgrounding master process", __func__);
1258
1259         /*
1260          * master (current process) into the background, and make the
1261          * foreground process a client of the backgrounded master.
1262          */
1263         switch ((pid = fork())) {
1264         case -1:
1265                 fatal("%s: fork: %s", __func__, strerror(errno));
1266         case 0:
1267                 /* Child: master process continues mainloop */
1268                 break;
1269         default:
1270                 /* Parent: set up mux slave to connect to backgrounded master */
1271                 debug2("%s: background process is %ld", __func__, (long)pid);
1272                 stdin_null_flag = ostdin_null_flag;
1273                 options.request_tty = orequest_tty;
1274                 tty_flag = otty_flag;
1275                 close(muxserver_sock);
1276                 muxserver_sock = -1;
1277                 options.control_master = SSHCTL_MASTER_NO;
1278                 muxclient(options.control_path);
1279                 /* muxclient() doesn't return on success. */
1280                 fatal("Failed to connect to new control master");
1281         }
1282         if ((devnull = open(_PATH_DEVNULL, O_RDWR)) == -1) {
1283                 error("%s: open(\"/dev/null\"): %s", __func__,
1284                     strerror(errno));
1285         } else {
1286                 if (dup2(devnull, STDIN_FILENO) == -1 ||
1287                     dup2(devnull, STDOUT_FILENO) == -1)
1288                         error("%s: dup2: %s", __func__, strerror(errno));
1289                 if (devnull > STDERR_FILENO)
1290                         close(devnull);
1291         }
1292         daemon(1, 1);
1293         setproctitle("%s [mux]", options.control_path);
1294 }
1295
1296 /* Do fork() after authentication. Used by "ssh -f" */
1297 static void
1298 fork_postauth(void)
1299 {
1300         if (need_controlpersist_detach)
1301                 control_persist_detach();
1302         debug("forking to background");
1303         fork_after_authentication_flag = 0;
1304         if (daemon(1, 1) < 0)
1305                 fatal("daemon() failed: %.200s", strerror(errno));
1306 }
1307
1308 /* Callback for remote forward global requests */
1309 static void
1310 ssh_confirm_remote_forward(int type, u_int32_t seq, void *ctxt)
1311 {
1312         struct Forward *rfwd = (struct Forward *)ctxt;
1313
1314         /* XXX verbose() on failure? */
1315         debug("remote forward %s for: listen %s%s%d, connect %s:%d",
1316             type == SSH2_MSG_REQUEST_SUCCESS ? "success" : "failure",
1317             rfwd->listen_path ? rfwd->listen_path :
1318             rfwd->listen_host ? rfwd->listen_host : "",
1319             (rfwd->listen_path || rfwd->listen_host) ? ":" : "",
1320             rfwd->listen_port, rfwd->connect_path ? rfwd->connect_path :
1321             rfwd->connect_host, rfwd->connect_port);
1322         if (rfwd->listen_path == NULL && rfwd->listen_port == 0) {
1323                 if (type == SSH2_MSG_REQUEST_SUCCESS) {
1324                         rfwd->allocated_port = packet_get_int();
1325                         logit("Allocated port %u for remote forward to %s:%d",
1326                             rfwd->allocated_port,
1327                             rfwd->connect_host, rfwd->connect_port);
1328                         channel_update_permitted_opens(rfwd->handle,
1329                             rfwd->allocated_port);
1330                 } else {
1331                         channel_update_permitted_opens(rfwd->handle, -1);
1332                 }
1333         }
1334         
1335         if (type == SSH2_MSG_REQUEST_FAILURE) {
1336                 if (options.exit_on_forward_failure) {
1337                         if (rfwd->listen_path != NULL)
1338                                 fatal("Error: remote port forwarding failed "
1339                                     "for listen path %s", rfwd->listen_path);
1340                         else
1341                                 fatal("Error: remote port forwarding failed "
1342                                     "for listen port %d", rfwd->listen_port);
1343                 } else {
1344                         if (rfwd->listen_path != NULL)
1345                                 logit("Warning: remote port forwarding failed "
1346                                     "for listen path %s", rfwd->listen_path);
1347                         else
1348                                 logit("Warning: remote port forwarding failed "
1349                                     "for listen port %d", rfwd->listen_port);
1350                 }
1351         }
1352         if (++remote_forward_confirms_received == options.num_remote_forwards) {
1353                 debug("All remote forwarding requests processed");
1354                 if (fork_after_authentication_flag)
1355                         fork_postauth();
1356         }
1357 }
1358
1359 static void
1360 client_cleanup_stdio_fwd(int id, void *arg)
1361 {
1362         debug("stdio forwarding: done");
1363         cleanup_exit(0);
1364 }
1365
1366 static void
1367 ssh_stdio_confirm(int id, int success, void *arg)
1368 {
1369         if (!success)
1370                 fatal("stdio forwarding failed");
1371 }
1372
1373 static void
1374 ssh_init_stdio_forwarding(void)
1375 {
1376         Channel *c;
1377         int in, out;
1378
1379         if (stdio_forward_host == NULL)
1380                 return;
1381         if (!compat20)
1382                 fatal("stdio forwarding require Protocol 2");
1383
1384         debug3("%s: %s:%d", __func__, stdio_forward_host, stdio_forward_port);
1385
1386         if ((in = dup(STDIN_FILENO)) < 0 ||
1387             (out = dup(STDOUT_FILENO)) < 0)
1388                 fatal("channel_connect_stdio_fwd: dup() in/out failed");
1389         if ((c = channel_connect_stdio_fwd(stdio_forward_host,
1390             stdio_forward_port, in, out)) == NULL)
1391                 fatal("%s: channel_connect_stdio_fwd failed", __func__);
1392         channel_register_cleanup(c->self, client_cleanup_stdio_fwd, 0);
1393         channel_register_open_confirm(c->self, ssh_stdio_confirm, NULL);
1394 }
1395
1396 static void
1397 ssh_init_forwarding(void)
1398 {
1399         int success = 0;
1400         int i;
1401
1402         /* Initiate local TCP/IP port forwardings. */
1403         for (i = 0; i < options.num_local_forwards; i++) {
1404                 debug("Local connections to %.200s:%d forwarded to remote "
1405                     "address %.200s:%d",
1406                     (options.local_forwards[i].listen_path != NULL) ?
1407                     options.local_forwards[i].listen_path :
1408                     (options.local_forwards[i].listen_host == NULL) ?
1409                     (options.fwd_opts.gateway_ports ? "*" : "LOCALHOST") :
1410                     options.local_forwards[i].listen_host,
1411                     options.local_forwards[i].listen_port,
1412                     (options.local_forwards[i].connect_path != NULL) ?
1413                     options.local_forwards[i].connect_path :
1414                     options.local_forwards[i].connect_host,
1415                     options.local_forwards[i].connect_port);
1416                 success += channel_setup_local_fwd_listener(
1417                     &options.local_forwards[i], &options.fwd_opts);
1418         }
1419         if (i > 0 && success != i && options.exit_on_forward_failure)
1420                 fatal("Could not request local forwarding.");
1421         if (i > 0 && success == 0)
1422                 error("Could not request local forwarding.");
1423
1424         /* Initiate remote TCP/IP port forwardings. */
1425         for (i = 0; i < options.num_remote_forwards; i++) {
1426                 debug("Remote connections from %.200s:%d forwarded to "
1427                     "local address %.200s:%d",
1428                     (options.remote_forwards[i].listen_path != NULL) ?
1429                     options.remote_forwards[i].listen_path :
1430                     (options.remote_forwards[i].listen_host == NULL) ?
1431                     "LOCALHOST" : options.remote_forwards[i].listen_host,
1432                     options.remote_forwards[i].listen_port,
1433                     (options.remote_forwards[i].connect_path != NULL) ?
1434                     options.remote_forwards[i].connect_path :
1435                     options.remote_forwards[i].connect_host,
1436                     options.remote_forwards[i].connect_port);
1437                 options.remote_forwards[i].handle =
1438                     channel_request_remote_forwarding(
1439                     &options.remote_forwards[i]);
1440                 if (options.remote_forwards[i].handle < 0) {
1441                         if (options.exit_on_forward_failure)
1442                                 fatal("Could not request remote forwarding.");
1443                         else
1444                                 logit("Warning: Could not request remote "
1445                                     "forwarding.");
1446                 } else {
1447                         client_register_global_confirm(ssh_confirm_remote_forward,
1448                             &options.remote_forwards[i]);
1449                 }
1450         }
1451
1452         /* Initiate tunnel forwarding. */
1453         if (options.tun_open != SSH_TUNMODE_NO) {
1454                 if (client_request_tun_fwd(options.tun_open,
1455                     options.tun_local, options.tun_remote) == -1) {
1456                         if (options.exit_on_forward_failure)
1457                                 fatal("Could not request tunnel forwarding.");
1458                         else
1459                                 error("Could not request tunnel forwarding.");
1460                 }
1461         }                       
1462 }
1463
1464 static void
1465 check_agent_present(void)
1466 {
1467         if (options.forward_agent) {
1468                 /* Clear agent forwarding if we don't have an agent. */
1469                 if (!ssh_agent_present())
1470                         options.forward_agent = 0;
1471         }
1472 }
1473
1474 static int
1475 ssh_session(void)
1476 {
1477         int type;
1478         int interactive = 0;
1479         int have_tty = 0;
1480         struct winsize ws;
1481         char *cp;
1482         const char *display;
1483
1484         /* Enable compression if requested. */
1485         if (options.compression) {
1486                 debug("Requesting compression at level %d.",
1487                     options.compression_level);
1488
1489                 if (options.compression_level < 1 ||
1490                     options.compression_level > 9)
1491                         fatal("Compression level must be from 1 (fast) to "
1492                             "9 (slow, best).");
1493
1494                 /* Send the request. */
1495                 packet_start(SSH_CMSG_REQUEST_COMPRESSION);
1496                 packet_put_int(options.compression_level);
1497                 packet_send();
1498                 packet_write_wait();
1499                 type = packet_read();
1500                 if (type == SSH_SMSG_SUCCESS)
1501                         packet_start_compression(options.compression_level);
1502                 else if (type == SSH_SMSG_FAILURE)
1503                         logit("Warning: Remote host refused compression.");
1504                 else
1505                         packet_disconnect("Protocol error waiting for "
1506                             "compression response.");
1507         }
1508         /* Allocate a pseudo tty if appropriate. */
1509         if (tty_flag) {
1510                 debug("Requesting pty.");
1511
1512                 /* Start the packet. */
1513                 packet_start(SSH_CMSG_REQUEST_PTY);
1514
1515                 /* Store TERM in the packet.  There is no limit on the
1516                    length of the string. */
1517                 cp = getenv("TERM");
1518                 if (!cp)
1519                         cp = "";
1520                 packet_put_cstring(cp);
1521
1522                 /* Store window size in the packet. */
1523                 if (ioctl(fileno(stdin), TIOCGWINSZ, &ws) < 0)
1524                         memset(&ws, 0, sizeof(ws));
1525                 packet_put_int((u_int)ws.ws_row);
1526                 packet_put_int((u_int)ws.ws_col);
1527                 packet_put_int((u_int)ws.ws_xpixel);
1528                 packet_put_int((u_int)ws.ws_ypixel);
1529
1530                 /* Store tty modes in the packet. */
1531                 tty_make_modes(fileno(stdin), NULL);
1532
1533                 /* Send the packet, and wait for it to leave. */
1534                 packet_send();
1535                 packet_write_wait();
1536
1537                 /* Read response from the server. */
1538                 type = packet_read();
1539                 if (type == SSH_SMSG_SUCCESS) {
1540                         interactive = 1;
1541                         have_tty = 1;
1542                 } else if (type == SSH_SMSG_FAILURE)
1543                         logit("Warning: Remote host failed or refused to "
1544                             "allocate a pseudo tty.");
1545                 else
1546                         packet_disconnect("Protocol error waiting for pty "
1547                             "request response.");
1548         }
1549         /* Request X11 forwarding if enabled and DISPLAY is set. */
1550         display = getenv("DISPLAY");
1551         if (options.forward_x11 && display != NULL) {
1552                 char *proto, *data;
1553                 /* Get reasonable local authentication information. */
1554                 client_x11_get_proto(display, options.xauth_location,
1555                     options.forward_x11_trusted,
1556                     options.forward_x11_timeout,
1557                     &proto, &data);
1558                 /* Request forwarding with authentication spoofing. */
1559                 debug("Requesting X11 forwarding with authentication "
1560                     "spoofing.");
1561                 x11_request_forwarding_with_spoofing(0, display, proto,
1562                     data, 0);
1563                 /* Read response from the server. */
1564                 type = packet_read();
1565                 if (type == SSH_SMSG_SUCCESS) {
1566                         interactive = 1;
1567                 } else if (type == SSH_SMSG_FAILURE) {
1568                         logit("Warning: Remote host denied X11 forwarding.");
1569                 } else {
1570                         packet_disconnect("Protocol error waiting for X11 "
1571                             "forwarding");
1572                 }
1573         }
1574         /* Tell the packet module whether this is an interactive session. */
1575         packet_set_interactive(interactive,
1576             options.ip_qos_interactive, options.ip_qos_bulk);
1577
1578         /* Request authentication agent forwarding if appropriate. */
1579         check_agent_present();
1580
1581         if (options.forward_agent) {
1582                 debug("Requesting authentication agent forwarding.");
1583                 auth_request_forwarding();
1584
1585                 /* Read response from the server. */
1586                 type = packet_read();
1587                 packet_check_eom();
1588                 if (type != SSH_SMSG_SUCCESS)
1589                         logit("Warning: Remote host denied authentication agent forwarding.");
1590         }
1591
1592         /* Initiate port forwardings. */
1593         ssh_init_stdio_forwarding();
1594         ssh_init_forwarding();
1595
1596         /* Execute a local command */
1597         if (options.local_command != NULL &&
1598             options.permit_local_command)
1599                 ssh_local_cmd(options.local_command);
1600
1601         /*
1602          * If requested and we are not interested in replies to remote
1603          * forwarding requests, then let ssh continue in the background.
1604          */
1605         if (fork_after_authentication_flag) {
1606                 if (options.exit_on_forward_failure &&
1607                     options.num_remote_forwards > 0) {
1608                         debug("deferring postauth fork until remote forward "
1609                             "confirmation received");
1610                 } else
1611                         fork_postauth();
1612         }
1613
1614         /*
1615          * If a command was specified on the command line, execute the
1616          * command now. Otherwise request the server to start a shell.
1617          */
1618         if (buffer_len(&command) > 0) {
1619                 int len = buffer_len(&command);
1620                 if (len > 900)
1621                         len = 900;
1622                 debug("Sending command: %.*s", len,
1623                     (u_char *)buffer_ptr(&command));
1624                 packet_start(SSH_CMSG_EXEC_CMD);
1625                 packet_put_string(buffer_ptr(&command), buffer_len(&command));
1626                 packet_send();
1627                 packet_write_wait();
1628         } else {
1629                 debug("Requesting shell.");
1630                 packet_start(SSH_CMSG_EXEC_SHELL);
1631                 packet_send();
1632                 packet_write_wait();
1633         }
1634
1635         /* Enter the interactive session. */
1636         return client_loop(have_tty, tty_flag ?
1637             options.escape_char : SSH_ESCAPECHAR_NONE, 0);
1638 }
1639
1640 /* request pty/x11/agent/tcpfwd/shell for channel */
1641 static void
1642 ssh_session2_setup(int id, int success, void *arg)
1643 {
1644         extern char **environ;
1645         const char *display;
1646         int interactive = tty_flag;
1647
1648         if (!success)
1649                 return; /* No need for error message, channels code sens one */
1650
1651         display = getenv("DISPLAY");
1652         if (options.forward_x11 && display != NULL) {
1653                 char *proto, *data;
1654                 /* Get reasonable local authentication information. */
1655                 client_x11_get_proto(display, options.xauth_location,
1656                     options.forward_x11_trusted,
1657                     options.forward_x11_timeout, &proto, &data);
1658                 /* Request forwarding with authentication spoofing. */
1659                 debug("Requesting X11 forwarding with authentication "
1660                     "spoofing.");
1661                 x11_request_forwarding_with_spoofing(id, display, proto,
1662                     data, 1);
1663                 client_expect_confirm(id, "X11 forwarding", CONFIRM_WARN);
1664                 /* XXX exit_on_forward_failure */
1665                 interactive = 1;
1666         }
1667
1668         check_agent_present();
1669         if (options.forward_agent) {
1670                 debug("Requesting authentication agent forwarding.");
1671                 channel_request_start(id, "auth-agent-req@openssh.com", 0);
1672                 packet_send();
1673         }
1674
1675         /* Tell the packet module whether this is an interactive session. */
1676         packet_set_interactive(interactive,
1677             options.ip_qos_interactive, options.ip_qos_bulk);
1678
1679         client_session2_setup(id, tty_flag, subsystem_flag, getenv("TERM"),
1680             NULL, fileno(stdin), &command, environ);
1681 }
1682
1683 /* open new channel for a session */
1684 static int
1685 ssh_session2_open(void)
1686 {
1687         Channel *c;
1688         int window, packetmax, in, out, err;
1689         int sock;
1690         int socksize;
1691         int socksizelen = sizeof(int);
1692
1693         if (stdin_null_flag) {
1694                 in = open(_PATH_DEVNULL, O_RDONLY);
1695         } else {
1696                 in = dup(STDIN_FILENO);
1697         }
1698         out = dup(STDOUT_FILENO);
1699         err = dup(STDERR_FILENO);
1700
1701         if (in < 0 || out < 0 || err < 0)
1702                 fatal("dup() in/out/err failed");
1703
1704         /* enable nonblocking unless tty */
1705         if (!isatty(in))
1706                 set_nonblock(in);
1707         if (!isatty(out))
1708                 set_nonblock(out);
1709         if (!isatty(err))
1710                 set_nonblock(err);
1711
1712         /* we need to check to see if what they want to do about buffer */
1713         /* sizes here. In a hpn to nonhpn connection we want to limit */
1714         /* the window size to something reasonable in case the far side */
1715         /* has the large window bug. In hpn to hpn connection we want to */
1716         /* use the max window size but allow the user to override it */
1717         /* lastly if they disabled hpn then use the ssh std window size */
1718
1719         /* so why don't we just do a getsockopt() here and set the */
1720         /* ssh window to that? In the case of a autotuning receive */
1721         /* window the window would get stuck at the initial buffer */
1722         /* size generally less than 96k. Therefore we need to set the */
1723         /* maximum ssh window size to the maximum hpn buffer size */
1724         /* unless the user has specifically set the tcprcvbufpoll */
1725         /* to no. In which case we *can* just set the window to the */
1726         /* minimum of the hpn buffer size and tcp receive buffer size */
1727
1728         if (tty_flag)
1729                 options.hpn_buffer_size = CHAN_SES_WINDOW_DEFAULT;
1730         else
1731                 options.hpn_buffer_size = 2*1024*1024;
1732
1733         if (datafellows & SSH_BUG_LARGEWINDOW)
1734         {
1735                 debug("HPN to Non-HPN Connection");
1736         }
1737         else
1738         {
1739                 if (options.tcp_rcv_buf_poll <= 0)
1740                 {
1741                         sock = socket(AF_INET, SOCK_STREAM, 0);
1742                         getsockopt(sock, SOL_SOCKET, SO_RCVBUF,
1743                                    &socksize, &socksizelen);
1744                         close(sock);
1745                         debug("socksize %d", socksize);
1746                         options.hpn_buffer_size = socksize;
1747                         debug ("HPNBufferSize set to TCP RWIN: %d", options.hpn_buffer_size);
1748                 }
1749                 else
1750                 {
1751                         if (options.tcp_rcv_buf > 0)
1752                         {
1753                                 /*create a socket but don't connect it */
1754                                 /* we use that the get the rcv socket size */
1755                                 sock = socket(AF_INET, SOCK_STREAM, 0);
1756                                 /* if they are using the tcp_rcv_buf option */
1757                                 /* attempt to set the buffer size to that */
1758                                 if (options.tcp_rcv_buf)
1759                                         setsockopt(sock, SOL_SOCKET, SO_RCVBUF, (void *)&options.tcp_rcv_buf,
1760                                                    sizeof(options.tcp_rcv_buf));
1761                                 getsockopt(sock, SOL_SOCKET, SO_RCVBUF,
1762                                            &socksize, &socksizelen);
1763                                 close(sock);
1764                                 debug("socksize %d", socksize);
1765                                 options.hpn_buffer_size = socksize;
1766                                 debug ("HPNBufferSize set to user TCPRcvBuf: %d", options.hpn_buffer_size);
1767                         }
1768                 }
1769
1770         }
1771
1772         debug("Final hpn_buffer_size = %d", options.hpn_buffer_size);
1773
1774         window = options.hpn_buffer_size;
1775
1776         channel_set_hpn(options.hpn_disabled, options.hpn_buffer_size);
1777
1778         packetmax = CHAN_SES_PACKET_DEFAULT;
1779         if (tty_flag) {
1780                 window = 4*CHAN_SES_PACKET_DEFAULT;
1781                 window >>= 1;
1782                 packetmax >>= 1;
1783         }
1784         c = channel_new(
1785             "session", SSH_CHANNEL_OPENING, in, out, err,
1786             window, packetmax, CHAN_EXTENDED_WRITE,
1787             "client-session", /*nonblock*/0);
1788         if ((options.tcp_rcv_buf_poll > 0) && (!options.hpn_disabled)) {
1789                 c->dynamic_window = 1;
1790                 debug ("Enabled Dynamic Window Scaling\n");
1791         }
1792         debug3("ssh_session2_open: channel_new: %d", c->self);
1793
1794         channel_send_open(c->self);
1795         if (!no_shell_flag)
1796                 channel_register_open_confirm(c->self,
1797                     ssh_session2_setup, NULL);
1798
1799         return c->self;
1800 }
1801
1802 static int
1803 ssh_session2(void)
1804 {
1805         int id = -1;
1806
1807         /* XXX should be pre-session */
1808         if (!options.control_persist)
1809                 ssh_init_stdio_forwarding();
1810         ssh_init_forwarding();
1811
1812         /* Start listening for multiplex clients */
1813         muxserver_listen();
1814
1815         /*
1816          * If we are in control persist mode and have a working mux listen
1817          * socket, then prepare to background ourselves and have a foreground
1818          * client attach as a control slave.
1819          * NB. we must save copies of the flags that we override for
1820          * the backgrounding, since we defer attachment of the slave until
1821          * after the connection is fully established (in particular,
1822          * async rfwd replies have been received for ExitOnForwardFailure).
1823          */
1824         if (options.control_persist && muxserver_sock != -1) {
1825                 ostdin_null_flag = stdin_null_flag;
1826                 ono_shell_flag = no_shell_flag;
1827                 orequest_tty = options.request_tty;
1828                 otty_flag = tty_flag;
1829                 stdin_null_flag = 1;
1830                 no_shell_flag = 1;
1831                 tty_flag = 0;
1832                 if (!fork_after_authentication_flag)
1833                         need_controlpersist_detach = 1;
1834                 fork_after_authentication_flag = 1;
1835         }
1836         /*
1837          * ControlPersist mux listen socket setup failed, attempt the
1838          * stdio forward setup that we skipped earlier.
1839          */
1840         if (options.control_persist && muxserver_sock == -1)
1841                 ssh_init_stdio_forwarding();
1842
1843         if (!no_shell_flag || (datafellows & SSH_BUG_DUMMYCHAN))
1844                 id = ssh_session2_open();
1845         else {
1846                 packet_set_interactive(
1847                     options.control_master == SSHCTL_MASTER_NO,
1848                     options.ip_qos_interactive, options.ip_qos_bulk);
1849         }
1850
1851         /* If we don't expect to open a new session, then disallow it */
1852         if (options.control_master == SSHCTL_MASTER_NO &&
1853             (datafellows & SSH_NEW_OPENSSH)) {
1854                 debug("Requesting no-more-sessions@openssh.com");
1855                 packet_start(SSH2_MSG_GLOBAL_REQUEST);
1856                 packet_put_cstring("no-more-sessions@openssh.com");
1857                 packet_put_char(0);
1858                 packet_send();
1859         }
1860
1861         /* Execute a local command */
1862         if (options.local_command != NULL &&
1863             options.permit_local_command)
1864                 ssh_local_cmd(options.local_command);
1865
1866         /*
1867          * If requested and we are not interested in replies to remote
1868          * forwarding requests, then let ssh continue in the background.
1869          */
1870         if (fork_after_authentication_flag) {
1871                 if (options.exit_on_forward_failure &&
1872                     options.num_remote_forwards > 0) {
1873                         debug("deferring postauth fork until remote forward "
1874                             "confirmation received");
1875                 } else
1876                         fork_postauth();
1877         }
1878
1879         if (options.use_roaming)
1880                 request_roaming();
1881
1882         return client_loop(tty_flag, tty_flag ?
1883             options.escape_char : SSH_ESCAPECHAR_NONE, id);
1884 }
1885
1886 static void
1887 load_public_identity_files(void)
1888 {
1889         char *filename, *cp, thishost[NI_MAXHOST];
1890         char *pwdir = NULL, *pwname = NULL;
1891         int i = 0;
1892         Key *public;
1893         struct passwd *pw;
1894         u_int n_ids;
1895         char *identity_files[SSH_MAX_IDENTITY_FILES];
1896         Key *identity_keys[SSH_MAX_IDENTITY_FILES];
1897 #ifdef ENABLE_PKCS11
1898         Key **keys;
1899         int nkeys;
1900 #endif /* PKCS11 */
1901
1902         n_ids = 0;
1903         memset(identity_files, 0, sizeof(identity_files));
1904         memset(identity_keys, 0, sizeof(identity_keys));
1905
1906 #ifdef ENABLE_PKCS11
1907         if (options.pkcs11_provider != NULL &&
1908             options.num_identity_files < SSH_MAX_IDENTITY_FILES &&
1909             (pkcs11_init(!options.batch_mode) == 0) &&
1910             (nkeys = pkcs11_add_provider(options.pkcs11_provider, NULL,
1911             &keys)) > 0) {
1912                 for (i = 0; i < nkeys; i++) {
1913                         if (n_ids >= SSH_MAX_IDENTITY_FILES) {
1914                                 key_free(keys[i]);
1915                                 continue;
1916                         }
1917                         identity_keys[n_ids] = keys[i];
1918                         identity_files[n_ids] =
1919                             xstrdup(options.pkcs11_provider); /* XXX */
1920                         n_ids++;
1921                 }
1922                 free(keys);
1923         }
1924 #endif /* ENABLE_PKCS11 */
1925         if ((pw = getpwuid(original_real_uid)) == NULL)
1926                 fatal("load_public_identity_files: getpwuid failed");
1927         pwname = xstrdup(pw->pw_name);
1928         pwdir = xstrdup(pw->pw_dir);
1929         if (gethostname(thishost, sizeof(thishost)) == -1)
1930                 fatal("load_public_identity_files: gethostname: %s",
1931                     strerror(errno));
1932         for (i = 0; i < options.num_identity_files; i++) {
1933                 if (n_ids >= SSH_MAX_IDENTITY_FILES ||
1934                     strcasecmp(options.identity_files[i], "none") == 0) {
1935                         free(options.identity_files[i]);
1936                         continue;
1937                 }
1938                 cp = tilde_expand_filename(options.identity_files[i],
1939                     original_real_uid);
1940                 filename = percent_expand(cp, "d", pwdir,
1941                     "u", pwname, "l", thishost, "h", host,
1942                     "r", options.user, (char *)NULL);
1943                 free(cp);
1944                 public = key_load_public(filename, NULL);
1945                 debug("identity file %s type %d", filename,
1946                     public ? public->type : -1);
1947                 free(options.identity_files[i]);
1948                 identity_files[n_ids] = filename;
1949                 identity_keys[n_ids] = public;
1950
1951                 if (++n_ids >= SSH_MAX_IDENTITY_FILES)
1952                         continue;
1953
1954                 /* Try to add the certificate variant too */
1955                 xasprintf(&cp, "%s-cert", filename);
1956                 public = key_load_public(cp, NULL);
1957                 debug("identity file %s type %d", cp,
1958                     public ? public->type : -1);
1959                 if (public == NULL) {
1960                         free(cp);
1961                         continue;
1962                 }
1963                 if (!key_is_cert(public)) {
1964                         debug("%s: key %s type %s is not a certificate",
1965                             __func__, cp, key_type(public));
1966                         key_free(public);
1967                         free(cp);
1968                         continue;
1969                 }
1970                 identity_keys[n_ids] = public;
1971                 /* point to the original path, most likely the private key */
1972                 identity_files[n_ids] = xstrdup(filename);
1973                 n_ids++;
1974         }
1975         options.num_identity_files = n_ids;
1976         memcpy(options.identity_files, identity_files, sizeof(identity_files));
1977         memcpy(options.identity_keys, identity_keys, sizeof(identity_keys));
1978
1979         explicit_bzero(pwname, strlen(pwname));
1980         free(pwname);
1981         explicit_bzero(pwdir, strlen(pwdir));
1982         free(pwdir);
1983 }
1984
1985 static void
1986 main_sigchld_handler(int sig)
1987 {
1988         int save_errno = errno;
1989         pid_t pid;
1990         int status;
1991
1992         while ((pid = waitpid(-1, &status, WNOHANG)) > 0 ||
1993             (pid < 0 && errno == EINTR))
1994                 ;
1995
1996         signal(sig, main_sigchld_handler);
1997         errno = save_errno;
1998 }