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