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