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