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