1 /* $OpenBSD: ssh.c,v 1.574 2022/03/30 04:33:09 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 SSLeay 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/socket.h> 52 #include <sys/wait.h> 53 54 #include <ctype.h> 55 #include <errno.h> 56 #include <fcntl.h> 57 #include <netdb.h> 58 #ifdef HAVE_PATHS_H 59 #include <paths.h> 60 #endif 61 #include <pwd.h> 62 #include <signal.h> 63 #include <stdarg.h> 64 #include <stddef.h> 65 #include <stdio.h> 66 #include <stdlib.h> 67 #include <string.h> 68 #include <stdarg.h> 69 #include <unistd.h> 70 #include <limits.h> 71 #include <locale.h> 72 73 #include <netinet/in.h> 74 #include <arpa/inet.h> 75 76 #ifdef WITH_OPENSSL 77 #include <openssl/evp.h> 78 #include <openssl/err.h> 79 #endif 80 #include "openbsd-compat/openssl-compat.h" 81 #include "openbsd-compat/sys-queue.h" 82 83 #include "xmalloc.h" 84 #include "ssh.h" 85 #include "ssh2.h" 86 #include "canohost.h" 87 #include "compat.h" 88 #include "cipher.h" 89 #include "packet.h" 90 #include "sshbuf.h" 91 #include "channels.h" 92 #include "sshkey.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 "version.h" 108 #include "ssherr.h" 109 #include "myproposal.h" 110 #include "utf8.h" 111 112 #ifdef ENABLE_PKCS11 113 #include "ssh-pkcs11.h" 114 #endif 115 116 extern char *__progname; 117 118 /* Saves a copy of argv for setproctitle emulation */ 119 #ifndef HAVE_SETPROCTITLE 120 static char **saved_av; 121 #endif 122 123 /* Flag indicating whether debug mode is on. May be set on the command line. */ 124 int debug_flag = 0; 125 126 /* Flag indicating whether a tty should be requested */ 127 int tty_flag = 0; 128 129 /* 130 * Flag indicating that the current process should be backgrounded and 131 * a new mux-client launched in the foreground for ControlPersist. 132 */ 133 int need_controlpersist_detach = 0; 134 135 /* Copies of flags for ControlPersist foreground mux-client */ 136 int ostdin_null_flag, osession_type, otty_flag, orequest_tty; 137 138 /* 139 * General data structure for command line options and options configurable 140 * in configuration files. See readconf.h. 141 */ 142 Options options; 143 144 /* optional user configfile */ 145 char *config = NULL; 146 147 /* 148 * Name of the host we are connecting to. This is the name given on the 149 * command line, or the Hostname specified for the user-supplied name in a 150 * configuration file. 151 */ 152 char *host; 153 154 /* 155 * A config can specify a path to forward, overriding SSH_AUTH_SOCK. If this is 156 * not NULL, forward the socket at this path instead. 157 */ 158 char *forward_agent_sock_path = NULL; 159 160 /* socket address the host resolves to */ 161 struct sockaddr_storage hostaddr; 162 163 /* Private host keys. */ 164 Sensitive sensitive_data; 165 166 /* command to be executed */ 167 struct sshbuf *command; 168 169 /* # of replies received for global requests */ 170 static int forward_confirms_pending = -1; 171 172 /* mux.c */ 173 extern int muxserver_sock; 174 extern u_int muxclient_command; 175 176 /* Prints a help message to the user. This function never returns. */ 177 178 static void 179 usage(void) 180 { 181 fprintf(stderr, 182 "usage: ssh [-46AaCfGgKkMNnqsTtVvXxYy] [-B bind_interface]\n" 183 " [-b bind_address] [-c cipher_spec] [-D [bind_address:]port]\n" 184 " [-E log_file] [-e escape_char] [-F configfile] [-I pkcs11]\n" 185 " [-i identity_file] [-J [user@]host[:port]] [-L address]\n" 186 " [-l login_name] [-m mac_spec] [-O ctl_cmd] [-o option] [-p port]\n" 187 " [-Q query_option] [-R address] [-S ctl_path] [-W host:port]\n" 188 " [-w local_tun[:remote_tun]] destination [command [argument ...]]\n" 189 ); 190 exit(255); 191 } 192 193 static int ssh_session2(struct ssh *, const struct ssh_conn_info *); 194 static void load_public_identity_files(const struct ssh_conn_info *); 195 static void main_sigchld_handler(int); 196 197 /* ~/ expand a list of paths. NB. assumes path[n] is heap-allocated. */ 198 static void 199 tilde_expand_paths(char **paths, u_int num_paths) 200 { 201 u_int i; 202 char *cp; 203 204 for (i = 0; i < num_paths; i++) { 205 cp = tilde_expand_filename(paths[i], getuid()); 206 free(paths[i]); 207 paths[i] = cp; 208 } 209 } 210 211 /* 212 * Expands the set of percent_expand options used by the majority of keywords 213 * in the client that support percent expansion. 214 * Caller must free returned string. 215 */ 216 static char * 217 default_client_percent_expand(const char *str, 218 const struct ssh_conn_info *cinfo) 219 { 220 return percent_expand(str, 221 DEFAULT_CLIENT_PERCENT_EXPAND_ARGS(cinfo), 222 (char *)NULL); 223 } 224 225 /* 226 * Expands the set of percent_expand options used by the majority of keywords 227 * AND perform environment variable substitution. 228 * Caller must free returned string. 229 */ 230 static char * 231 default_client_percent_dollar_expand(const char *str, 232 const struct ssh_conn_info *cinfo) 233 { 234 char *ret; 235 236 ret = percent_dollar_expand(str, 237 DEFAULT_CLIENT_PERCENT_EXPAND_ARGS(cinfo), 238 (char *)NULL); 239 if (ret == NULL) 240 fatal("invalid environment variable expansion"); 241 return ret; 242 } 243 244 /* 245 * Attempt to resolve a host name / port to a set of addresses and 246 * optionally return any CNAMEs encountered along the way. 247 * Returns NULL on failure. 248 * NB. this function must operate with a options having undefined members. 249 */ 250 static struct addrinfo * 251 resolve_host(const char *name, int port, int logerr, char *cname, size_t clen) 252 { 253 char strport[NI_MAXSERV]; 254 struct addrinfo hints, *res; 255 int gaierr; 256 LogLevel loglevel = SYSLOG_LEVEL_DEBUG1; 257 258 if (port <= 0) 259 port = default_ssh_port(); 260 if (cname != NULL) 261 *cname = '\0'; 262 debug3_f("lookup %s:%d", name, port); 263 264 snprintf(strport, sizeof strport, "%d", port); 265 memset(&hints, 0, sizeof(hints)); 266 hints.ai_family = options.address_family == -1 ? 267 AF_UNSPEC : options.address_family; 268 hints.ai_socktype = SOCK_STREAM; 269 if (cname != NULL) 270 hints.ai_flags = AI_CANONNAME; 271 if ((gaierr = getaddrinfo(name, strport, &hints, &res)) != 0) { 272 if (logerr || (gaierr != EAI_NONAME && gaierr != EAI_NODATA)) 273 loglevel = SYSLOG_LEVEL_ERROR; 274 do_log2(loglevel, "%s: Could not resolve hostname %.100s: %s", 275 __progname, name, ssh_gai_strerror(gaierr)); 276 return NULL; 277 } 278 if (cname != NULL && res->ai_canonname != NULL) { 279 if (strlcpy(cname, res->ai_canonname, clen) >= clen) { 280 error_f("host \"%s\" cname \"%s\" too long (max %lu)", 281 name, res->ai_canonname, (u_long)clen); 282 if (clen > 0) 283 *cname = '\0'; 284 } 285 } 286 return res; 287 } 288 289 /* Returns non-zero if name can only be an address and not a hostname */ 290 static int 291 is_addr_fast(const char *name) 292 { 293 return (strchr(name, '%') != NULL || strchr(name, ':') != NULL || 294 strspn(name, "0123456789.") == strlen(name)); 295 } 296 297 /* Returns non-zero if name represents a valid, single address */ 298 static int 299 is_addr(const char *name) 300 { 301 char strport[NI_MAXSERV]; 302 struct addrinfo hints, *res; 303 304 if (is_addr_fast(name)) 305 return 1; 306 307 snprintf(strport, sizeof strport, "%u", default_ssh_port()); 308 memset(&hints, 0, sizeof(hints)); 309 hints.ai_family = options.address_family == -1 ? 310 AF_UNSPEC : options.address_family; 311 hints.ai_socktype = SOCK_STREAM; 312 hints.ai_flags = AI_NUMERICHOST|AI_NUMERICSERV; 313 if (getaddrinfo(name, strport, &hints, &res) != 0) 314 return 0; 315 if (res == NULL || res->ai_next != NULL) { 316 freeaddrinfo(res); 317 return 0; 318 } 319 freeaddrinfo(res); 320 return 1; 321 } 322 323 /* 324 * Attempt to resolve a numeric host address / port to a single address. 325 * Returns a canonical address string. 326 * Returns NULL on failure. 327 * NB. this function must operate with a options having undefined members. 328 */ 329 static struct addrinfo * 330 resolve_addr(const char *name, int port, char *caddr, size_t clen) 331 { 332 char addr[NI_MAXHOST], strport[NI_MAXSERV]; 333 struct addrinfo hints, *res; 334 int gaierr; 335 336 if (port <= 0) 337 port = default_ssh_port(); 338 snprintf(strport, sizeof strport, "%u", port); 339 memset(&hints, 0, sizeof(hints)); 340 hints.ai_family = options.address_family == -1 ? 341 AF_UNSPEC : options.address_family; 342 hints.ai_socktype = SOCK_STREAM; 343 hints.ai_flags = AI_NUMERICHOST|AI_NUMERICSERV; 344 if ((gaierr = getaddrinfo(name, strport, &hints, &res)) != 0) { 345 debug2_f("could not resolve name %.100s as address: %s", 346 name, ssh_gai_strerror(gaierr)); 347 return NULL; 348 } 349 if (res == NULL) { 350 debug_f("getaddrinfo %.100s returned no addresses", name); 351 return NULL; 352 } 353 if (res->ai_next != NULL) { 354 debug_f("getaddrinfo %.100s returned multiple addresses", name); 355 goto fail; 356 } 357 if ((gaierr = getnameinfo(res->ai_addr, res->ai_addrlen, 358 addr, sizeof(addr), NULL, 0, NI_NUMERICHOST)) != 0) { 359 debug_f("Could not format address for name %.100s: %s", 360 name, ssh_gai_strerror(gaierr)); 361 goto fail; 362 } 363 if (strlcpy(caddr, addr, clen) >= clen) { 364 error_f("host \"%s\" addr \"%s\" too long (max %lu)", 365 name, addr, (u_long)clen); 366 if (clen > 0) 367 *caddr = '\0'; 368 fail: 369 freeaddrinfo(res); 370 return NULL; 371 } 372 return res; 373 } 374 375 /* 376 * Check whether the cname is a permitted replacement for the hostname 377 * and perform the replacement if it is. 378 * NB. this function must operate with a options having undefined members. 379 */ 380 static int 381 check_follow_cname(int direct, char **namep, const char *cname) 382 { 383 int i; 384 struct allowed_cname *rule; 385 386 if (*cname == '\0' || !config_has_permitted_cnames(&options) || 387 strcmp(*namep, cname) == 0) 388 return 0; 389 if (options.canonicalize_hostname == SSH_CANONICALISE_NO) 390 return 0; 391 /* 392 * Don't attempt to canonicalize names that will be interpreted by 393 * a proxy or jump host unless the user specifically requests so. 394 */ 395 if (!direct && 396 options.canonicalize_hostname != SSH_CANONICALISE_ALWAYS) 397 return 0; 398 debug3_f("check \"%s\" CNAME \"%s\"", *namep, cname); 399 for (i = 0; i < options.num_permitted_cnames; i++) { 400 rule = options.permitted_cnames + i; 401 if (match_pattern_list(*namep, rule->source_list, 1) != 1 || 402 match_pattern_list(cname, rule->target_list, 1) != 1) 403 continue; 404 verbose("Canonicalized DNS aliased hostname " 405 "\"%s\" => \"%s\"", *namep, cname); 406 free(*namep); 407 *namep = xstrdup(cname); 408 return 1; 409 } 410 return 0; 411 } 412 413 /* 414 * Attempt to resolve the supplied hostname after applying the user's 415 * canonicalization rules. Returns the address list for the host or NULL 416 * if no name was found after canonicalization. 417 * NB. this function must operate with a options having undefined members. 418 */ 419 static struct addrinfo * 420 resolve_canonicalize(char **hostp, int port) 421 { 422 int i, direct, ndots; 423 char *cp, *fullhost, newname[NI_MAXHOST]; 424 struct addrinfo *addrs; 425 426 /* 427 * Attempt to canonicalise addresses, regardless of 428 * whether hostname canonicalisation was requested 429 */ 430 if ((addrs = resolve_addr(*hostp, port, 431 newname, sizeof(newname))) != NULL) { 432 debug2_f("hostname %.100s is address", *hostp); 433 if (strcasecmp(*hostp, newname) != 0) { 434 debug2_f("canonicalised address \"%s\" => \"%s\"", 435 *hostp, newname); 436 free(*hostp); 437 *hostp = xstrdup(newname); 438 } 439 return addrs; 440 } 441 442 /* 443 * If this looks like an address but didn't parse as one, it might 444 * be an address with an invalid interface scope. Skip further 445 * attempts at canonicalisation. 446 */ 447 if (is_addr_fast(*hostp)) { 448 debug_f("hostname %.100s is an unrecognised address", *hostp); 449 return NULL; 450 } 451 452 if (options.canonicalize_hostname == SSH_CANONICALISE_NO) 453 return NULL; 454 455 /* 456 * Don't attempt to canonicalize names that will be interpreted by 457 * a proxy unless the user specifically requests so. 458 */ 459 direct = option_clear_or_none(options.proxy_command) && 460 options.jump_host == NULL; 461 if (!direct && 462 options.canonicalize_hostname != SSH_CANONICALISE_ALWAYS) 463 return NULL; 464 465 /* If domain name is anchored, then resolve it now */ 466 if ((*hostp)[strlen(*hostp) - 1] == '.') { 467 debug3_f("name is fully qualified"); 468 fullhost = xstrdup(*hostp); 469 if ((addrs = resolve_host(fullhost, port, 0, 470 newname, sizeof(newname))) != NULL) 471 goto found; 472 free(fullhost); 473 goto notfound; 474 } 475 476 /* Don't apply canonicalization to sufficiently-qualified hostnames */ 477 ndots = 0; 478 for (cp = *hostp; *cp != '\0'; cp++) { 479 if (*cp == '.') 480 ndots++; 481 } 482 if (ndots > options.canonicalize_max_dots) { 483 debug3_f("not canonicalizing hostname \"%s\" (max dots %d)", 484 *hostp, options.canonicalize_max_dots); 485 return NULL; 486 } 487 /* Attempt each supplied suffix */ 488 for (i = 0; i < options.num_canonical_domains; i++) { 489 if (strcasecmp(options.canonical_domains[i], "none") == 0) 490 break; 491 xasprintf(&fullhost, "%s.%s.", *hostp, 492 options.canonical_domains[i]); 493 debug3_f("attempting \"%s\" => \"%s\"", *hostp, fullhost); 494 if ((addrs = resolve_host(fullhost, port, 0, 495 newname, sizeof(newname))) == NULL) { 496 free(fullhost); 497 continue; 498 } 499 found: 500 /* Remove trailing '.' */ 501 fullhost[strlen(fullhost) - 1] = '\0'; 502 /* Follow CNAME if requested */ 503 if (!check_follow_cname(direct, &fullhost, newname)) { 504 debug("Canonicalized hostname \"%s\" => \"%s\"", 505 *hostp, fullhost); 506 } 507 free(*hostp); 508 *hostp = fullhost; 509 return addrs; 510 } 511 notfound: 512 if (!options.canonicalize_fallback_local) 513 fatal("%s: Could not resolve host \"%s\"", __progname, *hostp); 514 debug2_f("host %s not found in any suffix", *hostp); 515 return NULL; 516 } 517 518 /* 519 * Check the result of hostkey loading, ignoring some errors and 520 * fatal()ing for others. 521 */ 522 static void 523 check_load(int r, const char *path, const char *message) 524 { 525 switch (r) { 526 case 0: 527 break; 528 case SSH_ERR_INTERNAL_ERROR: 529 case SSH_ERR_ALLOC_FAIL: 530 fatal_r(r, "load %s \"%s\"", message, path); 531 case SSH_ERR_SYSTEM_ERROR: 532 /* Ignore missing files */ 533 if (errno == ENOENT) 534 break; 535 /* FALLTHROUGH */ 536 default: 537 error_r(r, "load %s \"%s\"", message, path); 538 break; 539 } 540 } 541 542 /* 543 * Read per-user configuration file. Ignore the system wide config 544 * file if the user specifies a config file on the command line. 545 */ 546 static void 547 process_config_files(const char *host_name, struct passwd *pw, int final_pass, 548 int *want_final_pass) 549 { 550 char buf[PATH_MAX]; 551 int r; 552 553 if (config != NULL) { 554 if (strcasecmp(config, "none") != 0 && 555 !read_config_file(config, pw, host, host_name, &options, 556 SSHCONF_USERCONF | (final_pass ? SSHCONF_FINAL : 0), 557 want_final_pass)) 558 fatal("Can't open user config file %.100s: " 559 "%.100s", config, strerror(errno)); 560 } else { 561 r = snprintf(buf, sizeof buf, "%s/%s", pw->pw_dir, 562 _PATH_SSH_USER_CONFFILE); 563 if (r > 0 && (size_t)r < sizeof(buf)) 564 (void)read_config_file(buf, pw, host, host_name, 565 &options, SSHCONF_CHECKPERM | SSHCONF_USERCONF | 566 (final_pass ? SSHCONF_FINAL : 0), want_final_pass); 567 568 /* Read systemwide configuration file after user config. */ 569 (void)read_config_file(_PATH_HOST_CONFIG_FILE, pw, 570 host, host_name, &options, 571 final_pass ? SSHCONF_FINAL : 0, want_final_pass); 572 } 573 } 574 575 /* Rewrite the port number in an addrinfo list of addresses */ 576 static void 577 set_addrinfo_port(struct addrinfo *addrs, int port) 578 { 579 struct addrinfo *addr; 580 581 for (addr = addrs; addr != NULL; addr = addr->ai_next) { 582 switch (addr->ai_family) { 583 case AF_INET: 584 ((struct sockaddr_in *)addr->ai_addr)-> 585 sin_port = htons(port); 586 break; 587 case AF_INET6: 588 ((struct sockaddr_in6 *)addr->ai_addr)-> 589 sin6_port = htons(port); 590 break; 591 } 592 } 593 } 594 595 static void 596 ssh_conn_info_free(struct ssh_conn_info *cinfo) 597 { 598 if (cinfo == NULL) 599 return; 600 free(cinfo->conn_hash_hex); 601 free(cinfo->shorthost); 602 free(cinfo->uidstr); 603 free(cinfo->keyalias); 604 free(cinfo->thishost); 605 free(cinfo->host_arg); 606 free(cinfo->portstr); 607 free(cinfo->remhost); 608 free(cinfo->remuser); 609 free(cinfo->homedir); 610 free(cinfo->locuser); 611 free(cinfo); 612 } 613 614 /* 615 * Main program for the ssh client. 616 */ 617 int 618 main(int ac, char **av) 619 { 620 struct ssh *ssh = NULL; 621 int i, r, opt, exit_status, use_syslog, direct, timeout_ms; 622 int was_addr, config_test = 0, opt_terminated = 0, want_final_pass = 0; 623 char *p, *cp, *line, *argv0, *logfile, *host_arg; 624 char cname[NI_MAXHOST], thishost[NI_MAXHOST]; 625 struct stat st; 626 struct passwd *pw; 627 extern int optind, optreset; 628 extern char *optarg; 629 struct Forward fwd; 630 struct addrinfo *addrs = NULL; 631 size_t n, len; 632 u_int j; 633 struct ssh_conn_info *cinfo = NULL; 634 635 /* Ensure that fds 0, 1 and 2 are open or directed to /dev/null */ 636 sanitise_stdfd(); 637 638 /* 639 * Discard other fds that are hanging around. These can cause problem 640 * with backgrounded ssh processes started by ControlPersist. 641 */ 642 closefrom(STDERR_FILENO + 1); 643 644 __progname = ssh_get_progname(av[0]); 645 646 #ifndef HAVE_SETPROCTITLE 647 /* Prepare for later setproctitle emulation */ 648 /* Save argv so it isn't clobbered by setproctitle() emulation */ 649 saved_av = xcalloc(ac + 1, sizeof(*saved_av)); 650 for (i = 0; i < ac; i++) 651 saved_av[i] = xstrdup(av[i]); 652 saved_av[i] = NULL; 653 compat_init_setproctitle(ac, av); 654 av = saved_av; 655 #endif 656 657 seed_rng(); 658 659 /* Get user data. */ 660 pw = getpwuid(getuid()); 661 if (!pw) { 662 logit("No user exists for uid %lu", (u_long)getuid()); 663 exit(255); 664 } 665 /* Take a copy of the returned structure. */ 666 pw = pwcopy(pw); 667 668 /* 669 * Set our umask to something reasonable, as some files are created 670 * with the default umask. This will make them world-readable but 671 * writable only by the owner, which is ok for all files for which we 672 * don't set the modes explicitly. 673 */ 674 umask(022); 675 676 msetlocale(); 677 678 /* 679 * Initialize option structure to indicate that no values have been 680 * set. 681 */ 682 initialize_options(&options); 683 684 /* 685 * Prepare main ssh transport/connection structures 686 */ 687 if ((ssh = ssh_alloc_session_state()) == NULL) 688 fatal("Couldn't allocate session state"); 689 channel_init_channels(ssh); 690 691 /* Parse command-line arguments. */ 692 host = NULL; 693 use_syslog = 0; 694 logfile = NULL; 695 argv0 = av[0]; 696 697 again: 698 while ((opt = getopt(ac, av, "1246ab:c:e:fgi:kl:m:no:p:qstvx" 699 "AB:CD:E:F:GI:J:KL:MNO:PQ:R:S:TVw:W:XYy")) != -1) { /* HUZdhjruz */ 700 switch (opt) { 701 case '1': 702 fatal("SSH protocol v.1 is no longer supported"); 703 break; 704 case '2': 705 /* Ignored */ 706 break; 707 case '4': 708 options.address_family = AF_INET; 709 break; 710 case '6': 711 options.address_family = AF_INET6; 712 break; 713 case 'n': 714 options.stdin_null = 1; 715 break; 716 case 'f': 717 options.fork_after_authentication = 1; 718 options.stdin_null = 1; 719 break; 720 case 'x': 721 options.forward_x11 = 0; 722 break; 723 case 'X': 724 options.forward_x11 = 1; 725 break; 726 case 'y': 727 use_syslog = 1; 728 break; 729 case 'E': 730 logfile = optarg; 731 break; 732 case 'G': 733 config_test = 1; 734 break; 735 case 'Y': 736 options.forward_x11 = 1; 737 options.forward_x11_trusted = 1; 738 break; 739 case 'g': 740 options.fwd_opts.gateway_ports = 1; 741 break; 742 case 'O': 743 if (options.stdio_forward_host != NULL) 744 fatal("Cannot specify multiplexing " 745 "command with -W"); 746 else if (muxclient_command != 0) 747 fatal("Multiplexing command already specified"); 748 if (strcmp(optarg, "check") == 0) 749 muxclient_command = SSHMUX_COMMAND_ALIVE_CHECK; 750 else if (strcmp(optarg, "forward") == 0) 751 muxclient_command = SSHMUX_COMMAND_FORWARD; 752 else if (strcmp(optarg, "exit") == 0) 753 muxclient_command = SSHMUX_COMMAND_TERMINATE; 754 else if (strcmp(optarg, "stop") == 0) 755 muxclient_command = SSHMUX_COMMAND_STOP; 756 else if (strcmp(optarg, "cancel") == 0) 757 muxclient_command = SSHMUX_COMMAND_CANCEL_FWD; 758 else if (strcmp(optarg, "proxy") == 0) 759 muxclient_command = SSHMUX_COMMAND_PROXY; 760 else 761 fatal("Invalid multiplex command."); 762 break; 763 case 'P': /* deprecated */ 764 break; 765 case 'Q': 766 cp = NULL; 767 if (strcmp(optarg, "cipher") == 0 || 768 strcasecmp(optarg, "Ciphers") == 0) 769 cp = cipher_alg_list('\n', 0); 770 else if (strcmp(optarg, "cipher-auth") == 0) 771 cp = cipher_alg_list('\n', 1); 772 else if (strcmp(optarg, "mac") == 0 || 773 strcasecmp(optarg, "MACs") == 0) 774 cp = mac_alg_list('\n'); 775 else if (strcmp(optarg, "kex") == 0 || 776 strcasecmp(optarg, "KexAlgorithms") == 0) 777 cp = kex_alg_list('\n'); 778 else if (strcmp(optarg, "key") == 0) 779 cp = sshkey_alg_list(0, 0, 0, '\n'); 780 else if (strcmp(optarg, "key-cert") == 0) 781 cp = sshkey_alg_list(1, 0, 0, '\n'); 782 else if (strcmp(optarg, "key-plain") == 0) 783 cp = sshkey_alg_list(0, 1, 0, '\n'); 784 else if (strcmp(optarg, "key-sig") == 0 || 785 strcasecmp(optarg, "PubkeyAcceptedKeyTypes") == 0 || /* deprecated name */ 786 strcasecmp(optarg, "PubkeyAcceptedAlgorithms") == 0 || 787 strcasecmp(optarg, "HostKeyAlgorithms") == 0 || 788 strcasecmp(optarg, "HostbasedKeyTypes") == 0 || /* deprecated name */ 789 strcasecmp(optarg, "HostbasedAcceptedKeyTypes") == 0 || /* deprecated name */ 790 strcasecmp(optarg, "HostbasedAcceptedAlgorithms") == 0) 791 cp = sshkey_alg_list(0, 0, 1, '\n'); 792 else if (strcmp(optarg, "sig") == 0) 793 cp = sshkey_alg_list(0, 1, 1, '\n'); 794 else if (strcmp(optarg, "protocol-version") == 0) 795 cp = xstrdup("2"); 796 else if (strcmp(optarg, "compression") == 0) { 797 cp = xstrdup(compression_alg_list(0)); 798 len = strlen(cp); 799 for (n = 0; n < len; n++) 800 if (cp[n] == ',') 801 cp[n] = '\n'; 802 } else if (strcmp(optarg, "help") == 0) { 803 cp = xstrdup( 804 "cipher\ncipher-auth\ncompression\nkex\n" 805 "key\nkey-cert\nkey-plain\nkey-sig\nmac\n" 806 "protocol-version\nsig"); 807 } 808 if (cp == NULL) 809 fatal("Unsupported query \"%s\"", optarg); 810 printf("%s\n", cp); 811 free(cp); 812 exit(0); 813 break; 814 case 'a': 815 options.forward_agent = 0; 816 break; 817 case 'A': 818 options.forward_agent = 1; 819 break; 820 case 'k': 821 options.gss_deleg_creds = 0; 822 break; 823 case 'K': 824 options.gss_authentication = 1; 825 options.gss_deleg_creds = 1; 826 break; 827 case 'i': 828 p = tilde_expand_filename(optarg, getuid()); 829 if (stat(p, &st) == -1) 830 fprintf(stderr, "Warning: Identity file %s " 831 "not accessible: %s.\n", p, 832 strerror(errno)); 833 else 834 add_identity_file(&options, NULL, p, 1); 835 free(p); 836 break; 837 case 'I': 838 #ifdef ENABLE_PKCS11 839 free(options.pkcs11_provider); 840 options.pkcs11_provider = xstrdup(optarg); 841 #else 842 fprintf(stderr, "no support for PKCS#11.\n"); 843 #endif 844 break; 845 case 'J': 846 if (options.jump_host != NULL) { 847 fatal("Only a single -J option is permitted " 848 "(use commas to separate multiple " 849 "jump hops)"); 850 } 851 if (options.proxy_command != NULL) 852 fatal("Cannot specify -J with ProxyCommand"); 853 if (parse_jump(optarg, &options, 1) == -1) 854 fatal("Invalid -J argument"); 855 options.proxy_command = xstrdup("none"); 856 break; 857 case 't': 858 if (options.request_tty == REQUEST_TTY_YES) 859 options.request_tty = REQUEST_TTY_FORCE; 860 else 861 options.request_tty = REQUEST_TTY_YES; 862 break; 863 case 'v': 864 if (debug_flag == 0) { 865 debug_flag = 1; 866 options.log_level = SYSLOG_LEVEL_DEBUG1; 867 } else { 868 if (options.log_level < SYSLOG_LEVEL_DEBUG3) { 869 debug_flag++; 870 options.log_level++; 871 } 872 } 873 break; 874 case 'V': 875 if (options.version_addendum != NULL && 876 *options.version_addendum != '\0') 877 fprintf(stderr, "%s %s, %s\n", SSH_RELEASE, 878 options.version_addendum, 879 SSH_OPENSSL_VERSION); 880 else 881 fprintf(stderr, "%s, %s\n", SSH_RELEASE, 882 SSH_OPENSSL_VERSION); 883 if (opt == 'V') 884 exit(0); 885 break; 886 case 'w': 887 if (options.tun_open == -1) 888 options.tun_open = SSH_TUNMODE_DEFAULT; 889 options.tun_local = a2tun(optarg, &options.tun_remote); 890 if (options.tun_local == SSH_TUNID_ERR) { 891 fprintf(stderr, 892 "Bad tun device '%s'\n", optarg); 893 exit(255); 894 } 895 break; 896 case 'W': 897 if (options.stdio_forward_host != NULL) 898 fatal("stdio forward already specified"); 899 if (muxclient_command != 0) 900 fatal("Cannot specify stdio forward with -O"); 901 if (parse_forward(&fwd, optarg, 1, 0)) { 902 options.stdio_forward_host = fwd.listen_host; 903 options.stdio_forward_port = fwd.listen_port; 904 free(fwd.connect_host); 905 } else { 906 fprintf(stderr, 907 "Bad stdio forwarding specification '%s'\n", 908 optarg); 909 exit(255); 910 } 911 options.request_tty = REQUEST_TTY_NO; 912 options.session_type = SESSION_TYPE_NONE; 913 break; 914 case 'q': 915 options.log_level = SYSLOG_LEVEL_QUIET; 916 break; 917 case 'e': 918 if (optarg[0] == '^' && optarg[2] == 0 && 919 (u_char) optarg[1] >= 64 && 920 (u_char) optarg[1] < 128) 921 options.escape_char = (u_char) optarg[1] & 31; 922 else if (strlen(optarg) == 1) 923 options.escape_char = (u_char) optarg[0]; 924 else if (strcmp(optarg, "none") == 0) 925 options.escape_char = SSH_ESCAPECHAR_NONE; 926 else { 927 fprintf(stderr, "Bad escape character '%s'.\n", 928 optarg); 929 exit(255); 930 } 931 break; 932 case 'c': 933 if (!ciphers_valid(*optarg == '+' || *optarg == '^' ? 934 optarg + 1 : optarg)) { 935 fprintf(stderr, "Unknown cipher type '%s'\n", 936 optarg); 937 exit(255); 938 } 939 free(options.ciphers); 940 options.ciphers = xstrdup(optarg); 941 break; 942 case 'm': 943 if (mac_valid(optarg)) { 944 free(options.macs); 945 options.macs = xstrdup(optarg); 946 } else { 947 fprintf(stderr, "Unknown mac type '%s'\n", 948 optarg); 949 exit(255); 950 } 951 break; 952 case 'M': 953 if (options.control_master == SSHCTL_MASTER_YES) 954 options.control_master = SSHCTL_MASTER_ASK; 955 else 956 options.control_master = SSHCTL_MASTER_YES; 957 break; 958 case 'p': 959 if (options.port == -1) { 960 options.port = a2port(optarg); 961 if (options.port <= 0) { 962 fprintf(stderr, "Bad port '%s'\n", 963 optarg); 964 exit(255); 965 } 966 } 967 break; 968 case 'l': 969 if (options.user == NULL) 970 options.user = optarg; 971 break; 972 973 case 'L': 974 if (parse_forward(&fwd, optarg, 0, 0)) 975 add_local_forward(&options, &fwd); 976 else { 977 fprintf(stderr, 978 "Bad local forwarding specification '%s'\n", 979 optarg); 980 exit(255); 981 } 982 break; 983 984 case 'R': 985 if (parse_forward(&fwd, optarg, 0, 1) || 986 parse_forward(&fwd, optarg, 1, 1)) { 987 add_remote_forward(&options, &fwd); 988 } else { 989 fprintf(stderr, 990 "Bad remote forwarding specification " 991 "'%s'\n", optarg); 992 exit(255); 993 } 994 break; 995 996 case 'D': 997 if (parse_forward(&fwd, optarg, 1, 0)) { 998 add_local_forward(&options, &fwd); 999 } else { 1000 fprintf(stderr, 1001 "Bad dynamic forwarding specification " 1002 "'%s'\n", optarg); 1003 exit(255); 1004 } 1005 break; 1006 1007 case 'C': 1008 #ifdef WITH_ZLIB 1009 options.compression = 1; 1010 #else 1011 error("Compression not supported, disabling."); 1012 #endif 1013 break; 1014 case 'N': 1015 if (options.session_type != -1 && 1016 options.session_type != SESSION_TYPE_NONE) 1017 fatal("Cannot specify -N with -s/SessionType"); 1018 options.session_type = SESSION_TYPE_NONE; 1019 options.request_tty = REQUEST_TTY_NO; 1020 break; 1021 case 'T': 1022 options.request_tty = REQUEST_TTY_NO; 1023 break; 1024 case 'o': 1025 line = xstrdup(optarg); 1026 if (process_config_line(&options, pw, 1027 host ? host : "", host ? host : "", line, 1028 "command-line", 0, NULL, SSHCONF_USERCONF) != 0) 1029 exit(255); 1030 free(line); 1031 break; 1032 case 's': 1033 if (options.session_type != -1 && 1034 options.session_type != SESSION_TYPE_SUBSYSTEM) 1035 fatal("Cannot specify -s with -N/SessionType"); 1036 options.session_type = SESSION_TYPE_SUBSYSTEM; 1037 break; 1038 case 'S': 1039 free(options.control_path); 1040 options.control_path = xstrdup(optarg); 1041 break; 1042 case 'b': 1043 options.bind_address = optarg; 1044 break; 1045 case 'B': 1046 options.bind_interface = optarg; 1047 break; 1048 case 'F': 1049 config = optarg; 1050 break; 1051 default: 1052 usage(); 1053 } 1054 } 1055 1056 if (optind > 1 && strcmp(av[optind - 1], "--") == 0) 1057 opt_terminated = 1; 1058 1059 ac -= optind; 1060 av += optind; 1061 1062 if (ac > 0 && !host) { 1063 int tport; 1064 char *tuser; 1065 switch (parse_ssh_uri(*av, &tuser, &host, &tport)) { 1066 case -1: 1067 usage(); 1068 break; 1069 case 0: 1070 if (options.user == NULL) { 1071 options.user = tuser; 1072 tuser = NULL; 1073 } 1074 free(tuser); 1075 if (options.port == -1 && tport != -1) 1076 options.port = tport; 1077 break; 1078 default: 1079 p = xstrdup(*av); 1080 cp = strrchr(p, '@'); 1081 if (cp != NULL) { 1082 if (cp == p) 1083 usage(); 1084 if (options.user == NULL) { 1085 options.user = p; 1086 p = NULL; 1087 } 1088 *cp++ = '\0'; 1089 host = xstrdup(cp); 1090 free(p); 1091 } else 1092 host = p; 1093 break; 1094 } 1095 if (ac > 1 && !opt_terminated) { 1096 optind = optreset = 1; 1097 goto again; 1098 } 1099 ac--, av++; 1100 } 1101 1102 /* Check that we got a host name. */ 1103 if (!host) 1104 usage(); 1105 1106 host_arg = xstrdup(host); 1107 1108 /* Initialize the command to execute on remote host. */ 1109 if ((command = sshbuf_new()) == NULL) 1110 fatal("sshbuf_new failed"); 1111 1112 /* 1113 * Save the command to execute on the remote host in a buffer. There 1114 * is no limit on the length of the command, except by the maximum 1115 * packet size. Also sets the tty flag if there is no command. 1116 */ 1117 if (!ac) { 1118 /* No command specified - execute shell on a tty. */ 1119 if (options.session_type == SESSION_TYPE_SUBSYSTEM) { 1120 fprintf(stderr, 1121 "You must specify a subsystem to invoke.\n"); 1122 usage(); 1123 } 1124 } else { 1125 /* A command has been specified. Store it into the buffer. */ 1126 for (i = 0; i < ac; i++) { 1127 if ((r = sshbuf_putf(command, "%s%s", 1128 i ? " " : "", av[i])) != 0) 1129 fatal_fr(r, "buffer error"); 1130 } 1131 } 1132 1133 /* 1134 * Initialize "log" output. Since we are the client all output 1135 * goes to stderr unless otherwise specified by -y or -E. 1136 */ 1137 if (use_syslog && logfile != NULL) 1138 fatal("Can't specify both -y and -E"); 1139 if (logfile != NULL) 1140 log_redirect_stderr_to(logfile); 1141 log_init(argv0, 1142 options.log_level == SYSLOG_LEVEL_NOT_SET ? 1143 SYSLOG_LEVEL_INFO : options.log_level, 1144 options.log_facility == SYSLOG_FACILITY_NOT_SET ? 1145 SYSLOG_FACILITY_USER : options.log_facility, 1146 !use_syslog); 1147 1148 if (debug_flag) 1149 /* version_addendum is always NULL at this point */ 1150 logit("%s, %s", SSH_RELEASE, SSH_OPENSSL_VERSION); 1151 1152 /* Parse the configuration files */ 1153 process_config_files(host_arg, pw, 0, &want_final_pass); 1154 if (want_final_pass) 1155 debug("configuration requests final Match pass"); 1156 1157 /* Hostname canonicalisation needs a few options filled. */ 1158 fill_default_options_for_canonicalization(&options); 1159 1160 /* If the user has replaced the hostname then take it into use now */ 1161 if (options.hostname != NULL) { 1162 /* NB. Please keep in sync with readconf.c:match_cfg_line() */ 1163 cp = percent_expand(options.hostname, 1164 "h", host, (char *)NULL); 1165 free(host); 1166 host = cp; 1167 free(options.hostname); 1168 options.hostname = xstrdup(host); 1169 } 1170 1171 /* Don't lowercase addresses, they will be explicitly canonicalised */ 1172 if ((was_addr = is_addr(host)) == 0) 1173 lowercase(host); 1174 1175 /* 1176 * Try to canonicalize if requested by configuration or the 1177 * hostname is an address. 1178 */ 1179 if (options.canonicalize_hostname != SSH_CANONICALISE_NO || was_addr) 1180 addrs = resolve_canonicalize(&host, options.port); 1181 1182 /* 1183 * If CanonicalizePermittedCNAMEs have been specified but 1184 * other canonicalization did not happen (by not being requested 1185 * or by failing with fallback) then the hostname may still be changed 1186 * as a result of CNAME following. 1187 * 1188 * Try to resolve the bare hostname name using the system resolver's 1189 * usual search rules and then apply the CNAME follow rules. 1190 * 1191 * Skip the lookup if a ProxyCommand is being used unless the user 1192 * has specifically requested canonicalisation for this case via 1193 * CanonicalizeHostname=always 1194 */ 1195 direct = option_clear_or_none(options.proxy_command) && 1196 options.jump_host == NULL; 1197 if (addrs == NULL && config_has_permitted_cnames(&options) && (direct || 1198 options.canonicalize_hostname == SSH_CANONICALISE_ALWAYS)) { 1199 if ((addrs = resolve_host(host, options.port, 1200 direct, cname, sizeof(cname))) == NULL) { 1201 /* Don't fatal proxied host names not in the DNS */ 1202 if (direct) 1203 cleanup_exit(255); /* logged in resolve_host */ 1204 } else 1205 check_follow_cname(direct, &host, cname); 1206 } 1207 1208 /* 1209 * If canonicalisation is enabled then re-parse the configuration 1210 * files as new stanzas may match. 1211 */ 1212 if (options.canonicalize_hostname != 0 && !want_final_pass) { 1213 debug("hostname canonicalisation enabled, " 1214 "will re-parse configuration"); 1215 want_final_pass = 1; 1216 } 1217 1218 if (want_final_pass) { 1219 debug("re-parsing configuration"); 1220 free(options.hostname); 1221 options.hostname = xstrdup(host); 1222 process_config_files(host_arg, pw, 1, NULL); 1223 /* 1224 * Address resolution happens early with canonicalisation 1225 * enabled and the port number may have changed since, so 1226 * reset it in address list 1227 */ 1228 if (addrs != NULL && options.port > 0) 1229 set_addrinfo_port(addrs, options.port); 1230 } 1231 1232 /* Fill configuration defaults. */ 1233 if (fill_default_options(&options) != 0) 1234 cleanup_exit(255); 1235 1236 if (options.user == NULL) 1237 options.user = xstrdup(pw->pw_name); 1238 1239 /* 1240 * If ProxyJump option specified, then construct a ProxyCommand now. 1241 */ 1242 if (options.jump_host != NULL) { 1243 char port_s[8]; 1244 const char *jumpuser = options.jump_user, *sshbin = argv0; 1245 int port = options.port, jumpport = options.jump_port; 1246 1247 if (port <= 0) 1248 port = default_ssh_port(); 1249 if (jumpport <= 0) 1250 jumpport = default_ssh_port(); 1251 if (jumpuser == NULL) 1252 jumpuser = options.user; 1253 if (strcmp(options.jump_host, host) == 0 && port == jumpport && 1254 strcmp(options.user, jumpuser) == 0) 1255 fatal("jumphost loop via %s", options.jump_host); 1256 1257 /* 1258 * Try to use SSH indicated by argv[0], but fall back to 1259 * "ssh" if it appears unavailable. 1260 */ 1261 if (strchr(argv0, '/') != NULL && access(argv0, X_OK) != 0) 1262 sshbin = "ssh"; 1263 1264 /* Consistency check */ 1265 if (options.proxy_command != NULL) 1266 fatal("inconsistent options: ProxyCommand+ProxyJump"); 1267 /* Never use FD passing for ProxyJump */ 1268 options.proxy_use_fdpass = 0; 1269 snprintf(port_s, sizeof(port_s), "%d", options.jump_port); 1270 xasprintf(&options.proxy_command, 1271 "%s%s%s%s%s%s%s%s%s%s%.*s -W '[%%h]:%%p' %s", 1272 sshbin, 1273 /* Optional "-l user" argument if jump_user set */ 1274 options.jump_user == NULL ? "" : " -l ", 1275 options.jump_user == NULL ? "" : options.jump_user, 1276 /* Optional "-p port" argument if jump_port set */ 1277 options.jump_port <= 0 ? "" : " -p ", 1278 options.jump_port <= 0 ? "" : port_s, 1279 /* Optional additional jump hosts ",..." */ 1280 options.jump_extra == NULL ? "" : " -J ", 1281 options.jump_extra == NULL ? "" : options.jump_extra, 1282 /* Optional "-F" argument if -F specified */ 1283 config == NULL ? "" : " -F ", 1284 config == NULL ? "" : config, 1285 /* Optional "-v" arguments if -v set */ 1286 debug_flag ? " -" : "", 1287 debug_flag, "vvv", 1288 /* Mandatory hostname */ 1289 options.jump_host); 1290 debug("Setting implicit ProxyCommand from ProxyJump: %s", 1291 options.proxy_command); 1292 } 1293 1294 if (options.port == 0) 1295 options.port = default_ssh_port(); 1296 channel_set_af(ssh, options.address_family); 1297 1298 /* Tidy and check options */ 1299 if (options.host_key_alias != NULL) 1300 lowercase(options.host_key_alias); 1301 if (options.proxy_command != NULL && 1302 strcmp(options.proxy_command, "-") == 0 && 1303 options.proxy_use_fdpass) 1304 fatal("ProxyCommand=- and ProxyUseFDPass are incompatible"); 1305 if (options.update_hostkeys == SSH_UPDATE_HOSTKEYS_ASK) { 1306 if (options.control_persist && options.control_path != NULL) { 1307 debug("UpdateHostKeys=ask is incompatible with " 1308 "ControlPersist; disabling"); 1309 options.update_hostkeys = 0; 1310 } else if (sshbuf_len(command) != 0 || 1311 options.remote_command != NULL || 1312 options.request_tty == REQUEST_TTY_NO) { 1313 debug("UpdateHostKeys=ask is incompatible with " 1314 "remote command execution; disabling"); 1315 options.update_hostkeys = 0; 1316 } else if (options.log_level < SYSLOG_LEVEL_INFO) { 1317 /* no point logging anything; user won't see it */ 1318 options.update_hostkeys = 0; 1319 } 1320 } 1321 if (options.connection_attempts <= 0) 1322 fatal("Invalid number of ConnectionAttempts"); 1323 1324 if (sshbuf_len(command) != 0 && options.remote_command != NULL) 1325 fatal("Cannot execute command-line and remote command."); 1326 1327 /* Cannot fork to background if no command. */ 1328 if (options.fork_after_authentication && sshbuf_len(command) == 0 && 1329 options.remote_command == NULL && 1330 options.session_type != SESSION_TYPE_NONE) 1331 fatal("Cannot fork into background without a command " 1332 "to execute."); 1333 1334 /* reinit */ 1335 log_init(argv0, options.log_level, options.log_facility, !use_syslog); 1336 for (j = 0; j < options.num_log_verbose; j++) { 1337 if (strcasecmp(options.log_verbose[j], "none") == 0) 1338 break; 1339 log_verbose_add(options.log_verbose[j]); 1340 } 1341 1342 if (options.request_tty == REQUEST_TTY_YES || 1343 options.request_tty == REQUEST_TTY_FORCE) 1344 tty_flag = 1; 1345 1346 /* Allocate a tty by default if no command specified. */ 1347 if (sshbuf_len(command) == 0 && options.remote_command == NULL) 1348 tty_flag = options.request_tty != REQUEST_TTY_NO; 1349 1350 /* Force no tty */ 1351 if (options.request_tty == REQUEST_TTY_NO || 1352 (muxclient_command && muxclient_command != SSHMUX_COMMAND_PROXY) || 1353 options.session_type == SESSION_TYPE_NONE) 1354 tty_flag = 0; 1355 /* Do not allocate a tty if stdin is not a tty. */ 1356 if ((!isatty(fileno(stdin)) || options.stdin_null) && 1357 options.request_tty != REQUEST_TTY_FORCE) { 1358 if (tty_flag) 1359 logit("Pseudo-terminal will not be allocated because " 1360 "stdin is not a terminal."); 1361 tty_flag = 0; 1362 } 1363 1364 /* Set up strings used to percent_expand() arguments */ 1365 cinfo = xcalloc(1, sizeof(*cinfo)); 1366 if (gethostname(thishost, sizeof(thishost)) == -1) 1367 fatal("gethostname: %s", strerror(errno)); 1368 cinfo->thishost = xstrdup(thishost); 1369 thishost[strcspn(thishost, ".")] = '\0'; 1370 cinfo->shorthost = xstrdup(thishost); 1371 xasprintf(&cinfo->portstr, "%d", options.port); 1372 xasprintf(&cinfo->uidstr, "%llu", 1373 (unsigned long long)pw->pw_uid); 1374 cinfo->keyalias = xstrdup(options.host_key_alias ? 1375 options.host_key_alias : host_arg); 1376 cinfo->conn_hash_hex = ssh_connection_hash(cinfo->thishost, host, 1377 cinfo->portstr, options.user); 1378 cinfo->host_arg = xstrdup(host_arg); 1379 cinfo->remhost = xstrdup(host); 1380 cinfo->remuser = xstrdup(options.user); 1381 cinfo->homedir = xstrdup(pw->pw_dir); 1382 cinfo->locuser = xstrdup(pw->pw_name); 1383 1384 /* Find canonic host name. */ 1385 if (strchr(host, '.') == 0) { 1386 struct addrinfo hints; 1387 struct addrinfo *ai = NULL; 1388 int errgai; 1389 memset(&hints, 0, sizeof(hints)); 1390 hints.ai_family = options.address_family; 1391 hints.ai_flags = AI_CANONNAME; 1392 hints.ai_socktype = SOCK_STREAM; 1393 errgai = getaddrinfo(host, NULL, &hints, &ai); 1394 if (errgai == 0) { 1395 if (ai->ai_canonname != NULL) 1396 host = xstrdup(ai->ai_canonname); 1397 freeaddrinfo(ai); 1398 } 1399 } 1400 1401 /* 1402 * Expand tokens in arguments. NB. LocalCommand is expanded later, 1403 * after port-forwarding is set up, so it may pick up any local 1404 * tunnel interface name allocated. 1405 */ 1406 if (options.remote_command != NULL) { 1407 debug3("expanding RemoteCommand: %s", options.remote_command); 1408 cp = options.remote_command; 1409 options.remote_command = default_client_percent_expand(cp, 1410 cinfo); 1411 debug3("expanded RemoteCommand: %s", options.remote_command); 1412 free(cp); 1413 if ((r = sshbuf_put(command, options.remote_command, 1414 strlen(options.remote_command))) != 0) 1415 fatal_fr(r, "buffer error"); 1416 } 1417 1418 if (options.control_path != NULL) { 1419 cp = tilde_expand_filename(options.control_path, getuid()); 1420 free(options.control_path); 1421 options.control_path = default_client_percent_dollar_expand(cp, 1422 cinfo); 1423 free(cp); 1424 } 1425 1426 if (options.identity_agent != NULL) { 1427 p = tilde_expand_filename(options.identity_agent, getuid()); 1428 cp = default_client_percent_dollar_expand(p, cinfo); 1429 free(p); 1430 free(options.identity_agent); 1431 options.identity_agent = cp; 1432 } 1433 1434 if (options.forward_agent_sock_path != NULL) { 1435 p = tilde_expand_filename(options.forward_agent_sock_path, 1436 getuid()); 1437 cp = default_client_percent_dollar_expand(p, cinfo); 1438 free(p); 1439 free(options.forward_agent_sock_path); 1440 options.forward_agent_sock_path = cp; 1441 if (stat(options.forward_agent_sock_path, &st) != 0) { 1442 error("Cannot forward agent socket path \"%s\": %s", 1443 options.forward_agent_sock_path, strerror(errno)); 1444 if (options.exit_on_forward_failure) 1445 cleanup_exit(255); 1446 } 1447 } 1448 1449 if (options.num_system_hostfiles > 0 && 1450 strcasecmp(options.system_hostfiles[0], "none") == 0) { 1451 if (options.num_system_hostfiles > 1) 1452 fatal("Invalid GlobalKnownHostsFiles: \"none\" " 1453 "appears with other entries"); 1454 free(options.system_hostfiles[0]); 1455 options.system_hostfiles[0] = NULL; 1456 options.num_system_hostfiles = 0; 1457 } 1458 1459 if (options.num_user_hostfiles > 0 && 1460 strcasecmp(options.user_hostfiles[0], "none") == 0) { 1461 if (options.num_user_hostfiles > 1) 1462 fatal("Invalid UserKnownHostsFiles: \"none\" " 1463 "appears with other entries"); 1464 free(options.user_hostfiles[0]); 1465 options.user_hostfiles[0] = NULL; 1466 options.num_user_hostfiles = 0; 1467 } 1468 for (j = 0; j < options.num_user_hostfiles; j++) { 1469 if (options.user_hostfiles[j] == NULL) 1470 continue; 1471 cp = tilde_expand_filename(options.user_hostfiles[j], getuid()); 1472 p = default_client_percent_dollar_expand(cp, cinfo); 1473 if (strcmp(options.user_hostfiles[j], p) != 0) 1474 debug3("expanded UserKnownHostsFile '%s' -> " 1475 "'%s'", options.user_hostfiles[j], p); 1476 free(options.user_hostfiles[j]); 1477 free(cp); 1478 options.user_hostfiles[j] = p; 1479 } 1480 1481 for (i = 0; i < options.num_local_forwards; i++) { 1482 if (options.local_forwards[i].listen_path != NULL) { 1483 cp = options.local_forwards[i].listen_path; 1484 p = options.local_forwards[i].listen_path = 1485 default_client_percent_expand(cp, cinfo); 1486 if (strcmp(cp, p) != 0) 1487 debug3("expanded LocalForward listen path " 1488 "'%s' -> '%s'", cp, p); 1489 free(cp); 1490 } 1491 if (options.local_forwards[i].connect_path != NULL) { 1492 cp = options.local_forwards[i].connect_path; 1493 p = options.local_forwards[i].connect_path = 1494 default_client_percent_expand(cp, cinfo); 1495 if (strcmp(cp, p) != 0) 1496 debug3("expanded LocalForward connect path " 1497 "'%s' -> '%s'", cp, p); 1498 free(cp); 1499 } 1500 } 1501 1502 for (i = 0; i < options.num_remote_forwards; i++) { 1503 if (options.remote_forwards[i].listen_path != NULL) { 1504 cp = options.remote_forwards[i].listen_path; 1505 p = options.remote_forwards[i].listen_path = 1506 default_client_percent_expand(cp, cinfo); 1507 if (strcmp(cp, p) != 0) 1508 debug3("expanded RemoteForward listen path " 1509 "'%s' -> '%s'", cp, p); 1510 free(cp); 1511 } 1512 if (options.remote_forwards[i].connect_path != NULL) { 1513 cp = options.remote_forwards[i].connect_path; 1514 p = options.remote_forwards[i].connect_path = 1515 default_client_percent_expand(cp, cinfo); 1516 if (strcmp(cp, p) != 0) 1517 debug3("expanded RemoteForward connect path " 1518 "'%s' -> '%s'", cp, p); 1519 free(cp); 1520 } 1521 } 1522 1523 if (config_test) { 1524 dump_client_config(&options, host); 1525 exit(0); 1526 } 1527 1528 /* Expand SecurityKeyProvider if it refers to an environment variable */ 1529 if (options.sk_provider != NULL && *options.sk_provider == '$' && 1530 strlen(options.sk_provider) > 1) { 1531 if ((cp = getenv(options.sk_provider + 1)) == NULL) { 1532 debug("Authenticator provider %s did not resolve; " 1533 "disabling", options.sk_provider); 1534 free(options.sk_provider); 1535 options.sk_provider = NULL; 1536 } else { 1537 debug2("resolved SecurityKeyProvider %s => %s", 1538 options.sk_provider, cp); 1539 free(options.sk_provider); 1540 options.sk_provider = xstrdup(cp); 1541 } 1542 } 1543 1544 if (muxclient_command != 0 && options.control_path == NULL) 1545 fatal("No ControlPath specified for \"-O\" command"); 1546 if (options.control_path != NULL) { 1547 int sock; 1548 if ((sock = muxclient(options.control_path)) >= 0) { 1549 ssh_packet_set_connection(ssh, sock, sock); 1550 ssh_packet_set_mux(ssh); 1551 goto skip_connect; 1552 } 1553 } 1554 1555 /* 1556 * If hostname canonicalisation was not enabled, then we may not 1557 * have yet resolved the hostname. Do so now. 1558 */ 1559 if (addrs == NULL && options.proxy_command == NULL) { 1560 debug2("resolving \"%s\" port %d", host, options.port); 1561 if ((addrs = resolve_host(host, options.port, 1, 1562 cname, sizeof(cname))) == NULL) 1563 cleanup_exit(255); /* resolve_host logs the error */ 1564 } 1565 1566 if (options.connection_timeout >= INT_MAX/1000) 1567 timeout_ms = INT_MAX; 1568 else 1569 timeout_ms = options.connection_timeout * 1000; 1570 1571 /* Open a connection to the remote host. */ 1572 if (ssh_connect(ssh, host, host_arg, addrs, &hostaddr, options.port, 1573 options.connection_attempts, 1574 &timeout_ms, options.tcp_keep_alive) != 0) 1575 exit(255); 1576 1577 if (addrs != NULL) 1578 freeaddrinfo(addrs); 1579 1580 ssh_packet_set_timeout(ssh, options.server_alive_interval, 1581 options.server_alive_count_max); 1582 1583 if (timeout_ms > 0) 1584 debug3("timeout: %d ms remain after connect", timeout_ms); 1585 1586 /* 1587 * If we successfully made the connection and we have hostbased auth 1588 * enabled, load the public keys so we can later use the ssh-keysign 1589 * helper to sign challenges. 1590 */ 1591 sensitive_data.nkeys = 0; 1592 sensitive_data.keys = NULL; 1593 if (options.hostbased_authentication) { 1594 sensitive_data.nkeys = 10; 1595 sensitive_data.keys = xcalloc(sensitive_data.nkeys, 1596 sizeof(struct sshkey)); 1597 1598 /* XXX check errors? */ 1599 #define L_PUBKEY(p,o) do { \ 1600 if ((o) >= sensitive_data.nkeys) \ 1601 fatal_f("pubkey out of array bounds"); \ 1602 check_load(sshkey_load_public(p, &(sensitive_data.keys[o]), NULL), \ 1603 p, "pubkey"); \ 1604 if (sensitive_data.keys[o] != NULL) \ 1605 debug2("hostbased key %d: %s key from \"%s\"", o, \ 1606 sshkey_ssh_name(sensitive_data.keys[o]), p); \ 1607 } while (0) 1608 #define L_CERT(p,o) do { \ 1609 if ((o) >= sensitive_data.nkeys) \ 1610 fatal_f("cert out of array bounds"); \ 1611 check_load(sshkey_load_cert(p, &(sensitive_data.keys[o])), p, "cert"); \ 1612 if (sensitive_data.keys[o] != NULL) \ 1613 debug2("hostbased key %d: %s cert from \"%s\"", o, \ 1614 sshkey_ssh_name(sensitive_data.keys[o]), p); \ 1615 } while (0) 1616 1617 if (options.hostbased_authentication == 1) { 1618 L_CERT(_PATH_HOST_ECDSA_KEY_FILE, 0); 1619 L_CERT(_PATH_HOST_ED25519_KEY_FILE, 1); 1620 L_CERT(_PATH_HOST_RSA_KEY_FILE, 2); 1621 L_CERT(_PATH_HOST_DSA_KEY_FILE, 3); 1622 L_PUBKEY(_PATH_HOST_ECDSA_KEY_FILE, 4); 1623 L_PUBKEY(_PATH_HOST_ED25519_KEY_FILE, 5); 1624 L_PUBKEY(_PATH_HOST_RSA_KEY_FILE, 6); 1625 L_PUBKEY(_PATH_HOST_DSA_KEY_FILE, 7); 1626 L_CERT(_PATH_HOST_XMSS_KEY_FILE, 8); 1627 L_PUBKEY(_PATH_HOST_XMSS_KEY_FILE, 9); 1628 } 1629 } 1630 1631 /* load options.identity_files */ 1632 load_public_identity_files(cinfo); 1633 1634 /* optionally set the SSH_AUTHSOCKET_ENV_NAME variable */ 1635 if (options.identity_agent && 1636 strcmp(options.identity_agent, SSH_AUTHSOCKET_ENV_NAME) != 0) { 1637 if (strcmp(options.identity_agent, "none") == 0) { 1638 unsetenv(SSH_AUTHSOCKET_ENV_NAME); 1639 } else { 1640 cp = options.identity_agent; 1641 /* legacy (limited) format */ 1642 if (cp[0] == '$' && cp[1] != '{') { 1643 if (!valid_env_name(cp + 1)) { 1644 fatal("Invalid IdentityAgent " 1645 "environment variable name %s", cp); 1646 } 1647 if ((p = getenv(cp + 1)) == NULL) 1648 unsetenv(SSH_AUTHSOCKET_ENV_NAME); 1649 else 1650 setenv(SSH_AUTHSOCKET_ENV_NAME, p, 1); 1651 } else { 1652 /* identity_agent specifies a path directly */ 1653 setenv(SSH_AUTHSOCKET_ENV_NAME, cp, 1); 1654 } 1655 } 1656 } 1657 1658 if (options.forward_agent && options.forward_agent_sock_path != NULL) { 1659 cp = options.forward_agent_sock_path; 1660 if (cp[0] == '$') { 1661 if (!valid_env_name(cp + 1)) { 1662 fatal("Invalid ForwardAgent environment variable name %s", cp); 1663 } 1664 if ((p = getenv(cp + 1)) != NULL) 1665 forward_agent_sock_path = xstrdup(p); 1666 else 1667 options.forward_agent = 0; 1668 free(cp); 1669 } else { 1670 forward_agent_sock_path = cp; 1671 } 1672 } 1673 1674 /* Expand ~ in known host file names. */ 1675 tilde_expand_paths(options.system_hostfiles, 1676 options.num_system_hostfiles); 1677 tilde_expand_paths(options.user_hostfiles, options.num_user_hostfiles); 1678 1679 ssh_signal(SIGPIPE, SIG_IGN); /* ignore SIGPIPE early */ 1680 ssh_signal(SIGCHLD, main_sigchld_handler); 1681 1682 /* Log into the remote system. Never returns if the login fails. */ 1683 ssh_login(ssh, &sensitive_data, host, (struct sockaddr *)&hostaddr, 1684 options.port, pw, timeout_ms, cinfo); 1685 1686 /* We no longer need the private host keys. Clear them now. */ 1687 if (sensitive_data.nkeys != 0) { 1688 for (i = 0; i < sensitive_data.nkeys; i++) { 1689 if (sensitive_data.keys[i] != NULL) { 1690 /* Destroys contents safely */ 1691 debug3("clear hostkey %d", i); 1692 sshkey_free(sensitive_data.keys[i]); 1693 sensitive_data.keys[i] = NULL; 1694 } 1695 } 1696 free(sensitive_data.keys); 1697 } 1698 for (i = 0; i < options.num_identity_files; i++) { 1699 free(options.identity_files[i]); 1700 options.identity_files[i] = NULL; 1701 if (options.identity_keys[i]) { 1702 sshkey_free(options.identity_keys[i]); 1703 options.identity_keys[i] = NULL; 1704 } 1705 } 1706 for (i = 0; i < options.num_certificate_files; i++) { 1707 free(options.certificate_files[i]); 1708 options.certificate_files[i] = NULL; 1709 } 1710 1711 #ifdef ENABLE_PKCS11 1712 (void)pkcs11_del_provider(options.pkcs11_provider); 1713 #endif 1714 1715 skip_connect: 1716 exit_status = ssh_session2(ssh, cinfo); 1717 ssh_conn_info_free(cinfo); 1718 ssh_packet_close(ssh); 1719 1720 if (options.control_path != NULL && muxserver_sock != -1) 1721 unlink(options.control_path); 1722 1723 /* Kill ProxyCommand if it is running. */ 1724 ssh_kill_proxy_command(); 1725 1726 return exit_status; 1727 } 1728 1729 static void 1730 control_persist_detach(void) 1731 { 1732 pid_t pid; 1733 1734 debug_f("backgrounding master process"); 1735 1736 /* 1737 * master (current process) into the background, and make the 1738 * foreground process a client of the backgrounded master. 1739 */ 1740 switch ((pid = fork())) { 1741 case -1: 1742 fatal_f("fork: %s", strerror(errno)); 1743 case 0: 1744 /* Child: master process continues mainloop */ 1745 break; 1746 default: 1747 /* Parent: set up mux client to connect to backgrounded master */ 1748 debug2_f("background process is %ld", (long)pid); 1749 options.stdin_null = ostdin_null_flag; 1750 options.request_tty = orequest_tty; 1751 tty_flag = otty_flag; 1752 options.session_type = osession_type; 1753 close(muxserver_sock); 1754 muxserver_sock = -1; 1755 options.control_master = SSHCTL_MASTER_NO; 1756 muxclient(options.control_path); 1757 /* muxclient() doesn't return on success. */ 1758 fatal("Failed to connect to new control master"); 1759 } 1760 if (stdfd_devnull(1, 1, !(log_is_on_stderr() && debug_flag)) == -1) 1761 error_f("stdfd_devnull failed"); 1762 daemon(1, 1); 1763 setproctitle("%s [mux]", options.control_path); 1764 } 1765 1766 /* Do fork() after authentication. Used by "ssh -f" */ 1767 static void 1768 fork_postauth(void) 1769 { 1770 if (need_controlpersist_detach) 1771 control_persist_detach(); 1772 debug("forking to background"); 1773 options.fork_after_authentication = 0; 1774 if (daemon(1, 1) == -1) 1775 fatal("daemon() failed: %.200s", strerror(errno)); 1776 if (stdfd_devnull(1, 1, !(log_is_on_stderr() && debug_flag)) == -1) 1777 error_f("stdfd_devnull failed"); 1778 } 1779 1780 static void 1781 forwarding_success(void) 1782 { 1783 if (forward_confirms_pending == -1) 1784 return; 1785 if (--forward_confirms_pending == 0) { 1786 debug_f("all expected forwarding replies received"); 1787 if (options.fork_after_authentication) 1788 fork_postauth(); 1789 } else { 1790 debug2_f("%d expected forwarding replies remaining", 1791 forward_confirms_pending); 1792 } 1793 } 1794 1795 /* Callback for remote forward global requests */ 1796 static void 1797 ssh_confirm_remote_forward(struct ssh *ssh, int type, u_int32_t seq, void *ctxt) 1798 { 1799 struct Forward *rfwd = (struct Forward *)ctxt; 1800 u_int port; 1801 int r; 1802 1803 /* XXX verbose() on failure? */ 1804 debug("remote forward %s for: listen %s%s%d, connect %s:%d", 1805 type == SSH2_MSG_REQUEST_SUCCESS ? "success" : "failure", 1806 rfwd->listen_path ? rfwd->listen_path : 1807 rfwd->listen_host ? rfwd->listen_host : "", 1808 (rfwd->listen_path || rfwd->listen_host) ? ":" : "", 1809 rfwd->listen_port, rfwd->connect_path ? rfwd->connect_path : 1810 rfwd->connect_host, rfwd->connect_port); 1811 if (rfwd->listen_path == NULL && rfwd->listen_port == 0) { 1812 if (type == SSH2_MSG_REQUEST_SUCCESS) { 1813 if ((r = sshpkt_get_u32(ssh, &port)) != 0) 1814 fatal_fr(r, "parse packet"); 1815 if (port > 65535) { 1816 error("Invalid allocated port %u for remote " 1817 "forward to %s:%d", port, 1818 rfwd->connect_host, rfwd->connect_port); 1819 /* Ensure failure processing runs below */ 1820 type = SSH2_MSG_REQUEST_FAILURE; 1821 channel_update_permission(ssh, 1822 rfwd->handle, -1); 1823 } else { 1824 rfwd->allocated_port = (int)port; 1825 logit("Allocated port %u for remote " 1826 "forward to %s:%d", 1827 rfwd->allocated_port, rfwd->connect_path ? 1828 rfwd->connect_path : rfwd->connect_host, 1829 rfwd->connect_port); 1830 channel_update_permission(ssh, 1831 rfwd->handle, rfwd->allocated_port); 1832 } 1833 } else { 1834 channel_update_permission(ssh, rfwd->handle, -1); 1835 } 1836 } 1837 1838 if (type == SSH2_MSG_REQUEST_FAILURE) { 1839 if (options.exit_on_forward_failure) { 1840 if (rfwd->listen_path != NULL) 1841 fatal("Error: remote port forwarding failed " 1842 "for listen path %s", rfwd->listen_path); 1843 else 1844 fatal("Error: remote port forwarding failed " 1845 "for listen port %d", rfwd->listen_port); 1846 } else { 1847 if (rfwd->listen_path != NULL) 1848 logit("Warning: remote port forwarding failed " 1849 "for listen path %s", rfwd->listen_path); 1850 else 1851 logit("Warning: remote port forwarding failed " 1852 "for listen port %d", rfwd->listen_port); 1853 } 1854 } 1855 forwarding_success(); 1856 } 1857 1858 static void 1859 client_cleanup_stdio_fwd(struct ssh *ssh, int id, void *arg) 1860 { 1861 debug("stdio forwarding: done"); 1862 cleanup_exit(0); 1863 } 1864 1865 static void 1866 ssh_stdio_confirm(struct ssh *ssh, int id, int success, void *arg) 1867 { 1868 if (!success) 1869 fatal("stdio forwarding failed"); 1870 } 1871 1872 static void 1873 ssh_tun_confirm(struct ssh *ssh, int id, int success, void *arg) 1874 { 1875 if (!success) { 1876 error("Tunnel forwarding failed"); 1877 if (options.exit_on_forward_failure) 1878 cleanup_exit(255); 1879 } 1880 1881 debug_f("tunnel forward established, id=%d", id); 1882 forwarding_success(); 1883 } 1884 1885 static void 1886 ssh_init_stdio_forwarding(struct ssh *ssh) 1887 { 1888 Channel *c; 1889 int in, out; 1890 1891 if (options.stdio_forward_host == NULL) 1892 return; 1893 1894 debug3_f("%s:%d", options.stdio_forward_host, 1895 options.stdio_forward_port); 1896 1897 if ((in = dup(STDIN_FILENO)) == -1 || 1898 (out = dup(STDOUT_FILENO)) == -1) 1899 fatal_f("dup() in/out failed"); 1900 if ((c = channel_connect_stdio_fwd(ssh, options.stdio_forward_host, 1901 options.stdio_forward_port, in, out, 1902 CHANNEL_NONBLOCK_STDIO)) == NULL) 1903 fatal_f("channel_connect_stdio_fwd failed"); 1904 channel_register_cleanup(ssh, c->self, client_cleanup_stdio_fwd, 0); 1905 channel_register_open_confirm(ssh, c->self, ssh_stdio_confirm, NULL); 1906 } 1907 1908 static void 1909 ssh_init_forward_permissions(struct ssh *ssh, const char *what, char **opens, 1910 u_int num_opens) 1911 { 1912 u_int i; 1913 int port; 1914 char *addr, *arg, *oarg; 1915 int where = FORWARD_LOCAL; 1916 1917 channel_clear_permission(ssh, FORWARD_ADM, where); 1918 if (num_opens == 0) 1919 return; /* permit any */ 1920 1921 /* handle keywords: "any" / "none" */ 1922 if (num_opens == 1 && strcmp(opens[0], "any") == 0) 1923 return; 1924 if (num_opens == 1 && strcmp(opens[0], "none") == 0) { 1925 channel_disable_admin(ssh, where); 1926 return; 1927 } 1928 /* Otherwise treat it as a list of permitted host:port */ 1929 for (i = 0; i < num_opens; i++) { 1930 oarg = arg = xstrdup(opens[i]); 1931 addr = hpdelim(&arg); 1932 if (addr == NULL) 1933 fatal_f("missing host in %s", what); 1934 addr = cleanhostname(addr); 1935 if (arg == NULL || ((port = permitopen_port(arg)) < 0)) 1936 fatal_f("bad port number in %s", what); 1937 /* Send it to channels layer */ 1938 channel_add_permission(ssh, FORWARD_ADM, 1939 where, addr, port); 1940 free(oarg); 1941 } 1942 } 1943 1944 static void 1945 ssh_init_forwarding(struct ssh *ssh, char **ifname) 1946 { 1947 int success = 0; 1948 int i; 1949 1950 ssh_init_forward_permissions(ssh, "permitremoteopen", 1951 options.permitted_remote_opens, 1952 options.num_permitted_remote_opens); 1953 1954 if (options.exit_on_forward_failure) 1955 forward_confirms_pending = 0; /* track pending requests */ 1956 /* Initiate local TCP/IP port forwardings. */ 1957 for (i = 0; i < options.num_local_forwards; i++) { 1958 debug("Local connections to %.200s:%d forwarded to remote " 1959 "address %.200s:%d", 1960 (options.local_forwards[i].listen_path != NULL) ? 1961 options.local_forwards[i].listen_path : 1962 (options.local_forwards[i].listen_host == NULL) ? 1963 (options.fwd_opts.gateway_ports ? "*" : "LOCALHOST") : 1964 options.local_forwards[i].listen_host, 1965 options.local_forwards[i].listen_port, 1966 (options.local_forwards[i].connect_path != NULL) ? 1967 options.local_forwards[i].connect_path : 1968 options.local_forwards[i].connect_host, 1969 options.local_forwards[i].connect_port); 1970 success += channel_setup_local_fwd_listener(ssh, 1971 &options.local_forwards[i], &options.fwd_opts); 1972 } 1973 if (i > 0 && success != i && options.exit_on_forward_failure) 1974 fatal("Could not request local forwarding."); 1975 if (i > 0 && success == 0) 1976 error("Could not request local forwarding."); 1977 1978 /* Initiate remote TCP/IP port forwardings. */ 1979 for (i = 0; i < options.num_remote_forwards; i++) { 1980 debug("Remote connections from %.200s:%d forwarded to " 1981 "local address %.200s:%d", 1982 (options.remote_forwards[i].listen_path != NULL) ? 1983 options.remote_forwards[i].listen_path : 1984 (options.remote_forwards[i].listen_host == NULL) ? 1985 "LOCALHOST" : options.remote_forwards[i].listen_host, 1986 options.remote_forwards[i].listen_port, 1987 (options.remote_forwards[i].connect_path != NULL) ? 1988 options.remote_forwards[i].connect_path : 1989 options.remote_forwards[i].connect_host, 1990 options.remote_forwards[i].connect_port); 1991 if ((options.remote_forwards[i].handle = 1992 channel_request_remote_forwarding(ssh, 1993 &options.remote_forwards[i])) >= 0) { 1994 client_register_global_confirm( 1995 ssh_confirm_remote_forward, 1996 &options.remote_forwards[i]); 1997 forward_confirms_pending++; 1998 } else if (options.exit_on_forward_failure) 1999 fatal("Could not request remote forwarding."); 2000 else 2001 logit("Warning: Could not request remote forwarding."); 2002 } 2003 2004 /* Initiate tunnel forwarding. */ 2005 if (options.tun_open != SSH_TUNMODE_NO) { 2006 if ((*ifname = client_request_tun_fwd(ssh, 2007 options.tun_open, options.tun_local, 2008 options.tun_remote, ssh_tun_confirm, NULL)) != NULL) 2009 forward_confirms_pending++; 2010 else if (options.exit_on_forward_failure) 2011 fatal("Could not request tunnel forwarding."); 2012 else 2013 error("Could not request tunnel forwarding."); 2014 } 2015 if (forward_confirms_pending > 0) { 2016 debug_f("expecting replies for %d forwards", 2017 forward_confirms_pending); 2018 } 2019 } 2020 2021 static void 2022 check_agent_present(void) 2023 { 2024 int r; 2025 2026 if (options.forward_agent) { 2027 /* Clear agent forwarding if we don't have an agent. */ 2028 if ((r = ssh_get_authentication_socket(NULL)) != 0) { 2029 options.forward_agent = 0; 2030 if (r != SSH_ERR_AGENT_NOT_PRESENT) 2031 debug_r(r, "ssh_get_authentication_socket"); 2032 } 2033 } 2034 } 2035 2036 static void 2037 ssh_session2_setup(struct ssh *ssh, int id, int success, void *arg) 2038 { 2039 extern char **environ; 2040 const char *display, *term; 2041 int r, interactive = tty_flag; 2042 char *proto = NULL, *data = NULL; 2043 2044 if (!success) 2045 return; /* No need for error message, channels code sens one */ 2046 2047 display = getenv("DISPLAY"); 2048 if (display == NULL && options.forward_x11) 2049 debug("X11 forwarding requested but DISPLAY not set"); 2050 if (options.forward_x11 && client_x11_get_proto(ssh, display, 2051 options.xauth_location, options.forward_x11_trusted, 2052 options.forward_x11_timeout, &proto, &data) == 0) { 2053 /* Request forwarding with authentication spoofing. */ 2054 debug("Requesting X11 forwarding with authentication " 2055 "spoofing."); 2056 x11_request_forwarding_with_spoofing(ssh, id, display, proto, 2057 data, 1); 2058 client_expect_confirm(ssh, id, "X11 forwarding", CONFIRM_WARN); 2059 /* XXX exit_on_forward_failure */ 2060 interactive = 1; 2061 } 2062 2063 check_agent_present(); 2064 if (options.forward_agent) { 2065 debug("Requesting authentication agent forwarding."); 2066 channel_request_start(ssh, id, "auth-agent-req@openssh.com", 0); 2067 if ((r = sshpkt_send(ssh)) != 0) 2068 fatal_fr(r, "send packet"); 2069 } 2070 2071 /* Tell the packet module whether this is an interactive session. */ 2072 ssh_packet_set_interactive(ssh, interactive, 2073 options.ip_qos_interactive, options.ip_qos_bulk); 2074 2075 if ((term = lookup_env_in_list("TERM", options.setenv, 2076 options.num_setenv)) == NULL || *term == '\0') 2077 term = getenv("TERM"); 2078 client_session2_setup(ssh, id, tty_flag, 2079 options.session_type == SESSION_TYPE_SUBSYSTEM, term, 2080 NULL, fileno(stdin), command, environ); 2081 } 2082 2083 /* open new channel for a session */ 2084 static int 2085 ssh_session2_open(struct ssh *ssh) 2086 { 2087 Channel *c; 2088 int window, packetmax, in, out, err; 2089 2090 if (options.stdin_null) { 2091 in = open(_PATH_DEVNULL, O_RDONLY); 2092 } else { 2093 in = dup(STDIN_FILENO); 2094 } 2095 out = dup(STDOUT_FILENO); 2096 err = dup(STDERR_FILENO); 2097 2098 if (in == -1 || out == -1 || err == -1) 2099 fatal("dup() in/out/err failed"); 2100 2101 window = CHAN_SES_WINDOW_DEFAULT; 2102 packetmax = CHAN_SES_PACKET_DEFAULT; 2103 if (tty_flag) { 2104 window >>= 1; 2105 packetmax >>= 1; 2106 } 2107 c = channel_new(ssh, 2108 "session", SSH_CHANNEL_OPENING, in, out, err, 2109 window, packetmax, CHAN_EXTENDED_WRITE, 2110 "client-session", CHANNEL_NONBLOCK_STDIO); 2111 2112 debug3_f("channel_new: %d", c->self); 2113 2114 channel_send_open(ssh, c->self); 2115 if (options.session_type != SESSION_TYPE_NONE) 2116 channel_register_open_confirm(ssh, c->self, 2117 ssh_session2_setup, NULL); 2118 2119 return c->self; 2120 } 2121 2122 static int 2123 ssh_session2(struct ssh *ssh, const struct ssh_conn_info *cinfo) 2124 { 2125 int r, id = -1; 2126 char *cp, *tun_fwd_ifname = NULL; 2127 2128 /* XXX should be pre-session */ 2129 if (!options.control_persist) 2130 ssh_init_stdio_forwarding(ssh); 2131 2132 ssh_init_forwarding(ssh, &tun_fwd_ifname); 2133 2134 if (options.local_command != NULL) { 2135 debug3("expanding LocalCommand: %s", options.local_command); 2136 cp = options.local_command; 2137 options.local_command = percent_expand(cp, 2138 DEFAULT_CLIENT_PERCENT_EXPAND_ARGS(cinfo), 2139 "T", tun_fwd_ifname == NULL ? "NONE" : tun_fwd_ifname, 2140 (char *)NULL); 2141 debug3("expanded LocalCommand: %s", options.local_command); 2142 free(cp); 2143 } 2144 2145 /* Start listening for multiplex clients */ 2146 if (!ssh_packet_get_mux(ssh)) 2147 muxserver_listen(ssh); 2148 2149 /* 2150 * If we are in control persist mode and have a working mux listen 2151 * socket, then prepare to background ourselves and have a foreground 2152 * client attach as a control client. 2153 * NB. we must save copies of the flags that we override for 2154 * the backgrounding, since we defer attachment of the client until 2155 * after the connection is fully established (in particular, 2156 * async rfwd replies have been received for ExitOnForwardFailure). 2157 */ 2158 if (options.control_persist && muxserver_sock != -1) { 2159 ostdin_null_flag = options.stdin_null; 2160 osession_type = options.session_type; 2161 orequest_tty = options.request_tty; 2162 otty_flag = tty_flag; 2163 options.stdin_null = 1; 2164 options.session_type = SESSION_TYPE_NONE; 2165 tty_flag = 0; 2166 if (!options.fork_after_authentication && 2167 (osession_type != SESSION_TYPE_NONE || 2168 options.stdio_forward_host != NULL)) 2169 need_controlpersist_detach = 1; 2170 options.fork_after_authentication = 1; 2171 } 2172 /* 2173 * ControlPersist mux listen socket setup failed, attempt the 2174 * stdio forward setup that we skipped earlier. 2175 */ 2176 if (options.control_persist && muxserver_sock == -1) 2177 ssh_init_stdio_forwarding(ssh); 2178 2179 if (options.session_type != SESSION_TYPE_NONE) 2180 id = ssh_session2_open(ssh); 2181 else { 2182 ssh_packet_set_interactive(ssh, 2183 options.control_master == SSHCTL_MASTER_NO, 2184 options.ip_qos_interactive, options.ip_qos_bulk); 2185 } 2186 2187 /* If we don't expect to open a new session, then disallow it */ 2188 if (options.control_master == SSHCTL_MASTER_NO && 2189 (ssh->compat & SSH_NEW_OPENSSH)) { 2190 debug("Requesting no-more-sessions@openssh.com"); 2191 if ((r = sshpkt_start(ssh, SSH2_MSG_GLOBAL_REQUEST)) != 0 || 2192 (r = sshpkt_put_cstring(ssh, 2193 "no-more-sessions@openssh.com")) != 0 || 2194 (r = sshpkt_put_u8(ssh, 0)) != 0 || 2195 (r = sshpkt_send(ssh)) != 0) 2196 fatal_fr(r, "send packet"); 2197 } 2198 2199 /* Execute a local command */ 2200 if (options.local_command != NULL && 2201 options.permit_local_command) 2202 ssh_local_cmd(options.local_command); 2203 2204 /* 2205 * stdout is now owned by the session channel; clobber it here 2206 * so future channel closes are propagated to the local fd. 2207 * NB. this can only happen after LocalCommand has completed, 2208 * as it may want to write to stdout. 2209 */ 2210 if (!need_controlpersist_detach && stdfd_devnull(0, 1, 0) == -1) 2211 error_f("stdfd_devnull failed"); 2212 2213 /* 2214 * If requested and we are not interested in replies to remote 2215 * forwarding requests, then let ssh continue in the background. 2216 */ 2217 if (options.fork_after_authentication) { 2218 if (options.exit_on_forward_failure && 2219 options.num_remote_forwards > 0) { 2220 debug("deferring postauth fork until remote forward " 2221 "confirmation received"); 2222 } else 2223 fork_postauth(); 2224 } 2225 2226 return client_loop(ssh, tty_flag, tty_flag ? 2227 options.escape_char : SSH_ESCAPECHAR_NONE, id); 2228 } 2229 2230 /* Loads all IdentityFile and CertificateFile keys */ 2231 static void 2232 load_public_identity_files(const struct ssh_conn_info *cinfo) 2233 { 2234 char *filename, *cp; 2235 struct sshkey *public; 2236 int i; 2237 u_int n_ids, n_certs; 2238 char *identity_files[SSH_MAX_IDENTITY_FILES]; 2239 struct sshkey *identity_keys[SSH_MAX_IDENTITY_FILES]; 2240 int identity_file_userprovided[SSH_MAX_IDENTITY_FILES]; 2241 char *certificate_files[SSH_MAX_CERTIFICATE_FILES]; 2242 struct sshkey *certificates[SSH_MAX_CERTIFICATE_FILES]; 2243 int certificate_file_userprovided[SSH_MAX_CERTIFICATE_FILES]; 2244 #ifdef ENABLE_PKCS11 2245 struct sshkey **keys = NULL; 2246 char **comments = NULL; 2247 int nkeys; 2248 #endif /* PKCS11 */ 2249 2250 n_ids = n_certs = 0; 2251 memset(identity_files, 0, sizeof(identity_files)); 2252 memset(identity_keys, 0, sizeof(identity_keys)); 2253 memset(identity_file_userprovided, 0, 2254 sizeof(identity_file_userprovided)); 2255 memset(certificate_files, 0, sizeof(certificate_files)); 2256 memset(certificates, 0, sizeof(certificates)); 2257 memset(certificate_file_userprovided, 0, 2258 sizeof(certificate_file_userprovided)); 2259 2260 #ifdef ENABLE_PKCS11 2261 if (options.pkcs11_provider != NULL && 2262 options.num_identity_files < SSH_MAX_IDENTITY_FILES && 2263 (pkcs11_init(!options.batch_mode) == 0) && 2264 (nkeys = pkcs11_add_provider(options.pkcs11_provider, NULL, 2265 &keys, &comments)) > 0) { 2266 for (i = 0; i < nkeys; i++) { 2267 if (n_ids >= SSH_MAX_IDENTITY_FILES) { 2268 sshkey_free(keys[i]); 2269 free(comments[i]); 2270 continue; 2271 } 2272 identity_keys[n_ids] = keys[i]; 2273 identity_files[n_ids] = comments[i]; /* transferred */ 2274 n_ids++; 2275 } 2276 free(keys); 2277 free(comments); 2278 } 2279 #endif /* ENABLE_PKCS11 */ 2280 for (i = 0; i < options.num_identity_files; i++) { 2281 if (n_ids >= SSH_MAX_IDENTITY_FILES || 2282 strcasecmp(options.identity_files[i], "none") == 0) { 2283 free(options.identity_files[i]); 2284 options.identity_files[i] = NULL; 2285 continue; 2286 } 2287 cp = tilde_expand_filename(options.identity_files[i], getuid()); 2288 filename = default_client_percent_dollar_expand(cp, cinfo); 2289 free(cp); 2290 check_load(sshkey_load_public(filename, &public, NULL), 2291 filename, "pubkey"); 2292 debug("identity file %s type %d", filename, 2293 public ? public->type : -1); 2294 free(options.identity_files[i]); 2295 identity_files[n_ids] = filename; 2296 identity_keys[n_ids] = public; 2297 identity_file_userprovided[n_ids] = 2298 options.identity_file_userprovided[i]; 2299 if (++n_ids >= SSH_MAX_IDENTITY_FILES) 2300 continue; 2301 2302 /* 2303 * If no certificates have been explicitly listed then try 2304 * to add the default certificate variant too. 2305 */ 2306 if (options.num_certificate_files != 0) 2307 continue; 2308 xasprintf(&cp, "%s-cert", filename); 2309 check_load(sshkey_load_public(cp, &public, NULL), 2310 filename, "pubkey"); 2311 debug("identity file %s type %d", cp, 2312 public ? public->type : -1); 2313 if (public == NULL) { 2314 free(cp); 2315 continue; 2316 } 2317 if (!sshkey_is_cert(public)) { 2318 debug_f("key %s type %s is not a certificate", 2319 cp, sshkey_type(public)); 2320 sshkey_free(public); 2321 free(cp); 2322 continue; 2323 } 2324 /* NB. leave filename pointing to private key */ 2325 identity_files[n_ids] = xstrdup(filename); 2326 identity_keys[n_ids] = public; 2327 identity_file_userprovided[n_ids] = 2328 options.identity_file_userprovided[i]; 2329 n_ids++; 2330 } 2331 2332 if (options.num_certificate_files > SSH_MAX_CERTIFICATE_FILES) 2333 fatal_f("too many certificates"); 2334 for (i = 0; i < options.num_certificate_files; i++) { 2335 cp = tilde_expand_filename(options.certificate_files[i], 2336 getuid()); 2337 filename = default_client_percent_dollar_expand(cp, cinfo); 2338 free(cp); 2339 2340 check_load(sshkey_load_public(filename, &public, NULL), 2341 filename, "certificate"); 2342 debug("certificate file %s type %d", filename, 2343 public ? public->type : -1); 2344 free(options.certificate_files[i]); 2345 options.certificate_files[i] = NULL; 2346 if (public == NULL) { 2347 free(filename); 2348 continue; 2349 } 2350 if (!sshkey_is_cert(public)) { 2351 debug_f("key %s type %s is not a certificate", 2352 filename, sshkey_type(public)); 2353 sshkey_free(public); 2354 free(filename); 2355 continue; 2356 } 2357 certificate_files[n_certs] = filename; 2358 certificates[n_certs] = public; 2359 certificate_file_userprovided[n_certs] = 2360 options.certificate_file_userprovided[i]; 2361 ++n_certs; 2362 } 2363 2364 options.num_identity_files = n_ids; 2365 memcpy(options.identity_files, identity_files, sizeof(identity_files)); 2366 memcpy(options.identity_keys, identity_keys, sizeof(identity_keys)); 2367 memcpy(options.identity_file_userprovided, 2368 identity_file_userprovided, sizeof(identity_file_userprovided)); 2369 2370 options.num_certificate_files = n_certs; 2371 memcpy(options.certificate_files, 2372 certificate_files, sizeof(certificate_files)); 2373 memcpy(options.certificates, certificates, sizeof(certificates)); 2374 memcpy(options.certificate_file_userprovided, 2375 certificate_file_userprovided, 2376 sizeof(certificate_file_userprovided)); 2377 } 2378 2379 static void 2380 main_sigchld_handler(int sig) 2381 { 2382 int save_errno = errno; 2383 pid_t pid; 2384 int status; 2385 2386 while ((pid = waitpid(-1, &status, WNOHANG)) > 0 || 2387 (pid == -1 && errno == EINTR)) 2388 ; 2389 errno = save_errno; 2390 } 2391