1 /* $NetBSD: sshconnect.c,v 1.2 2009/06/07 22:38:47 christos Exp $ */ 2 /* $OpenBSD: sshconnect.c,v 1.212 2008/10/14 18:11:33 stevesk Exp $ */ 3 /* 4 * Author: Tatu Ylonen <ylo@cs.hut.fi> 5 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland 6 * All rights reserved 7 * Code to connect to a remote host, and to perform the client side of the 8 * login (authentication) dialog. 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 17 #include "includes.h" 18 __RCSID("$NetBSD: sshconnect.c,v 1.2 2009/06/07 22:38:47 christos Exp $"); 19 #include <sys/types.h> 20 #include <sys/param.h> 21 #include <sys/wait.h> 22 #include <sys/stat.h> 23 #include <sys/socket.h> 24 #include <sys/time.h> 25 26 #include <netinet/in.h> 27 28 #include <ctype.h> 29 #include <errno.h> 30 #include <netdb.h> 31 #include <paths.h> 32 #include <signal.h> 33 #include <pwd.h> 34 #include <stdio.h> 35 #include <stdlib.h> 36 #include <string.h> 37 #include <unistd.h> 38 39 #include "xmalloc.h" 40 #include "ssh.h" 41 #include "rsa.h" 42 #include "buffer.h" 43 #include "packet.h" 44 #include "uidswap.h" 45 #include "compat.h" 46 #include "key.h" 47 #include "sshconnect.h" 48 #include "hostfile.h" 49 #include "log.h" 50 #include "readconf.h" 51 #include "atomicio.h" 52 #include "misc.h" 53 #include "dns.h" 54 #include "version.h" 55 56 char *client_version_string = NULL; 57 char *server_version_string = NULL; 58 59 static int matching_host_key_dns = 0; 60 61 /* import */ 62 extern Options options; 63 extern char *__progname; 64 extern uid_t original_real_uid; 65 extern uid_t original_effective_uid; 66 extern pid_t proxy_command_pid; 67 68 static int show_other_keys(const char *, Key *); 69 static void warn_changed_key(Key *); 70 71 /* 72 * Connect to the given ssh server using a proxy command. 73 */ 74 static int 75 ssh_proxy_connect(const char *host, u_short port, const char *proxy_command) 76 { 77 char *command_string, *tmp; 78 int pin[2], pout[2]; 79 pid_t pid; 80 char *shell, strport[NI_MAXSERV]; 81 82 if ((shell = getenv("SHELL")) == NULL) 83 shell = _PATH_BSHELL; 84 85 /* Convert the port number into a string. */ 86 snprintf(strport, sizeof strport, "%hu", port); 87 88 /* 89 * Build the final command string in the buffer by making the 90 * appropriate substitutions to the given proxy command. 91 * 92 * Use "exec" to avoid "sh -c" processes on some platforms 93 * (e.g. Solaris) 94 */ 95 xasprintf(&tmp, "exec %s", proxy_command); 96 command_string = percent_expand(tmp, "h", host, 97 "p", strport, (char *)NULL); 98 xfree(tmp); 99 100 /* Create pipes for communicating with the proxy. */ 101 if (pipe(pin) < 0 || pipe(pout) < 0) 102 fatal("Could not create pipes to communicate with the proxy: %.100s", 103 strerror(errno)); 104 105 debug("Executing proxy command: %.500s", command_string); 106 107 /* Fork and execute the proxy command. */ 108 if ((pid = fork()) == 0) { 109 char *argv[10]; 110 111 /* Child. Permanently give up superuser privileges. */ 112 permanently_drop_suid(original_real_uid); 113 114 /* Redirect stdin and stdout. */ 115 close(pin[1]); 116 if (pin[0] != 0) { 117 if (dup2(pin[0], 0) < 0) 118 perror("dup2 stdin"); 119 close(pin[0]); 120 } 121 close(pout[0]); 122 if (dup2(pout[1], 1) < 0) 123 perror("dup2 stdout"); 124 /* Cannot be 1 because pin allocated two descriptors. */ 125 close(pout[1]); 126 127 /* Stderr is left as it is so that error messages get 128 printed on the user's terminal. */ 129 argv[0] = shell; 130 argv[1] = "-c"; 131 argv[2] = command_string; 132 argv[3] = NULL; 133 134 /* Execute the proxy command. Note that we gave up any 135 extra privileges above. */ 136 execv(argv[0], argv); 137 perror(argv[0]); 138 exit(1); 139 } 140 /* Parent. */ 141 if (pid < 0) 142 fatal("fork failed: %.100s", strerror(errno)); 143 else 144 proxy_command_pid = pid; /* save pid to clean up later */ 145 146 /* Close child side of the descriptors. */ 147 close(pin[0]); 148 close(pout[1]); 149 150 /* Free the command name. */ 151 xfree(command_string); 152 153 /* Set the connection file descriptors. */ 154 packet_set_connection(pout[0], pin[1]); 155 packet_set_timeout(options.server_alive_interval, 156 options.server_alive_count_max); 157 158 /* Indicate OK return */ 159 return 0; 160 } 161 162 /* 163 * Set TCP receive buffer if requested. 164 * Note: tuning needs to happen after the socket is 165 * created but before the connection happens 166 * so winscale is negotiated properly -cjr 167 */ 168 static void 169 ssh_set_socket_recvbuf(int sock) 170 { 171 void *buf = (void *)&options.tcp_rcv_buf; 172 int sz = sizeof(options.tcp_rcv_buf); 173 int socksize; 174 socklen_t socksizelen = sizeof(int); 175 176 debug("setsockopt Attempting to set SO_RCVBUF to %d", options.tcp_rcv_buf); 177 if (setsockopt(sock, SOL_SOCKET, SO_RCVBUF, buf, sz) >= 0) { 178 getsockopt(sock, SOL_SOCKET, SO_RCVBUF, &socksize, &socksizelen); 179 debug("setsockopt SO_RCVBUF: %.100s %d", strerror(errno), socksize); 180 } 181 else 182 error("Couldn't set socket receive buffer to %d: %.100s", 183 options.tcp_rcv_buf, strerror(errno)); 184 } 185 186 /* 187 * Creates a (possibly privileged) socket for use as the ssh connection. 188 */ 189 static int 190 ssh_create_socket(int privileged, struct addrinfo *ai) 191 { 192 int sock, gaierr; 193 struct addrinfo hints, *res; 194 195 /* 196 * If we are running as root and want to connect to a privileged 197 * port, bind our own socket to a privileged port. 198 */ 199 if (privileged) { 200 int p = IPPORT_RESERVED - 1; 201 PRIV_START; 202 sock = rresvport_af(&p, ai->ai_family); 203 PRIV_END; 204 if (sock < 0) 205 error("rresvport: af=%d %.100s", ai->ai_family, 206 strerror(errno)); 207 else 208 debug("Allocated local port %d.", p); 209 210 if (options.tcp_rcv_buf > 0) 211 ssh_set_socket_recvbuf(sock); 212 return sock; 213 } 214 sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol); 215 if (sock < 0) { 216 switch (errno) { 217 case EAFNOSUPPORT: 218 debug("socket: %.100s", strerror(errno)); 219 break; 220 default: 221 error("socket: %.100s", strerror(errno)); 222 } 223 return -1; 224 } 225 226 if (options.tcp_rcv_buf > 0) 227 ssh_set_socket_recvbuf(sock); 228 229 /* Bind the socket to an alternative local IP address */ 230 if (options.bind_address == NULL) 231 return sock; 232 233 memset(&hints, 0, sizeof(hints)); 234 hints.ai_family = ai->ai_family; 235 hints.ai_socktype = ai->ai_socktype; 236 hints.ai_protocol = ai->ai_protocol; 237 hints.ai_flags = AI_PASSIVE; 238 gaierr = getaddrinfo(options.bind_address, NULL, &hints, &res); 239 if (gaierr) { 240 error("getaddrinfo: %s: %s", options.bind_address, 241 ssh_gai_strerror(gaierr)); 242 close(sock); 243 return -1; 244 } 245 if (bind(sock, res->ai_addr, res->ai_addrlen) < 0) { 246 error("bind: %s: %s", options.bind_address, strerror(errno)); 247 close(sock); 248 freeaddrinfo(res); 249 return -1; 250 } 251 freeaddrinfo(res); 252 return sock; 253 } 254 255 static int 256 timeout_connect(int sockfd, const struct sockaddr *serv_addr, 257 socklen_t addrlen, int *timeoutp) 258 { 259 fd_set *fdset; 260 struct timeval tv, t_start; 261 socklen_t optlen; 262 int optval, rc, result = -1; 263 264 gettimeofday(&t_start, NULL); 265 266 if (*timeoutp <= 0) { 267 result = connect(sockfd, serv_addr, addrlen); 268 goto done; 269 } 270 271 set_nonblock(sockfd); 272 rc = connect(sockfd, serv_addr, addrlen); 273 if (rc == 0) { 274 unset_nonblock(sockfd); 275 result = 0; 276 goto done; 277 } 278 if (errno != EINPROGRESS) { 279 result = -1; 280 goto done; 281 } 282 283 fdset = (fd_set *)xcalloc(howmany(sockfd + 1, NFDBITS), 284 sizeof(fd_mask)); 285 FD_SET(sockfd, fdset); 286 ms_to_timeval(&tv, *timeoutp); 287 288 for (;;) { 289 rc = select(sockfd + 1, NULL, fdset, NULL, &tv); 290 if (rc != -1 || errno != EINTR) 291 break; 292 } 293 294 switch (rc) { 295 case 0: 296 /* Timed out */ 297 errno = ETIMEDOUT; 298 break; 299 case -1: 300 /* Select error */ 301 debug("select: %s", strerror(errno)); 302 break; 303 case 1: 304 /* Completed or failed */ 305 optval = 0; 306 optlen = sizeof(optval); 307 if (getsockopt(sockfd, SOL_SOCKET, SO_ERROR, &optval, 308 &optlen) == -1) { 309 debug("getsockopt: %s", strerror(errno)); 310 break; 311 } 312 if (optval != 0) { 313 errno = optval; 314 break; 315 } 316 result = 0; 317 unset_nonblock(sockfd); 318 break; 319 default: 320 /* Should not occur */ 321 fatal("Bogus return (%d) from select()", rc); 322 } 323 324 xfree(fdset); 325 326 done: 327 if (result == 0 && *timeoutp > 0) { 328 ms_subtract_diff(&t_start, timeoutp); 329 if (*timeoutp <= 0) { 330 errno = ETIMEDOUT; 331 result = -1; 332 } 333 } 334 335 return (result); 336 } 337 338 /* 339 * Opens a TCP/IP connection to the remote server on the given host. 340 * The address of the remote host will be returned in hostaddr. 341 * If port is 0, the default port will be used. If needpriv is true, 342 * a privileged port will be allocated to make the connection. 343 * This requires super-user privileges if needpriv is true. 344 * Connection_attempts specifies the maximum number of tries (one per 345 * second). If proxy_command is non-NULL, it specifies the command (with %h 346 * and %p substituted for host and port, respectively) to use to contact 347 * the daemon. 348 */ 349 int 350 ssh_connect(const char *host, struct sockaddr_storage * hostaddr, 351 u_short port, int family, int connection_attempts, int *timeout_ms, 352 int want_keepalive, int needpriv, const char *proxy_command) 353 { 354 int gaierr; 355 int on = 1; 356 int sock = -1, attempt; 357 char ntop[NI_MAXHOST], strport[NI_MAXSERV]; 358 struct addrinfo hints, *ai, *aitop; 359 360 debug2("ssh_connect: needpriv %d", needpriv); 361 362 /* If a proxy command is given, connect using it. */ 363 if (proxy_command != NULL) 364 return ssh_proxy_connect(host, port, proxy_command); 365 366 /* No proxy command. */ 367 368 memset(&hints, 0, sizeof(hints)); 369 hints.ai_family = family; 370 hints.ai_socktype = SOCK_STREAM; 371 snprintf(strport, sizeof strport, "%u", port); 372 if ((gaierr = getaddrinfo(host, strport, &hints, &aitop)) != 0) 373 fatal("%s: Could not resolve hostname %.100s: %s", __progname, 374 host, ssh_gai_strerror(gaierr)); 375 376 for (attempt = 0; attempt < connection_attempts; attempt++) { 377 if (attempt > 0) { 378 /* Sleep a moment before retrying. */ 379 sleep(1); 380 debug("Trying again..."); 381 } 382 /* 383 * Loop through addresses for this host, and try each one in 384 * sequence until the connection succeeds. 385 */ 386 for (ai = aitop; ai; ai = ai->ai_next) { 387 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6) 388 continue; 389 if (getnameinfo(ai->ai_addr, ai->ai_addrlen, 390 ntop, sizeof(ntop), strport, sizeof(strport), 391 NI_NUMERICHOST|NI_NUMERICSERV) != 0) { 392 error("ssh_connect: getnameinfo failed"); 393 continue; 394 } 395 debug("Connecting to %.200s [%.100s] port %s.", 396 host, ntop, strport); 397 398 /* Create a socket for connecting. */ 399 sock = ssh_create_socket(needpriv, ai); 400 if (sock < 0) 401 /* 402 * Any serious error is already output, 403 * at least in the debug case. 404 */ 405 continue; 406 407 if (timeout_connect(sock, ai->ai_addr, ai->ai_addrlen, 408 timeout_ms) >= 0) { 409 /* Successful connection. */ 410 memcpy(hostaddr, ai->ai_addr, ai->ai_addrlen); 411 break; 412 } else { 413 debug("connect to address %s port %s: %s", 414 ntop, strport, strerror(errno)); 415 close(sock); 416 sock = -1; 417 } 418 } 419 if (sock != -1) 420 break; /* Successful connection. */ 421 } 422 423 freeaddrinfo(aitop); 424 425 /* Return failure if we didn't get a successful connection. */ 426 if (sock == -1) { 427 error("ssh: connect to host %s port %s: %s", 428 host, strport, strerror(errno)); 429 return (-1); 430 } 431 432 debug("Connection established."); 433 434 /* Set SO_KEEPALIVE if requested. */ 435 if (want_keepalive && 436 setsockopt(sock, SOL_SOCKET, SO_KEEPALIVE, (void *)&on, 437 sizeof(on)) < 0) 438 error("setsockopt SO_KEEPALIVE: %.100s", strerror(errno)); 439 440 /* Set the connection. */ 441 packet_set_connection(sock, sock); 442 packet_set_timeout(options.server_alive_interval, 443 options.server_alive_count_max); 444 445 return 0; 446 } 447 448 /* 449 * Waits for the server identification string, and sends our own 450 * identification string. 451 */ 452 static void 453 ssh_exchange_identification(int timeout_ms) 454 { 455 char buf[256], remote_version[256]; /* must be same size! */ 456 int remote_major, remote_minor, mismatch; 457 int connection_in = packet_get_connection_in(); 458 int connection_out = packet_get_connection_out(); 459 int minor1 = PROTOCOL_MINOR_1; 460 u_int i, n; 461 size_t len; 462 int fdsetsz, remaining, rc; 463 struct timeval t_start, t_remaining; 464 fd_set *fdset; 465 466 fdsetsz = howmany(connection_in + 1, NFDBITS) * sizeof(fd_mask); 467 fdset = xcalloc(1, fdsetsz); 468 469 /* Read other side's version identification. */ 470 remaining = timeout_ms; 471 for (n = 0;;) { 472 for (i = 0; i < sizeof(buf) - 1; i++) { 473 if (timeout_ms > 0) { 474 gettimeofday(&t_start, NULL); 475 ms_to_timeval(&t_remaining, remaining); 476 FD_SET(connection_in, fdset); 477 rc = select(connection_in + 1, fdset, NULL, 478 fdset, &t_remaining); 479 ms_subtract_diff(&t_start, &remaining); 480 if (rc == 0 || remaining <= 0) 481 fatal("Connection timed out during " 482 "banner exchange"); 483 if (rc == -1) { 484 if (errno == EINTR) 485 continue; 486 fatal("ssh_exchange_identification: " 487 "select: %s", strerror(errno)); 488 } 489 } 490 491 len = atomicio(read, connection_in, &buf[i], 1); 492 493 if (len != 1 && errno == EPIPE) 494 fatal("ssh_exchange_identification: " 495 "Connection closed by remote host"); 496 else if (len != 1) 497 fatal("ssh_exchange_identification: " 498 "read: %.100s", strerror(errno)); 499 if (buf[i] == '\r') { 500 buf[i] = '\n'; 501 buf[i + 1] = 0; 502 continue; /**XXX wait for \n */ 503 } 504 if (buf[i] == '\n') { 505 buf[i + 1] = 0; 506 break; 507 } 508 if (++n > 65536) 509 fatal("ssh_exchange_identification: " 510 "No banner received"); 511 } 512 buf[sizeof(buf) - 1] = 0; 513 if (strncmp(buf, "SSH-", 4) == 0) 514 break; 515 debug("ssh_exchange_identification: %s", buf); 516 } 517 server_version_string = xstrdup(buf); 518 xfree(fdset); 519 520 /* 521 * Check that the versions match. In future this might accept 522 * several versions and set appropriate flags to handle them. 523 */ 524 if (sscanf(server_version_string, "SSH-%d.%d-%[^\n]\n", 525 &remote_major, &remote_minor, remote_version) != 3) 526 fatal("Bad remote protocol version identification: '%.100s'", buf); 527 debug("Remote protocol version %d.%d, remote software version %.100s", 528 remote_major, remote_minor, remote_version); 529 530 compat_datafellows(remote_version); 531 mismatch = 0; 532 533 switch (remote_major) { 534 case 1: 535 if (remote_minor == 99 && 536 (options.protocol & SSH_PROTO_2) && 537 !(options.protocol & SSH_PROTO_1_PREFERRED)) { 538 enable_compat20(); 539 break; 540 } 541 if (!(options.protocol & SSH_PROTO_1)) { 542 mismatch = 1; 543 break; 544 } 545 if (remote_minor < 3) { 546 fatal("Remote machine has too old SSH software version."); 547 } else if (remote_minor == 3 || remote_minor == 4) { 548 /* We speak 1.3, too. */ 549 enable_compat13(); 550 minor1 = 3; 551 if (options.forward_agent) { 552 logit("Agent forwarding disabled for protocol 1.3"); 553 options.forward_agent = 0; 554 } 555 } 556 break; 557 case 2: 558 if (options.protocol & SSH_PROTO_2) { 559 enable_compat20(); 560 break; 561 } 562 /* FALLTHROUGH */ 563 default: 564 mismatch = 1; 565 break; 566 } 567 if (mismatch) 568 fatal("Protocol major versions differ: %d vs. %d", 569 (options.protocol & SSH_PROTO_2) ? PROTOCOL_MAJOR_2 : PROTOCOL_MAJOR_1, 570 remote_major); 571 /* Send our own protocol version identification. */ 572 snprintf(buf, sizeof buf, "SSH-%d.%d-%.100s%s", 573 compat20 ? PROTOCOL_MAJOR_2 : PROTOCOL_MAJOR_1, 574 compat20 ? PROTOCOL_MINOR_2 : minor1, 575 SSH_RELEASE, compat20 ? "\r\n" : "\n"); 576 if (atomicio(vwrite, connection_out, buf, strlen(buf)) != strlen(buf)) 577 fatal("write: %.100s", strerror(errno)); 578 client_version_string = xstrdup(buf); 579 chop(client_version_string); 580 chop(server_version_string); 581 debug("Local version string %.100s", client_version_string); 582 } 583 584 /* defaults to 'no' */ 585 static int 586 confirm(const char *prompt) 587 { 588 const char *msg, *again = "Please type 'yes' or 'no': "; 589 char *p; 590 int ret = -1; 591 592 if (options.batch_mode) 593 return 0; 594 for (msg = prompt;;msg = again) { 595 p = read_passphrase(msg, RP_ECHO); 596 if (p == NULL || 597 (p[0] == '\0') || (p[0] == '\n') || 598 strncasecmp(p, "no", 2) == 0) 599 ret = 0; 600 if (p && strncasecmp(p, "yes", 3) == 0) 601 ret = 1; 602 if (p) 603 xfree(p); 604 if (ret != -1) 605 return ret; 606 } 607 } 608 609 /* 610 * check whether the supplied host key is valid, return -1 if the key 611 * is not valid. the user_hostfile will not be updated if 'readonly' is true. 612 */ 613 #define RDRW 0 614 #define RDONLY 1 615 #define ROQUIET 2 616 static int 617 check_host_key(char *hostname, struct sockaddr *hostaddr, u_short port, 618 Key *host_key, int readonly, const char *user_hostfile, 619 const char *system_hostfile) 620 { 621 Key *file_key; 622 const char *type = key_type(host_key); 623 char *ip = NULL, *host = NULL; 624 char hostline[1000], *hostp, *fp, *ra; 625 HostStatus host_status; 626 HostStatus ip_status; 627 int r, local = 0, host_ip_differ = 0; 628 char ntop[NI_MAXHOST]; 629 char msg[1024]; 630 int len, host_line, ip_line, cancelled_forwarding = 0; 631 const char *host_file = NULL, *ip_file = NULL; 632 633 /* 634 * Force accepting of the host key for loopback/localhost. The 635 * problem is that if the home directory is NFS-mounted to multiple 636 * machines, localhost will refer to a different machine in each of 637 * them, and the user will get bogus HOST_CHANGED warnings. This 638 * essentially disables host authentication for localhost; however, 639 * this is probably not a real problem. 640 */ 641 /** hostaddr == 0! */ 642 switch (hostaddr->sa_family) { 643 case AF_INET: 644 local = (ntohl(((struct sockaddr_in *)hostaddr)-> 645 sin_addr.s_addr) >> 24) == IN_LOOPBACKNET; 646 break; 647 case AF_INET6: 648 local = IN6_IS_ADDR_LOOPBACK( 649 &(((struct sockaddr_in6 *)hostaddr)->sin6_addr)); 650 break; 651 default: 652 local = 0; 653 break; 654 } 655 if (options.no_host_authentication_for_localhost == 1 && local && 656 options.host_key_alias == NULL) { 657 debug("Forcing accepting of host key for " 658 "loopback/localhost."); 659 return 0; 660 } 661 662 /* 663 * We don't have the remote ip-address for connections 664 * using a proxy command 665 */ 666 if (options.proxy_command == NULL) { 667 if (getnameinfo(hostaddr, hostaddr->sa_len, ntop, sizeof(ntop), 668 NULL, 0, NI_NUMERICHOST) != 0) 669 fatal("check_host_key: getnameinfo failed"); 670 ip = put_host_port(ntop, port); 671 } else { 672 ip = xstrdup("<no hostip for proxy command>"); 673 } 674 675 /* 676 * Turn off check_host_ip if the connection is to localhost, via proxy 677 * command or if we don't have a hostname to compare with 678 */ 679 if (options.check_host_ip && (local || 680 strcmp(hostname, ip) == 0 || options.proxy_command != NULL)) 681 options.check_host_ip = 0; 682 683 /* 684 * Allow the user to record the key under a different name or 685 * differentiate a non-standard port. This is useful for ssh 686 * tunneling over forwarded connections or if you run multiple 687 * sshd's on different ports on the same machine. 688 */ 689 if (options.host_key_alias != NULL) { 690 host = xstrdup(options.host_key_alias); 691 debug("using hostkeyalias: %s", host); 692 } else { 693 host = put_host_port(hostname, port); 694 } 695 696 /* 697 * Store the host key from the known host file in here so that we can 698 * compare it with the key for the IP address. 699 */ 700 file_key = key_new(host_key->type); 701 702 /* 703 * Check if the host key is present in the user's list of known 704 * hosts or in the systemwide list. 705 */ 706 host_file = user_hostfile; 707 host_status = check_host_in_hostfile(host_file, host, host_key, 708 file_key, &host_line); 709 if (host_status == HOST_NEW) { 710 host_file = system_hostfile; 711 host_status = check_host_in_hostfile(host_file, host, host_key, 712 file_key, &host_line); 713 } 714 /* 715 * Also perform check for the ip address, skip the check if we are 716 * localhost or the hostname was an ip address to begin with 717 */ 718 if (options.check_host_ip) { 719 Key *ip_key = key_new(host_key->type); 720 721 ip_file = user_hostfile; 722 ip_status = check_host_in_hostfile(ip_file, ip, host_key, 723 ip_key, &ip_line); 724 if (ip_status == HOST_NEW) { 725 ip_file = system_hostfile; 726 ip_status = check_host_in_hostfile(ip_file, ip, 727 host_key, ip_key, &ip_line); 728 } 729 if (host_status == HOST_CHANGED && 730 (ip_status != HOST_CHANGED || !key_equal(ip_key, file_key))) 731 host_ip_differ = 1; 732 733 key_free(ip_key); 734 } else 735 ip_status = host_status; 736 737 key_free(file_key); 738 739 switch (host_status) { 740 case HOST_OK: 741 /* The host is known and the key matches. */ 742 debug("Host '%.200s' is known and matches the %s host key.", 743 host, type); 744 debug("Found key in %s:%d", host_file, host_line); 745 if (options.check_host_ip && ip_status == HOST_NEW) { 746 if (readonly) 747 logit("%s host key for IP address " 748 "'%.128s' not in list of known hosts.", 749 type, ip); 750 else if (!add_host_to_hostfile(user_hostfile, ip, 751 host_key, options.hash_known_hosts)) 752 logit("Failed to add the %s host key for IP " 753 "address '%.128s' to the list of known " 754 "hosts (%.30s).", type, ip, user_hostfile); 755 else 756 logit("Warning: Permanently added the %s host " 757 "key for IP address '%.128s' to the list " 758 "of known hosts.", type, ip); 759 } else if (options.visual_host_key) { 760 fp = key_fingerprint(host_key, SSH_FP_MD5, SSH_FP_HEX); 761 ra = key_fingerprint(host_key, SSH_FP_MD5, 762 SSH_FP_RANDOMART); 763 logit("Host key fingerprint is %s\n%s\n", fp, ra); 764 xfree(ra); 765 xfree(fp); 766 } 767 break; 768 case HOST_NEW: 769 if (options.host_key_alias == NULL && port != 0 && 770 port != SSH_DEFAULT_PORT) { 771 debug("checking without port identifier"); 772 if (check_host_key(hostname, hostaddr, 0, host_key, 773 ROQUIET, user_hostfile, system_hostfile) == 0) { 774 debug("found matching key w/out port"); 775 break; 776 } 777 } 778 if (readonly) 779 goto fail; 780 /* The host is new. */ 781 if (options.strict_host_key_checking == 1) { 782 /* 783 * User has requested strict host key checking. We 784 * will not add the host key automatically. The only 785 * alternative left is to abort. 786 */ 787 error("No %s host key is known for %.200s and you " 788 "have requested strict checking.", type, host); 789 goto fail; 790 } else if (options.strict_host_key_checking == 2) { 791 char msg1[1024], msg2[1024]; 792 793 if (show_other_keys(host, host_key)) 794 snprintf(msg1, sizeof(msg1), 795 "\nbut keys of different type are already" 796 " known for this host."); 797 else 798 snprintf(msg1, sizeof(msg1), "."); 799 /* The default */ 800 fp = key_fingerprint(host_key, SSH_FP_MD5, SSH_FP_HEX); 801 ra = key_fingerprint(host_key, SSH_FP_MD5, 802 SSH_FP_RANDOMART); 803 msg2[0] = '\0'; 804 if (options.verify_host_key_dns) { 805 if (matching_host_key_dns) 806 snprintf(msg2, sizeof(msg2), 807 "Matching host key fingerprint" 808 " found in DNS.\n"); 809 else 810 snprintf(msg2, sizeof(msg2), 811 "No matching host key fingerprint" 812 " found in DNS.\n"); 813 } 814 snprintf(msg, sizeof(msg), 815 "The authenticity of host '%.200s (%s)' can't be " 816 "established%s\n" 817 "%s key fingerprint is %s.%s%s\n%s" 818 "Are you sure you want to continue connecting " 819 "(yes/no)? ", 820 host, ip, msg1, type, fp, 821 options.visual_host_key ? "\n" : "", 822 options.visual_host_key ? ra : "", 823 msg2); 824 xfree(ra); 825 xfree(fp); 826 if (!confirm(msg)) 827 goto fail; 828 } 829 /* 830 * If not in strict mode, add the key automatically to the 831 * local known_hosts file. 832 */ 833 if (options.check_host_ip && ip_status == HOST_NEW) { 834 snprintf(hostline, sizeof(hostline), "%s,%s", 835 host, ip); 836 hostp = hostline; 837 if (options.hash_known_hosts) { 838 /* Add hash of host and IP separately */ 839 r = add_host_to_hostfile(user_hostfile, host, 840 host_key, options.hash_known_hosts) && 841 add_host_to_hostfile(user_hostfile, ip, 842 host_key, options.hash_known_hosts); 843 } else { 844 /* Add unhashed "host,ip" */ 845 r = add_host_to_hostfile(user_hostfile, 846 hostline, host_key, 847 options.hash_known_hosts); 848 } 849 } else { 850 r = add_host_to_hostfile(user_hostfile, host, host_key, 851 options.hash_known_hosts); 852 hostp = host; 853 } 854 855 if (!r) 856 logit("Failed to add the host to the list of known " 857 "hosts (%.500s).", user_hostfile); 858 else 859 logit("Warning: Permanently added '%.200s' (%s) to the " 860 "list of known hosts.", hostp, type); 861 break; 862 case HOST_CHANGED: 863 if (readonly == ROQUIET) 864 goto fail; 865 if (options.check_host_ip && host_ip_differ) { 866 char *key_msg; 867 if (ip_status == HOST_NEW) 868 key_msg = "is unknown"; 869 else if (ip_status == HOST_OK) 870 key_msg = "is unchanged"; 871 else 872 key_msg = "has a different value"; 873 error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"); 874 error("@ WARNING: POSSIBLE DNS SPOOFING DETECTED! @"); 875 error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"); 876 error("The %s host key for %s has changed,", type, host); 877 error("and the key for the corresponding IP address %s", ip); 878 error("%s. This could either mean that", key_msg); 879 error("DNS SPOOFING is happening or the IP address for the host"); 880 error("and its host key have changed at the same time."); 881 if (ip_status != HOST_NEW) 882 error("Offending key for IP in %s:%d", ip_file, ip_line); 883 } 884 /* The host key has changed. */ 885 warn_changed_key(host_key); 886 error("Add correct host key in %.100s to get rid of this message.", 887 user_hostfile); 888 error("Offending key in %s:%d", host_file, host_line); 889 890 /* 891 * If strict host key checking is in use, the user will have 892 * to edit the key manually and we can only abort. 893 */ 894 if (options.strict_host_key_checking) { 895 error("%s host key for %.200s has changed and you have " 896 "requested strict checking.", type, host); 897 goto fail; 898 } 899 900 /* 901 * If strict host key checking has not been requested, allow 902 * the connection but without MITM-able authentication or 903 * forwarding. 904 */ 905 if (options.password_authentication) { 906 error("Password authentication is disabled to avoid " 907 "man-in-the-middle attacks."); 908 options.password_authentication = 0; 909 cancelled_forwarding = 1; 910 } 911 if (options.kbd_interactive_authentication) { 912 error("Keyboard-interactive authentication is disabled" 913 " to avoid man-in-the-middle attacks."); 914 options.kbd_interactive_authentication = 0; 915 options.challenge_response_authentication = 0; 916 cancelled_forwarding = 1; 917 } 918 if (options.challenge_response_authentication) { 919 error("Challenge/response authentication is disabled" 920 " to avoid man-in-the-middle attacks."); 921 options.challenge_response_authentication = 0; 922 cancelled_forwarding = 1; 923 } 924 if (options.forward_agent) { 925 error("Agent forwarding is disabled to avoid " 926 "man-in-the-middle attacks."); 927 options.forward_agent = 0; 928 cancelled_forwarding = 1; 929 } 930 if (options.forward_x11) { 931 error("X11 forwarding is disabled to avoid " 932 "man-in-the-middle attacks."); 933 options.forward_x11 = 0; 934 cancelled_forwarding = 1; 935 } 936 if (options.num_local_forwards > 0 || 937 options.num_remote_forwards > 0) { 938 error("Port forwarding is disabled to avoid " 939 "man-in-the-middle attacks."); 940 options.num_local_forwards = 941 options.num_remote_forwards = 0; 942 cancelled_forwarding = 1; 943 } 944 if (options.tun_open != SSH_TUNMODE_NO) { 945 error("Tunnel forwarding is disabled to avoid " 946 "man-in-the-middle attacks."); 947 options.tun_open = SSH_TUNMODE_NO; 948 cancelled_forwarding = 1; 949 } 950 if (options.exit_on_forward_failure && cancelled_forwarding) 951 fatal("Error: forwarding disabled due to host key " 952 "check failure"); 953 954 /* 955 * XXX Should permit the user to change to use the new id. 956 * This could be done by converting the host key to an 957 * identifying sentence, tell that the host identifies itself 958 * by that sentence, and ask the user if he/she whishes to 959 * accept the authentication. 960 */ 961 break; 962 case HOST_FOUND: 963 fatal("internal error"); 964 break; 965 } 966 967 if (options.check_host_ip && host_status != HOST_CHANGED && 968 ip_status == HOST_CHANGED) { 969 snprintf(msg, sizeof(msg), 970 "Warning: the %s host key for '%.200s' " 971 "differs from the key for the IP address '%.128s'" 972 "\nOffending key for IP in %s:%d", 973 type, host, ip, ip_file, ip_line); 974 if (host_status == HOST_OK) { 975 len = strlen(msg); 976 snprintf(msg + len, sizeof(msg) - len, 977 "\nMatching host key in %s:%d", 978 host_file, host_line); 979 } 980 if (options.strict_host_key_checking == 1) { 981 logit("%s", msg); 982 error("Exiting, you have requested strict checking."); 983 goto fail; 984 } else if (options.strict_host_key_checking == 2) { 985 strlcat(msg, "\nAre you sure you want " 986 "to continue connecting (yes/no)? ", sizeof(msg)); 987 if (!confirm(msg)) 988 goto fail; 989 } else { 990 logit("%s", msg); 991 } 992 } 993 994 xfree(ip); 995 xfree(host); 996 return 0; 997 998 fail: 999 xfree(ip); 1000 xfree(host); 1001 return -1; 1002 } 1003 1004 /* returns 0 if key verifies or -1 if key does NOT verify */ 1005 int 1006 verify_host_key(char *host, struct sockaddr *hostaddr, Key *host_key) 1007 { 1008 struct stat st; 1009 int flags = 0; 1010 1011 if (options.verify_host_key_dns && 1012 verify_host_key_dns(host, hostaddr, host_key, &flags) == 0) { 1013 1014 if (flags & DNS_VERIFY_FOUND) { 1015 1016 if (options.verify_host_key_dns == 1 && 1017 flags & DNS_VERIFY_MATCH && 1018 flags & DNS_VERIFY_SECURE) 1019 return 0; 1020 1021 if (flags & DNS_VERIFY_MATCH) { 1022 matching_host_key_dns = 1; 1023 } else { 1024 warn_changed_key(host_key); 1025 error("Update the SSHFP RR in DNS with the new " 1026 "host key to get rid of this message."); 1027 } 1028 } 1029 } 1030 1031 /* return ok if the key can be found in an old keyfile */ 1032 if (stat(options.system_hostfile2, &st) == 0 || 1033 stat(options.user_hostfile2, &st) == 0) { 1034 if (check_host_key(host, hostaddr, options.port, host_key, 1035 RDONLY, options.user_hostfile2, 1036 options.system_hostfile2) == 0) 1037 return 0; 1038 } 1039 return check_host_key(host, hostaddr, options.port, host_key, 1040 RDRW, options.user_hostfile, options.system_hostfile); 1041 } 1042 1043 /* 1044 * Starts a dialog with the server, and authenticates the current user on the 1045 * server. This does not need any extra privileges. The basic connection 1046 * to the server must already have been established before this is called. 1047 * If login fails, this function prints an error and never returns. 1048 * This function does not require super-user privileges. 1049 */ 1050 void 1051 ssh_login(Sensitive *sensitive, const char *orighost, 1052 struct sockaddr *hostaddr, struct passwd *pw, int timeout_ms) 1053 { 1054 char *host, *cp; 1055 char *server_user, *local_user; 1056 1057 local_user = xstrdup(pw->pw_name); 1058 server_user = options.user ? options.user : local_user; 1059 1060 /* Convert the user-supplied hostname into all lowercase. */ 1061 host = xstrdup(orighost); 1062 for (cp = host; *cp; cp++) 1063 if (isupper((unsigned char)*cp)) 1064 *cp = (char)tolower((unsigned char)*cp); 1065 1066 /* Exchange protocol version identification strings with the server. */ 1067 ssh_exchange_identification(timeout_ms); 1068 1069 /* Put the connection into non-blocking mode. */ 1070 packet_set_nonblocking(); 1071 1072 /* key exchange */ 1073 /* authenticate user */ 1074 if (compat20) { 1075 ssh_kex2(host, hostaddr); 1076 ssh_userauth2(local_user, server_user, host, sensitive); 1077 } else { 1078 ssh_kex(host, hostaddr); 1079 ssh_userauth1(local_user, server_user, host, sensitive); 1080 } 1081 xfree(local_user); 1082 } 1083 1084 void 1085 ssh_put_password(char *password) 1086 { 1087 int size; 1088 char *padded; 1089 1090 if (datafellows & SSH_BUG_PASSWORDPAD) { 1091 packet_put_cstring(password); 1092 return; 1093 } 1094 size = roundup(strlen(password) + 1, 32); 1095 padded = xcalloc(1, size); 1096 strlcpy(padded, password, size); 1097 packet_put_string(padded, size); 1098 memset(padded, 0, size); 1099 xfree(padded); 1100 } 1101 1102 static int 1103 show_key_from_file(const char *file, const char *host, int keytype) 1104 { 1105 Key *found; 1106 char *fp, *ra; 1107 int line, ret; 1108 1109 found = key_new(keytype); 1110 if ((ret = lookup_key_in_hostfile_by_type(file, host, 1111 keytype, found, &line))) { 1112 fp = key_fingerprint(found, SSH_FP_MD5, SSH_FP_HEX); 1113 ra = key_fingerprint(found, SSH_FP_MD5, SSH_FP_RANDOMART); 1114 logit("WARNING: %s key found for host %s\n" 1115 "in %s:%d\n" 1116 "%s key fingerprint %s.\n%s\n", 1117 key_type(found), host, file, line, 1118 key_type(found), fp, ra); 1119 xfree(ra); 1120 xfree(fp); 1121 } 1122 key_free(found); 1123 return (ret); 1124 } 1125 1126 /* print all known host keys for a given host, but skip keys of given type */ 1127 static int 1128 show_other_keys(const char *host, Key *key) 1129 { 1130 int type[] = { KEY_RSA1, KEY_RSA, KEY_DSA, -1}; 1131 int i, found = 0; 1132 1133 for (i = 0; type[i] != -1; i++) { 1134 if (type[i] == key->type) 1135 continue; 1136 if (type[i] != KEY_RSA1 && 1137 show_key_from_file(options.user_hostfile2, host, type[i])) { 1138 found = 1; 1139 continue; 1140 } 1141 if (type[i] != KEY_RSA1 && 1142 show_key_from_file(options.system_hostfile2, host, type[i])) { 1143 found = 1; 1144 continue; 1145 } 1146 if (show_key_from_file(options.user_hostfile, host, type[i])) { 1147 found = 1; 1148 continue; 1149 } 1150 if (show_key_from_file(options.system_hostfile, host, type[i])) { 1151 found = 1; 1152 continue; 1153 } 1154 debug2("no key of type %d for host %s", type[i], host); 1155 } 1156 return (found); 1157 } 1158 1159 static void 1160 warn_changed_key(Key *host_key) 1161 { 1162 char *fp; 1163 const char *type = key_type(host_key); 1164 1165 fp = key_fingerprint(host_key, SSH_FP_MD5, SSH_FP_HEX); 1166 1167 error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"); 1168 error("@ WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED! @"); 1169 error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"); 1170 error("IT IS POSSIBLE THAT SOMEONE IS DOING SOMETHING NASTY!"); 1171 error("Someone could be eavesdropping on you right now (man-in-the-middle attack)!"); 1172 error("It is also possible that the %s host key has just been changed.", type); 1173 error("The fingerprint for the %s key sent by the remote host is\n%s.", 1174 type, fp); 1175 error("Please contact your system administrator."); 1176 1177 xfree(fp); 1178 } 1179 1180 /* 1181 * Execute a local command 1182 */ 1183 int 1184 ssh_local_cmd(const char *args) 1185 { 1186 char *shell; 1187 pid_t pid; 1188 int status; 1189 1190 if (!options.permit_local_command || 1191 args == NULL || !*args) 1192 return (1); 1193 1194 if ((shell = getenv("SHELL")) == NULL) 1195 shell = _PATH_BSHELL; 1196 1197 pid = fork(); 1198 if (pid == 0) { 1199 debug3("Executing %s -c \"%s\"", shell, args); 1200 execl(shell, shell, "-c", args, (char *)NULL); 1201 error("Couldn't execute %s -c \"%s\": %s", 1202 shell, args, strerror(errno)); 1203 _exit(1); 1204 } else if (pid == -1) 1205 fatal("fork failed: %.100s", strerror(errno)); 1206 while (waitpid(pid, &status, 0) == -1) 1207 if (errno != EINTR) 1208 fatal("Couldn't wait for child: %s", strerror(errno)); 1209 1210 if (!WIFEXITED(status)) 1211 return (1); 1212 1213 return (WEXITSTATUS(status)); 1214 } 1215