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