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