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