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