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