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