]> Pileus Git - ~andy/fetchmail/blob - socket.c
52e9f1cf9815464926b880de315eec7726e73367
[~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 = NULL;
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 SSLOpen has never initialized - just return NULL */
627         if( NULL == _ctx )
628                 return NULL;
629
630         if( sock < 0 || (unsigned)sock > FD_SETSIZE )
631                 return NULL;
632         return _ssl_context[sock];
633 }
634
635
636 /* ok_return (preverify_ok) is 1 if this stage of certificate verification
637    passed, or 0 if it failed. This callback lets us display informative
638    errors, and perform additional validation (e.g. CN matches) */
639 static int SSL_verify_callback( int ok_return, X509_STORE_CTX *ctx, int strict )
640 {
641         char buf[257];
642         X509 *x509_cert;
643         int err, depth, i;
644         unsigned char digest[EVP_MAX_MD_SIZE];
645         char text[EVP_MAX_MD_SIZE * 3 + 1], *tp, *te;
646         const EVP_MD *digest_tp;
647         unsigned int dsz, esz;
648         X509_NAME *subj, *issuer;
649
650         x509_cert = X509_STORE_CTX_get_current_cert(ctx);
651         err = X509_STORE_CTX_get_error(ctx);
652         depth = X509_STORE_CTX_get_error_depth(ctx);
653
654         subj = X509_get_subject_name(x509_cert);
655         issuer = X509_get_issuer_name(x509_cert);
656
657         if (depth == 0 && !_depth0ck) {
658                 _depth0ck = 1;
659                 
660                 if (outlevel >= O_VERBOSE) {
661                         if ((i = X509_NAME_get_text_by_NID(issuer, NID_organizationName, buf, sizeof(buf))) != -1) {
662                                 report(stdout, GT_("Issuer Organization: %s\n"), buf);
663                                 if ((size_t)i >= sizeof(buf) - 1)
664                                         report(stdout, GT_("Warning: Issuer Organization Name too long (possibly truncated).\n"));
665                         } else
666                                 report(stdout, GT_("Unknown Organization\n"));
667                         if ((i = X509_NAME_get_text_by_NID(issuer, NID_commonName, buf, sizeof(buf))) != -1) {
668                                 report(stdout, GT_("Issuer CommonName: %s\n"), buf);
669                                 if ((size_t)i >= sizeof(buf) - 1)
670                                         report(stdout, GT_("Warning: Issuer CommonName too long (possibly truncated).\n"));
671                         } else
672                                 report(stdout, GT_("Unknown Issuer CommonName\n"));
673                 }
674                 if ((i = X509_NAME_get_text_by_NID(subj, NID_commonName, buf, sizeof(buf))) != -1) {
675                         if (outlevel >= O_VERBOSE)
676                                 report(stdout, GT_("Server CommonName: %s\n"), buf);
677                         if ((size_t)i >= sizeof(buf) - 1) {
678                                 /* Possible truncation. In this case, this is a DNS name, so this
679                                  * is really bad. We do not tolerate this even in the non-strict case. */
680                                 report(stderr, GT_("Bad certificate: Subject CommonName too long!\n"));
681                                 return (0);
682                         }
683                         if (_ssl_server_cname != NULL) {
684                                 char *p1 = buf;
685                                 char *p2 = _ssl_server_cname;
686                                 int n;
687                                 int matched = 0;
688                                 STACK_OF(GENERAL_NAME) *gens;
689                                 
690                                 /* RFC 2595 section 2.4: find a matching name
691                                  * first find a match among alternative names */
692                                 gens = X509_get_ext_d2i(x509_cert, NID_subject_alt_name, NULL, NULL);
693                                 if (gens) {
694                                         int i, r;
695                                         for (i = 0, r = sk_GENERAL_NAME_num(gens); i < r; ++i) {
696                                                 const GENERAL_NAME *gn = sk_GENERAL_NAME_value(gens, i);
697                                                 if (gn->type == GEN_DNS) {
698                                                         char *p1 = (char *)gn->d.ia5->data;
699                                                         char *p2 = _ssl_server_cname;
700                                                         if (outlevel >= O_VERBOSE)
701                                                                 report(stderr, "Subject Alternative Name: %s\n", p1);
702                                                         if (*p1 == '*') {
703                                                                 ++p1;
704                                                                 n = strlen(p2) - strlen(p1);
705                                                                 if (n >= 0)
706                                                                         p2 += n;
707                                                         }
708                                                         if (0 == strcasecmp(p1, p2)) {
709                                                                 matched = 1;
710                                                         }
711                                                 }
712                                         }
713                                         sk_GENERAL_NAME_free(gens);
714                                 }
715                                 if (*p1 == '*') {
716                                         ++p1;
717                                         n = strlen(p2) - strlen(p1);
718                                         if (n >= 0)
719                                                 p2 += n;
720                                 }       
721                                 if (0 == strcasecmp(p1, p2)) {
722                                   matched = 1;
723                                 }
724                                 if (!matched) {
725                                         report(stderr,
726                                             GT_("Server CommonName mismatch: %s != %s\n"),
727                                             buf, _ssl_server_cname );
728                                         if (ok_return && strict)
729                                                 return (0);
730                                 }
731                         } else if (ok_return) {
732                                 report(stderr, GT_("Server name not set, could not verify certificate!\n"));
733                                 if (strict) return (0);
734                         }
735                 } else {
736                         if (outlevel >= O_VERBOSE)
737                                 report(stdout, GT_("Unknown Server CommonName\n"));
738                         if (ok_return && strict) {
739                                 report(stderr, GT_("Server name not specified in certificate!\n"));
740                                 return (0);
741                         }
742                 }
743                 /* Print the finger print. Note that on errors, we might print it more than once
744                  * normally; we kluge around that by using a global variable. */
745                 if (_check_fp == 1) {
746                         unsigned dp;
747
748                         _check_fp = -1;
749                         digest_tp = EVP_md5();
750                         if (digest_tp == NULL) {
751                                 report(stderr, GT_("EVP_md5() failed!\n"));
752                                 return (0);
753                         }
754                         if (!X509_digest(x509_cert, digest_tp, digest, &dsz)) {
755                                 report(stderr, GT_("Out of memory!\n"));
756                                 return (0);
757                         }
758                         tp = text;
759                         te = text + sizeof(text);
760                         for (dp = 0; dp < dsz; dp++) {
761                                 esz = snprintf(tp, te - tp, dp > 0 ? ":%02X" : "%02X", digest[dp]);
762                                 if (esz >= (size_t)(te - tp)) {
763                                         report(stderr, GT_("Digest text buffer too small!\n"));
764                                         return (0);
765                                 }
766                                 tp += esz;
767                         }
768                         if (outlevel > O_NORMAL)
769                             report(stdout, GT_("%s key fingerprint: %s\n"), _server_label, text);
770                         if (_check_digest != NULL) {
771                                 if (strcmp(text, _check_digest) == 0) {
772                                     if (outlevel > O_NORMAL)
773                                         report(stdout, GT_("%s fingerprints match.\n"), _server_label);
774                                 } else {
775                                     report(stderr, GT_("%s fingerprints do not match!\n"), _server_label);
776                                     return (0);
777                                 }
778                         } /* if (_check_digest != NULL) */
779                 } /* if (_check_fp) */
780         } /* if (depth == 0 && !_depth0ck) */
781
782         if (err != X509_V_OK && err != _prev_err && !(_check_fp != 0 && _check_digest && !strict)) {
783                 _prev_err = err;
784                 report(stderr, GT_("Server certificate verification error: %s\n"), X509_verify_cert_error_string(err));
785                 /* We gave the error code, but maybe we can add some more details for debugging */
786                 switch (err) {
787                 case X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT:
788                         X509_NAME_oneline(issuer, buf, sizeof(buf));
789                         buf[sizeof(buf) - 1] = '\0';
790                         report(stderr, GT_("unknown issuer (first %d characters): %s\n"), (int)(sizeof(buf)-1), buf);
791                         break;
792                 }
793         }
794         /*
795          * If not in strict checking mode (--sslcertck), override this
796          * and pretend that verification had succeeded.
797          */
798         if (!strict)
799                 ok_return = 1;
800         return (ok_return);
801 }
802
803 static int SSL_nock_verify_callback( int ok_return, X509_STORE_CTX *ctx )
804 {
805         return SSL_verify_callback(ok_return, ctx, 0);
806 }
807
808 static int SSL_ck_verify_callback( int ok_return, X509_STORE_CTX *ctx )
809 {
810         return SSL_verify_callback(ok_return, ctx, 1);
811 }
812
813 /* performs initial SSL handshake over the connected socket
814  * uses SSL *ssl global variable, which is currently defined
815  * in this file
816  */
817 int SSLOpen(int sock, char *mycert, char *mykey, char *myproto, int certck, char *certpath,
818     char *fingerprint, char *servercname, char *label)
819 {
820         struct stat randstat;
821         int i;
822
823         SSL_load_error_strings();
824         SSLeay_add_ssl_algorithms();
825         
826 #ifdef SSL_ENABLE
827         if (stat("/dev/random", &randstat)  &&
828             stat("/dev/urandom", &randstat)) {
829           /* Neither /dev/random nor /dev/urandom are present, so add
830              entropy to the SSL PRNG a hard way. */
831           for (i = 0; i < 10000  &&  ! RAND_status (); ++i) {
832             char buf[4];
833             struct timeval tv;
834             gettimeofday (&tv, 0);
835             buf[0] = tv.tv_usec & 0xF;
836             buf[2] = (tv.tv_usec & 0xF0) >> 4;
837             buf[3] = (tv.tv_usec & 0xF00) >> 8;
838             buf[1] = (tv.tv_usec & 0xF000) >> 12;
839             RAND_add (buf, sizeof buf, 0.1);
840           }
841         }
842 #endif /* SSL_ENABLE */
843
844
845         if( sock < 0 || (unsigned)sock > FD_SETSIZE ) {
846                 report(stderr, GT_("File descriptor out of range for SSL") );
847                 return( -1 );
848         }
849
850         if( ! _ctx ) {
851                 /* Be picky and make sure the memory is cleared */
852                 memset( _ssl_context, 0, sizeof( _ssl_context ) );
853                 if(myproto) {
854                         if(!strcmp("ssl2",myproto)) {
855                                 _ctx = SSL_CTX_new(SSLv2_client_method());
856                         } else if(!strcmp("ssl3",myproto)) {
857                                 _ctx = SSL_CTX_new(SSLv3_client_method());
858                         } else if(!strcmp("tls1",myproto)) {
859                                 _ctx = SSL_CTX_new(TLSv1_client_method());
860                         } else if (!strcmp("ssl23",myproto)) {
861                                 myproto = NULL;
862                         } else {
863                                 fprintf(stderr,GT_("Invalid SSL protocol '%s' specified, using default (SSLv23).\n"), myproto);
864                                 myproto = NULL;
865                         }
866                 }
867                 if(!myproto) {
868                         _ctx = SSL_CTX_new(SSLv23_client_method());
869                 }
870                 if(_ctx == NULL) {
871                         ERR_print_errors_fp(stderr);
872                         return(-1);
873                 }
874         }
875
876         if (certck) {
877                 SSL_CTX_set_verify(_ctx, SSL_VERIFY_PEER, SSL_ck_verify_callback);
878         } else {
879                 /* In this case, we do not fail if verification fails. However,
880                  *  we provide the callback for output and possible fingerprint checks. */
881                 SSL_CTX_set_verify(_ctx, SSL_VERIFY_PEER, SSL_nock_verify_callback);
882         }
883         if (certpath)
884                 SSL_CTX_load_verify_locations(_ctx, NULL, certpath);
885         else
886                 SSL_CTX_set_default_verify_paths(_ctx);
887         
888         _ssl_context[sock] = SSL_new(_ctx);
889         
890         if(_ssl_context[sock] == NULL) {
891                 ERR_print_errors_fp(stderr);
892                 return(-1);
893         }
894         
895         /* This static is for the verify callback */
896         _ssl_server_cname = servercname;
897         _server_label = label;
898         _check_fp = 1;
899         _check_digest = fingerprint;
900         _depth0ck = 0;
901         _prev_err = -1;
902
903         if( mycert || mykey ) {
904
905         /* Ok...  He has a certificate file defined, so lets declare it.  If
906          * he does NOT have a separate certificate and private key file then
907          * assume that it's a combined key and certificate file.
908          */
909                 if( !mykey )
910                         mykey = mycert;
911                 if( !mycert )
912                         mycert = mykey;
913                 SSL_use_certificate_file(_ssl_context[sock], mycert, SSL_FILETYPE_PEM);
914                 SSL_use_RSAPrivateKey_file(_ssl_context[sock], mykey, SSL_FILETYPE_PEM);
915         }
916
917         SSL_set_fd(_ssl_context[sock], sock);
918         
919         if(SSL_connect(_ssl_context[sock]) < 1) {
920                 ERR_print_errors_fp(stderr);
921                 return(-1);
922         }
923
924         /* Paranoia: was the callback not called as we expected? */
925         if (!_depth0ck) {
926                 report(stderr, GT_("Certificate/fingerprint verification was somehow skipped!\n"));
927
928                 if (fingerprint != NULL || certck) {
929                         if( NULL != SSLGetContext( sock ) ) {
930                                 /* Clean up the SSL stack */
931                                 SSL_shutdown( _ssl_context[sock] );
932                                 SSL_free( _ssl_context[sock] );
933                                 _ssl_context[sock] = NULL;
934                         }
935                         return(-1);
936                 }
937         }
938
939         return(0);
940 }
941 #endif
942
943 int SockClose(int sock)
944 /* close a socket gracefully */
945 {
946 #ifdef  SSL_ENABLE
947     if( NULL != SSLGetContext( sock ) ) {
948         /* Clean up the SSL stack */
949         SSL_shutdown( _ssl_context[sock] );
950         SSL_free( _ssl_context[sock] );
951         _ssl_context[sock] = NULL;
952     }
953 #endif
954
955 #ifdef __UNUSED__
956     /* 
957      * This hangs in RedHat 6.2 after fetchmail runs for a while a
958      * FIN_WAIT2 comes up in netstat and fetchmail never returns from
959      * the recv system call. (Reported from jtnews
960      * <jtnews@bellatlantic.net>, Wed, 24 May 2000 21:26:02.)
961      *
962      * Half-close the connection first so the other end gets notified.
963      *
964      * This stops sends but allows receives (effectively, it sends a
965      * TCP <FIN>).  */
966     if (shutdown(sock, 1) == 0) {
967         char ch;
968         /* If there is any data still waiting in the queue, discard it.
969          * Call recv() until either it returns 0 (meaning we received a FIN)
970          * or any error occurs.  This makes sure all data sent by the other
971          * side is acknowledged at the TCP level.
972          */
973         if (fm_peek(sock, &ch, 1) > 0)
974             while (fm_read(sock, &ch, 1) > 0)
975                 continue;
976     }
977 #endif /* __UNUSED__ */
978
979     /* if there's an error closing at this point, not much we can do */
980     return(fm_close(sock));     /* this is guarded */
981 }
982
983 #ifdef __CYGWIN__
984 /*
985  * Workaround Microsoft Winsock recv/WSARecv(..., MSG_PEEK) bug.
986  * See http://sources.redhat.com/ml/cygwin/2001-08/msg00628.html
987  * for more details.
988  */
989 static ssize_t cygwin_read(int sock, void *buf, size_t count)
990 {
991     char *bp = buf;
992     int n = 0;
993
994     if ((n = read(sock, bp, count)) == -1)
995         return(-1);
996
997     if (n != count) {
998         int n2 = 0;
999         if (outlevel >= O_VERBOSE)
1000             report(stdout, GT_("Cygwin socket read retry\n"));
1001         n2 = read(sock, bp + n, count - n);
1002         if (n2 == -1 || n + n2 != count) {
1003             report(stderr, GT_("Cygwin socket read retry failed!\n"));
1004             return(-1);
1005         }
1006     }
1007
1008     return count;
1009 }
1010 #endif /* __CYGWIN__ */
1011
1012 #ifdef MAIN
1013 /*
1014  * Use the chargen service to test input buffering directly.
1015  * You may have to uncomment the `chargen' service description in your
1016  * inetd.conf (and then SIGHUP inetd) for this to work.  */
1017 main()
1018 {
1019     int         sock = SockOpen("localhost", "chargen", NULL);
1020     char        buf[80];
1021
1022     while (SockRead(sock, buf, sizeof(buf)-1))
1023         SockWrite(1, buf, strlen(buf));
1024     SockClose(sock);
1025 }
1026 #endif /* MAIN */
1027
1028 /* socket.c ends here */