1 /* $OpenBSD: sshconnect.c,v 1.304 2018/07/27 05:34:42 dtucker 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 * Code to connect to a remote host, and to perform the client side of the 7 * login (authentication) dialog. 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 16 #include "includes.h" 17 __RCSID("$FreeBSD$"); 18 19 #include <sys/types.h> 20 #include <sys/wait.h> 21 #include <sys/stat.h> 22 #include <sys/socket.h> 23 #ifdef HAVE_SYS_TIME_H 24 # include <sys/time.h> 25 #endif 26 27 #include <net/if.h> 28 #include <netinet/in.h> 29 #include <arpa/inet.h> 30 #include <rpc/rpc.h> 31 32 #include <ctype.h> 33 #include <errno.h> 34 #include <fcntl.h> 35 #include <netdb.h> 36 #ifdef HAVE_PATHS_H 37 #include <paths.h> 38 #endif 39 #include <pwd.h> 40 #ifdef HAVE_POLL_H 41 #include <poll.h> 42 #endif 43 #include <signal.h> 44 #include <stdarg.h> 45 #include <stdio.h> 46 #include <stdlib.h> 47 #include <string.h> 48 #include <unistd.h> 49 #ifdef HAVE_IFADDRS_H 50 # include <ifaddrs.h> 51 #endif 52 53 #include "xmalloc.h" 54 #include "hostfile.h" 55 #include "ssh.h" 56 #include "sshbuf.h" 57 #include "packet.h" 58 #include "compat.h" 59 #include "sshkey.h" 60 #include "sshconnect.h" 61 #include "hostfile.h" 62 #include "log.h" 63 #include "misc.h" 64 #include "readconf.h" 65 #include "atomicio.h" 66 #include "dns.h" 67 #include "monitor_fdpass.h" 68 #include "ssh2.h" 69 #include "version.h" 70 #include "authfile.h" 71 #include "ssherr.h" 72 #include "authfd.h" 73 74 char *client_version_string = NULL; 75 char *server_version_string = NULL; 76 struct sshkey *previous_host_key = NULL; 77 78 static int matching_host_key_dns = 0; 79 80 static pid_t proxy_command_pid = 0; 81 82 /* import */ 83 extern Options options; 84 extern char *__progname; 85 86 static int show_other_keys(struct hostkeys *, struct sshkey *); 87 static void warn_changed_key(struct sshkey *); 88 89 /* Expand a proxy command */ 90 static char * 91 expand_proxy_command(const char *proxy_command, const char *user, 92 const char *host, int port) 93 { 94 char *tmp, *ret, strport[NI_MAXSERV]; 95 96 snprintf(strport, sizeof strport, "%d", port); 97 xasprintf(&tmp, "exec %s", proxy_command); 98 ret = percent_expand(tmp, "h", host, "p", strport, 99 "r", options.user, (char *)NULL); 100 free(tmp); 101 return ret; 102 } 103 104 /* 105 * Connect to the given ssh server using a proxy command that passes a 106 * a connected fd back to us. 107 */ 108 static int 109 ssh_proxy_fdpass_connect(struct ssh *ssh, const char *host, u_short port, 110 const char *proxy_command) 111 { 112 char *command_string; 113 int sp[2], sock; 114 pid_t pid; 115 char *shell; 116 117 if ((shell = getenv("SHELL")) == NULL) 118 shell = _PATH_BSHELL; 119 120 if (socketpair(AF_UNIX, SOCK_STREAM, 0, sp) < 0) 121 fatal("Could not create socketpair to communicate with " 122 "proxy dialer: %.100s", strerror(errno)); 123 124 command_string = expand_proxy_command(proxy_command, options.user, 125 host, port); 126 debug("Executing proxy dialer command: %.500s", command_string); 127 128 /* Fork and execute the proxy command. */ 129 if ((pid = fork()) == 0) { 130 char *argv[10]; 131 132 close(sp[1]); 133 /* Redirect stdin and stdout. */ 134 if (sp[0] != 0) { 135 if (dup2(sp[0], 0) < 0) 136 perror("dup2 stdin"); 137 } 138 if (sp[0] != 1) { 139 if (dup2(sp[0], 1) < 0) 140 perror("dup2 stdout"); 141 } 142 if (sp[0] >= 2) 143 close(sp[0]); 144 145 /* 146 * Stderr is left as it is so that error messages get 147 * printed on the user's terminal. 148 */ 149 argv[0] = shell; 150 argv[1] = "-c"; 151 argv[2] = command_string; 152 argv[3] = NULL; 153 154 /* 155 * Execute the proxy command. 156 * Note that we gave up any extra privileges above. 157 */ 158 execv(argv[0], argv); 159 perror(argv[0]); 160 exit(1); 161 } 162 /* Parent. */ 163 if (pid < 0) 164 fatal("fork failed: %.100s", strerror(errno)); 165 close(sp[0]); 166 free(command_string); 167 168 if ((sock = mm_receive_fd(sp[1])) == -1) 169 fatal("proxy dialer did not pass back a connection"); 170 close(sp[1]); 171 172 while (waitpid(pid, NULL, 0) == -1) 173 if (errno != EINTR) 174 fatal("Couldn't wait for child: %s", strerror(errno)); 175 176 /* Set the connection file descriptors. */ 177 if (ssh_packet_set_connection(ssh, sock, sock) == NULL) 178 return -1; /* ssh_packet_set_connection logs error */ 179 180 return 0; 181 } 182 183 /* 184 * Connect to the given ssh server using a proxy command. 185 */ 186 static int 187 ssh_proxy_connect(struct ssh *ssh, const char *host, u_short port, 188 const char *proxy_command) 189 { 190 char *command_string; 191 int pin[2], pout[2]; 192 pid_t pid; 193 char *shell; 194 195 if ((shell = getenv("SHELL")) == NULL || *shell == '\0') 196 shell = _PATH_BSHELL; 197 198 /* Create pipes for communicating with the proxy. */ 199 if (pipe(pin) < 0 || pipe(pout) < 0) 200 fatal("Could not create pipes to communicate with the proxy: %.100s", 201 strerror(errno)); 202 203 command_string = expand_proxy_command(proxy_command, options.user, 204 host, port); 205 debug("Executing proxy command: %.500s", command_string); 206 207 /* Fork and execute the proxy command. */ 208 if ((pid = fork()) == 0) { 209 char *argv[10]; 210 211 /* Redirect stdin and stdout. */ 212 close(pin[1]); 213 if (pin[0] != 0) { 214 if (dup2(pin[0], 0) < 0) 215 perror("dup2 stdin"); 216 close(pin[0]); 217 } 218 close(pout[0]); 219 if (dup2(pout[1], 1) < 0) 220 perror("dup2 stdout"); 221 /* Cannot be 1 because pin allocated two descriptors. */ 222 close(pout[1]); 223 224 /* Stderr is left as it is so that error messages get 225 printed on the user's terminal. */ 226 argv[0] = shell; 227 argv[1] = "-c"; 228 argv[2] = command_string; 229 argv[3] = NULL; 230 231 /* Execute the proxy command. Note that we gave up any 232 extra privileges above. */ 233 signal(SIGPIPE, SIG_DFL); 234 execv(argv[0], argv); 235 perror(argv[0]); 236 exit(1); 237 } 238 /* Parent. */ 239 if (pid < 0) 240 fatal("fork failed: %.100s", strerror(errno)); 241 else 242 proxy_command_pid = pid; /* save pid to clean up later */ 243 244 /* Close child side of the descriptors. */ 245 close(pin[0]); 246 close(pout[1]); 247 248 /* Free the command name. */ 249 free(command_string); 250 251 /* Set the connection file descriptors. */ 252 if (ssh_packet_set_connection(ssh, pout[0], pin[1]) == NULL) 253 return -1; /* ssh_packet_set_connection logs error */ 254 255 return 0; 256 } 257 258 void 259 ssh_kill_proxy_command(void) 260 { 261 /* 262 * Send SIGHUP to proxy command if used. We don't wait() in 263 * case it hangs and instead rely on init to reap the child 264 */ 265 if (proxy_command_pid > 1) 266 kill(proxy_command_pid, SIGHUP); 267 } 268 269 #ifdef HAVE_IFADDRS_H 270 /* 271 * Search a interface address list (returned from getifaddrs(3)) for an 272 * address that matches the desired address family on the specified interface. 273 * Returns 0 and fills in *resultp and *rlenp on success. Returns -1 on failure. 274 */ 275 static int 276 check_ifaddrs(const char *ifname, int af, const struct ifaddrs *ifaddrs, 277 struct sockaddr_storage *resultp, socklen_t *rlenp) 278 { 279 struct sockaddr_in6 *sa6; 280 struct sockaddr_in *sa; 281 struct in6_addr *v6addr; 282 const struct ifaddrs *ifa; 283 int allow_local; 284 285 /* 286 * Prefer addresses that are not loopback or linklocal, but use them 287 * if nothing else matches. 288 */ 289 for (allow_local = 0; allow_local < 2; allow_local++) { 290 for (ifa = ifaddrs; ifa != NULL; ifa = ifa->ifa_next) { 291 if (ifa->ifa_addr == NULL || ifa->ifa_name == NULL || 292 (ifa->ifa_flags & IFF_UP) == 0 || 293 ifa->ifa_addr->sa_family != af || 294 strcmp(ifa->ifa_name, options.bind_interface) != 0) 295 continue; 296 switch (ifa->ifa_addr->sa_family) { 297 case AF_INET: 298 sa = (struct sockaddr_in *)ifa->ifa_addr; 299 if (!allow_local && sa->sin_addr.s_addr == 300 htonl(INADDR_LOOPBACK)) 301 continue; 302 if (*rlenp < sizeof(struct sockaddr_in)) { 303 error("%s: v4 addr doesn't fit", 304 __func__); 305 return -1; 306 } 307 *rlenp = sizeof(struct sockaddr_in); 308 memcpy(resultp, sa, *rlenp); 309 return 0; 310 case AF_INET6: 311 sa6 = (struct sockaddr_in6 *)ifa->ifa_addr; 312 v6addr = &sa6->sin6_addr; 313 if (!allow_local && 314 (IN6_IS_ADDR_LINKLOCAL(v6addr) || 315 IN6_IS_ADDR_LOOPBACK(v6addr))) 316 continue; 317 if (*rlenp < sizeof(struct sockaddr_in6)) { 318 error("%s: v6 addr doesn't fit", 319 __func__); 320 return -1; 321 } 322 *rlenp = sizeof(struct sockaddr_in6); 323 memcpy(resultp, sa6, *rlenp); 324 return 0; 325 } 326 } 327 } 328 return -1; 329 } 330 #endif 331 332 /* 333 * Creates a socket for use as the ssh connection. 334 */ 335 static int 336 ssh_create_socket(struct addrinfo *ai) 337 { 338 int sock, r; 339 struct sockaddr_storage bindaddr; 340 socklen_t bindaddrlen = 0; 341 struct addrinfo hints, *res = NULL; 342 #ifdef HAVE_IFADDRS_H 343 struct ifaddrs *ifaddrs = NULL; 344 #endif 345 char ntop[NI_MAXHOST]; 346 347 sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol); 348 if (sock < 0) { 349 error("socket: %s", strerror(errno)); 350 return -1; 351 } 352 fcntl(sock, F_SETFD, FD_CLOEXEC); 353 354 /* Bind the socket to an alternative local IP address */ 355 if (options.bind_address == NULL && options.bind_interface == NULL) 356 return sock; 357 358 if (options.bind_address != NULL) { 359 memset(&hints, 0, sizeof(hints)); 360 hints.ai_family = ai->ai_family; 361 hints.ai_socktype = ai->ai_socktype; 362 hints.ai_protocol = ai->ai_protocol; 363 hints.ai_flags = AI_PASSIVE; 364 if ((r = getaddrinfo(options.bind_address, NULL, 365 &hints, &res)) != 0) { 366 error("getaddrinfo: %s: %s", options.bind_address, 367 ssh_gai_strerror(r)); 368 goto fail; 369 } 370 if (res == NULL) { 371 error("getaddrinfo: no addrs"); 372 goto fail; 373 } 374 if (res->ai_addrlen > sizeof(bindaddr)) { 375 error("%s: addr doesn't fit", __func__); 376 goto fail; 377 } 378 memcpy(&bindaddr, res->ai_addr, res->ai_addrlen); 379 bindaddrlen = res->ai_addrlen; 380 } else if (options.bind_interface != NULL) { 381 #ifdef HAVE_IFADDRS_H 382 if ((r = getifaddrs(&ifaddrs)) != 0) { 383 error("getifaddrs: %s: %s", options.bind_interface, 384 strerror(errno)); 385 goto fail; 386 } 387 bindaddrlen = sizeof(bindaddr); 388 if (check_ifaddrs(options.bind_interface, ai->ai_family, 389 ifaddrs, &bindaddr, &bindaddrlen) != 0) { 390 logit("getifaddrs: %s: no suitable addresses", 391 options.bind_interface); 392 goto fail; 393 } 394 #else 395 error("BindInterface not supported on this platform."); 396 #endif 397 } 398 if ((r = getnameinfo((struct sockaddr *)&bindaddr, bindaddrlen, 399 ntop, sizeof(ntop), NULL, 0, NI_NUMERICHOST)) != 0) { 400 error("%s: getnameinfo failed: %s", __func__, 401 ssh_gai_strerror(r)); 402 goto fail; 403 } 404 if (bind(sock, (struct sockaddr *)&bindaddr, bindaddrlen) != 0) { 405 error("bind %s: %s", ntop, strerror(errno)); 406 goto fail; 407 } 408 debug("%s: bound to %s", __func__, ntop); 409 /* success */ 410 goto out; 411 fail: 412 close(sock); 413 sock = -1; 414 out: 415 if (res != NULL) 416 freeaddrinfo(res); 417 #ifdef HAVE_IFADDRS_H 418 if (ifaddrs != NULL) 419 freeifaddrs(ifaddrs); 420 #endif 421 return sock; 422 } 423 424 /* 425 * Wait up to *timeoutp milliseconds for fd to be readable. Updates 426 * *timeoutp with time remaining. 427 * Returns 0 if fd ready or -1 on timeout or error (see errno). 428 */ 429 static int 430 waitrfd(int fd, int *timeoutp) 431 { 432 struct pollfd pfd; 433 struct timeval t_start; 434 int oerrno, r; 435 436 monotime_tv(&t_start); 437 pfd.fd = fd; 438 pfd.events = POLLIN; 439 for (; *timeoutp >= 0;) { 440 r = poll(&pfd, 1, *timeoutp); 441 oerrno = errno; 442 ms_subtract_diff(&t_start, timeoutp); 443 errno = oerrno; 444 if (r > 0) 445 return 0; 446 else if (r == -1 && errno != EAGAIN) 447 return -1; 448 else if (r == 0) 449 break; 450 } 451 /* timeout */ 452 errno = ETIMEDOUT; 453 return -1; 454 } 455 456 static int 457 timeout_connect(int sockfd, const struct sockaddr *serv_addr, 458 socklen_t addrlen, int *timeoutp) 459 { 460 int optval = 0; 461 socklen_t optlen = sizeof(optval); 462 463 /* No timeout: just do a blocking connect() */ 464 if (*timeoutp <= 0) 465 return connect(sockfd, serv_addr, addrlen); 466 467 set_nonblock(sockfd); 468 if (connect(sockfd, serv_addr, addrlen) == 0) { 469 /* Succeeded already? */ 470 unset_nonblock(sockfd); 471 return 0; 472 } else if (errno != EINPROGRESS) 473 return -1; 474 475 if (waitrfd(sockfd, timeoutp) == -1) 476 return -1; 477 478 /* Completed or failed */ 479 if (getsockopt(sockfd, SOL_SOCKET, SO_ERROR, &optval, &optlen) == -1) { 480 debug("getsockopt: %s", strerror(errno)); 481 return -1; 482 } 483 if (optval != 0) { 484 errno = optval; 485 return -1; 486 } 487 unset_nonblock(sockfd); 488 return 0; 489 } 490 491 /* 492 * Opens a TCP/IP connection to the remote server on the given host. 493 * The address of the remote host will be returned in hostaddr. 494 * If port is 0, the default port will be used. 495 * Connection_attempts specifies the maximum number of tries (one per 496 * second). If proxy_command is non-NULL, it specifies the command (with %h 497 * and %p substituted for host and port, respectively) to use to contact 498 * the daemon. 499 */ 500 static int 501 ssh_connect_direct(struct ssh *ssh, const char *host, struct addrinfo *aitop, 502 struct sockaddr_storage *hostaddr, u_short port, int family, 503 int connection_attempts, int *timeout_ms, int want_keepalive) 504 { 505 int on = 1; 506 int oerrno, sock = -1, attempt; 507 char ntop[NI_MAXHOST], strport[NI_MAXSERV]; 508 struct addrinfo *ai; 509 510 debug2("%s", __func__); 511 memset(ntop, 0, sizeof(ntop)); 512 memset(strport, 0, sizeof(strport)); 513 514 for (attempt = 0; attempt < connection_attempts; attempt++) { 515 if (attempt > 0) { 516 /* Sleep a moment before retrying. */ 517 sleep(1); 518 debug("Trying again..."); 519 } 520 /* 521 * Loop through addresses for this host, and try each one in 522 * sequence until the connection succeeds. 523 */ 524 for (ai = aitop; ai; ai = ai->ai_next) { 525 if (ai->ai_family != AF_INET && 526 ai->ai_family != AF_INET6) { 527 errno = EAFNOSUPPORT; 528 continue; 529 } 530 if (getnameinfo(ai->ai_addr, ai->ai_addrlen, 531 ntop, sizeof(ntop), strport, sizeof(strport), 532 NI_NUMERICHOST|NI_NUMERICSERV) != 0) { 533 oerrno = errno; 534 error("%s: getnameinfo failed", __func__); 535 errno = oerrno; 536 continue; 537 } 538 debug("Connecting to %.200s [%.100s] port %s.", 539 host, ntop, strport); 540 541 /* Create a socket for connecting. */ 542 sock = ssh_create_socket(ai); 543 if (sock < 0) { 544 /* Any error is already output */ 545 errno = 0; 546 continue; 547 } 548 549 if (timeout_connect(sock, ai->ai_addr, ai->ai_addrlen, 550 timeout_ms) >= 0) { 551 /* Successful connection. */ 552 memcpy(hostaddr, ai->ai_addr, ai->ai_addrlen); 553 break; 554 } else { 555 oerrno = errno; 556 debug("connect to address %s port %s: %s", 557 ntop, strport, strerror(errno)); 558 close(sock); 559 sock = -1; 560 errno = oerrno; 561 } 562 } 563 if (sock != -1) 564 break; /* Successful connection. */ 565 } 566 567 /* Return failure if we didn't get a successful connection. */ 568 if (sock == -1) { 569 error("ssh: connect to host %s port %s: %s", 570 host, strport, errno == 0 ? "failure" : strerror(errno)); 571 return -1; 572 } 573 574 debug("Connection established."); 575 576 /* Set SO_KEEPALIVE if requested. */ 577 if (want_keepalive && 578 setsockopt(sock, SOL_SOCKET, SO_KEEPALIVE, (void *)&on, 579 sizeof(on)) < 0) 580 error("setsockopt SO_KEEPALIVE: %.100s", strerror(errno)); 581 582 /* Set the connection. */ 583 if (ssh_packet_set_connection(ssh, sock, sock) == NULL) 584 return -1; /* ssh_packet_set_connection logs error */ 585 586 return 0; 587 } 588 589 int 590 ssh_connect(struct ssh *ssh, const char *host, struct addrinfo *addrs, 591 struct sockaddr_storage *hostaddr, u_short port, int family, 592 int connection_attempts, int *timeout_ms, int want_keepalive) 593 { 594 if (options.proxy_command == NULL) { 595 return ssh_connect_direct(ssh, host, addrs, hostaddr, port, 596 family, connection_attempts, timeout_ms, want_keepalive); 597 } else if (strcmp(options.proxy_command, "-") == 0) { 598 if ((ssh_packet_set_connection(ssh, 599 STDIN_FILENO, STDOUT_FILENO)) == NULL) 600 return -1; /* ssh_packet_set_connection logs error */ 601 return 0; 602 } else if (options.proxy_use_fdpass) { 603 return ssh_proxy_fdpass_connect(ssh, host, port, 604 options.proxy_command); 605 } 606 return ssh_proxy_connect(ssh, host, port, options.proxy_command); 607 } 608 609 static void 610 send_client_banner(int connection_out, int minor1) 611 { 612 /* Send our own protocol version identification. */ 613 xasprintf(&client_version_string, "SSH-%d.%d-%.100s%s%s\n", 614 PROTOCOL_MAJOR_2, PROTOCOL_MINOR_2, SSH_VERSION, 615 *options.version_addendum == '\0' ? "" : " ", 616 options.version_addendum); 617 if (atomicio(vwrite, connection_out, client_version_string, 618 strlen(client_version_string)) != strlen(client_version_string)) 619 fatal("write: %.100s", strerror(errno)); 620 chop(client_version_string); 621 debug("Local version string %.100s", client_version_string); 622 } 623 624 /* 625 * Waits for the server identification string, and sends our own 626 * identification string. 627 */ 628 void 629 ssh_exchange_identification(int timeout_ms) 630 { 631 char buf[256], remote_version[256]; /* must be same size! */ 632 int remote_major, remote_minor, mismatch; 633 int connection_in = packet_get_connection_in(); 634 int connection_out = packet_get_connection_out(); 635 u_int i, n; 636 size_t len; 637 int rc; 638 639 send_client_banner(connection_out, 0); 640 641 /* Read other side's version identification. */ 642 for (n = 0;;) { 643 for (i = 0; i < sizeof(buf) - 1; i++) { 644 if (timeout_ms > 0) { 645 rc = waitrfd(connection_in, &timeout_ms); 646 if (rc == -1 && errno == ETIMEDOUT) { 647 fatal("Connection timed out during " 648 "banner exchange"); 649 } else if (rc == -1) { 650 fatal("%s: %s", 651 __func__, strerror(errno)); 652 } 653 } 654 655 len = atomicio(read, connection_in, &buf[i], 1); 656 if (len != 1 && errno == EPIPE) 657 fatal("ssh_exchange_identification: " 658 "Connection closed by remote host"); 659 else if (len != 1) 660 fatal("ssh_exchange_identification: " 661 "read: %.100s", strerror(errno)); 662 if (buf[i] == '\r') { 663 buf[i] = '\n'; 664 buf[i + 1] = 0; 665 continue; /**XXX wait for \n */ 666 } 667 if (buf[i] == '\n') { 668 buf[i + 1] = 0; 669 break; 670 } 671 if (++n > 65536) 672 fatal("ssh_exchange_identification: " 673 "No banner received"); 674 } 675 buf[sizeof(buf) - 1] = 0; 676 if (strncmp(buf, "SSH-", 4) == 0) 677 break; 678 debug("ssh_exchange_identification: %s", buf); 679 } 680 server_version_string = xstrdup(buf); 681 682 /* 683 * Check that the versions match. In future this might accept 684 * several versions and set appropriate flags to handle them. 685 */ 686 if (sscanf(server_version_string, "SSH-%d.%d-%[^\n]\n", 687 &remote_major, &remote_minor, remote_version) != 3) 688 fatal("Bad remote protocol version identification: '%.100s'", buf); 689 debug("Remote protocol version %d.%d, remote software version %.100s", 690 remote_major, remote_minor, remote_version); 691 692 active_state->compat = compat_datafellows(remote_version); 693 mismatch = 0; 694 695 switch (remote_major) { 696 case 2: 697 break; 698 case 1: 699 if (remote_minor != 99) 700 mismatch = 1; 701 break; 702 default: 703 mismatch = 1; 704 break; 705 } 706 if (mismatch) 707 fatal("Protocol major versions differ: %d vs. %d", 708 PROTOCOL_MAJOR_2, remote_major); 709 if ((datafellows & SSH_BUG_RSASIGMD5) != 0) 710 logit("Server version \"%.100s\" uses unsafe RSA signature " 711 "scheme; disabling use of RSA keys", remote_version); 712 chop(server_version_string); 713 } 714 715 /* defaults to 'no' */ 716 static int 717 confirm(const char *prompt) 718 { 719 const char *msg, *again = "Please type 'yes' or 'no': "; 720 char *p; 721 int ret = -1; 722 723 if (options.batch_mode) 724 return 0; 725 for (msg = prompt;;msg = again) { 726 p = read_passphrase(msg, RP_ECHO); 727 if (p == NULL) 728 return 0; 729 p[strcspn(p, "\n")] = '\0'; 730 if (p[0] == '\0' || strcasecmp(p, "no") == 0) 731 ret = 0; 732 else if (strcasecmp(p, "yes") == 0) 733 ret = 1; 734 free(p); 735 if (ret != -1) 736 return ret; 737 } 738 } 739 740 static int 741 check_host_cert(const char *host, const struct sshkey *host_key) 742 { 743 const char *reason; 744 745 if (sshkey_cert_check_authority(host_key, 1, 0, host, &reason) != 0) { 746 error("%s", reason); 747 return 0; 748 } 749 if (sshbuf_len(host_key->cert->critical) != 0) { 750 error("Certificate for %s contains unsupported " 751 "critical options(s)", host); 752 return 0; 753 } 754 return 1; 755 } 756 757 static int 758 sockaddr_is_local(struct sockaddr *hostaddr) 759 { 760 switch (hostaddr->sa_family) { 761 case AF_INET: 762 return (ntohl(((struct sockaddr_in *)hostaddr)-> 763 sin_addr.s_addr) >> 24) == IN_LOOPBACKNET; 764 case AF_INET6: 765 return IN6_IS_ADDR_LOOPBACK( 766 &(((struct sockaddr_in6 *)hostaddr)->sin6_addr)); 767 default: 768 return 0; 769 } 770 } 771 772 /* 773 * Prepare the hostname and ip address strings that are used to lookup 774 * host keys in known_hosts files. These may have a port number appended. 775 */ 776 void 777 get_hostfile_hostname_ipaddr(char *hostname, struct sockaddr *hostaddr, 778 u_short port, char **hostfile_hostname, char **hostfile_ipaddr) 779 { 780 char ntop[NI_MAXHOST]; 781 socklen_t addrlen; 782 783 switch (hostaddr == NULL ? -1 : hostaddr->sa_family) { 784 case -1: 785 addrlen = 0; 786 break; 787 case AF_INET: 788 addrlen = sizeof(struct sockaddr_in); 789 break; 790 case AF_INET6: 791 addrlen = sizeof(struct sockaddr_in6); 792 break; 793 default: 794 addrlen = sizeof(struct sockaddr); 795 break; 796 } 797 798 /* 799 * We don't have the remote ip-address for connections 800 * using a proxy command 801 */ 802 if (hostfile_ipaddr != NULL) { 803 if (options.proxy_command == NULL) { 804 if (getnameinfo(hostaddr, addrlen, 805 ntop, sizeof(ntop), NULL, 0, NI_NUMERICHOST) != 0) 806 fatal("%s: getnameinfo failed", __func__); 807 *hostfile_ipaddr = put_host_port(ntop, port); 808 } else { 809 *hostfile_ipaddr = xstrdup("<no hostip for proxy " 810 "command>"); 811 } 812 } 813 814 /* 815 * Allow the user to record the key under a different name or 816 * differentiate a non-standard port. This is useful for ssh 817 * tunneling over forwarded connections or if you run multiple 818 * sshd's on different ports on the same machine. 819 */ 820 if (hostfile_hostname != NULL) { 821 if (options.host_key_alias != NULL) { 822 *hostfile_hostname = xstrdup(options.host_key_alias); 823 debug("using hostkeyalias: %s", *hostfile_hostname); 824 } else { 825 *hostfile_hostname = put_host_port(hostname, port); 826 } 827 } 828 } 829 830 /* 831 * check whether the supplied host key is valid, return -1 if the key 832 * is not valid. user_hostfile[0] will not be updated if 'readonly' is true. 833 */ 834 #define RDRW 0 835 #define RDONLY 1 836 #define ROQUIET 2 837 static int 838 check_host_key(char *hostname, struct sockaddr *hostaddr, u_short port, 839 struct sshkey *host_key, int readonly, 840 char **user_hostfiles, u_int num_user_hostfiles, 841 char **system_hostfiles, u_int num_system_hostfiles) 842 { 843 HostStatus host_status; 844 HostStatus ip_status; 845 struct sshkey *raw_key = NULL; 846 char *ip = NULL, *host = NULL; 847 char hostline[1000], *hostp, *fp, *ra; 848 char msg[1024]; 849 const char *type; 850 const struct hostkey_entry *host_found, *ip_found; 851 int len, cancelled_forwarding = 0; 852 int local = sockaddr_is_local(hostaddr); 853 int r, want_cert = sshkey_is_cert(host_key), host_ip_differ = 0; 854 int hostkey_trusted = 0; /* Known or explicitly accepted by user */ 855 struct hostkeys *host_hostkeys, *ip_hostkeys; 856 u_int i; 857 858 /* 859 * Force accepting of the host key for loopback/localhost. The 860 * problem is that if the home directory is NFS-mounted to multiple 861 * machines, localhost will refer to a different machine in each of 862 * them, and the user will get bogus HOST_CHANGED warnings. This 863 * essentially disables host authentication for localhost; however, 864 * this is probably not a real problem. 865 */ 866 if (options.no_host_authentication_for_localhost == 1 && local && 867 options.host_key_alias == NULL) { 868 debug("Forcing accepting of host key for " 869 "loopback/localhost."); 870 return 0; 871 } 872 873 /* 874 * Prepare the hostname and address strings used for hostkey lookup. 875 * In some cases, these will have a port number appended. 876 */ 877 get_hostfile_hostname_ipaddr(hostname, hostaddr, port, &host, &ip); 878 879 /* 880 * Turn off check_host_ip if the connection is to localhost, via proxy 881 * command or if we don't have a hostname to compare with 882 */ 883 if (options.check_host_ip && (local || 884 strcmp(hostname, ip) == 0 || options.proxy_command != NULL)) 885 options.check_host_ip = 0; 886 887 host_hostkeys = init_hostkeys(); 888 for (i = 0; i < num_user_hostfiles; i++) 889 load_hostkeys(host_hostkeys, host, user_hostfiles[i]); 890 for (i = 0; i < num_system_hostfiles; i++) 891 load_hostkeys(host_hostkeys, host, system_hostfiles[i]); 892 893 ip_hostkeys = NULL; 894 if (!want_cert && options.check_host_ip) { 895 ip_hostkeys = init_hostkeys(); 896 for (i = 0; i < num_user_hostfiles; i++) 897 load_hostkeys(ip_hostkeys, ip, user_hostfiles[i]); 898 for (i = 0; i < num_system_hostfiles; i++) 899 load_hostkeys(ip_hostkeys, ip, system_hostfiles[i]); 900 } 901 902 retry: 903 /* Reload these as they may have changed on cert->key downgrade */ 904 want_cert = sshkey_is_cert(host_key); 905 type = sshkey_type(host_key); 906 907 /* 908 * Check if the host key is present in the user's list of known 909 * hosts or in the systemwide list. 910 */ 911 host_status = check_key_in_hostkeys(host_hostkeys, host_key, 912 &host_found); 913 914 /* 915 * Also perform check for the ip address, skip the check if we are 916 * localhost, looking for a certificate, or the hostname was an ip 917 * address to begin with. 918 */ 919 if (!want_cert && ip_hostkeys != NULL) { 920 ip_status = check_key_in_hostkeys(ip_hostkeys, host_key, 921 &ip_found); 922 if (host_status == HOST_CHANGED && 923 (ip_status != HOST_CHANGED || 924 (ip_found != NULL && 925 !sshkey_equal(ip_found->key, host_found->key)))) 926 host_ip_differ = 1; 927 } else 928 ip_status = host_status; 929 930 switch (host_status) { 931 case HOST_OK: 932 /* The host is known and the key matches. */ 933 debug("Host '%.200s' is known and matches the %s host %s.", 934 host, type, want_cert ? "certificate" : "key"); 935 debug("Found %s in %s:%lu", want_cert ? "CA key" : "key", 936 host_found->file, host_found->line); 937 if (want_cert && 938 !check_host_cert(options.host_key_alias == NULL ? 939 hostname : options.host_key_alias, host_key)) 940 goto fail; 941 if (options.check_host_ip && ip_status == HOST_NEW) { 942 if (readonly || want_cert) 943 logit("%s host key for IP address " 944 "'%.128s' not in list of known hosts.", 945 type, ip); 946 else if (!add_host_to_hostfile(user_hostfiles[0], ip, 947 host_key, options.hash_known_hosts)) 948 logit("Failed to add the %s host key for IP " 949 "address '%.128s' to the list of known " 950 "hosts (%.500s).", type, ip, 951 user_hostfiles[0]); 952 else 953 logit("Warning: Permanently added the %s host " 954 "key for IP address '%.128s' to the list " 955 "of known hosts.", type, ip); 956 } else if (options.visual_host_key) { 957 fp = sshkey_fingerprint(host_key, 958 options.fingerprint_hash, SSH_FP_DEFAULT); 959 ra = sshkey_fingerprint(host_key, 960 options.fingerprint_hash, SSH_FP_RANDOMART); 961 if (fp == NULL || ra == NULL) 962 fatal("%s: sshkey_fingerprint fail", __func__); 963 logit("Host key fingerprint is %s\n%s", fp, ra); 964 free(ra); 965 free(fp); 966 } 967 hostkey_trusted = 1; 968 break; 969 case HOST_NEW: 970 if (options.host_key_alias == NULL && port != 0 && 971 port != SSH_DEFAULT_PORT) { 972 debug("checking without port identifier"); 973 if (check_host_key(hostname, hostaddr, 0, host_key, 974 ROQUIET, user_hostfiles, num_user_hostfiles, 975 system_hostfiles, num_system_hostfiles) == 0) { 976 debug("found matching key w/out port"); 977 break; 978 } 979 } 980 if (readonly || want_cert) 981 goto fail; 982 /* The host is new. */ 983 if (options.strict_host_key_checking == 984 SSH_STRICT_HOSTKEY_YES) { 985 /* 986 * User has requested strict host key checking. We 987 * will not add the host key automatically. The only 988 * alternative left is to abort. 989 */ 990 error("No %s host key is known for %.200s and you " 991 "have requested strict checking.", type, host); 992 goto fail; 993 } else if (options.strict_host_key_checking == 994 SSH_STRICT_HOSTKEY_ASK) { 995 char msg1[1024], msg2[1024]; 996 997 if (show_other_keys(host_hostkeys, host_key)) 998 snprintf(msg1, sizeof(msg1), 999 "\nbut keys of different type are already" 1000 " known for this host."); 1001 else 1002 snprintf(msg1, sizeof(msg1), "."); 1003 /* The default */ 1004 fp = sshkey_fingerprint(host_key, 1005 options.fingerprint_hash, SSH_FP_DEFAULT); 1006 ra = sshkey_fingerprint(host_key, 1007 options.fingerprint_hash, SSH_FP_RANDOMART); 1008 if (fp == NULL || ra == NULL) 1009 fatal("%s: sshkey_fingerprint fail", __func__); 1010 msg2[0] = '\0'; 1011 if (options.verify_host_key_dns) { 1012 if (matching_host_key_dns) 1013 snprintf(msg2, sizeof(msg2), 1014 "Matching host key fingerprint" 1015 " found in DNS.\n"); 1016 else 1017 snprintf(msg2, sizeof(msg2), 1018 "No matching host key fingerprint" 1019 " found in DNS.\n"); 1020 } 1021 snprintf(msg, sizeof(msg), 1022 "The authenticity of host '%.200s (%s)' can't be " 1023 "established%s\n" 1024 "%s key fingerprint is %s.%s%s\n%s" 1025 "Are you sure you want to continue connecting " 1026 "(yes/no)? ", 1027 host, ip, msg1, type, fp, 1028 options.visual_host_key ? "\n" : "", 1029 options.visual_host_key ? ra : "", 1030 msg2); 1031 free(ra); 1032 free(fp); 1033 if (!confirm(msg)) 1034 goto fail; 1035 hostkey_trusted = 1; /* user explicitly confirmed */ 1036 } 1037 /* 1038 * If in "new" or "off" strict mode, add the key automatically 1039 * to the local known_hosts file. 1040 */ 1041 if (options.check_host_ip && ip_status == HOST_NEW) { 1042 snprintf(hostline, sizeof(hostline), "%s,%s", host, ip); 1043 hostp = hostline; 1044 if (options.hash_known_hosts) { 1045 /* Add hash of host and IP separately */ 1046 r = add_host_to_hostfile(user_hostfiles[0], 1047 host, host_key, options.hash_known_hosts) && 1048 add_host_to_hostfile(user_hostfiles[0], ip, 1049 host_key, options.hash_known_hosts); 1050 } else { 1051 /* Add unhashed "host,ip" */ 1052 r = add_host_to_hostfile(user_hostfiles[0], 1053 hostline, host_key, 1054 options.hash_known_hosts); 1055 } 1056 } else { 1057 r = add_host_to_hostfile(user_hostfiles[0], host, 1058 host_key, options.hash_known_hosts); 1059 hostp = host; 1060 } 1061 1062 if (!r) 1063 logit("Failed to add the host to the list of known " 1064 "hosts (%.500s).", user_hostfiles[0]); 1065 else 1066 logit("Warning: Permanently added '%.200s' (%s) to the " 1067 "list of known hosts.", hostp, type); 1068 break; 1069 case HOST_REVOKED: 1070 error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"); 1071 error("@ WARNING: REVOKED HOST KEY DETECTED! @"); 1072 error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"); 1073 error("The %s host key for %s is marked as revoked.", type, host); 1074 error("This could mean that a stolen key is being used to"); 1075 error("impersonate this host."); 1076 1077 /* 1078 * If strict host key checking is in use, the user will have 1079 * to edit the key manually and we can only abort. 1080 */ 1081 if (options.strict_host_key_checking != 1082 SSH_STRICT_HOSTKEY_OFF) { 1083 error("%s host key for %.200s was revoked and you have " 1084 "requested strict checking.", type, host); 1085 goto fail; 1086 } 1087 goto continue_unsafe; 1088 1089 case HOST_CHANGED: 1090 if (want_cert) { 1091 /* 1092 * This is only a debug() since it is valid to have 1093 * CAs with wildcard DNS matches that don't match 1094 * all hosts that one might visit. 1095 */ 1096 debug("Host certificate authority does not " 1097 "match %s in %s:%lu", CA_MARKER, 1098 host_found->file, host_found->line); 1099 goto fail; 1100 } 1101 if (readonly == ROQUIET) 1102 goto fail; 1103 if (options.check_host_ip && host_ip_differ) { 1104 char *key_msg; 1105 if (ip_status == HOST_NEW) 1106 key_msg = "is unknown"; 1107 else if (ip_status == HOST_OK) 1108 key_msg = "is unchanged"; 1109 else 1110 key_msg = "has a different value"; 1111 error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"); 1112 error("@ WARNING: POSSIBLE DNS SPOOFING DETECTED! @"); 1113 error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"); 1114 error("The %s host key for %s has changed,", type, host); 1115 error("and the key for the corresponding IP address %s", ip); 1116 error("%s. This could either mean that", key_msg); 1117 error("DNS SPOOFING is happening or the IP address for the host"); 1118 error("and its host key have changed at the same time."); 1119 if (ip_status != HOST_NEW) 1120 error("Offending key for IP in %s:%lu", 1121 ip_found->file, ip_found->line); 1122 } 1123 /* The host key has changed. */ 1124 warn_changed_key(host_key); 1125 error("Add correct host key in %.100s to get rid of this message.", 1126 user_hostfiles[0]); 1127 error("Offending %s key in %s:%lu", 1128 sshkey_type(host_found->key), 1129 host_found->file, host_found->line); 1130 1131 /* 1132 * If strict host key checking is in use, the user will have 1133 * to edit the key manually and we can only abort. 1134 */ 1135 if (options.strict_host_key_checking != 1136 SSH_STRICT_HOSTKEY_OFF) { 1137 error("%s host key for %.200s has changed and you have " 1138 "requested strict checking.", type, host); 1139 goto fail; 1140 } 1141 1142 continue_unsafe: 1143 /* 1144 * If strict host key checking has not been requested, allow 1145 * the connection but without MITM-able authentication or 1146 * forwarding. 1147 */ 1148 if (options.password_authentication) { 1149 error("Password authentication is disabled to avoid " 1150 "man-in-the-middle attacks."); 1151 options.password_authentication = 0; 1152 cancelled_forwarding = 1; 1153 } 1154 if (options.kbd_interactive_authentication) { 1155 error("Keyboard-interactive authentication is disabled" 1156 " to avoid man-in-the-middle attacks."); 1157 options.kbd_interactive_authentication = 0; 1158 options.challenge_response_authentication = 0; 1159 cancelled_forwarding = 1; 1160 } 1161 if (options.challenge_response_authentication) { 1162 error("Challenge/response authentication is disabled" 1163 " to avoid man-in-the-middle attacks."); 1164 options.challenge_response_authentication = 0; 1165 cancelled_forwarding = 1; 1166 } 1167 if (options.forward_agent) { 1168 error("Agent forwarding is disabled to avoid " 1169 "man-in-the-middle attacks."); 1170 options.forward_agent = 0; 1171 cancelled_forwarding = 1; 1172 } 1173 if (options.forward_x11) { 1174 error("X11 forwarding is disabled to avoid " 1175 "man-in-the-middle attacks."); 1176 options.forward_x11 = 0; 1177 cancelled_forwarding = 1; 1178 } 1179 if (options.num_local_forwards > 0 || 1180 options.num_remote_forwards > 0) { 1181 error("Port forwarding is disabled to avoid " 1182 "man-in-the-middle attacks."); 1183 options.num_local_forwards = 1184 options.num_remote_forwards = 0; 1185 cancelled_forwarding = 1; 1186 } 1187 if (options.tun_open != SSH_TUNMODE_NO) { 1188 error("Tunnel forwarding is disabled to avoid " 1189 "man-in-the-middle attacks."); 1190 options.tun_open = SSH_TUNMODE_NO; 1191 cancelled_forwarding = 1; 1192 } 1193 if (options.exit_on_forward_failure && cancelled_forwarding) 1194 fatal("Error: forwarding disabled due to host key " 1195 "check failure"); 1196 1197 /* 1198 * XXX Should permit the user to change to use the new id. 1199 * This could be done by converting the host key to an 1200 * identifying sentence, tell that the host identifies itself 1201 * by that sentence, and ask the user if he/she wishes to 1202 * accept the authentication. 1203 */ 1204 break; 1205 case HOST_FOUND: 1206 fatal("internal error"); 1207 break; 1208 } 1209 1210 if (options.check_host_ip && host_status != HOST_CHANGED && 1211 ip_status == HOST_CHANGED) { 1212 snprintf(msg, sizeof(msg), 1213 "Warning: the %s host key for '%.200s' " 1214 "differs from the key for the IP address '%.128s'" 1215 "\nOffending key for IP in %s:%lu", 1216 type, host, ip, ip_found->file, ip_found->line); 1217 if (host_status == HOST_OK) { 1218 len = strlen(msg); 1219 snprintf(msg + len, sizeof(msg) - len, 1220 "\nMatching host key in %s:%lu", 1221 host_found->file, host_found->line); 1222 } 1223 if (options.strict_host_key_checking == 1224 SSH_STRICT_HOSTKEY_ASK) { 1225 strlcat(msg, "\nAre you sure you want " 1226 "to continue connecting (yes/no)? ", sizeof(msg)); 1227 if (!confirm(msg)) 1228 goto fail; 1229 } else if (options.strict_host_key_checking != 1230 SSH_STRICT_HOSTKEY_OFF) { 1231 logit("%s", msg); 1232 error("Exiting, you have requested strict checking."); 1233 goto fail; 1234 } else { 1235 logit("%s", msg); 1236 } 1237 } 1238 1239 if (!hostkey_trusted && options.update_hostkeys) { 1240 debug("%s: hostkey not known or explicitly trusted: " 1241 "disabling UpdateHostkeys", __func__); 1242 options.update_hostkeys = 0; 1243 } 1244 1245 free(ip); 1246 free(host); 1247 if (host_hostkeys != NULL) 1248 free_hostkeys(host_hostkeys); 1249 if (ip_hostkeys != NULL) 1250 free_hostkeys(ip_hostkeys); 1251 return 0; 1252 1253 fail: 1254 if (want_cert && host_status != HOST_REVOKED) { 1255 /* 1256 * No matching certificate. Downgrade cert to raw key and 1257 * search normally. 1258 */ 1259 debug("No matching CA found. Retry with plain key"); 1260 if ((r = sshkey_from_private(host_key, &raw_key)) != 0) 1261 fatal("%s: sshkey_from_private: %s", 1262 __func__, ssh_err(r)); 1263 if ((r = sshkey_drop_cert(raw_key)) != 0) 1264 fatal("Couldn't drop certificate: %s", ssh_err(r)); 1265 host_key = raw_key; 1266 goto retry; 1267 } 1268 sshkey_free(raw_key); 1269 free(ip); 1270 free(host); 1271 if (host_hostkeys != NULL) 1272 free_hostkeys(host_hostkeys); 1273 if (ip_hostkeys != NULL) 1274 free_hostkeys(ip_hostkeys); 1275 return -1; 1276 } 1277 1278 /* returns 0 if key verifies or -1 if key does NOT verify */ 1279 int 1280 verify_host_key(char *host, struct sockaddr *hostaddr, struct sshkey *host_key) 1281 { 1282 u_int i; 1283 int r = -1, flags = 0; 1284 char valid[64], *fp = NULL, *cafp = NULL; 1285 struct sshkey *plain = NULL; 1286 1287 if ((fp = sshkey_fingerprint(host_key, 1288 options.fingerprint_hash, SSH_FP_DEFAULT)) == NULL) { 1289 error("%s: fingerprint host key: %s", __func__, ssh_err(r)); 1290 r = -1; 1291 goto out; 1292 } 1293 1294 if (sshkey_is_cert(host_key)) { 1295 if ((cafp = sshkey_fingerprint(host_key->cert->signature_key, 1296 options.fingerprint_hash, SSH_FP_DEFAULT)) == NULL) { 1297 error("%s: fingerprint CA key: %s", 1298 __func__, ssh_err(r)); 1299 r = -1; 1300 goto out; 1301 } 1302 sshkey_format_cert_validity(host_key->cert, 1303 valid, sizeof(valid)); 1304 debug("Server host certificate: %s %s, serial %llu " 1305 "ID \"%s\" CA %s %s valid %s", 1306 sshkey_ssh_name(host_key), fp, 1307 (unsigned long long)host_key->cert->serial, 1308 host_key->cert->key_id, 1309 sshkey_ssh_name(host_key->cert->signature_key), cafp, 1310 valid); 1311 for (i = 0; i < host_key->cert->nprincipals; i++) { 1312 debug2("Server host certificate hostname: %s", 1313 host_key->cert->principals[i]); 1314 } 1315 } else { 1316 debug("Server host key: %s %s", sshkey_ssh_name(host_key), fp); 1317 } 1318 1319 if (sshkey_equal(previous_host_key, host_key)) { 1320 debug2("%s: server host key %s %s matches cached key", 1321 __func__, sshkey_type(host_key), fp); 1322 r = 0; 1323 goto out; 1324 } 1325 1326 /* Check in RevokedHostKeys file if specified */ 1327 if (options.revoked_host_keys != NULL) { 1328 r = sshkey_check_revoked(host_key, options.revoked_host_keys); 1329 switch (r) { 1330 case 0: 1331 break; /* not revoked */ 1332 case SSH_ERR_KEY_REVOKED: 1333 error("Host key %s %s revoked by file %s", 1334 sshkey_type(host_key), fp, 1335 options.revoked_host_keys); 1336 r = -1; 1337 goto out; 1338 default: 1339 error("Error checking host key %s %s in " 1340 "revoked keys file %s: %s", sshkey_type(host_key), 1341 fp, options.revoked_host_keys, ssh_err(r)); 1342 r = -1; 1343 goto out; 1344 } 1345 } 1346 1347 if (options.verify_host_key_dns) { 1348 /* 1349 * XXX certs are not yet supported for DNS, so downgrade 1350 * them and try the plain key. 1351 */ 1352 if ((r = sshkey_from_private(host_key, &plain)) != 0) 1353 goto out; 1354 if (sshkey_is_cert(plain)) 1355 sshkey_drop_cert(plain); 1356 if (verify_host_key_dns(host, hostaddr, plain, &flags) == 0) { 1357 if (flags & DNS_VERIFY_FOUND) { 1358 if (options.verify_host_key_dns == 1 && 1359 flags & DNS_VERIFY_MATCH && 1360 flags & DNS_VERIFY_SECURE) { 1361 r = 0; 1362 goto out; 1363 } 1364 if (flags & DNS_VERIFY_MATCH) { 1365 matching_host_key_dns = 1; 1366 } else { 1367 warn_changed_key(plain); 1368 error("Update the SSHFP RR in DNS " 1369 "with the new host key to get rid " 1370 "of this message."); 1371 } 1372 } 1373 } 1374 } 1375 r = check_host_key(host, hostaddr, options.port, host_key, RDRW, 1376 options.user_hostfiles, options.num_user_hostfiles, 1377 options.system_hostfiles, options.num_system_hostfiles); 1378 1379 out: 1380 sshkey_free(plain); 1381 free(fp); 1382 free(cafp); 1383 if (r == 0 && host_key != NULL) { 1384 sshkey_free(previous_host_key); 1385 r = sshkey_from_private(host_key, &previous_host_key); 1386 } 1387 1388 return r; 1389 } 1390 1391 /* 1392 * Starts a dialog with the server, and authenticates the current user on the 1393 * server. This does not need any extra privileges. The basic connection 1394 * to the server must already have been established before this is called. 1395 * If login fails, this function prints an error and never returns. 1396 * This function does not require super-user privileges. 1397 */ 1398 void 1399 ssh_login(Sensitive *sensitive, const char *orighost, 1400 struct sockaddr *hostaddr, u_short port, struct passwd *pw, int timeout_ms) 1401 { 1402 char *host; 1403 char *server_user, *local_user; 1404 1405 local_user = xstrdup(pw->pw_name); 1406 server_user = options.user ? options.user : local_user; 1407 1408 /* Convert the user-supplied hostname into all lowercase. */ 1409 host = xstrdup(orighost); 1410 lowercase(host); 1411 1412 /* Exchange protocol version identification strings with the server. */ 1413 ssh_exchange_identification(timeout_ms); 1414 1415 /* Put the connection into non-blocking mode. */ 1416 packet_set_nonblocking(); 1417 1418 /* key exchange */ 1419 /* authenticate user */ 1420 debug("Authenticating to %s:%d as '%s'", host, port, server_user); 1421 ssh_kex2(host, hostaddr, port); 1422 ssh_userauth2(local_user, server_user, host, sensitive); 1423 free(local_user); 1424 } 1425 1426 void 1427 ssh_put_password(char *password) 1428 { 1429 int size; 1430 char *padded; 1431 1432 if (datafellows & SSH_BUG_PASSWORDPAD) { 1433 packet_put_cstring(password); 1434 return; 1435 } 1436 size = ROUNDUP(strlen(password) + 1, 32); 1437 padded = xcalloc(1, size); 1438 strlcpy(padded, password, size); 1439 packet_put_string(padded, size); 1440 explicit_bzero(padded, size); 1441 free(padded); 1442 } 1443 1444 /* print all known host keys for a given host, but skip keys of given type */ 1445 static int 1446 show_other_keys(struct hostkeys *hostkeys, struct sshkey *key) 1447 { 1448 int type[] = { 1449 KEY_RSA, 1450 KEY_DSA, 1451 KEY_ECDSA, 1452 KEY_ED25519, 1453 KEY_XMSS, 1454 -1 1455 }; 1456 int i, ret = 0; 1457 char *fp, *ra; 1458 const struct hostkey_entry *found; 1459 1460 for (i = 0; type[i] != -1; i++) { 1461 if (type[i] == key->type) 1462 continue; 1463 if (!lookup_key_in_hostkeys_by_type(hostkeys, type[i], &found)) 1464 continue; 1465 fp = sshkey_fingerprint(found->key, 1466 options.fingerprint_hash, SSH_FP_DEFAULT); 1467 ra = sshkey_fingerprint(found->key, 1468 options.fingerprint_hash, SSH_FP_RANDOMART); 1469 if (fp == NULL || ra == NULL) 1470 fatal("%s: sshkey_fingerprint fail", __func__); 1471 logit("WARNING: %s key found for host %s\n" 1472 "in %s:%lu\n" 1473 "%s key fingerprint %s.", 1474 sshkey_type(found->key), 1475 found->host, found->file, found->line, 1476 sshkey_type(found->key), fp); 1477 if (options.visual_host_key) 1478 logit("%s", ra); 1479 free(ra); 1480 free(fp); 1481 ret = 1; 1482 } 1483 return ret; 1484 } 1485 1486 static void 1487 warn_changed_key(struct sshkey *host_key) 1488 { 1489 char *fp; 1490 1491 fp = sshkey_fingerprint(host_key, options.fingerprint_hash, 1492 SSH_FP_DEFAULT); 1493 if (fp == NULL) 1494 fatal("%s: sshkey_fingerprint fail", __func__); 1495 1496 error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"); 1497 error("@ WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED! @"); 1498 error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"); 1499 error("IT IS POSSIBLE THAT SOMEONE IS DOING SOMETHING NASTY!"); 1500 error("Someone could be eavesdropping on you right now (man-in-the-middle attack)!"); 1501 error("It is also possible that a host key has just been changed."); 1502 error("The fingerprint for the %s key sent by the remote host is\n%s.", 1503 sshkey_type(host_key), fp); 1504 error("Please contact your system administrator."); 1505 1506 free(fp); 1507 } 1508 1509 /* 1510 * Execute a local command 1511 */ 1512 int 1513 ssh_local_cmd(const char *args) 1514 { 1515 char *shell; 1516 pid_t pid; 1517 int status; 1518 void (*osighand)(int); 1519 1520 if (!options.permit_local_command || 1521 args == NULL || !*args) 1522 return (1); 1523 1524 if ((shell = getenv("SHELL")) == NULL || *shell == '\0') 1525 shell = _PATH_BSHELL; 1526 1527 osighand = signal(SIGCHLD, SIG_DFL); 1528 pid = fork(); 1529 if (pid == 0) { 1530 signal(SIGPIPE, SIG_DFL); 1531 debug3("Executing %s -c \"%s\"", shell, args); 1532 execl(shell, shell, "-c", args, (char *)NULL); 1533 error("Couldn't execute %s -c \"%s\": %s", 1534 shell, args, strerror(errno)); 1535 _exit(1); 1536 } else if (pid == -1) 1537 fatal("fork failed: %.100s", strerror(errno)); 1538 while (waitpid(pid, &status, 0) == -1) 1539 if (errno != EINTR) 1540 fatal("Couldn't wait for child: %s", strerror(errno)); 1541 signal(SIGCHLD, osighand); 1542 1543 if (!WIFEXITED(status)) 1544 return (1); 1545 1546 return (WEXITSTATUS(status)); 1547 } 1548 1549 void 1550 maybe_add_key_to_agent(char *authfile, const struct sshkey *private, 1551 char *comment, char *passphrase) 1552 { 1553 int auth_sock = -1, r; 1554 1555 if (options.add_keys_to_agent == 0) 1556 return; 1557 1558 if ((r = ssh_get_authentication_socket(&auth_sock)) != 0) { 1559 debug3("no authentication agent, not adding key"); 1560 return; 1561 } 1562 1563 if (options.add_keys_to_agent == 2 && 1564 !ask_permission("Add key %s (%s) to agent?", authfile, comment)) { 1565 debug3("user denied adding this key"); 1566 close(auth_sock); 1567 return; 1568 } 1569 1570 if ((r = ssh_add_identity_constrained(auth_sock, private, comment, 0, 1571 (options.add_keys_to_agent == 3), 0)) == 0) 1572 debug("identity added to agent: %s", authfile); 1573 else 1574 debug("could not add identity to agent: %s (%d)", authfile, r); 1575 close(auth_sock); 1576 } 1577