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