]> andersk Git - gssapi-openssh.git/blob - openssh/sshconnect.c
706318d49b06e2eab21bf04d7f0818827e68501b
[gssapi-openssh.git] / openssh / sshconnect.c
1 /* $OpenBSD: sshconnect.c,v 1.212 2008/10/14 18:11:33 stevesk Exp $ */
2 /*
3  * Author: Tatu Ylonen <ylo@cs.hut.fi>
4  * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
5  *                    All rights reserved
6  * Code to connect to a remote host, and to perform the client side of the
7  * login (authentication) dialog.
8  *
9  * As far as I am concerned, the code I have written for this software
10  * can be used freely for any purpose.  Any derived versions of this
11  * software must be clearly marked as such, and if the derived work is
12  * incompatible with the protocol description in the RFC file, it must be
13  * called by a name other than "ssh" or "Secure Shell".
14  */
15
16 #include "includes.h"
17
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>
41
42 #include "xmalloc.h"
43 #include "key.h"
44 #include "hostfile.h"
45 #include "ssh.h"
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"
58 #include "dns.h"
59 #include "version.h"
60
61 char *client_version_string = NULL;
62 char *server_version_string = NULL;
63
64 static int matching_host_key_dns = 0;
65
66 /* import */
67 extern Options options;
68 extern char *__progname;
69 extern uid_t original_real_uid;
70 extern uid_t original_effective_uid;
71 extern pid_t proxy_command_pid;
72
73 static int show_other_keys(const char *, Key *);
74 static void warn_changed_key(Key *);
75
76 /*
77  * Connect to the given ssh server using a proxy command.
78  */
79 static int
80 ssh_proxy_connect(const char *host, u_short port, const char *proxy_command)
81 {
82         char *command_string, *tmp;
83         int pin[2], pout[2];
84         pid_t pid;
85         char *shell, strport[NI_MAXSERV];
86
87         if ((shell = getenv("SHELL")) == NULL)
88                 shell = _PATH_BSHELL;
89
90         /* Convert the port number into a string. */
91         snprintf(strport, sizeof strport, "%hu", port);
92
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          */
100         xasprintf(&tmp, "exec %s", proxy_command);
101         command_string = percent_expand(tmp, "h", host,
102             "p", strport, (char *)NULL);
103         xfree(tmp);
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",
108                     strerror(errno));
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. */
117                 permanently_drop_suid(original_real_uid);
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. */
134                 argv[0] = shell;
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));
148         else
149                 proxy_command_pid = pid; /* save pid to clean up later */
150
151         /* Close child side of the descriptors. */
152         close(pin[0]);
153         close(pout[1]);
154
155         /* Free the command name. */
156         xfree(command_string);
157
158         /* Set the connection file descriptors. */
159         packet_set_connection(pout[0], pin[1]);
160         packet_set_timeout(options.server_alive_interval,
161             options.server_alive_count_max);
162
163         /* Indicate OK return */
164         return 0;
165 }
166
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  */
173 static void
174 ssh_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
192 /*
193  * Creates a (possibly privileged) socket for use as the ssh connection.
194  */
195 static int
196 ssh_create_socket(int privileged, struct addrinfo *ai)
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;
207                 PRIV_START;
208                 sock = rresvport_af(&p, ai->ai_family);
209                 PRIV_END;
210                 if (sock < 0)
211                         error("rresvport: af=%d %.100s", ai->ai_family,
212                             strerror(errno));
213                 else
214                         debug("Allocated local port %d.", p);
215
216                 if (options.tcp_rcv_buf > 0)
217                         ssh_set_socket_recvbuf(sock);           
218                 return sock;
219         }
220         sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
221         if (sock < 0)
222                 error("socket: %.100s", strerror(errno));
223         
224
225         if (options.tcp_rcv_buf > 0)
226                 ssh_set_socket_recvbuf(sock);
227
228         if (options.tcp_rcv_buf > 0)
229                 ssh_set_socket_recvbuf(sock);
230         
231         /* Bind the socket to an alternative local IP address */
232         if (options.bind_address == NULL)
233                 return sock;
234
235         memset(&hints, 0, sizeof(hints));
236         hints.ai_family = ai->ai_family;
237         hints.ai_socktype = ai->ai_socktype;
238         hints.ai_protocol = ai->ai_protocol;
239         hints.ai_flags = AI_PASSIVE;
240         gaierr = getaddrinfo(options.bind_address, NULL, &hints, &res);
241         if (gaierr) {
242                 error("getaddrinfo: %s: %s", options.bind_address,
243                     ssh_gai_strerror(gaierr));
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
257 static int
258 timeout_connect(int sockfd, const struct sockaddr *serv_addr,
259     socklen_t addrlen, int *timeoutp)
260 {
261         fd_set *fdset;
262         struct timeval tv, t_start;
263         socklen_t optlen;
264         int optval, rc, result = -1;
265
266         gettimeofday(&t_start, NULL);
267
268         if (*timeoutp <= 0) {
269                 result = connect(sockfd, serv_addr, addrlen);
270                 goto done;
271         }
272
273         set_nonblock(sockfd);
274         rc = connect(sockfd, serv_addr, addrlen);
275         if (rc == 0) {
276                 unset_nonblock(sockfd);
277                 result = 0;
278                 goto done;
279         }
280         if (errno != EINPROGRESS) {
281                 result = -1;
282                 goto done;
283         }
284
285         fdset = (fd_set *)xcalloc(howmany(sockfd + 1, NFDBITS),
286             sizeof(fd_mask));
287         FD_SET(sockfd, fdset);
288         ms_to_timeval(&tv, *timeoutp);
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);
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
337         return (result);
338 }
339
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.
343  * If port is 0, the default port will be used.  If needpriv is true,
344  * a privileged port will be allocated to make the connection.
345  * This requires super-user privileges if needpriv is true.
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.
350  */
351 int
352 ssh_connect(const char *host, struct sockaddr_storage * hostaddr,
353     u_short port, int family, int connection_attempts, int *timeout_ms,
354     int want_keepalive, int needpriv, const char *proxy_command)
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;
361
362         debug2("ssh_connect: needpriv %d", needpriv);
363
364         /* If a proxy command is given, connect using it. */
365         if (proxy_command != NULL)
366                 return ssh_proxy_connect(host, port, proxy_command);
367
368         /* No proxy command. */
369
370         memset(&hints, 0, sizeof(hints));
371         hints.ai_family = family;
372         hints.ai_socktype = SOCK_STREAM;
373         snprintf(strport, sizeof strport, "%u", port);
374         if ((gaierr = getaddrinfo(host, strport, &hints, &aitop)) != 0)
375                 fatal("%s: Could not resolve hostname %.100s: %s", __progname,
376                     host, ssh_gai_strerror(gaierr));
377
378         for (attempt = 0; attempt < connection_attempts; attempt++) {
379                 if (attempt > 0) {
380                         /* Sleep a moment before retrying. */
381                         sleep(1);
382                         debug("Trying again...");
383                 }
384                 /*
385                  * Loop through addresses for this host, and try each one in
386                  * sequence until the connection succeeds.
387                  */
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. */
401                         sock = ssh_create_socket(needpriv, ai);
402                         if (sock < 0)
403                                 /* Any error is already output */
404                                 continue;
405
406                         if (timeout_connect(sock, ai->ai_addr, ai->ai_addrlen,
407                             timeout_ms) >= 0) {
408                                 /* Successful connection. */
409                                 memcpy(hostaddr, ai->ai_addr, ai->ai_addrlen);
410                                 break;
411                         } else {
412                                 debug("connect to address %s port %s: %s",
413                                     ntop, strport, strerror(errno));
414                                 close(sock);
415                                 sock = -1;
416                         }
417                 }
418                 if (sock != -1)
419                         break;  /* Successful connection. */
420         }
421
422         freeaddrinfo(aitop);
423
424         /* Return failure if we didn't get a successful connection. */
425         if (sock == -1) {
426                 error("ssh: connect to host %s port %s: %s",
427                     host, strport, strerror(errno));
428                 return (-1);
429         }
430
431         debug("Connection established.");
432
433         /* Set SO_KEEPALIVE if requested. */
434         if (want_keepalive &&
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);
441         packet_set_timeout(options.server_alive_interval,
442             options.server_alive_count_max);
443
444         return 0;
445 }
446
447 /*
448  * Waits for the server identification string, and sends our own
449  * identification string.
450  */
451 static void
452 ssh_exchange_identification(int timeout_ms)
453 {
454         char buf[256], remote_version[256];     /* must be same size! */
455         int remote_major, remote_minor, mismatch;
456         int connection_in = packet_get_connection_in();
457         int connection_out = packet_get_connection_out();
458         int minor1 = PROTOCOL_MINOR_1;
459         u_int i, n;
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);
467
468         /* Read other side's version identification. */
469         remaining = timeout_ms;
470         for (n = 0;;) {
471                 for (i = 0; i < sizeof(buf) - 1; i++) {
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);
491
492                         if (len != 1 && errno == EPIPE)
493                                 fatal("ssh_exchange_identification: "
494                                     "Connection closed by remote host");
495                         else if (len != 1)
496                                 fatal("ssh_exchange_identification: "
497                                     "read: %.100s", strerror(errno));
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                         }
507                         if (++n > 65536)
508                                 fatal("ssh_exchange_identification: "
509                                     "No banner received");
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);
517         xfree(fdset);
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",
527             remote_major, remote_minor, remote_version);
528
529         compat_datafellows(remote_version);
530         mismatch = 0;
531
532         switch (remote_major) {
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) {
551                                 logit("Agent forwarding disabled for protocol 1.3");
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. */
571         snprintf(buf, sizeof buf, "SSH-%d.%d-%.100s%s",
572             compat20 ? PROTOCOL_MAJOR_2 : PROTOCOL_MAJOR_1,
573             compat20 ? PROTOCOL_MINOR_2 : minor1,
574             SSH_RELEASE, compat20 ? "\r\n" : "\n");
575         if (atomicio(vwrite, connection_out, buf, strlen(buf)) != strlen(buf))
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' */
584 static int
585 confirm(const char *prompt)
586 {
587         const char *msg, *again = "Please type 'yes' or 'no': ";
588         char *p;
589         int ret = -1;
590
591         if (options.batch_mode)
592                 return 0;
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;
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  */
612 #define RDRW    0
613 #define RDONLY  1
614 #define ROQUIET 2
615 static int
616 check_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)
619 {
620         Key *file_key;
621         const char *type = key_type(host_key);
622         char *ip = NULL, *host = NULL;
623         char hostline[1000], *hostp, *fp, *ra;
624         HostStatus host_status;
625         HostStatus ip_status;
626         int r, local = 0, host_ip_differ = 0;
627         int salen;
628         char ntop[NI_MAXHOST];
629         char msg[1024];
630         int len, host_line, ip_line, cancelled_forwarding = 0;
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");
673                 ip = put_host_port(ntop, port);
674         } else {
675                 ip = xstrdup("<no hostip for proxy command>");
676         }
677
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          */
682         if (options.check_host_ip && (local ||
683             strcmp(hostname, ip) == 0 || options.proxy_command != NULL))
684                 options.check_host_ip = 0;
685
686         /*
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.
691          */
692         if (options.host_key_alias != NULL) {
693                 host = xstrdup(options.host_key_alias);
694                 debug("using hostkeyalias: %s", host);
695         } else {
696                 host = put_host_port(hostname, port);
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         /*
706          * Check if the host key is present in the user's list of known
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,
711             file_key, &host_line);
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)
750                                 logit("%s host key for IP address "
751                                     "'%.128s' not in list of known hosts.",
752                                     type, ip);
753                         else if (!add_host_to_hostfile(user_hostfile, ip,
754                             host_key, options.hash_known_hosts))
755                                 logit("Failed to add the %s host key for IP "
756                                     "address '%.128s' to the list of known "
757                                     "hosts (%.30s).", type, ip, user_hostfile);
758                         else
759                                 logit("Warning: Permanently added the %s host "
760                                     "key for IP address '%.128s' to the list "
761                                     "of known hosts.", type, ip);
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);
769                 }
770                 break;
771         case HOST_NEW:
772                 if (options.host_key_alias == NULL && port != 0 &&
773                     port != SSH_DEFAULT_PORT) {
774                         debug("checking without port identifier");
775                         if (check_host_key(hostname, hostaddr, 0, host_key,
776                             ROQUIET, user_hostfile, system_hostfile) == 0) {
777                                 debug("found matching key w/out port");
778                                 break;
779                         }
780                 }
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) {
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), ".");
802                         /* The default */
803                         fp = key_fingerprint(host_key, SSH_FP_MD5, SSH_FP_HEX);
804                         ra = key_fingerprint(host_key, SSH_FP_MD5,
805                             SSH_FP_RANDOMART);
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),
818                             "The authenticity of host '%.200s (%s)' can't be "
819                             "established%s\n"
820                             "%s key fingerprint is %s.%s%s\n%s"
821                             "Are you sure you want to continue connecting "
822                             "(yes/no)? ",
823                             host, ip, msg1, type, fp,
824                             options.visual_host_key ? "\n" : "",
825                             options.visual_host_key ? ra : "",
826                             msg2);
827                         xfree(ra);
828                         xfree(fp);
829                         if (!confirm(msg))
830                                 goto fail;
831                 }
832                 /*
833                  * If not in strict mode, add the key automatically to the
834                  * local known_hosts file.
835                  */
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 "
860                             "hosts (%.500s).", user_hostfile);
861                 else
862                         logit("Warning: Permanently added '%.200s' (%s) to the "
863                             "list of known hosts.", hostp, type);
864                 break;
865         case HOST_CHANGED:
866                 if (readonly == ROQUIET)
867                         goto fail;
868                 if (options.check_host_ip && host_ip_differ) {
869                         char *key_msg;
870                         if (ip_status == HOST_NEW)
871                                 key_msg = "is unknown";
872                         else if (ip_status == HOST_OK)
873                                 key_msg = "is unchanged";
874                         else
875                                 key_msg = "has a different value";
876                         error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
877                         error("@       WARNING: POSSIBLE DNS SPOOFING DETECTED!          @");
878                         error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
879                         error("The %s host key for %s has changed,", type, host);
880                         error("and the key for the corresponding IP address %s", ip);
881                         error("%s. This could either mean that", key_msg);
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. */
888                 warn_changed_key(host_key);
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);
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
905                  * the connection but without MITM-able authentication or
906                  * forwarding.
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;
912                         cancelled_forwarding = 1;
913                 }
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;
919                         cancelled_forwarding = 1;
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;
925                         cancelled_forwarding = 1;
926                 }
927                 if (options.forward_agent) {
928                         error("Agent forwarding is disabled to avoid "
929                             "man-in-the-middle attacks.");
930                         options.forward_agent = 0;
931                         cancelled_forwarding = 1;
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;
937                         cancelled_forwarding = 1;
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 =
944                             options.num_remote_forwards = 0;
945                         cancelled_forwarding = 1;
946                 }
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;
951                         cancelled_forwarding = 1;
952                 }
953                 if (options.exit_on_forward_failure && cancelled_forwarding)
954                         fatal("Error: forwarding disabled due to host key "
955                             "check failure");
956                 
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;
965         case HOST_FOUND:
966                 fatal("internal error");
967                 break;
968         }
969
970         if (options.check_host_ip && host_status != HOST_CHANGED &&
971             ip_status == HOST_CHANGED) {
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                 }
983                 if (options.strict_host_key_checking == 1) {
984                         logit("%s", msg);
985                         error("Exiting, you have requested strict checking.");
986                         goto fail;
987                 } else if (options.strict_host_key_checking == 2) {
988                         strlcat(msg, "\nAre you sure you want "
989                             "to continue connecting (yes/no)? ", sizeof(msg));
990                         if (!confirm(msg))
991                                 goto fail;
992                 } else {
993                         logit("%s", msg);
994                 }
995         }
996
997         xfree(ip);
998         xfree(host);
999         return 0;
1000
1001 fail:
1002         xfree(ip);
1003         xfree(host);
1004         return -1;
1005 }
1006
1007 /* returns 0 if key verifies or -1 if key does NOT verify */
1008 int
1009 verify_host_key(char *host, struct sockaddr *hostaddr, Key *host_key)
1010 {
1011         struct stat st;
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         }
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) {
1037                 if (check_host_key(host, hostaddr, options.port, host_key,
1038                     RDONLY, options.user_hostfile2,
1039                     options.system_hostfile2) == 0)
1040                         return 0;
1041         }
1042         return check_host_key(host, hostaddr, options.port, host_key,
1043             RDRW, options.user_hostfile, options.system_hostfile);
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  */
1053 void
1054 ssh_login(Sensitive *sensitive, const char *orighost,
1055     struct sockaddr *hostaddr, struct passwd *pw, int timeout_ms)
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))
1067                         *cp = (char)tolower(*cp);
1068
1069         /* Exchange protocol version identification strings with the server. */
1070         ssh_exchange_identification(timeout_ms);
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);
1079                 ssh_userauth2(local_user, server_user, host, sensitive);
1080         } else {
1081                 ssh_kex(host, hostaddr);
1082                 ssh_userauth1(local_user, server_user, host, sensitive);
1083         }
1084         xfree(local_user);
1085 }
1086
1087 void
1088 ssh_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);
1098         padded = xcalloc(1, size);
1099         strlcpy(padded, password, size);
1100         packet_put_string(padded, size);
1101         memset(padded, 0, size);
1102         xfree(padded);
1103 }
1104
1105 static int
1106 show_key_from_file(const char *file, const char *host, int keytype)
1107 {
1108         Key *found;
1109         char *fp, *ra;
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);
1116                 ra = key_fingerprint(found, SSH_FP_MD5, SSH_FP_RANDOMART);
1117                 logit("WARNING: %s key found for host %s\n"
1118                     "in %s:%d\n"
1119                     "%s key fingerprint %s.\n%s\n",
1120                     key_type(found), host, file, line,
1121                     key_type(found), fp, ra);
1122                 xfree(ra);
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 */
1130 static int
1131 show_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
1162 static void
1163 warn_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 }
1182
1183 /*
1184  * Execute a local command
1185  */
1186 int
1187 ssh_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.124347 seconds and 3 git commands to generate.