Yet more comments
[openssl.git] / demos / easy_tls / easy-tls.c
1 /* -*- Mode: C; c-file-style: "bsd" -*- */
2 /*-
3  * easy-tls.c -- generic TLS proxy.
4  * $Id: easy-tls.c,v 1.4 2002/03/05 09:07:16 bodo Exp $
5  */
6 /*-
7  (c) Copyright 1999 Bodo Moeller.  All rights reserved.
8
9  This is free software; you can redistributed and/or modify it
10  unter the terms of either
11    -  the GNU General Public License as published by the
12       Free Software Foundation, version 1, or (at your option)
13       any later version,
14  or
15    -  the following license:
16 */
17 /*-
18  * Redistribution and use in source and binary forms, with or without
19  * modification, are permitted provided that each of the following
20  * conditions is met:
21  *
22  * 1. Redistributions qualify as "freeware" or "Open Source Software" under
23  *    one of the following terms:
24  * 
25  *    (a) Redistributions are made at no charge beyond the reasonable cost of
26  *        materials and delivery.
27  * 
28  *    (b) Redistributions are accompanied by a copy of the Source Code
29  *        or by an irrevocable offer to provide a copy of the Source Code
30  *        for up to three years at the cost of materials and delivery.
31  *        Such redistributions must allow further use, modification, and
32  *        redistribution of the Source Code under substantially the same
33  *        terms as this license.
34  *
35  * 2. Redistributions of source code must retain the above copyright
36  *    notice, this list of conditions and the following disclaimer. 
37  *
38  * 3. Redistributions in binary form must reproduce the above copyright
39  *    notice, this list of conditions and the following disclaimer in
40  *    the documentation and/or other materials provided with the
41  *    distribution.
42  *
43  * 4. All advertising materials mentioning features or use of this
44  *    software must display the following acknowledgment:
45  *    "This product includes software developed by Bodo Moeller."
46  *    (If available, substitute umlauted o for oe.)
47  *
48  * 5. Redistributions of any form whatsoever must retain the following
49  *    acknowledgment:
50  *    "This product includes software developed by Bodo Moeller."
51  *
52  * THIS SOFTWARE IS PROVIDED BY BODO MOELLER ``AS IS'' AND ANY
53  * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
54  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
55  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL BODO MOELLER OR
56  * HIS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
57  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
58  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
59  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
60  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
61  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
62  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
63  * OF THE POSSIBILITY OF SUCH DAMAGE.
64  */
65 /*-
66  * Attribution for OpenSSL library:
67  *
68  * This product includes cryptographic software written by Eric Young
69  * (eay@cryptsoft.com).  This product includes software written by Tim
70  * Hudson (tjh@cryptsoft.com).
71  * This product includes software developed by the OpenSSL Project
72  * for use in the OpenSSL Toolkit. (http://www.openssl.org/)
73  */
74
75 static char const rcsid[] =
76 "$Id: easy-tls.c,v 1.4 2002/03/05 09:07:16 bodo Exp $";
77
78 #include <assert.h>
79 #include <errno.h>
80 #include <fcntl.h>
81 #include <limits.h>
82 #include <stdarg.h>
83 #include <stdio.h>
84 #include <string.h>
85 #include <sys/select.h>
86 #include <sys/socket.h>
87 #include <sys/stat.h>
88 #include <sys/time.h>
89 #include <sys/types.h>
90 #include <sys/utsname.h>
91 #include <unistd.h>
92
93 #include <openssl/crypto.h>
94 #include <openssl/dh.h>
95 #include <openssl/dsa.h>
96 #include <openssl/err.h>
97 #include <openssl/evp.h>
98 #include <openssl/opensslv.h>
99 #include <openssl/pem.h>
100 #include <openssl/rand.h>
101 #ifndef NO_RSA
102  #include <openssl/rsa.h>
103 #endif
104 #include <openssl/ssl.h>
105 #include <openssl/x509.h>
106 #include <openssl/x509_vfy.h>
107
108 #if OPENSSL_VERSION_NUMBER < 0x00904000L /* 0.9.4-dev */
109 # error "This program needs OpenSSL 0.9.4 or later."
110 #endif
111
112 #include "easy-tls.h" /* include after <openssl/ssl.h> if both are needed */
113
114 #if TLS_INFO_SIZE > PIPE_BUF
115 # if PIPE_BUF < 512
116 #  error "PIPE_BUF < 512" /* non-POSIX */
117 # endif
118 # error "TLS_INFO_SIZE > PIPE_BUF"
119 #endif
120
121 /*****************************************************************************/
122
123 #ifdef TLS_APP
124 # include TLS_APP
125 #endif
126
127 /*-
128  * Applications can define:
129  *   TLS_APP_PROCESS_INIT -- void ...(int fd, int client_p, void *apparg)
130  *   TLS_CUMULATE_ERRORS 
131  *   TLS_ERROR_BUFSIZ
132  *   TLS_APP_ERRFLUSH -- void ...(int child_p, char *, size_t, void *apparg)
133  */
134
135 #ifndef TLS_APP_PROCESS_INIT
136 # define TLS_APP_PROCESS_INIT(fd, client_p, apparg) ((void) 0)
137 #endif
138
139 #ifndef TLS_ERROR_BUFSIZ
140 # define TLS_ERROR_BUFSIZ (10*160)
141 #endif
142 #if TLS_ERROR_BUFSIZ < 2 /* {'\n',0} */
143 # error "TLS_ERROR_BUFSIZE is too small."
144 #endif
145
146 #ifndef TLS_APP_ERRFLUSH
147 # define TLS_APP_ERRFLUSH tls_app_errflush
148 static void
149 tls_app_errflush(int child_p, char *errbuf, size_t num, void *apparg)
150 {
151     fputs(errbuf, stderr);
152 }
153 #endif
154
155 /*****************************************************************************/
156
157 #ifdef DEBUG_TLS
158 # define DEBUG_MSG(x) fprintf(stderr,"  %s\n",x)
159 # define DEBUG_MSG2(x,y) fprintf(stderr, "  %s: %d\n",x,y)
160 static int tls_loop_count = 0;
161 static int tls_select_count = 0;
162 #else
163 # define DEBUG_MSG(x) (void)0
164 # define DEBUG_MSG2(x,y) (void)0
165 #endif
166
167 static void tls_rand_seed_uniquely(void);
168 static void tls_proxy(int clear_fd, int tls_fd, int info_fd, SSL_CTX *ctx, int client_p);
169 static int tls_socket_nonblocking(int fd);
170
171 static int tls_child_p = 0;
172 static void *tls_child_apparg;
173
174
175 struct tls_start_proxy_args
176 tls_start_proxy_defaultargs(void)
177 {
178     struct tls_start_proxy_args ret;
179
180     ret.fd = -1;
181     ret.client_p = -1;
182     ret.ctx = NULL;
183     ret.pid = NULL;
184     ret.infofd = NULL;
185     
186     return ret;
187 }
188
189 /*- 
190  * Slice in TLS proxy process at fd.
191  * Return value:
192  *   0    ok  (*pid is set to child's PID if pid != NULL),
193  *   < 0  look at errno
194  *   > 0  other error
195  *   (return value encodes place of error)
196  *
197  */
198 int
199 tls_start_proxy(struct tls_start_proxy_args a, void *apparg)
200 {
201     int fds[2] = {-1, -1};
202     int infofds[2] = {-1, -1};
203     int r, getfd, getfl;
204     int ret;
205
206     DEBUG_MSG2("tls_start_proxy fd", a.fd);
207     DEBUG_MSG2("tls_start_proxy client_p", a.client_p);
208
209     if (a.fd == -1 || a.client_p == -1 || a.ctx == NULL)
210         return 1;
211
212     if (a.pid != NULL) {
213         *a.pid = 0;
214     }
215     if (a.infofd != NULL) {
216         *a.infofd = -1;
217     }
218
219     r = socketpair(AF_UNIX, SOCK_STREAM, 0, fds);
220     if (r == -1)
221         return -1;
222     if (a.fd >= FD_SETSIZE || fds[0] >= FD_SETSIZE) {
223         ret = 2;
224         goto err;
225     }
226     if (a.infofd != NULL) {
227         r = pipe(infofds);
228         if (r == -1) {
229             ret = -3;
230             goto err;
231         }
232     }
233
234     r = fork();
235     if (r == -1) {
236         ret = -4;
237         goto err;
238     }
239     if (r == 0) {
240         DEBUG_MSG("fork");
241         tls_child_p = 1;
242         tls_child_apparg = apparg;
243         close(fds[1]);
244         if (infofds[0] != -1)
245             close(infofds[0]);
246         TLS_APP_PROCESS_INIT(a.fd, a.client_p, apparg);
247         DEBUG_MSG("TLS_APP_PROCESS_INIT");
248         tls_proxy(fds[0], a.fd, infofds[1], a.ctx, a.client_p);
249         exit(0);
250     }
251     if (a.pid != NULL)
252         *a.pid = r;
253     if (infofds[1] != -1) {
254         close(infofds[1]);
255         infofds[1] = -1;
256     }
257     /* install fds[1] in place of fd: */
258     close(fds[0]);
259     fds[0] = -1;
260     getfd = fcntl(a.fd, F_GETFD);
261     getfl = fcntl(a.fd, F_GETFL);
262     r = dup2(fds[1], a.fd);
263     close(fds[1]);
264     fds[1] = -1;
265     if (r == -1) {
266         ret = -5;
267         goto err;
268     }
269     if (getfd != 1)
270         fcntl(a.fd, F_SETFD, getfd);
271     if (getfl & O_NONBLOCK)
272         (void)tls_socket_nonblocking(a.fd);
273     if (a.infofd != NULL)
274         *a.infofd = infofds[0];
275     return 0;
276     
277   err:
278     if (fds[0] != -1)
279         close(fds[0]);
280     if (fds[1] != -1)
281         close(fds[1]);
282     if (infofds[0] != -1)
283         close(infofds[0]);
284     if (infofds[1] != -1)
285         close(infofds[1]);
286     return ret;
287 }
288
289 /*****************************************************************************/
290
291 static char errbuf[TLS_ERROR_BUFSIZ];
292 static size_t errbuf_i = 0;
293
294 static void
295 tls_errflush(void *apparg)
296 {
297     if (errbuf_i == 0)
298         return;
299     
300     assert(errbuf_i < sizeof errbuf);
301     assert(errbuf[errbuf_i] == 0);
302     if (errbuf_i == sizeof errbuf - 1) {
303         /* make sure we have a newline, even if string has been truncated */
304         errbuf[errbuf_i - 1] = '\n';
305     }
306
307     /* TLS_APP_ERRFLUSH may modify the string as needed,
308      * e.g. substitute other characters for \n for convenience */
309     TLS_APP_ERRFLUSH(tls_child_p, errbuf, errbuf_i, apparg);
310
311     errbuf_i = 0;
312 }
313
314 static void
315 tls_errprintf(int flush, void *apparg, const char *fmt, ...)
316 {
317     va_list args;
318     int r;
319     
320     if (errbuf_i < sizeof errbuf - 1) {
321         size_t n;
322
323         va_start(args, fmt);
324         n = (sizeof errbuf) - errbuf_i;
325         r = vsnprintf(errbuf + errbuf_i, n, fmt, args);
326         if (r >= n)
327             r = n - 1;
328         if (r >= 0) {
329             errbuf_i += r;
330         } else {
331             errbuf_i = sizeof errbuf - 1;
332             errbuf[errbuf_i] = '\0';
333         }
334         assert(errbuf_i < sizeof errbuf);
335         assert(errbuf[errbuf_i] == 0);
336     }
337 #ifndef TLS_CUMULATE_ERRORS
338     tls_errflush(apparg);
339 #else
340     if (flush)
341         tls_errflush(apparg);
342 #endif
343 }
344
345 /* app_prefix.. are for additional information provided by caller.
346  * If OpenSSL error queue is empty, print default_text ("???" if NULL).
347  */
348 static char *
349 tls_openssl_errors(const char *app_prefix_1, const char *app_prefix_2, const char *default_text, void *apparg)
350 {
351     static char reasons[255];
352     size_t reasons_i;
353     unsigned long err;
354     const char *file;
355     int line;
356     const char *data;
357     int flags;
358     char *errstring;
359     int printed_something = 0;
360     
361     reasons_i = 0;
362
363     assert(app_prefix_1 != NULL);
364     assert(app_prefix_2 != NULL);
365
366     if (default_text == NULL)
367         default_text = "?""?""?";
368     
369     while ((err = ERR_get_error_line_data(&file,&line,&data,&flags)) != 0) {
370         if (reasons_i < sizeof reasons) {
371             size_t n;
372             int r;
373
374             n = (sizeof reasons) - reasons_i;
375             r = snprintf(reasons + reasons_i, n, "%s%s", (reasons_i > 0 ? ", " : ""), ERR_reason_error_string(err));
376             if (r >= n)
377                 r = n - 1;
378             if (r >= 0) {
379                 reasons_i += r;
380             } else {
381                 reasons_i = sizeof reasons;
382             }
383             assert(reasons_i <= sizeof reasons);
384         }
385         
386         errstring = ERR_error_string(err, NULL);
387         assert(errstring != NULL);
388         tls_errprintf(0, apparg, "OpenSSL error%s%s: %s:%s:%d:%s\n", app_prefix_1, app_prefix_2, errstring, file, line, (flags & ERR_TXT_STRING) ? data : "");
389         printed_something = 1;
390     }
391
392     if (!printed_something) {
393         assert(reasons_i == 0);
394         snprintf(reasons, sizeof reasons, "%s", default_text);
395         tls_errprintf(0, apparg, "OpenSSL error%s%s: %s\n", app_prefix_1, app_prefix_2, default_text);
396     }
397
398 #ifdef TLS_CUMULATE_ERRORS    
399     tls_errflush(apparg);
400 #endif
401     assert(errbuf_i == 0);
402
403     return reasons;
404 }
405
406 /*****************************************************************************/
407
408 static int tls_init_done = 0;
409
410 static int
411 tls_init(void *apparg)
412 {
413     if (tls_init_done)
414         return 0;
415     
416     SSL_load_error_strings();
417     if (!SSL_library_init() /* aka SSLeay_add_ssl_algorithms() */ ) {
418         tls_errprintf(1, apparg, "SSL_library_init failed.\n");
419         return -1;
420     }
421     tls_init_done = 1;
422     tls_rand_seed();
423     return 0;
424 }
425
426 /*****************************************************************************/
427
428 static void
429 tls_rand_seed_uniquely(void)
430 {
431     struct {
432         pid_t pid;
433         time_t time;
434         void *stack;
435     } data;
436
437     data.pid = getpid();
438     data.time = time(NULL);
439     data.stack = (void *)&data;
440
441     RAND_seed((const void *)&data, sizeof data);
442 }
443
444 void
445 tls_rand_seed(void)
446 {
447     struct {
448         struct utsname uname;
449         int uname_1;
450         int uname_2;
451         uid_t uid;
452         uid_t euid;
453         gid_t gid;
454         gid_t egid;
455     } data;
456     
457     data.uname_1 = uname(&data.uname);
458     data.uname_2 = errno; /* Let's hope that uname fails randomly :-) */
459
460     data.uid = getuid();
461     data.euid = geteuid();
462     data.gid = getgid();
463     data.egid = getegid();
464     
465     RAND_seed((const void *)&data, sizeof data);
466     tls_rand_seed_uniquely();
467 }
468
469 static int tls_rand_seeded_p = 0;
470
471 #define my_MIN_SEED_BYTES 256 /* struct stat can be larger than 128 */
472 int
473 tls_rand_seed_from_file(const char *filename, size_t n, void *apparg)
474 {
475     /* Seed OpenSSL's random number generator from file.
476        Try to read n bytes if n > 0, whole file if n == 0. */
477
478     int r;
479
480     if (tls_init(apparg) == -1)
481         return -1;
482     tls_rand_seed();
483
484     r = RAND_load_file(filename, (n > 0 && n < LONG_MAX) ? (long)n : LONG_MAX);
485     /* r is the number of bytes filled into the random number generator,
486      * which are taken from "stat(filename, ...)" in addition to the
487      * file contents.
488      */
489     assert(1 < my_MIN_SEED_BYTES);
490     /* We need to detect at least those cases when the file does not exist
491      * at all.  With current versions of OpenSSL, this should do it: */
492     if (n == 0)
493         n = my_MIN_SEED_BYTES;
494     if (r < n) {
495         tls_errprintf(1, apparg, "rand_seed_from_file: could not read %d bytes from %s.\n", n, filename);
496         return -1;
497     } else {
498         tls_rand_seeded_p = 1;
499         return 0;
500     }
501 }
502
503 void
504 tls_rand_seed_from_memory(const void *buf, size_t n)
505 {
506     size_t i = 0;
507     
508     while (i < n) {
509         size_t rest = n - i;
510         int chunk = rest < INT_MAX ? (int)rest : INT_MAX;
511         RAND_seed((const char *)buf + i, chunk);
512         i += chunk;
513     }
514     tls_rand_seeded_p = 1;
515 }
516
517
518 /*****************************************************************************/
519
520 struct tls_x509_name_string {
521     char str[100];
522 };
523
524 static void
525 tls_get_x509_subject_name_oneline(X509 *cert, struct tls_x509_name_string *namestring)
526 {
527     X509_NAME *name;
528
529     if (cert == NULL) {
530         namestring->str[0] = '\0';
531         return;
532     }
533     
534     name = X509_get_subject_name(cert); /* does not increment any reference counter */
535
536     assert(sizeof namestring->str >= 4); /* "?" or "...", plus 0 */
537     
538     if (name == NULL) {
539         namestring->str[0] = '?';
540         namestring->str[1] = 0;
541     } else {
542         size_t len;
543
544         X509_NAME_oneline(name, namestring->str, sizeof namestring->str);
545         len = strlen(namestring->str);
546         assert(namestring->str[len] == 0);
547         assert(len < sizeof namestring->str);
548
549         if (len+1 == sizeof namestring->str) {
550             /* (Probably something was cut off.)
551              * Does not really work -- X509_NAME_oneline truncates after
552              * name components, we cannot tell from the result whether
553              * anything is missing. */
554
555             assert(namestring->str[len] == 0);
556             namestring->str[--len] = '.';
557             namestring->str[--len] = '.';
558             namestring->str[--len] = '.';
559         }
560     }
561 }
562
563 /*****************************************************************************/
564
565 /* to hinder OpenSSL from asking for passphrases */
566 static int
567 no_passphrase_callback(char *buf, int num, int w, void *arg)
568 {
569     return -1;
570 }
571
572 #if OPENSSL_VERSION_NUMBER >= 0x00907000L
573 static int
574 verify_dont_fail_cb(X509_STORE_CTX *c, void *unused_arg)
575 #else
576 static int
577 verify_dont_fail_cb(X509_STORE_CTX *c)
578 #endif
579 {
580     int i;
581     
582     i = X509_verify_cert(c); /* sets c->error */
583 #if OPENSSL_VERSION_NUMBER >= 0x00905000L /* don't allow unverified
584                                            * certificates -- they could
585                                            * survive session reuse, but
586                                            * OpenSSL < 0.9.5-dev does not
587                                            * preserve their verify_result */
588     if (i == 0)
589         return 1;
590     else
591 #endif
592         return i;
593 }
594
595 static DH *tls_dhe1024 = NULL; /* generating these takes a while, so do it just once */
596
597 void
598 tls_set_dhe1024(int i, void *apparg)
599 {
600     DSA *dsaparams;
601     DH *dhparams;
602     const char *seed[] = { ";-)  :-(  :-)  :-(  ",
603                            ";-)  :-(  :-)  :-(  ",
604                            "Random String no. 12",
605                            ";-)  :-(  :-)  :-(  ",
606                            "hackers have even mo", /* from jargon file */
607     };
608     unsigned char seedbuf[20];
609     
610     tls_init(apparg);
611     if (i >= 0) {
612         i %= sizeof seed / sizeof seed[0];
613         assert(strlen(seed[i]) == 20);
614         memcpy(seedbuf, seed[i], 20);
615         dsaparams = DSA_generate_parameters(1024, seedbuf, 20, NULL, NULL, 0, NULL);
616     } else {
617         /* random parameters (may take a while) */
618         dsaparams = DSA_generate_parameters(1024, NULL, 0, NULL, NULL, 0, NULL);
619     }
620     
621     if (dsaparams == NULL) {
622         tls_openssl_errors("", "", NULL, apparg);
623         return;
624     }
625     dhparams = DSA_dup_DH(dsaparams);
626     DSA_free(dsaparams);
627     if (dhparams == NULL) {
628         tls_openssl_errors("", "", NULL, apparg);
629         return;
630     }
631     if (tls_dhe1024 != NULL)
632         DH_free(tls_dhe1024);
633     tls_dhe1024 = dhparams;
634 }
635
636 struct tls_create_ctx_args
637 tls_create_ctx_defaultargs(void)
638 {
639         struct tls_create_ctx_args ret;
640
641         ret.client_p = 0;
642         ret.certificate_file = NULL;
643         ret.key_file = NULL;
644         ret.ca_file = NULL;
645         ret.verify_depth = -1;
646         ret.fail_unless_verified = 0;
647         ret.export_p = 0;
648
649         return ret;
650 }
651
652 SSL_CTX *
653 tls_create_ctx(struct tls_create_ctx_args a, void *apparg)
654 {
655     int r;
656     static long context_num = 0;
657     SSL_CTX *ret;
658     const char *err_pref_1 = "", *err_pref_2 = "";
659     
660     if (tls_init(apparg) == -1)
661         return NULL;
662
663     ret = SSL_CTX_new((a.client_p? SSLv23_client_method:SSLv23_server_method)());
664
665     if (ret == NULL)
666         goto err;
667
668     SSL_CTX_set_default_passwd_cb(ret, no_passphrase_callback);
669     SSL_CTX_set_mode(ret, SSL_MODE_ENABLE_PARTIAL_WRITE);
670     
671     if ((a.certificate_file != NULL) || (a.key_file != NULL)) {
672         if (a.key_file == NULL) {
673             tls_errprintf(1, apparg, "Need a key file.\n");
674             goto err_return;
675         }
676         if (a.certificate_file == NULL) {
677             tls_errprintf(1, apparg, "Need a certificate chain file.\n");
678             goto err_return;
679         }
680         
681         if (!SSL_CTX_use_PrivateKey_file(ret, a.key_file, SSL_FILETYPE_PEM))
682             goto err;
683         if (!tls_rand_seeded_p) {
684             /* particularly paranoid people may not like this --
685              * so provide your own random seeding before calling this */
686             if (tls_rand_seed_from_file(a.key_file, 0, apparg) == -1)
687                 goto err_return;
688         }
689         if (!SSL_CTX_use_certificate_chain_file(ret, a.certificate_file))
690             goto err;
691         if (!SSL_CTX_check_private_key(ret)) {
692             tls_errprintf(1, apparg, "Private key \"%s\" does not match certificate \"%s\".\n", a.key_file, a.certificate_file);
693             goto err_peek;
694         }
695     }
696     
697     if ((a.ca_file != NULL) || (a.verify_depth > 0)) {
698         context_num++;
699         r = SSL_CTX_set_session_id_context(ret, (const void *)&context_num, (unsigned int)sizeof context_num);
700         if (!r)
701             goto err;
702         
703         SSL_CTX_set_verify(ret, SSL_VERIFY_PEER | (a.fail_unless_verified ? SSL_VERIFY_FAIL_IF_NO_PEER_CERT : 0), 0);
704         if (!a.fail_unless_verified)
705             SSL_CTX_set_cert_verify_callback(ret, verify_dont_fail_cb, NULL);
706             
707         if (a.verify_depth > 0)
708             SSL_CTX_set_verify_depth(ret, a.verify_depth);
709         
710         if (a.ca_file != NULL) {
711             r = SSL_CTX_load_verify_locations(ret, a.ca_file, NULL /* no CA-directory */); /* does not report failure if file does not exist ... */
712             if (!r) {
713                 err_pref_1 = " while processing certificate file ";
714                 err_pref_2 = a.ca_file;
715                 goto err;
716             }
717             
718             if (!a.client_p) {
719                 /* SSL_load_client_CA_file is a misnomer, it just creates a list of CNs. */
720                 SSL_CTX_set_client_CA_list(ret, SSL_load_client_CA_file(a.ca_file));
721                 /* SSL_CTX_set_client_CA_list does not have a return value;
722                  * it does not really need one, but make sure
723                  * (we really test if SSL_load_client_CA_file worked) */
724                 if (SSL_CTX_get_client_CA_list(ret) == NULL) {
725                     tls_errprintf(1, apparg, "Could not set client CA list from \"%s\".\n", a.ca_file);
726                     goto err_peek;
727                 }
728             }
729         }
730     }
731     
732     if (!a.client_p) {
733         if (tls_dhe1024 == NULL) {
734             int i;
735
736             RAND_bytes((unsigned char *) &i, sizeof i);
737             /* make sure that i is non-negative -- pick one of the provided
738              * seeds */
739             if (i < 0)
740                 i = -i;
741             if (i < 0)
742                 i = 0;
743             tls_set_dhe1024(i, apparg);
744             if (tls_dhe1024 == NULL)
745                 goto err_return;
746         }
747         
748         if (!SSL_CTX_set_tmp_dh(ret, tls_dhe1024))
749             goto err;
750
751         /* avoid small subgroup attacks: */
752         SSL_CTX_set_options(ret, SSL_OP_SINGLE_DH_USE);
753     }
754         
755 #ifndef NO_RSA
756     if (!a.client_p && a.export_p) {
757         RSA *tmpkey;
758
759         tmpkey = RSA_generate_key(512, RSA_F4, 0, NULL);
760         if (tmpkey == NULL)
761             goto err;
762         if (!SSL_CTX_set_tmp_rsa(ret, tmpkey)) {
763             RSA_free(tmpkey);
764             goto err;
765         }
766         RSA_free(tmpkey); /* SSL_CTX_set_tmp_rsa uses a duplicate. */
767     }
768 #endif
769         
770     return ret;
771     
772  err_peek:
773     if (!ERR_peek_error())
774         goto err_return;
775  err:
776     tls_openssl_errors(err_pref_1, err_pref_2, NULL, apparg);
777  err_return:
778     if (ret != NULL)
779         SSL_CTX_free(ret);
780     return NULL;
781 }
782
783
784 /*****************************************************************************/
785
786 static int
787 tls_socket_nonblocking(int fd)
788 {
789     int v, r;
790
791     v = fcntl(fd, F_GETFL, 0);
792     if (v == -1) {
793         if (errno == EINVAL)
794             return 0; /* already shut down -- ignore */
795         return -1;
796     }
797     r = fcntl(fd, F_SETFL, v | O_NONBLOCK);
798     if (r == -1) {
799         if (errno == EINVAL)
800             return 0; /* already shut down -- ignore */
801         return -1;
802     }
803     return 0;
804 }
805
806 static int
807 max(int a, int b)
808 {
809     return a > b ? a : b;
810 }
811
812 static void
813 tls_sockets_select(int read_select_1, int read_select_2, int write_select_1, int write_select_2, int seconds /* timeout, -1 means no timeout */)
814 {
815     int maxfd, n;
816     fd_set reads, writes;
817     struct timeval timeout;
818     struct timeval *timeout_p;
819     
820     assert(read_select_1 >= -1 && read_select_2 >= -1 && write_select_1 >= -1 && write_select_2 >= -1);
821     assert(read_select_1 < FD_SETSIZE && read_select_2 < FD_SETSIZE -1 && write_select_1 < FD_SETSIZE -1 && write_select_2 < FD_SETSIZE -1);
822
823     maxfd = max(max(read_select_1, read_select_2), max(write_select_1, write_select_2));
824     assert(maxfd >= 0);
825
826     FD_ZERO(&reads);
827     FD_ZERO(&writes);
828     
829     for(n = 0; n < 4; ++n) {
830         int i = n % 2;
831         int w = n >= 2;
832         /* loop over all (i, w) in {0,1}x{0,1} */
833         int fd;
834         
835         if (i == 0 && w == 0)
836             fd = read_select_1;
837         else if (i == 1 && w == 0)
838             fd = read_select_2;
839         else if (i == 0 && w == 1)
840             fd = write_select_1;
841         else {
842             assert(i == 1 && w == 1);
843             fd = write_select_2;
844         }
845         
846         if (fd >= 0) {
847             if (w == 0)
848                 FD_SET(fd, &reads);
849             else /* w == 1 */
850                 FD_SET(fd, &writes);
851         }
852     }
853
854     if (seconds >= 0) {
855         timeout.tv_sec = seconds;
856         timeout.tv_usec = 0;
857         timeout_p = &timeout;
858     } else 
859         timeout_p = NULL;
860
861     DEBUG_MSG2("select no.", ++tls_select_count);
862     select(maxfd + 1, &reads, &writes, (fd_set *) NULL, timeout_p);
863     DEBUG_MSG("cont.");
864 }
865
866 /*****************************************************************************/
867
868 #define TUNNELBUFSIZE (16*1024)
869 struct tunnelbuf {
870     char buf[TUNNELBUFSIZE];
871     size_t len;
872     size_t offset;
873 };
874
875 static int tls_connect_attempt(SSL *, int *write_select, int *read_select, int *closed, int *progress, const char **err_pref);
876
877 static int tls_accept_attempt(SSL *, int *write_select, int *read_select, int *closed, int *progress, const char **err_pref);
878
879 static int tls_write_attempt(SSL *, struct tunnelbuf *, int *write_select, int *read_select, int *closed, int *progress, const char **err_pref);
880
881 static int tls_read_attempt(SSL *, struct tunnelbuf *, int *write_select, int *read_select, int *closed, int *progress, const char **err_pref);
882
883 static int write_attempt(int fd, struct tunnelbuf *, int *select, int *closed, int *progress);
884
885 static int read_attempt(int fd, struct tunnelbuf *, int *select, int *closed, int *progress);
886
887 static void write_info(SSL *ssl, int *info_fd)
888 {
889     if (*info_fd != -1) {
890         long v;
891         int v_ok;
892         struct tls_x509_name_string peer;
893         char infobuf[TLS_INFO_SIZE];
894         int r;
895
896         DEBUG_MSG("write_info");
897         v = SSL_get_verify_result(ssl);
898         v_ok = (v == X509_V_OK) ? 'A' : 'E'; /* Auth./Error */
899         {
900             X509 *peercert;
901
902             peercert = SSL_get_peer_certificate(ssl);
903             tls_get_x509_subject_name_oneline(peercert, &peer);
904             if (peercert != NULL)
905                 X509_free(peercert);
906         }
907         if (peer.str[0] == '\0')
908             v_ok = '0'; /* no cert at all */
909         else
910             if (strchr(peer.str, '\n')) {
911                 /* should not happen, but make sure */
912                 *strchr(peer.str, '\n') = '\0';
913             }
914         r = snprintf(infobuf, sizeof infobuf, "%c:%s\n%s\n", v_ok, X509_verify_cert_error_string(v), peer.str);
915         DEBUG_MSG2("snprintf", r);
916         if (r == -1 || r >= sizeof infobuf)
917             r = sizeof infobuf - 1;
918         write(*info_fd, infobuf, r);
919         close (*info_fd);
920         *info_fd = -1;
921     }
922 }
923
924
925 /* tls_proxy expects that all fds are closed after return */
926 static void
927 tls_proxy(int clear_fd, int tls_fd, int info_fd, SSL_CTX *ctx, int client_p)
928 {
929     struct tunnelbuf clear_to_tls, tls_to_clear;
930     SSL *ssl;
931     BIO *rbio, *wbio;
932     int closed, in_handshake;
933     const char *err_pref_1 = "", *err_pref_2 = "";
934     const char *err_def = NULL;
935
936     assert(clear_fd != -1);
937     assert(tls_fd != -1);
938     assert(clear_fd < FD_SETSIZE);
939     assert(tls_fd < FD_SETSIZE);
940     /* info_fd may be -1 */
941     assert(ctx != NULL);
942
943     tls_rand_seed_uniquely();
944
945     tls_socket_nonblocking(clear_fd);
946     DEBUG_MSG2("clear_fd", clear_fd);
947     tls_socket_nonblocking(tls_fd);
948     DEBUG_MSG2("tls_fd", tls_fd);
949
950     ssl = SSL_new(ctx);
951     if (ssl == NULL)
952         goto err;
953     DEBUG_MSG("SSL_new");
954     if (!SSL_set_fd(ssl, tls_fd))
955         goto err;
956     rbio = SSL_get_rbio(ssl);
957     wbio = SSL_get_wbio(ssl); /* should be the same, but who cares */
958     assert(rbio != NULL);
959     assert(wbio != NULL);
960     if (client_p)
961         SSL_set_connect_state(ssl);
962     else
963         SSL_set_accept_state(ssl);
964     
965     closed = 0;
966     in_handshake = 1;
967     tls_to_clear.len = 0;
968     tls_to_clear.offset = 0;
969     clear_to_tls.len = 0;
970     clear_to_tls.offset = 0;
971
972     err_def = "I/O error";
973     
974     /* loop finishes as soon as we detect that one side closed;
975      * when all (program and OS) buffers have enough space,
976      * the data from the last successful read in each direction is transferred
977      * before close */
978     do {
979         int clear_read_select = 0, clear_write_select = 0,
980             tls_read_select = 0, tls_write_select = 0,
981             progress = 0;
982         int r;
983         unsigned long num_read = BIO_number_read(rbio),
984             num_written = BIO_number_written(wbio);
985
986         DEBUG_MSG2("loop iteration", ++tls_loop_count);
987
988         if (in_handshake) {
989             DEBUG_MSG("in_handshake");
990             if (client_p)
991                 r = tls_connect_attempt(ssl, &tls_write_select, &tls_read_select, &closed, &progress, &err_pref_1);
992             else
993                 r = tls_accept_attempt(ssl, &tls_write_select, &tls_read_select, &closed, &progress, &err_pref_1);
994             if (r != 0) {
995                 write_info(ssl, &info_fd);
996                 goto err;
997             }
998             if (closed)
999                 goto err_return;
1000             if (!SSL_in_init(ssl)) {
1001                 in_handshake = 0;
1002                 write_info(ssl, &info_fd);
1003             }
1004         }
1005         
1006         if (clear_to_tls.len != 0 && !in_handshake) {
1007             assert(!closed);
1008             
1009             r = tls_write_attempt(ssl, &clear_to_tls, &tls_write_select, &tls_read_select, &closed, &progress, &err_pref_1);
1010             if (r != 0)
1011                 goto err;
1012             if (closed) {
1013                 assert(progress);
1014                 tls_to_clear.offset = 0;
1015                 tls_to_clear.len = 0;
1016             }
1017         }
1018         
1019         if (tls_to_clear.len != 0) {
1020             assert(!closed);
1021
1022             r = write_attempt(clear_fd, &tls_to_clear, &clear_write_select, &closed, &progress);
1023             if (r != 0)
1024                 goto err_return;
1025             if (closed) {
1026                 assert(progress);
1027                 clear_to_tls.offset = 0;
1028                 clear_to_tls.len = 0;
1029             }
1030         }
1031         
1032         if (!closed) {
1033             if (clear_to_tls.offset + clear_to_tls.len < sizeof clear_to_tls.buf) {
1034                 r = read_attempt(clear_fd, &clear_to_tls, &clear_read_select, &closed, &progress);
1035                 if (r != 0)
1036                     goto err_return;
1037                 if (closed) {
1038                     r = SSL_shutdown(ssl);
1039                     DEBUG_MSG2("SSL_shutdown", r);
1040                 }
1041             }
1042         }
1043         
1044         if (!closed && !in_handshake) {
1045             if (tls_to_clear.offset + tls_to_clear.len < sizeof tls_to_clear.buf) {
1046                 r = tls_read_attempt(ssl, &tls_to_clear, &tls_write_select, &tls_read_select, &closed, &progress, &err_pref_1);
1047                 if (r != 0)
1048                     goto err;
1049                 if (closed) {
1050                     r = SSL_shutdown(ssl);
1051                     DEBUG_MSG2("SSL_shutdown", r);
1052                 }
1053             }
1054         }
1055
1056         if (!progress) {
1057             DEBUG_MSG("!progress?");
1058             if (num_read != BIO_number_read(rbio) || num_written != BIO_number_written(wbio))
1059                 progress = 1;
1060
1061             if (!progress) {
1062                 DEBUG_MSG("!progress");
1063                 assert(clear_read_select || tls_read_select || clear_write_select || tls_write_select);
1064                 tls_sockets_select(clear_read_select ? clear_fd : -1, tls_read_select ? tls_fd : -1, clear_write_select ? clear_fd : -1, tls_write_select ? tls_fd : -1, -1);
1065             }
1066         }
1067     } while (!closed);
1068     return;
1069
1070  err:
1071     tls_openssl_errors(err_pref_1, err_pref_2, err_def, tls_child_apparg);
1072  err_return:
1073     return;
1074 }
1075
1076
1077 static int
1078 tls_get_error(SSL *ssl, int r, int *write_select, int *read_select, int *closed, int *progress)
1079 {
1080     int err = SSL_get_error(ssl, r);
1081
1082     if (err == SSL_ERROR_NONE) {
1083         assert(r > 0);
1084         *progress = 1;
1085         return 0;
1086     }
1087
1088     assert(r <= 0);
1089
1090     switch (err) {
1091     case SSL_ERROR_ZERO_RETURN:
1092         assert(r == 0);
1093         *closed = 1;
1094         *progress = 1;
1095         return 0;
1096
1097     case SSL_ERROR_WANT_WRITE:
1098         *write_select = 1;
1099         return 0;
1100         
1101     case SSL_ERROR_WANT_READ:
1102         *read_select = 1;
1103         return 0;
1104     }
1105
1106     return -1;
1107 }
1108
1109 static int
1110 tls_connect_attempt(SSL *ssl, int *write_select, int *read_select, int *closed, int *progress, const char **err_pref)
1111 {
1112     int n, r;
1113
1114     DEBUG_MSG("tls_connect_attempt");
1115     n = SSL_connect(ssl);
1116     DEBUG_MSG2("SSL_connect",n);
1117     r = tls_get_error(ssl, n, write_select, read_select, closed, progress);
1118     if (r == -1)
1119         *err_pref = " during SSL_connect";
1120     return r;
1121 }
1122
1123 static int
1124 tls_accept_attempt(SSL *ssl, int *write_select, int *read_select, int *closed, int *progress, const char **err_pref)
1125 {
1126     int n, r;
1127
1128     DEBUG_MSG("tls_accept_attempt");
1129     n = SSL_accept(ssl);
1130     DEBUG_MSG2("SSL_accept",n);
1131     r = tls_get_error(ssl, n, write_select, read_select, closed, progress);
1132     if (r == -1)
1133         *err_pref = " during SSL_accept";
1134     return r;
1135 }
1136
1137 static int
1138 tls_write_attempt(SSL *ssl, struct tunnelbuf *buf, int *write_select, int *read_select, int *closed, int *progress, const char **err_pref)
1139 {
1140     int n, r;
1141
1142     DEBUG_MSG("tls_write_attempt");
1143     n = SSL_write(ssl, buf->buf + buf->offset, buf->len);
1144     DEBUG_MSG2("SSL_write",n);
1145     r = tls_get_error(ssl, n, write_select, read_select, closed, progress);
1146     if (n > 0) {
1147         buf->len -= n;
1148         assert(buf->len >= 0);
1149         if (buf->len == 0)
1150             buf->offset = 0;
1151         else
1152             buf->offset += n;
1153     }
1154     if (r == -1)
1155         *err_pref = " during SSL_write";
1156     return r;
1157 }
1158
1159 static int
1160 tls_read_attempt(SSL *ssl, struct tunnelbuf *buf, int *write_select, int *read_select, int *closed, int *progress, const char **err_pref)
1161 {
1162     int n, r;
1163     size_t total;
1164
1165     DEBUG_MSG("tls_read_attempt");
1166     total = buf->offset + buf->len;
1167     assert(total < sizeof buf->buf);
1168     n = SSL_read(ssl, buf->buf + total, (sizeof buf->buf) - total);
1169     DEBUG_MSG2("SSL_read",n);
1170     r = tls_get_error(ssl, n, write_select, read_select, closed, progress);
1171     if (n > 0) {
1172         buf->len += n;
1173         assert(buf->offset + buf->len <= sizeof buf->buf);
1174     }
1175     if (r == -1)
1176         *err_pref = " during SSL_read";
1177     return r;
1178 }
1179
1180 static int
1181 get_error(int r, int *select, int *closed, int *progress)
1182 {
1183     if (r >= 0) {
1184         *progress = 1;
1185         if (r == 0)
1186             *closed = 1;
1187         return 0;
1188     } else {
1189         assert(r == -1);
1190         if (errno == EAGAIN || errno == EWOULDBLOCK) {
1191             *select = 1;
1192             return 0;
1193         } else if (errno == EPIPE) {
1194             *progress = 1;
1195             *closed = 1;
1196             return 0;
1197         } else
1198             return -1;
1199     }
1200 }
1201
1202 static int write_attempt(int fd, struct tunnelbuf *buf, int *select, int *closed, int *progress)
1203 {
1204     int n, r;
1205
1206     DEBUG_MSG("write_attempt");
1207     n = write(fd, buf->buf + buf->offset, buf->len);
1208     DEBUG_MSG2("write",n);
1209     r = get_error(n, select, closed, progress);
1210     if (n > 0) {
1211         buf->len -= n;
1212         assert(buf->len >= 0);
1213         if (buf->len == 0)
1214             buf->offset = 0;
1215         else
1216             buf->offset += n;
1217     }
1218     if (r == -1)
1219         tls_errprintf(1, tls_child_apparg, "write error: %s\n", strerror(errno));
1220     return r;
1221 }
1222     
1223 static int
1224 read_attempt(int fd, struct tunnelbuf *buf, int *select, int *closed, int *progress)
1225 {
1226     int n, r;
1227     size_t total;
1228
1229     DEBUG_MSG("read_attempt");
1230     total = buf->offset + buf->len;
1231     assert(total < sizeof buf->buf);
1232     n = read(fd, buf->buf + total, (sizeof buf->buf) - total);
1233     DEBUG_MSG2("read",n);
1234     r = get_error(n, select, closed, progress);
1235     if (n > 0) {
1236         buf->len += n;
1237         assert(buf->offset + buf->len <= sizeof buf->buf);
1238     }
1239     if (r == -1)
1240         tls_errprintf(1, tls_child_apparg, "read error: %s\n", strerror(errno));
1241     return r;
1242 }