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