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