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