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