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