]> Pileus Git - ~andy/fetchmail/blob - socket.c
Fixup leftover from SockTimeout removal.
[~andy/fetchmail] / socket.c
1 /*
2  * socket.c -- socket library functions
3  *
4  * Copyright 1998 by Eric S. Raymond.
5  * For license terms, see the file COPYING in this directory.
6  */
7
8 #include "config.h"
9 #include <stdio.h>
10 #include <errno.h>
11 #include <string.h>
12 #include <ctype.h> /* isspace() */
13 #include <sys/types.h>
14 #include <sys/stat.h>
15 #include <sys/socket.h>
16 #include <sys/un.h>
17 #include <netinet/in.h>
18 #include <arpa/inet.h>
19 #include <netdb.h>
20 #include <stdlib.h>
21 #include <unistd.h>
22 #include <stdarg.h>
23 #include <sys/time.h>
24 #include <time.h>
25
26 #include "socket.h"
27 #include "fetchmail.h"
28 #include "getaddrinfo.h"
29 #include "gettext.h"
30 #include "sdump.h"
31
32 /* Defines to allow Cygwin to play nice... */
33 #define fm_close(a)      close(a)
34 #define fm_write(a,b,c)  write(a,b,c)
35 #define fm_peek(a,b,c)   recv(a,b,c, MSG_PEEK)
36
37 #ifdef __CYGWIN__
38 #define fm_read(a,b,c)   cygwin_read(a,b,c)
39 static ssize_t cygwin_read(int sock, void *buf, size_t count);
40 #else /* ! __CYGWIN__ */
41 #define fm_read(a,b,c)   read(a,b,c)
42 #endif /* __CYGWIN__ */
43
44 /* We need to define h_errno only if it is not already */
45 #ifndef h_errno
46 # if !HAVE_DECL_H_ERRNO
47 extern int h_errno;
48 # endif
49 #endif /* ndef h_errno */
50
51 static char *const *parse_plugin(const char *plugin, const char *host, const char *service)
52 {
53         char **argvec;
54         const char *c, *p;
55         char *cp, *plugin_copy;
56         unsigned int plugin_copy_len;
57         unsigned int plugin_offset = 0, plugin_copy_offset = 0;
58         unsigned int i, s = 2 * sizeof(char*), host_count = 0, service_count = 0;
59         unsigned int plugin_len = strlen(plugin);
60         unsigned int host_len = strlen(host);
61         unsigned int service_len = strlen(service);
62
63         for (c = p = plugin; *c; c++)
64         {       if (isspace((unsigned char)*c) && !isspace((unsigned char)*p))
65                         s += sizeof(char*);
66                 if (*p == '%' && *c == 'h')
67                         host_count++;
68                 if (*p == '%' && *c == 'p')
69                         service_count++;
70                 p = c;
71         }
72
73         plugin_copy_len = plugin_len + host_len * host_count + service_len * service_count;
74         plugin_copy = (char *)malloc(plugin_copy_len + 1);
75         if (!plugin_copy)
76         {
77                 report(stderr, GT_("fetchmail: malloc failed\n"));
78                 return NULL;
79         }
80
81         while (plugin_copy_offset < plugin_copy_len)
82         {       if ((plugin[plugin_offset] == '%') && (plugin[plugin_offset + 1] == 'h'))
83                 {       strcpy(plugin_copy + plugin_copy_offset, host);
84                         plugin_offset += 2;
85                         plugin_copy_offset += host_len;
86                 }
87                 else if ((plugin[plugin_offset] == '%') && (plugin[plugin_offset + 1] == 'p'))
88                 {       strcpy(plugin_copy + plugin_copy_offset, service);
89                         plugin_offset += 2;
90                         plugin_copy_offset += service_len;
91                 }
92                 else
93                 {       plugin_copy[plugin_copy_offset] = plugin[plugin_offset];
94                         plugin_offset++;
95                         plugin_copy_offset++;
96                 }
97         }
98         plugin_copy[plugin_copy_len] = 0;
99
100         argvec = (char **)malloc(s);
101         if (!argvec)
102         {
103                 report(stderr, GT_("fetchmail: malloc failed\n"));
104                 return NULL;
105         }
106         memset(argvec, 0, s);
107         for (p = cp = plugin_copy, i = 0; *cp; cp++)
108         {       if ((!isspace((unsigned char)*cp)) && (cp == p ? 1 : isspace((unsigned char)*p))) {
109                         argvec[i] = cp;
110                         i++;
111                 }
112                 p = cp;
113         }
114         for (cp = plugin_copy; *cp; cp++)
115         {       if (isspace((unsigned char)*cp))
116                         *cp = 0;
117         }
118         return argvec;
119 }
120
121 static int handle_plugin(const char *host,
122                          const char *service, const char *plugin)
123 /* get a socket mediated through a given external command */
124 {
125     int fds[2];
126     char *const *argvec;
127
128     /*
129      * The author of this code, Felix von Leitner <felix@convergence.de>, says:
130      * he chose socketpair() instead of pipe() because socketpair creates 
131      * bidirectional sockets while allegedly some pipe() implementations don't.
132      */
133     if (socketpair(AF_UNIX,SOCK_STREAM,0,fds))
134     {
135         report(stderr, GT_("fetchmail: socketpair failed\n"));
136         return -1;
137     }
138     switch (fork()) {
139         case -1:
140                 /* error */
141                 report(stderr, GT_("fetchmail: fork failed\n"));
142                 return -1;
143         case 0: /* child */
144                 /* fds[1] is the parent's end; close it for proper EOF
145                 ** detection */
146                 (void) close(fds[1]);
147                 if ( (dup2(fds[0],0) == -1) || (dup2(fds[0],1) == -1) ) {
148                         report(stderr, GT_("dup2 failed\n"));
149                         _exit(EXIT_FAILURE);
150                 }
151                 /* fds[0] is now connected to 0 and 1; close it */
152                 (void) close(fds[0]);
153                 if (outlevel >= O_VERBOSE)
154                     report(stderr, GT_("running %s (host %s service %s)\n"), plugin, host, service);
155                 argvec = parse_plugin(plugin,host,service);
156                 execvp(*argvec, argvec);
157                 report(stderr, GT_("execvp(%s) failed\n"), *argvec);
158                 _exit(EXIT_FAILURE);
159                 break;
160         default:        /* parent */
161                 /* NOP */
162                 break;
163     }
164     /* fds[0] is the child's end; close it for proper EOF detection */
165     (void) close(fds[0]);
166     return fds[1];
167 }
168
169 /** Set socket to SO_KEEPALIVE. \return 0 for success. */
170 int SockKeepalive(int sock) {
171     int keepalive = 1;
172     return setsockopt(sock, SOL_SOCKET, SO_KEEPALIVE, &keepalive, sizeof keepalive);
173 }
174
175 int UnixOpen(const char *path)
176 {
177     int sock = -1;
178     struct sockaddr_un ad;
179     memset(&ad, 0, sizeof(ad));
180     ad.sun_family = AF_UNIX;
181     strncpy(ad.sun_path, path, sizeof(ad.sun_path)-1);
182
183     sock = socket( AF_UNIX, SOCK_STREAM, 0 );
184     if (sock < 0)
185     {
186         h_errno = 0;
187         return -1;
188     }
189
190     /* Socket opened saved. Useful if connect timeout
191      * because it can be closed.
192      */
193     mailserver_socket_temp = sock;
194
195     if (connect(sock, (struct sockaddr *) &ad, sizeof(ad)) < 0)
196     {
197         int olderr = errno;
198         fm_close(sock); /* don't use SockClose, no traffic yet */
199         h_errno = 0;
200         errno = olderr;
201         sock = -1;
202     }
203
204     /* No connect timeout, then no need to set mailserver_socket_temp */
205     mailserver_socket_temp = -1;
206
207     return sock;
208 }
209
210 int SockOpen(const char *host, const char *service,
211              const char *plugin, struct addrinfo **ai0)
212 {
213     struct addrinfo *ai, req;
214     int i, acterr = 0;
215     int ord;
216     char errbuf[8192] = "";
217
218     if (plugin)
219         return handle_plugin(host,service,plugin);
220
221     memset(&req, 0, sizeof(struct addrinfo));
222     req.ai_socktype = SOCK_STREAM;
223 #ifdef AI_ADDRCONFIG
224     req.ai_flags = AI_ADDRCONFIG;
225 #endif
226
227     i = fm_getaddrinfo(host, service, &req, ai0);
228     if (i) {
229         report(stderr, GT_("getaddrinfo(\"%s\",\"%s\") error: %s\n"),
230                 host, service, gai_strerror(i));
231         if (i == EAI_SERVICE)
232             report(stderr, GT_("Try adding the --service option (see also FAQ item R12).\n"));
233         return -1;
234     }
235
236     /* NOTE a Linux bug here - getaddrinfo will happily return 127.0.0.1
237      * twice if no IPv6 is configured */
238     i = -1;
239     for (ord = 0, ai = *ai0; ai; ord++, ai = ai->ai_next) {
240         char buf[256]; /* hostname */
241         char pb[256];  /* service name */
242         int gnie;      /* getnameinfo result code */
243
244         gnie = getnameinfo(ai->ai_addr, ai->ai_addrlen, buf, sizeof(buf), NULL, 0, NI_NUMERICHOST);
245         if (gnie)
246             snprintf(buf, sizeof(buf), GT_("unknown (%s)"), gai_strerror(gnie));
247         gnie = getnameinfo(ai->ai_addr, ai->ai_addrlen, NULL, 0, pb, sizeof(pb), NI_NUMERICSERV);
248         if (gnie)
249             snprintf(pb, sizeof(pb), GT_("unknown (%s)"), gai_strerror(gnie));
250
251         if (outlevel >= O_VERBOSE)
252             report_build(stdout, GT_("Trying to connect to %s/%s..."), buf, pb);
253         i = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
254         if (i < 0) {
255             int e = errno;
256             /* mask EAFNOSUPPORT errors, they confuse users for
257              * multihomed hosts */
258             if (errno != EAFNOSUPPORT)
259                 acterr = errno;
260             if (outlevel >= O_VERBOSE)
261                 report_complete(stdout, GT_("cannot create socket: %s\n"), strerror(e));
262             snprintf(errbuf+strlen(errbuf), sizeof(errbuf)-strlen(errbuf),\
263                      GT_("name %d: cannot create socket family %d type %d: %s\n"), ord, ai->ai_family, ai->ai_socktype, strerror(e));
264             continue;
265         }
266
267         SockKeepalive(i);
268
269         /* Save socket descriptor.
270          * Used to close the socket after connect timeout. */
271         mailserver_socket_temp = i;
272
273         if (connect(i, (struct sockaddr *) ai->ai_addr, ai->ai_addrlen) < 0) {
274             int e = errno;
275
276             /* additionally, suppress IPv4 network unreach errors */
277             if (e != EAFNOSUPPORT)
278                 acterr = errno;
279
280             if (outlevel >= O_VERBOSE)
281                 report_complete(stdout, GT_("connection failed.\n"));
282             if (outlevel >= O_VERBOSE)
283                 report(stderr, GT_("connection to %s:%s [%s/%s] failed: %s.\n"), host, service, buf, pb, strerror(e));
284             snprintf(errbuf+strlen(errbuf), sizeof(errbuf)-strlen(errbuf), GT_("name %d: connection to %s:%s [%s/%s] failed: %s.\n"), ord, host, service, buf, pb, strerror(e));
285             fm_close(i);
286             i = -1;
287             continue;
288         } else {
289             if (outlevel >= O_VERBOSE)
290                 report_complete(stdout, GT_("connected.\n"));
291         }
292
293         /* No connect timeout, then no need to set mailserver_socket_temp */
294         mailserver_socket_temp = -1;
295
296         break;
297     }
298
299     fm_freeaddrinfo(*ai0);
300     *ai0 = NULL;
301
302     if (i == -1) {
303         report(stderr, GT_("Connection errors for this poll:\n%s"), errbuf);
304         errno = acterr;
305     }
306
307     return i;
308 }
309
310 int SockPrintf(int sock, const char* format, ...)
311 {
312     va_list ap;
313     char buf[8192];
314
315     va_start(ap, format) ;
316     vsnprintf(buf, sizeof(buf), format, ap);
317     va_end(ap);
318     return SockWrite(sock, buf, strlen(buf));
319 }
320
321 #ifdef SSL_ENABLE
322 #include <openssl/ssl.h>
323 #include <openssl/err.h>
324 #include <openssl/pem.h>
325 #include <openssl/x509v3.h>
326 #include <openssl/rand.h>
327
328 static  SSL_CTX *_ctx[FD_SETSIZE];
329 static  SSL *_ssl_context[FD_SETSIZE];
330
331 static SSL      *SSLGetContext( int );
332 #endif /* SSL_ENABLE */
333
334 int SockWrite(int sock, const char *buf, int len)
335 {
336     int n, wrlen = 0;
337 #ifdef  SSL_ENABLE
338     SSL *ssl;
339 #endif
340
341     while (len)
342     {
343 #ifdef SSL_ENABLE
344         if( NULL != ( ssl = SSLGetContext( sock ) ) )
345                 n = SSL_write(ssl, buf, len);
346         else
347 #endif /* SSL_ENABLE */
348             n = fm_write(sock, buf, len);
349         if (n <= 0)
350             return -1;
351         len -= n;
352         wrlen += n;
353         buf += n;
354     }
355     return wrlen;
356 }
357
358 int SockRead(int sock, char *buf, int len)
359 {
360     char *newline, *bp = buf;
361     int n;
362 #ifdef  SSL_ENABLE
363     SSL *ssl;
364 #endif
365
366     if (--len < 1)
367         return(-1);
368     do {
369         /* 
370          * The reason for these gymnastics is that we want two things:
371          * (1) to read \n-terminated lines,
372          * (2) to return the true length of data read, even if the
373          *     data coming in has embedded NULS.
374          */
375 #ifdef  SSL_ENABLE
376         if( NULL != ( ssl = SSLGetContext( sock ) ) ) {
377                 /* Hack alert! */
378                 /* OK...  SSL_peek works a little different from MSG_PEEK
379                         Problem is that SSL_peek can return 0 if there
380                         is no data currently available.  If, on the other
381                         hand, we lose the socket, we also get a zero, but
382                         the SSL_read then SEGFAULTS!  To deal with this,
383                         we'll check the error code any time we get a return
384                         of zero from SSL_peek.  If we have an error, we bail.
385                         If we don't, we read one character in SSL_read and
386                         loop.  This should continue to work even if they
387                         later change the behavior of SSL_peek
388                         to "fix" this problem...  :-(   */
389                 if ((n = SSL_peek(ssl, bp, len)) < 0) {
390                         (void)SSL_get_error(ssl, n);
391                         return(-1);
392                 }
393                 if( 0 == n ) {
394                         /* SSL_peek says no data...  Does he mean no data
395                         or did the connection blow up?  If we got an error
396                         then bail! */
397                         if (0 != SSL_get_error(ssl, n)) {
398                                 return -1;
399                         }
400                         /* We didn't get an error so read at least one
401                                 character at this point and loop */
402                         n = 1;
403                         /* Make sure newline start out NULL!
404                          * We don't have a string to pass through
405                          * the strchr at this point yet */
406                         newline = NULL;
407                 } else if ((newline = (char *)memchr(bp, '\n', n)) != NULL)
408                         n = newline - bp + 1;
409                 /* Matthias Andree: SSL_read can return 0, in that case
410                  * we must call SSL_get_error to figure if there was
411                  * an error or just a "no data" condition */
412                 if ((n = SSL_read(ssl, bp, n)) <= 0) {
413                         if ((n = SSL_get_error(ssl, n))) {
414                                 return(-1);
415                         }
416                 }
417                 /* Check for case where our single character turned out to
418                  * be a newline...  (It wasn't going to get caught by
419                  * the strchr above if it came from the hack...  ). */
420                 if( NULL == newline && 1 == n && '\n' == *bp ) {
421                         /* Got our newline - this will break
422                                 out of the loop now */
423                         newline = bp;
424                 }
425         }
426         else
427 #endif /* SSL_ENABLE */
428         {
429
430             if ((n = fm_peek(sock, bp, len)) <= 0)
431                 return (-1);
432             if ((newline = (char *)memchr(bp, '\n', n)) != NULL)
433                 n = newline - bp + 1;
434             if ((n = fm_read(sock, bp, n)) == -1)
435                 return(-1);
436         }
437         bp += n;
438         len -= n;
439     } while 
440             (!newline && len);
441     *bp = '\0';
442
443     return bp - buf;
444 }
445
446 int SockPeek(int sock)
447 /* peek at the next socket character without actually reading it */
448 {
449     int n;
450     char ch;
451 #ifdef  SSL_ENABLE
452     SSL *ssl;
453 #endif
454
455 #ifdef  SSL_ENABLE
456         if( NULL != ( ssl = SSLGetContext( sock ) ) ) {
457                 n = SSL_peek(ssl, &ch, 1);
458                 if (n < 0) {
459                         (void)SSL_get_error(ssl, n);
460                         return -1;
461                 }
462                 if( 0 == n ) {
463                         /* This code really needs to implement a "hold back"
464                          * to simulate a functioning SSL_peek()...  sigh...
465                          * Has to be coordinated with the read code above.
466                          * Next on the list todo...     */
467
468                         /* SSL_peek says 0...  Does that mean no data
469                         or did the connection blow up?  If we got an error
470                         then bail! */
471                         if(0 != SSL_get_error(ssl, n)) {
472                                 return -1;
473                         }
474
475                         /* Haven't seen this case actually occur, but...
476                            if the problem in SockRead can occur, this should
477                            be possible...  Just not sure what to do here.
478                            This should be a safe "punt" the "peek" but don't
479                            "punt" the "session"... */
480
481                         return 0;       /* Give him a '\0' character */
482                 }
483         }
484         else
485 #endif /* SSL_ENABLE */
486             n = fm_peek(sock, &ch, 1);
487         if (n == -1)
488                 return -1;
489
490     return(ch);
491 }
492
493 #ifdef SSL_ENABLE
494
495 static  char *_ssl_server_cname = NULL;
496 static  int _check_fp;
497 static  char *_check_digest;
498 static  char *_server_label;
499 static  int _depth0ck;
500 static  int _firstrun;
501 static  int _prev_err;
502 static  int _verify_ok;
503
504 SSL *SSLGetContext( int sock )
505 {
506         if( sock < 0 || (unsigned)sock > FD_SETSIZE )
507                 return NULL;
508         if( _ctx[sock] == NULL )
509                 return NULL;
510         return _ssl_context[sock];
511 }
512
513 /* ok_return (preverify_ok) is 1 if this stage of certificate verification
514    passed, or 0 if it failed. This callback lets us display informative
515    errors, and perform additional validation (e.g. CN matches) */
516 static int SSL_verify_callback( int ok_return, X509_STORE_CTX *ctx, int strict )
517 {
518 #define SSLverbose (((outlevel) >= O_DEBUG) || ((outlevel) >= O_VERBOSE && (depth) == 0)) 
519         char buf[257];
520         X509 *x509_cert;
521         int err, depth, i;
522         unsigned char digest[EVP_MAX_MD_SIZE];
523         char text[EVP_MAX_MD_SIZE * 3 + 1], *tp, *te;
524         const EVP_MD *digest_tp;
525         unsigned int dsz, esz;
526         X509_NAME *subj, *issuer;
527         char *tt;
528
529         x509_cert = X509_STORE_CTX_get_current_cert(ctx);
530         err = X509_STORE_CTX_get_error(ctx);
531         depth = X509_STORE_CTX_get_error_depth(ctx);
532
533         subj = X509_get_subject_name(x509_cert);
534         issuer = X509_get_issuer_name(x509_cert);
535
536         if (outlevel >= O_VERBOSE) {
537                 if (depth == 0 && SSLverbose)
538                         report(stderr, GT_("Server certificate:\n"));
539                 else {
540                         if (_firstrun) {
541                                 _firstrun = 0;
542                                 if (SSLverbose)
543                                         report(stdout, GT_("Certificate chain, from root to peer, starting at depth %d:\n"), depth);
544                         } else {
545                                 if (SSLverbose)
546                                         report(stdout, GT_("Certificate at depth %d:\n"), depth);
547                         }
548                 }
549
550                 if (SSLverbose) {
551                         if ((i = X509_NAME_get_text_by_NID(issuer, NID_organizationName, buf, sizeof(buf))) != -1) {
552                                 report(stdout, GT_("Issuer Organization: %s\n"), (tt = sdump(buf, i)));
553                                 xfree(tt);
554                                 if ((size_t)i >= sizeof(buf) - 1)
555                                         report(stdout, GT_("Warning: Issuer Organization Name too long (possibly truncated).\n"));
556                         } else
557                                 report(stdout, GT_("Unknown Organization\n"));
558                         if ((i = X509_NAME_get_text_by_NID(issuer, NID_commonName, buf, sizeof(buf))) != -1) {
559                                 report(stdout, GT_("Issuer CommonName: %s\n"), (tt = sdump(buf, i)));
560                                 xfree(tt);
561                                 if ((size_t)i >= sizeof(buf) - 1)
562                                         report(stdout, GT_("Warning: Issuer CommonName too long (possibly truncated).\n"));
563                         } else
564                                 report(stdout, GT_("Unknown Issuer CommonName\n"));
565                 }
566         }
567
568         if ((i = X509_NAME_get_text_by_NID(subj, NID_commonName, buf, sizeof(buf))) != -1) {
569                 if (SSLverbose) {
570                         report(stdout, GT_("Subject CommonName: %s\n"), (tt = sdump(buf, i)));
571                         xfree(tt);
572                 }
573                 if ((size_t)i >= sizeof(buf) - 1) {
574                         /* Possible truncation. In this case, this is a DNS name, so this
575                          * is really bad. We do not tolerate this even in the non-strict case. */
576                         report(stderr, GT_("Bad certificate: Subject CommonName too long!\n"));
577                         return (0);
578                 }
579                 if ((size_t)i > strlen(buf)) {
580                         /* Name contains embedded NUL characters, so we complain. This is likely
581                          * a certificate spoofing attack. */
582                         report(stderr, GT_("Bad certificate: Subject CommonName contains NUL, aborting!\n"));
583                         return 0;
584                 }
585         }
586
587         if (depth == 0) { /* peer certificate */
588                 if (!_depth0ck) {
589                         _depth0ck = 1;
590                 }
591
592                 if ((i = X509_NAME_get_text_by_NID(subj, NID_commonName, buf, sizeof(buf))) != -1) {
593                         if (_ssl_server_cname != NULL) {
594                                 char *p1 = buf;
595                                 char *p2 = _ssl_server_cname;
596                                 int matched = 0;
597                                 STACK_OF(GENERAL_NAME) *gens;
598
599                                 /* RFC 2595 section 2.4: find a matching name
600                                  * first find a match among alternative names */
601                                 gens = (STACK_OF(GENERAL_NAME) *)X509_get_ext_d2i(x509_cert, NID_subject_alt_name, NULL, NULL);
602                                 if (gens) {
603                                         int j, r;
604                                         for (j = 0, r = sk_GENERAL_NAME_num(gens); j < r; ++j) {
605                                                 const GENERAL_NAME *gn = sk_GENERAL_NAME_value(gens, j);
606                                                 if (gn->type == GEN_DNS) {
607                                                         char *pp1 = (char *)gn->d.ia5->data;
608                                                         char *pp2 = _ssl_server_cname;
609                                                         if (outlevel >= O_VERBOSE) {
610                                                                 report(stdout, GT_("Subject Alternative Name: %s\n"), (tt = sdump(pp1, (size_t)gn->d.ia5->length)));
611                                                                 xfree(tt);
612                                                         }
613                                                         /* Name contains embedded NUL characters, so we complain. This
614                                                          * is likely a certificate spoofing attack. */
615                                                         if ((size_t)gn->d.ia5->length != strlen(pp1)) {
616                                                                 report(stderr, GT_("Bad certificate: Subject Alternative Name contains NUL, aborting!\n"));
617                                                                 sk_GENERAL_NAME_free(gens);
618                                                                 return 0;
619                                                         }
620                                                         if (name_match(pp1, pp2)) {
621                                                             matched = 1;
622                                                         }
623                                                 }
624                                         }
625                                         sk_GENERAL_NAME_free(gens);
626                                 }
627                                 if (name_match(p1, p2)) {
628                                         matched = 1;
629                                 }
630                                 if (!matched) {
631                                         if (strict || SSLverbose) {
632                                                 report(stderr,
633                                                                 GT_("Server CommonName mismatch: %s != %s\n"),
634                                                                 (tt = sdump(buf, i)), _ssl_server_cname );
635                                                 xfree(tt);
636                                         }
637                                         ok_return = 0;
638                                 }
639                         } else if (ok_return) {
640                                 report(stderr, GT_("Server name not set, could not verify certificate!\n"));
641                                 if (strict) return (0);
642                         }
643                 } else {
644                         if (outlevel >= O_VERBOSE)
645                                 report(stdout, GT_("Unknown Server CommonName\n"));
646                         if (ok_return && strict) {
647                                 report(stderr, GT_("Server name not specified in certificate!\n"));
648                                 return (0);
649                         }
650                 }
651                 /* Print the finger print. Note that on errors, we might print it more than once
652                  * normally; we kluge around that by using a global variable. */
653                 if (_check_fp == 1) {
654                         unsigned dp;
655
656                         _check_fp = -1;
657                         digest_tp = EVP_md5();
658                         if (digest_tp == NULL) {
659                                 report(stderr, GT_("EVP_md5() failed!\n"));
660                                 return (0);
661                         }
662                         if (!X509_digest(x509_cert, digest_tp, digest, &dsz)) {
663                                 report(stderr, GT_("Out of memory!\n"));
664                                 return (0);
665                         }
666                         tp = text;
667                         te = text + sizeof(text);
668                         for (dp = 0; dp < dsz; dp++) {
669                                 esz = snprintf(tp, te - tp, dp > 0 ? ":%02X" : "%02X", digest[dp]);
670                                 if (esz >= (size_t)(te - tp)) {
671                                         report(stderr, GT_("Digest text buffer too small!\n"));
672                                         return (0);
673                                 }
674                                 tp += esz;
675                         }
676                         if (outlevel > O_NORMAL)
677                             report(stdout, GT_("%s key fingerprint: %s\n"), _server_label, text);
678                         if (_check_digest != NULL) {
679                                 if (strcasecmp(text, _check_digest) == 0) {
680                                     if (outlevel > O_NORMAL)
681                                         report(stdout, GT_("%s fingerprints match.\n"), _server_label);
682                                 } else {
683                                     report(stderr, GT_("%s fingerprints do not match!\n"), _server_label);
684                                     return (0);
685                                 }
686                         } /* if (_check_digest != NULL) */
687                 } /* if (_check_fp) */
688         } /* if (depth == 0 && !_depth0ck) */
689
690         if (err != X509_V_OK && err != _prev_err && !(_check_fp != 0 && _check_digest && !strict)) {
691                 _prev_err = err;
692                                         
693                 report(stderr, GT_("Server certificate verification error: %s\n"), X509_verify_cert_error_string(err));
694                 /* We gave the error code, but maybe we can add some more details for debugging */
695
696                 switch (err) {
697                 case X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT:
698                         X509_NAME_oneline(issuer, buf, sizeof(buf));
699                         buf[sizeof(buf) - 1] = '\0';
700                         report(stderr, GT_("unknown issuer (first %d characters): %s\n"), (int)(sizeof(buf)-1), buf);
701                         report(stderr, GT_("This error usually happens when the server provides an incomplete certificate "
702                                                 "chain, which is nothing fetchmail could do anything about.  For details, "
703                                                 "please see the README.SSL-SERVER document that comes with fetchmail.\n"));
704                         break;
705                 case X509_V_ERR_DEPTH_ZERO_SELF_SIGNED_CERT:
706                 case X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT_LOCALLY:
707                 case X509_V_ERR_SELF_SIGNED_CERT_IN_CHAIN:
708                         X509_NAME_oneline(subj, buf, sizeof(buf));
709                         buf[sizeof(buf) - 1] = '\0';
710                         report(stderr, GT_("This means that the root signing certificate (issued for %s) is not in the "
711                                                 "trusted CA certificate locations, or that c_rehash needs to be run "
712                                                 "on the certificate directory. For details, please "
713                                                 "see the documentation of --sslcertpath and --sslcertfile in the manual page.\n"), buf);
714                         break;
715                 default:
716                         break;
717                 }
718         }
719         /*
720          * If not in strict checking mode (--sslcertck), override this
721          * and pretend that verification had succeeded.
722          */
723         _verify_ok &= ok_return;
724         if (!strict)
725                 ok_return = 1;
726         return (ok_return);
727 }
728
729 static int SSL_nock_verify_callback( int ok_return, X509_STORE_CTX *ctx )
730 {
731         return SSL_verify_callback(ok_return, ctx, 0);
732 }
733
734 static int SSL_ck_verify_callback( int ok_return, X509_STORE_CTX *ctx )
735 {
736         return SSL_verify_callback(ok_return, ctx, 1);
737 }
738
739
740 /* get commonName from certificate set in file.
741  * commonName is stored in buffer namebuffer, limited with namebufferlen
742  */
743 static const char *SSLCertGetCN(const char *mycert,
744                                 char *namebuffer, size_t namebufferlen)
745 {
746         const char *ret       = NULL;
747         BIO        *certBio   = NULL;
748         X509       *x509_cert = NULL;
749         X509_NAME  *certname  = NULL;
750
751         if (namebuffer && namebufferlen > 0) {
752                 namebuffer[0] = 0x00;
753                 certBio = BIO_new_file(mycert,"r");
754                 if (certBio) {
755                         x509_cert = PEM_read_bio_X509(certBio,NULL,NULL,NULL);
756                         BIO_free(certBio);
757                 }
758                 if (x509_cert) {
759                         certname = X509_get_subject_name(x509_cert);
760                         if (certname &&
761                             X509_NAME_get_text_by_NID(certname, NID_commonName,
762                                                       namebuffer, namebufferlen) > 0)
763                                 ret = namebuffer;
764                         X509_free(x509_cert);
765                 }
766         }
767         return ret;
768 }
769
770 /* performs initial SSL handshake over the connected socket
771  * uses SSL *ssl global variable, which is currently defined
772  * in this file
773  */
774 int SSLOpen(int sock, char *mycert, char *mykey, const char *myproto, int certck,
775     char *cacertfile, char *certpath,
776     char *fingerprint, char *servercname, char *label, char **remotename)
777 {
778         struct stat randstat;
779         int i;
780
781         SSL_load_error_strings();
782         SSL_library_init();
783         OpenSSL_add_all_algorithms(); /* see Debian Bug#576430 and manpage */
784
785         if (stat("/dev/random", &randstat)  &&
786             stat("/dev/urandom", &randstat)) {
787           /* Neither /dev/random nor /dev/urandom are present, so add
788              entropy to the SSL PRNG a hard way. */
789           for (i = 0; i < 10000  &&  ! RAND_status (); ++i) {
790             char buf[4];
791             struct timeval tv;
792             gettimeofday (&tv, 0);
793             buf[0] = tv.tv_usec & 0xF;
794             buf[2] = (tv.tv_usec & 0xF0) >> 4;
795             buf[3] = (tv.tv_usec & 0xF00) >> 8;
796             buf[1] = (tv.tv_usec & 0xF000) >> 12;
797             RAND_add (buf, sizeof buf, 0.1);
798           }
799         }
800
801         if( sock < 0 || (unsigned)sock > FD_SETSIZE ) {
802                 report(stderr, GT_("File descriptor out of range for SSL") );
803                 return( -1 );
804         }
805
806         /* Make sure a connection referring to an older context is not left */
807         _ssl_context[sock] = NULL;
808         if(myproto) {
809                 if(!strcasecmp("ssl3",myproto)) {
810                         _ctx[sock] = SSL_CTX_new(SSLv3_client_method());
811                 } else if(!strcasecmp("tls1",myproto)) {
812                         _ctx[sock] = SSL_CTX_new(TLSv1_client_method());
813                 } else if (!strcasecmp("ssl23",myproto)) {
814                         myproto = NULL;
815                 } else {
816                         fprintf(stderr,GT_("Invalid SSL protocol '%s' specified, using default (SSL23).\n"), myproto);
817                         myproto = NULL;
818                 }
819         }
820         if(!myproto) {
821                 _ctx[sock] = SSL_CTX_new(SSLv23_client_method());
822         }
823         if(_ctx[sock] == NULL) {
824                 ERR_print_errors_fp(stderr);
825                 return(-1);
826         }
827
828         SSL_CTX_set_options(_ctx[sock], SSL_OP_ALL | SSL_OP_NO_SSLv2);
829
830         if (certck) {
831                 SSL_CTX_set_verify(_ctx[sock], SSL_VERIFY_PEER, SSL_ck_verify_callback);
832         } else {
833                 /* In this case, we do not fail if verification fails. However,
834                  * we provide the callback for output and possible fingerprint
835                  * checks. */
836                 SSL_CTX_set_verify(_ctx[sock], SSL_VERIFY_PEER, SSL_nock_verify_callback);
837         }
838
839         /* Check which trusted X.509 CA certificate store(s) to load */
840         {
841                 char *tmp;
842                 int want_default_cacerts = 0;
843
844                 /* Load user locations if any is given */
845                 if (certpath || cacertfile)
846                         SSL_CTX_load_verify_locations(_ctx[sock],
847                                                 cacertfile, certpath);
848                 else
849                         want_default_cacerts = 1;
850
851                 tmp = getenv("FETCHMAIL_INCLUDE_DEFAULT_X509_CA_CERTS");
852                 if (want_default_cacerts || (tmp && tmp[0])) {
853                         SSL_CTX_set_default_verify_paths(_ctx[sock]);
854                 }
855         }
856         
857         _ssl_context[sock] = SSL_new(_ctx[sock]);
858         
859         if(_ssl_context[sock] == NULL) {
860                 ERR_print_errors_fp(stderr);
861                 SSL_CTX_free(_ctx[sock]);
862                 _ctx[sock] = NULL;
863                 return(-1);
864         }
865         
866         /* This static is for the verify callback */
867         _ssl_server_cname = servercname;
868         _server_label = label;
869         _check_fp = 1;
870         _check_digest = fingerprint;
871         _depth0ck = 0;
872         _firstrun = 1;
873         _verify_ok = 1;
874         _prev_err = -1;
875
876         if( mycert || mykey ) {
877
878         /* Ok...  He has a certificate file defined, so lets declare it.  If
879          * he does NOT have a separate certificate and private key file then
880          * assume that it's a combined key and certificate file.
881          */
882                 char buffer[256];
883                 
884                 if( !mykey )
885                         mykey = mycert;
886                 if( !mycert )
887                         mycert = mykey;
888
889                 if ((!*remotename || !**remotename) && SSLCertGetCN(mycert, buffer, sizeof(buffer))) {
890                         free(*remotename);
891                         *remotename = xstrdup(buffer);
892                 }
893                 SSL_use_certificate_file(_ssl_context[sock], mycert, SSL_FILETYPE_PEM);
894                 SSL_use_RSAPrivateKey_file(_ssl_context[sock], mykey, SSL_FILETYPE_PEM);
895         }
896
897         if (SSL_set_fd(_ssl_context[sock], sock) == 0 
898             || SSL_connect(_ssl_context[sock]) < 1) {
899                 ERR_print_errors_fp(stderr);
900                 SSL_free( _ssl_context[sock] );
901                 _ssl_context[sock] = NULL;
902                 SSL_CTX_free(_ctx[sock]);
903                 _ctx[sock] = NULL;
904                 return(-1);
905         }
906
907         /* Paranoia: was the callback not called as we expected? */
908         if (!_depth0ck) {
909                 report(stderr, GT_("Certificate/fingerprint verification was somehow skipped!\n"));
910
911                 if (fingerprint != NULL || certck) {
912                         if( NULL != SSLGetContext( sock ) ) {
913                                 /* Clean up the SSL stack */
914                                 SSL_shutdown( _ssl_context[sock] );
915                                 SSL_free( _ssl_context[sock] );
916                                 _ssl_context[sock] = NULL;
917                                 SSL_CTX_free(_ctx[sock]);
918                                 _ctx[sock] = NULL;
919                         }
920                         return(-1);
921                 }
922         }
923
924         if (!certck && !fingerprint &&
925                 (SSL_get_verify_result(_ssl_context[sock]) != X509_V_OK || !_verify_ok)) {
926                 report(stderr, GT_("Warning: the connection is insecure, continuing anyways. (Better use --sslcertck!)\n"));
927         }
928
929         return(0);
930 }
931 #endif
932
933 int SockClose(int sock)
934 /* close a socket gracefully */
935 {
936 #ifdef  SSL_ENABLE
937     if( NULL != SSLGetContext( sock ) ) {
938         /* Clean up the SSL stack */
939         SSL_shutdown( _ssl_context[sock] );
940         SSL_free( _ssl_context[sock] );
941         _ssl_context[sock] = NULL;
942         SSL_CTX_free(_ctx[sock]);
943         _ctx[sock] = NULL;
944     }
945 #endif
946
947     /* if there's an error closing at this point, not much we can do */
948     return(fm_close(sock));     /* this is guarded */
949 }
950
951 #ifdef __CYGWIN__
952 /*
953  * Workaround Microsoft Winsock recv/WSARecv(..., MSG_PEEK) bug.
954  * See http://sources.redhat.com/ml/cygwin/2001-08/msg00628.html
955  * for more details.
956  */
957 static ssize_t cygwin_read(int sock, void *buf, size_t count)
958 {
959     char *bp = (char *)buf;
960     size_t n = 0;
961
962     if ((n = read(sock, bp, count)) == (size_t)-1)
963         return(-1);
964
965     if (n != count) {
966         size_t n2 = 0;
967         if (outlevel >= O_VERBOSE)
968             report(stdout, GT_("Cygwin socket read retry\n"));
969         n2 = read(sock, bp + n, count - n);
970         if (n2 == (size_t)-1 || n + n2 != count) {
971             report(stderr, GT_("Cygwin socket read retry failed!\n"));
972             return(-1);
973         }
974     }
975
976     return count;
977 }
978 #endif /* __CYGWIN__ */