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