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