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