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