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