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