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