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