]> Pileus Git - ~andy/fetchmail/blob - socket.c
db04734dbdd19ae5a403cfd7cf6869689669451a
[~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, struct addrinfo **ai0)
268 {
269     struct addrinfo *ai, 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
277     memset(&req, 0, sizeof(struct addrinfo));
278     req.ai_socktype = SOCK_STREAM;
279
280     i = fm_getaddrinfo(host, service, &req, ai0);
281     if (i) {
282         report(stderr, GT_("getaddrinfo(\"%s\",\"%s\") error: %s\n"),
283                 host, service, gai_strerror(i));
284         if (i == EAI_SERVICE)
285             report(stderr, GT_("Try adding the --service option (see also FAQ item R12).\n"));
286         return -1;
287     }
288
289     i = -1;
290     for (ai = *ai0; ai; ai = ai->ai_next) {
291         char buf[80],pb[80];
292         int gnie;
293
294         gnie = getnameinfo(ai->ai_addr, ai->ai_addrlen, buf, sizeof(buf), NULL, 0, NI_NUMERICHOST);
295         if (gnie)
296             snprintf(buf, sizeof(buf), GT_("unknown (%s)"), gai_strerror(gnie));
297         gnie = getnameinfo(ai->ai_addr, ai->ai_addrlen, NULL, 0, pb, sizeof(pb), NI_NUMERICSERV);
298         if (gnie)
299             snprintf(pb, sizeof(pb), GT_("unknown (%s)"), gai_strerror(gnie));
300
301         if (outlevel >= O_VERBOSE)
302             report_build(stdout, GT_("Trying to connect to %s/%s..."), buf, pb);
303         i = socket(ai->ai_family, ai->ai_socktype, 0);
304         if (i < 0) {
305             /* mask EAFNOSUPPORT errors, they confuse users for
306              * multihomed hosts */
307             if (errno != EAFNOSUPPORT)
308                 acterr = errno;
309             if (outlevel >= O_VERBOSE)
310                 report_complete(stdout, GT_("cannot create socket: %s\n"), strerror(errno));
311             continue;
312         }
313
314         /* Save socket descriptor.
315          * Used to close the socket after connect timeout. */
316         mailserver_socket_temp = i;
317
318         if (connect(i, (struct sockaddr *) ai->ai_addr, ai->ai_addrlen) < 0) {
319             int e = errno;
320
321             /* additionally, suppress IPv4 network unreach errors */
322             if (e != EAFNOSUPPORT)
323                 acterr = errno;
324
325             if (outlevel >= O_VERBOSE)
326                 report_complete(stdout, GT_("connection failed.\n"));
327             if (outlevel > O_SILENT)
328                 report(stderr, GT_("connection to %s:%s [%s/%s] failed: %s.\n"), host, service, buf, pb, strerror(e));
329             fm_close(i);
330             i = -1;
331             continue;
332         } else {
333             if (outlevel >= O_VERBOSE)
334                 report_complete(stdout, GT_("connected.\n"));
335         }
336
337         /* No connect timeout, then no need to set mailserver_socket_temp */
338         mailserver_socket_temp = -1;
339
340         break;
341     }
342
343     fm_freeaddrinfo(*ai0);
344     *ai0 = NULL;
345
346     if (i == -1)
347         errno = acterr;
348
349     return i;
350 }
351
352
353 #if defined(HAVE_STDARG_H)
354 int SockPrintf(int sock, const char* format, ...)
355 {
356 #else
357 int SockPrintf(sock,format,va_alist)
358 int sock;
359 char *format;
360 va_dcl {
361 #endif
362
363     va_list ap;
364     char buf[8192];
365
366 #if defined(HAVE_STDARG_H)
367     va_start(ap, format) ;
368 #else
369     va_start(ap);
370 #endif
371     vsnprintf(buf, sizeof(buf), format, ap);
372     va_end(ap);
373     return SockWrite(sock, buf, strlen(buf));
374
375 }
376
377 #ifdef SSL_ENABLE
378 #include <openssl/ssl.h>
379 #include <openssl/err.h>
380 #include <openssl/pem.h>
381 #include <openssl/x509v3.h>
382 #include <openssl/rand.h>
383
384 static  SSL_CTX *_ctx[FD_SETSIZE];
385 static  SSL *_ssl_context[FD_SETSIZE];
386
387 static SSL      *SSLGetContext( int );
388 #endif /* SSL_ENABLE */
389
390 int SockWrite(int sock, char *buf, int len)
391 {
392     int n, wrlen = 0;
393 #ifdef  SSL_ENABLE
394     SSL *ssl;
395 #endif
396
397     while (len)
398     {
399 #ifdef SSL_ENABLE
400         if( NULL != ( ssl = SSLGetContext( sock ) ) )
401                 n = SSL_write(ssl, buf, len);
402         else
403 #endif /* SSL_ENABLE */
404             n = fm_write(sock, buf, len);
405         if (n <= 0)
406             return -1;
407         len -= n;
408         wrlen += n;
409         buf += n;
410     }
411     return wrlen;
412 }
413
414 int SockRead(int sock, char *buf, int len)
415 {
416     char *newline, *bp = buf;
417     int n;
418 #ifdef  FORCE_STUFFING
419     int maxavailable = 0;
420 #endif
421 #ifdef  SSL_ENABLE
422     SSL *ssl;
423 #endif
424
425     if (--len < 1)
426         return(-1);
427 #ifdef __BEOS__
428     if (peeked != 0){
429         (*bp) = peeked;
430         bp++;
431         len--;
432         peeked = 0;
433     }
434 #endif        
435     do {
436         /* 
437          * The reason for these gymnastics is that we want two things:
438          * (1) to read \n-terminated lines,
439          * (2) to return the true length of data read, even if the
440          *     data coming in has embedded NULS.
441          */
442 #ifdef  SSL_ENABLE
443         if( NULL != ( ssl = SSLGetContext( sock ) ) ) {
444                 /* Hack alert! */
445                 /* OK...  SSL_peek works a little different from MSG_PEEK
446                         Problem is that SSL_peek can return 0 if there
447                         is no data currently available.  If, on the other
448                         hand, we loose the socket, we also get a zero, but
449                         the SSL_read then SEGFAULTS!  To deal with this,
450                         we'll check the error code any time we get a return
451                         of zero from SSL_peek.  If we have an error, we bail.
452                         If we don't, we read one character in SSL_read and
453                         loop.  This should continue to work even if they
454                         later change the behavior of SSL_peek
455                         to "fix" this problem...  :-(   */
456                 if ((n = SSL_peek(ssl, bp, len)) < 0) {
457                         (void)SSL_get_error(ssl, n);
458                         return(-1);
459                 }
460 #ifdef FORCE_STUFFING
461                 maxavailable = n;
462 #endif
463                 if( 0 == n ) {
464                         /* SSL_peek says no data...  Does he mean no data
465                         or did the connection blow up?  If we got an error
466                         then bail! */
467                         if( 0 != ( n = SSL_get_error(ssl, n) ) ) {
468                                 return -1;
469                         }
470                         /* We didn't get an error so read at least one
471                                 character at this point and loop */
472                         n = 1;
473                         /* Make sure newline start out NULL!
474                          * We don't have a string to pass through
475                          * the strchr at this point yet */
476                         newline = NULL;
477                 } else if ((newline = memchr(bp, '\n', n)) != NULL)
478                         n = newline - bp + 1;
479                 /* Matthias Andree: SSL_read can return 0, in that case
480                  * we must call SSL_get_error to figure if there was
481                  * an error or just a "no data" condition */
482                 if ((n = SSL_read(ssl, bp, n)) <= 0) {
483                         if ((n = SSL_get_error(ssl, n))) {
484                                 return(-1);
485                         }
486                 }
487                 /* Check for case where our single character turned out to
488                  * be a newline...  (It wasn't going to get caught by
489                  * the strchr above if it came from the hack...  ). */
490                 if( NULL == newline && 1 == n && '\n' == *bp ) {
491                         /* Got our newline - this will break
492                                 out of the loop now */
493                         newline = bp;
494                 }
495         }
496         else
497 #endif /* SSL_ENABLE */
498         {
499
500 #ifdef __BEOS__
501             if ((n = fm_read(sock, bp, 1)) <= 0)
502 #else
503             if ((n = fm_peek(sock, bp, len)) <= 0)
504 #endif
505                 return (-1);
506 #ifdef FORCE_STUFFING
507             maxavailable = n;
508 #endif
509             if ((newline = (char *)memchr(bp, '\n', n)) != NULL)
510                 n = newline - bp + 1;
511 #ifndef __BEOS__
512             if ((n = fm_read(sock, bp, n)) == -1)
513                 return(-1);
514 #endif /* __BEOS__ */
515         }
516         bp += n;
517         len -= n;
518     } while 
519             (!newline && len);
520     *bp = '\0';
521
522 #ifdef FORCE_STUFFING           /* too ugly to live -- besides, there's IMAP */
523     /* OK, very weird hack coming up here:
524      * When POP3 servers send us a message, they're supposed to
525      * terminate the message with a line containing only a dot. To protect
526      * against lines in the real message that might contain only a dot,
527      * they're supposed to preface any line that starts with a dot with
528      * an additional dot, which will be removed on the client side. That
529      * process, called byte-stuffing (and unstuffing) is really not the
530      * concern of this low-level routine, ordinarily, but there are some
531      * POP servers (and maybe IMAP servers too, who knows) that fail to
532      * do the byte-stuffing, and this routine is the best place to try to
533      * identify and fix that fault.
534      *
535      * Since the DOT line is supposed to come only at the end of a
536      * message, the implication is that right after we see it, the server
537      * is supposed to go back to waiting for the next command. There
538      * isn't supposed to be any more data to read after we see the dot.
539      * THEREFORE, if we see more data to be read after something that
540      * looks like the dot line, then probably the server is failing to
541      * do byte-stuffing. In that case, we'll byte-pack it for them so
542      * that the higher-level routines see things as hunky-dorey.
543      * This is not a perfect test or fix by any means (it has an
544      * obvious race condition, for one thing), but it should at least
545      * reduce the nastiness that ensues when people don't know how
546      * to write POP servers.
547      */
548     if ((maxavailable > (bp-buf)) &&
549             ((((bp-buf) == 3) &&
550               (buf[0] == '.') &&
551               (buf[1] == '\r') &&
552               (buf[2] == '\n')) ||
553              (((bp-buf) == 2) &&
554               (buf[0] == '.') &&
555               (buf[1] == '\n')))) {
556
557         memmove(buf+1, buf, (bp-buf)+1);
558         buf[0] = '.';
559         bp++;
560     }
561 #endif /* FORCE_STUFFING */
562     return bp - buf;
563 }
564
565 int SockPeek(int sock)
566 /* peek at the next socket character without actually reading it */
567 {
568     int n;
569     char ch;
570 #ifdef  SSL_ENABLE
571     SSL *ssl;
572 #endif
573
574 #ifdef  SSL_ENABLE
575         if( NULL != ( ssl = SSLGetContext( sock ) ) ) {
576                 n = SSL_peek(ssl, &ch, 1);
577                 if (n < 0) {
578                         (void)SSL_get_error(ssl, n);
579                         return -1;
580                 }
581                 if( 0 == n ) {
582                         /* This code really needs to implement a "hold back"
583                          * to simulate a functioning SSL_peek()...  sigh...
584                          * Has to be coordinated with the read code above.
585                          * Next on the list todo...     */
586
587                         /* SSL_peek says 0...  Does that mean no data
588                         or did the connection blow up?  If we got an error
589                         then bail! */
590                         if( 0 != ( n = SSL_get_error(ssl, n) ) ) {
591                                 return -1;
592                         }
593
594                         /* Haven't seen this case actually occur, but...
595                            if the problem in SockRead can occur, this should
596                            be possible...  Just not sure what to do here.
597                            This should be a safe "punt" the "peek" but don't
598                            "punt" the "session"... */
599
600                         return 0;       /* Give him a '\0' character */
601                 }
602         }
603         else
604 #endif /* SSL_ENABLE */
605             n = fm_peek(sock, &ch, 1);
606         if (n == -1)
607                 return -1;
608
609 #ifdef __BEOS__
610     peeked = ch;
611 #endif
612     return(ch);
613 }
614
615 #ifdef SSL_ENABLE
616
617 static  char *_ssl_server_cname = NULL;
618 static  int _check_fp;
619 static  char *_check_digest;
620 static  char *_server_label;
621 static  int _depth0ck;
622 static  int _prev_err;
623
624 SSL *SSLGetContext( int sock )
625 {
626         if( sock < 0 || (unsigned)sock > FD_SETSIZE )
627                 return NULL;
628         if( _ctx[sock] == NULL )
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
812 /* get commonName from certificate set in file.
813  * commonName is stored in buffer namebuffer, limited with namebufferlen
814  */
815 static const char *SSLCertGetCN(const char *mycert,
816                                 char *namebuffer, size_t namebufferlen)
817 {
818         const char *ret       = NULL;
819         BIO        *certBio   = NULL;
820         X509       *x509_cert = NULL;
821         X509_NAME  *certname  = NULL;
822
823         if (namebuffer && namebufferlen > 0) {
824                 namebuffer[0] = 0x00;
825                 certBio = BIO_new_file(mycert,"r");
826                 if (certBio) {
827                         x509_cert = PEM_read_bio_X509(certBio,NULL,NULL,NULL);
828                         BIO_free(certBio);
829                 }
830                 if (x509_cert) {
831                         certname = X509_get_subject_name(x509_cert);
832                         if (certname &&
833                             X509_NAME_get_text_by_NID(certname, NID_commonName,
834                                                       namebuffer, namebufferlen) > 0)
835                                 ret = namebuffer;
836                         X509_free(x509_cert);
837                 }
838         }
839         return ret;
840 }
841
842 /* performs initial SSL handshake over the connected socket
843  * uses SSL *ssl global variable, which is currently defined
844  * in this file
845  */
846 int SSLOpen(int sock, char *mycert, char *mykey, char *myproto, int certck, char *certpath,
847     char *fingerprint, char *servercname, char *label, char **remotename)
848 {
849         struct stat randstat;
850         int i;
851
852         SSL_load_error_strings();
853         SSLeay_add_ssl_algorithms();
854         
855 #ifdef SSL_ENABLE
856         if (stat("/dev/random", &randstat)  &&
857             stat("/dev/urandom", &randstat)) {
858           /* Neither /dev/random nor /dev/urandom are present, so add
859              entropy to the SSL PRNG a hard way. */
860           for (i = 0; i < 10000  &&  ! RAND_status (); ++i) {
861             char buf[4];
862             struct timeval tv;
863             gettimeofday (&tv, 0);
864             buf[0] = tv.tv_usec & 0xF;
865             buf[2] = (tv.tv_usec & 0xF0) >> 4;
866             buf[3] = (tv.tv_usec & 0xF00) >> 8;
867             buf[1] = (tv.tv_usec & 0xF000) >> 12;
868             RAND_add (buf, sizeof buf, 0.1);
869           }
870         }
871 #endif /* SSL_ENABLE */
872
873
874         if( sock < 0 || (unsigned)sock > FD_SETSIZE ) {
875                 report(stderr, GT_("File descriptor out of range for SSL") );
876                 return( -1 );
877         }
878
879         /* Make sure a connection referring to an older context is not left */
880         _ssl_context[sock] = NULL;
881         if(myproto) {
882                 if(!strcasecmp("ssl2",myproto)) {
883                         _ctx[sock] = SSL_CTX_new(SSLv2_client_method());
884                 } else if(!strcasecmp("ssl3",myproto)) {
885                         _ctx[sock] = SSL_CTX_new(SSLv3_client_method());
886                 } else if(!strcasecmp("tls1",myproto)) {
887                         _ctx[sock] = SSL_CTX_new(TLSv1_client_method());
888                 } else if (!strcasecmp("ssl23",myproto)) {
889                         myproto = NULL;
890                 } else {
891                         fprintf(stderr,GT_("Invalid SSL protocol '%s' specified, using default (SSLv23).\n"), myproto);
892                         myproto = NULL;
893                 }
894         }
895         if(!myproto) {
896                 _ctx[sock] = SSL_CTX_new(SSLv23_client_method());
897         }
898         if(_ctx[sock] == NULL) {
899                 ERR_print_errors_fp(stderr);
900                 return(-1);
901         }
902
903         if (certck) {
904                 SSL_CTX_set_verify(_ctx[sock], SSL_VERIFY_PEER, SSL_ck_verify_callback);
905         } else {
906                 /* In this case, we do not fail if verification fails. However,
907                  *  we provide the callback for output and possible fingerprint checks. */
908                 SSL_CTX_set_verify(_ctx[sock], SSL_VERIFY_PEER, SSL_nock_verify_callback);
909         }
910         if (certpath)
911                 SSL_CTX_load_verify_locations(_ctx[sock], NULL, certpath);
912         else
913                 SSL_CTX_set_default_verify_paths(_ctx[sock]);
914         
915         _ssl_context[sock] = SSL_new(_ctx[sock]);
916         
917         if(_ssl_context[sock] == NULL) {
918                 ERR_print_errors_fp(stderr);
919                 SSL_CTX_free(_ctx[sock]);
920                 _ctx[sock] = NULL;
921                 return(-1);
922         }
923         
924         /* This static is for the verify callback */
925         _ssl_server_cname = servercname;
926         _server_label = label;
927         _check_fp = 1;
928         _check_digest = fingerprint;
929         _depth0ck = 0;
930         _prev_err = -1;
931
932         if( mycert || mykey ) {
933
934         /* Ok...  He has a certificate file defined, so lets declare it.  If
935          * he does NOT have a separate certificate and private key file then
936          * assume that it's a combined key and certificate file.
937          */
938                 char buffer[256];
939                 
940                 if( !mykey )
941                         mykey = mycert;
942                 if( !mycert )
943                         mycert = mykey;
944
945                 if ((!*remotename || !**remotename) && SSLCertGetCN(mycert, buffer, sizeof(buffer))) {
946                         free(*remotename);
947                         *remotename = xstrdup(buffer);
948                 }
949                 SSL_use_certificate_file(_ssl_context[sock], mycert, SSL_FILETYPE_PEM);
950                 SSL_use_RSAPrivateKey_file(_ssl_context[sock], mykey, SSL_FILETYPE_PEM);
951         }
952
953         SSL_set_fd(_ssl_context[sock], sock);
954         
955         if(SSL_connect(_ssl_context[sock]) < 1) {
956                 ERR_print_errors_fp(stderr);
957                 SSL_CTX_free(_ctx[sock]);
958                 _ctx[sock] = NULL;
959                 return(-1);
960         }
961
962         /* Paranoia: was the callback not called as we expected? */
963         if (!_depth0ck) {
964                 report(stderr, GT_("Certificate/fingerprint verification was somehow skipped!\n"));
965
966                 if (fingerprint != NULL || certck) {
967                         if( NULL != SSLGetContext( sock ) ) {
968                                 /* Clean up the SSL stack */
969                                 SSL_shutdown( _ssl_context[sock] );
970                                 SSL_free( _ssl_context[sock] );
971                                 _ssl_context[sock] = NULL;
972                                 SSL_CTX_free(_ctx[sock]);
973                                 _ctx[sock] = NULL;
974                         }
975                         return(-1);
976                 }
977         }
978
979         return(0);
980 }
981 #endif
982
983 int SockClose(int sock)
984 /* close a socket gracefully */
985 {
986 #ifdef  SSL_ENABLE
987     if( NULL != SSLGetContext( sock ) ) {
988         /* Clean up the SSL stack */
989         SSL_shutdown( _ssl_context[sock] );
990         SSL_free( _ssl_context[sock] );
991         _ssl_context[sock] = NULL;
992         SSL_CTX_free(_ctx[sock]);
993         _ctx[sock] = NULL;
994     }
995 #endif
996
997 #ifdef __UNUSED__
998     /* 
999      * This hangs in RedHat 6.2 after fetchmail runs for a while a
1000      * FIN_WAIT2 comes up in netstat and fetchmail never returns from
1001      * the recv system call. (Reported from jtnews
1002      * <jtnews@bellatlantic.net>, Wed, 24 May 2000 21:26:02.)
1003      *
1004      * Half-close the connection first so the other end gets notified.
1005      *
1006      * This stops sends but allows receives (effectively, it sends a
1007      * TCP <FIN>).  */
1008     if (shutdown(sock, 1) == 0) {
1009         char ch;
1010         /* If there is any data still waiting in the queue, discard it.
1011          * Call recv() until either it returns 0 (meaning we received a FIN)
1012          * or any error occurs.  This makes sure all data sent by the other
1013          * side is acknowledged at the TCP level.
1014          */
1015         if (fm_peek(sock, &ch, 1) > 0)
1016             while (fm_read(sock, &ch, 1) > 0)
1017                 continue;
1018     }
1019 #endif /* __UNUSED__ */
1020
1021     /* if there's an error closing at this point, not much we can do */
1022     return(fm_close(sock));     /* this is guarded */
1023 }
1024
1025 #ifdef __CYGWIN__
1026 /*
1027  * Workaround Microsoft Winsock recv/WSARecv(..., MSG_PEEK) bug.
1028  * See http://sources.redhat.com/ml/cygwin/2001-08/msg00628.html
1029  * for more details.
1030  */
1031 static ssize_t cygwin_read(int sock, void *buf, size_t count)
1032 {
1033     char *bp = buf;
1034     int n = 0;
1035
1036     if ((n = read(sock, bp, count)) == -1)
1037         return(-1);
1038
1039     if (n != count) {
1040         int n2 = 0;
1041         if (outlevel >= O_VERBOSE)
1042             report(stdout, GT_("Cygwin socket read retry\n"));
1043         n2 = read(sock, bp + n, count - n);
1044         if (n2 == -1 || n + n2 != count) {
1045             report(stderr, GT_("Cygwin socket read retry failed!\n"));
1046             return(-1);
1047         }
1048     }
1049
1050     return count;
1051 }
1052 #endif /* __CYGWIN__ */
1053
1054 #ifdef MAIN
1055 /*
1056  * Use the chargen service to test input buffering directly.
1057  * You may have to uncomment the `chargen' service description in your
1058  * inetd.conf (and then SIGHUP inetd) for this to work.  */
1059 main()
1060 {
1061     int         sock = SockOpen("localhost", "chargen", NULL);
1062     char        buf[80];
1063
1064     while (SockRead(sock, buf, sizeof(buf)-1))
1065         SockWrite(1, buf, strlen(buf));
1066     SockClose(sock);
1067 }
1068 #endif /* MAIN */
1069
1070 /* socket.c ends here */