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