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