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