If FDIRS is to be treated like SDIRS, let's not forget to initialize
[oweals/openssl.git] / ssl / ssltest.c
1 /* ssl/ssltest.c */
2 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
3  * All rights reserved.
4  *
5  * This package is an SSL implementation written
6  * by Eric Young (eay@cryptsoft.com).
7  * The implementation was written so as to conform with Netscapes SSL.
8  * 
9  * This library is free for commercial and non-commercial use as long as
10  * the following conditions are aheared to.  The following conditions
11  * apply to all code found in this distribution, be it the RC4, RSA,
12  * lhash, DES, etc., code; not just the SSL code.  The SSL documentation
13  * included with this distribution is covered by the same copyright terms
14  * except that the holder is Tim Hudson (tjh@cryptsoft.com).
15  * 
16  * Copyright remains Eric Young's, and as such any Copyright notices in
17  * the code are not to be removed.
18  * If this package is used in a product, Eric Young should be given attribution
19  * as the author of the parts of the library used.
20  * This can be in the form of a textual message at program startup or
21  * in documentation (online or textual) provided with the package.
22  * 
23  * Redistribution and use in source and binary forms, with or without
24  * modification, are permitted provided that the following conditions
25  * are met:
26  * 1. Redistributions of source code must retain the copyright
27  *    notice, this list of conditions and the following disclaimer.
28  * 2. Redistributions in binary form must reproduce the above copyright
29  *    notice, this list of conditions and the following disclaimer in the
30  *    documentation and/or other materials provided with the distribution.
31  * 3. All advertising materials mentioning features or use of this software
32  *    must display the following acknowledgement:
33  *    "This product includes cryptographic software written by
34  *     Eric Young (eay@cryptsoft.com)"
35  *    The word 'cryptographic' can be left out if the rouines from the library
36  *    being used are not cryptographic related :-).
37  * 4. If you include any Windows specific code (or a derivative thereof) from 
38  *    the apps directory (application code) you must include an acknowledgement:
39  *    "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
40  * 
41  * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
42  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
43  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
44  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
45  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
46  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
47  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
48  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
49  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
50  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
51  * SUCH DAMAGE.
52  * 
53  * The licence and distribution terms for any publically available version or
54  * derivative of this code cannot be changed.  i.e. this code cannot simply be
55  * copied and put under another distribution licence
56  * [including the GNU Public Licence.]
57  */
58 /* ====================================================================
59  * Copyright (c) 1998-2000 The OpenSSL Project.  All rights reserved.
60  *
61  * Redistribution and use in source and binary forms, with or without
62  * modification, are permitted provided that the following conditions
63  * are met:
64  *
65  * 1. Redistributions of source code must retain the above copyright
66  *    notice, this list of conditions and the following disclaimer. 
67  *
68  * 2. Redistributions in binary form must reproduce the above copyright
69  *    notice, this list of conditions and the following disclaimer in
70  *    the documentation and/or other materials provided with the
71  *    distribution.
72  *
73  * 3. All advertising materials mentioning features or use of this
74  *    software must display the following acknowledgment:
75  *    "This product includes software developed by the OpenSSL Project
76  *    for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
77  *
78  * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
79  *    endorse or promote products derived from this software without
80  *    prior written permission. For written permission, please contact
81  *    openssl-core@openssl.org.
82  *
83  * 5. Products derived from this software may not be called "OpenSSL"
84  *    nor may "OpenSSL" appear in their names without prior written
85  *    permission of the OpenSSL Project.
86  *
87  * 6. Redistributions of any form whatsoever must retain the following
88  *    acknowledgment:
89  *    "This product includes software developed by the OpenSSL Project
90  *    for use in the OpenSSL Toolkit (http://www.openssl.org/)"
91  *
92  * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
93  * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
94  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
95  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE OpenSSL PROJECT OR
96  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
97  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
98  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
99  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
100  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
101  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
102  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
103  * OF THE POSSIBILITY OF SUCH DAMAGE.
104  * ====================================================================
105  *
106  * This product includes cryptographic software written by Eric Young
107  * (eay@cryptsoft.com).  This product includes software written by Tim
108  * Hudson (tjh@cryptsoft.com).
109  *
110  */
111
112 #define _BSD_SOURCE 1           /* Or gethostname won't be declared properly
113                                    on Linux and GNU platforms. */
114
115 #include <assert.h>
116 #include <errno.h>
117 #include <limits.h>
118 #include <stdio.h>
119 #include <stdlib.h>
120 #include <string.h>
121 #include <time.h>
122
123 #define USE_SOCKETS
124 #include "e_os.h"
125
126 #include <openssl/bio.h>
127 #include <openssl/crypto.h>
128 #include <openssl/evp.h>
129 #include <openssl/x509.h>
130 #include <openssl/ssl.h>
131 #ifndef OPENSSL_NO_ENGINE
132 #include <openssl/engine.h>
133 #endif
134 #include <openssl/err.h>
135 #include <openssl/rand.h>
136
137 #define _XOPEN_SOURCE_EXTENDED  1 /* Or gethostname won't be declared properly
138                                      on Compaq platforms (at least with DEC C).
139                                      Do not try to put it earlier, or IPv6 includes
140                                      get screwed...
141                                   */
142
143 #ifdef OPENSSL_SYS_WINDOWS
144 #include <winsock.h>
145 #else
146 #include OPENSSL_UNISTD
147 #endif
148
149 #ifdef OPENSSL_SYS_VMS
150 #  define TEST_SERVER_CERT "SYS$DISK:[-.APPS]SERVER.PEM"
151 #  define TEST_CLIENT_CERT "SYS$DISK:[-.APPS]CLIENT.PEM"
152 #elif defined(OPENSSL_SYS_WINCE)
153 #  define TEST_SERVER_CERT "\\OpenSSL\\server.pem"
154 #  define TEST_CLIENT_CERT "\\OpenSSL\\client.pem"
155 #else
156 #  define TEST_SERVER_CERT "../apps/server.pem"
157 #  define TEST_CLIENT_CERT "../apps/client.pem"
158 #endif
159
160 /* There is really no standard for this, so let's assign some tentative
161    numbers.  In any case, these numbers are only for this test */
162 #define COMP_RLE        1
163 #define COMP_ZLIB       2
164
165 static int MS_CALLBACK verify_callback(int ok, X509_STORE_CTX *ctx);
166 #ifndef OPENSSL_NO_RSA
167 static RSA MS_CALLBACK *tmp_rsa_cb(SSL *s, int is_export,int keylength);
168 static void free_tmp_rsa(void);
169 #endif
170 static int MS_CALLBACK app_verify_callback(X509_STORE_CTX *ctx, void *arg);
171 #define APP_CALLBACK "Test Callback Argument"
172 static char *app_verify_arg = APP_CALLBACK;
173
174 #ifndef OPENSSL_NO_DH
175 static DH *get_dh512(void);
176 static DH *get_dh1024(void);
177 static DH *get_dh1024dsa(void);
178 #endif
179
180 static BIO *bio_err=NULL;
181 static BIO *bio_stdout=NULL;
182
183 static char *cipher=NULL;
184 static int verbose=0;
185 static int debug=0;
186 #if 0
187 /* Not used yet. */
188 #ifdef FIONBIO
189 static int s_nbio=0;
190 #endif
191 #endif
192
193 static const char rnd_seed[] = "string to make the random number generator think it has entropy";
194
195 int doit_biopair(SSL *s_ssl,SSL *c_ssl,long bytes,clock_t *s_time,clock_t *c_time);
196 int doit(SSL *s_ssl,SSL *c_ssl,long bytes);
197 static void sv_usage(void)
198         {
199         fprintf(stderr,"usage: ssltest [args ...]\n");
200         fprintf(stderr,"\n");
201         fprintf(stderr," -server_auth  - check server certificate\n");
202         fprintf(stderr," -client_auth  - do client authentication\n");
203         fprintf(stderr," -v            - more output\n");
204         fprintf(stderr," -d            - debug output\n");
205         fprintf(stderr," -reuse        - use session-id reuse\n");
206         fprintf(stderr," -num <val>    - number of connections to perform\n");
207         fprintf(stderr," -bytes <val>  - number of bytes to swap between client/server\n");
208 #ifndef OPENSSL_NO_DH
209         fprintf(stderr," -dhe1024      - use 1024 bit key (safe prime) for DHE\n");
210         fprintf(stderr," -dhe1024dsa   - use 1024 bit key (with 160-bit subprime) for DHE\n");
211         fprintf(stderr," -no_dhe       - disable DHE\n");
212 #endif
213 #ifndef OPENSSL_NO_SSL2
214         fprintf(stderr," -ssl2         - use SSLv2\n");
215 #endif
216 #ifndef OPENSSL_NO_SSL3
217         fprintf(stderr," -ssl3         - use SSLv3\n");
218 #endif
219 #ifndef OPENSSL_NO_TLS1
220         fprintf(stderr," -tls1         - use TLSv1\n");
221 #endif
222         fprintf(stderr," -CApath arg   - PEM format directory of CA's\n");
223         fprintf(stderr," -CAfile arg   - PEM format file of CA's\n");
224         fprintf(stderr," -cert arg     - Server certificate file\n");
225         fprintf(stderr," -key arg      - Server key file (default: same as -cert)\n");
226         fprintf(stderr," -c_cert arg   - Client certificate file\n");
227         fprintf(stderr," -c_key arg    - Client key file (default: same as -c_cert)\n");
228         fprintf(stderr," -cipher arg   - The cipher list\n");
229         fprintf(stderr," -bio_pair     - Use BIO pairs\n");
230         fprintf(stderr," -f            - Test even cases that can't work\n");
231         fprintf(stderr," -time         - measure processor time used by client and server\n");
232         fprintf(stderr," -zlib         - use zlib compression\n");
233         fprintf(stderr," -time         - use rle compression\n");
234         }
235
236 static void print_details(SSL *c_ssl, const char *prefix)
237         {
238         SSL_CIPHER *ciph;
239         X509 *cert;
240                 
241         ciph=SSL_get_current_cipher(c_ssl);
242         BIO_printf(bio_stdout,"%s%s, cipher %s %s",
243                 prefix,
244                 SSL_get_version(c_ssl),
245                 SSL_CIPHER_get_version(ciph),
246                 SSL_CIPHER_get_name(ciph));
247         cert=SSL_get_peer_certificate(c_ssl);
248         if (cert != NULL)
249                 {
250                 EVP_PKEY *pkey = X509_get_pubkey(cert);
251                 if (pkey != NULL)
252                         {
253                         if (0) 
254                                 ;
255 #ifndef OPENSSL_NO_RSA
256                         else if (pkey->type == EVP_PKEY_RSA && pkey->pkey.rsa != NULL
257                                 && pkey->pkey.rsa->n != NULL)
258                                 {
259                                 BIO_printf(bio_stdout, ", %d bit RSA",
260                                         BN_num_bits(pkey->pkey.rsa->n));
261                                 }
262 #endif
263 #ifndef OPENSSL_NO_DSA
264                         else if (pkey->type == EVP_PKEY_DSA && pkey->pkey.dsa != NULL
265                                 && pkey->pkey.dsa->p != NULL)
266                                 {
267                                 BIO_printf(bio_stdout, ", %d bit DSA",
268                                         BN_num_bits(pkey->pkey.dsa->p));
269                                 }
270 #endif
271                         EVP_PKEY_free(pkey);
272                         }
273                 X509_free(cert);
274                 }
275         /* The SSL API does not allow us to look at temporary RSA/DH keys,
276          * otherwise we should print their lengths too */
277         BIO_printf(bio_stdout,"\n");
278         }
279
280 static void lock_dbg_cb(int mode, int type, const char *file, int line)
281         {
282         static int modes[CRYPTO_NUM_LOCKS]; /* = {0, 0, ... } */
283         const char *errstr = NULL;
284         int rw;
285         
286         rw = mode & (CRYPTO_READ|CRYPTO_WRITE);
287         if (!((rw == CRYPTO_READ) || (rw == CRYPTO_WRITE)))
288                 {
289                 errstr = "invalid mode";
290                 goto err;
291                 }
292
293         if (type < 0 || type > CRYPTO_NUM_LOCKS)
294                 {
295                 errstr = "type out of bounds";
296                 goto err;
297                 }
298
299         if (mode & CRYPTO_LOCK)
300                 {
301                 if (modes[type])
302                         {
303                         errstr = "already locked";
304                         /* must not happen in a single-threaded program
305                          * (would deadlock) */
306                         goto err;
307                         }
308
309                 modes[type] = rw;
310                 }
311         else if (mode & CRYPTO_UNLOCK)
312                 {
313                 if (!modes[type])
314                         {
315                         errstr = "not locked";
316                         goto err;
317                         }
318                 
319                 if (modes[type] != rw)
320                         {
321                         errstr = (rw == CRYPTO_READ) ?
322                                 "CRYPTO_r_unlock on write lock" :
323                                 "CRYPTO_w_unlock on read lock";
324                         }
325
326                 modes[type] = 0;
327                 }
328         else
329                 {
330                 errstr = "invalid mode";
331                 goto err;
332                 }
333
334  err:
335         if (errstr)
336                 {
337                 /* we cannot use bio_err here */
338                 fprintf(stderr, "openssl (lock_dbg_cb): %s (mode=%d, type=%d) at %s:%d\n",
339                         errstr, mode, type, file, line);
340                 }
341         }
342
343 int main(int argc, char *argv[])
344         {
345         char *CApath=NULL,*CAfile=NULL;
346         int badop=0;
347         int bio_pair=0;
348         int force=0;
349         int tls1=0,ssl2=0,ssl3=0,ret=1;
350         int client_auth=0;
351         int server_auth=0,i;
352         int app_verify=0;
353         char *server_cert=TEST_SERVER_CERT;
354         char *server_key=NULL;
355         char *client_cert=TEST_CLIENT_CERT;
356         char *client_key=NULL;
357         SSL_CTX *s_ctx=NULL;
358         SSL_CTX *c_ctx=NULL;
359         SSL_METHOD *meth=NULL;
360         SSL *c_ssl,*s_ssl;
361         int number=1,reuse=0;
362         long bytes=1L;
363 #ifndef OPENSSL_NO_DH
364         DH *dh;
365         int dhe1024 = 0, dhe1024dsa = 0;
366 #endif
367         int no_dhe = 0;
368         int print_time = 0;
369         clock_t s_time = 0, c_time = 0;
370         int comp = 0;
371         COMP_METHOD *cm = NULL;
372
373         verbose = 0;
374         debug = 0;
375         cipher = 0;
376
377         bio_err=BIO_new_fp(stderr,BIO_NOCLOSE); 
378
379         CRYPTO_set_locking_callback(lock_dbg_cb);
380
381         /* enable memory leak checking unless explicitly disabled */
382         if (!((getenv("OPENSSL_DEBUG_MEMORY") != NULL) && (0 == strcmp(getenv("OPENSSL_DEBUG_MEMORY"), "off"))))
383                 {
384                 CRYPTO_malloc_debug_init();
385                 CRYPTO_set_mem_debug_options(V_CRYPTO_MDEBUG_ALL);
386                 }
387         else
388                 {
389                 /* OPENSSL_DEBUG_MEMORY=off */
390                 CRYPTO_set_mem_debug_functions(0, 0, 0, 0, 0);
391                 }
392         CRYPTO_mem_ctrl(CRYPTO_MEM_CHECK_ON);
393
394         RAND_seed(rnd_seed, sizeof rnd_seed);
395
396         bio_stdout=BIO_new_fp(stdout,BIO_NOCLOSE);
397
398         argc--;
399         argv++;
400
401         while (argc >= 1)
402                 {
403                 if      (strcmp(*argv,"-server_auth") == 0)
404                         server_auth=1;
405                 else if (strcmp(*argv,"-client_auth") == 0)
406                         client_auth=1;
407                 else if (strcmp(*argv,"-v") == 0)
408                         verbose=1;
409                 else if (strcmp(*argv,"-d") == 0)
410                         debug=1;
411                 else if (strcmp(*argv,"-reuse") == 0)
412                         reuse=1;
413                 else if (strcmp(*argv,"-dhe1024") == 0)
414                         {
415 #ifndef OPENSSL_NO_DH
416                         dhe1024=1;
417 #else
418                         fprintf(stderr,"ignoring -dhe1024, since I'm compiled without DH\n");
419 #endif
420                         }
421                 else if (strcmp(*argv,"-dhe1024dsa") == 0)
422                         {
423 #ifndef OPENSSL_NO_DH
424                         dhe1024dsa=1;
425 #else
426                         fprintf(stderr,"ignoring -dhe1024, since I'm compiled without DH\n");
427 #endif
428                         }
429                 else if (strcmp(*argv,"-no_dhe") == 0)
430                         no_dhe=1;
431                 else if (strcmp(*argv,"-ssl2") == 0)
432                         ssl2=1;
433                 else if (strcmp(*argv,"-tls1") == 0)
434                         tls1=1;
435                 else if (strcmp(*argv,"-ssl3") == 0)
436                         ssl3=1;
437                 else if (strncmp(*argv,"-num",4) == 0)
438                         {
439                         if (--argc < 1) goto bad;
440                         number= atoi(*(++argv));
441                         if (number == 0) number=1;
442                         }
443                 else if (strcmp(*argv,"-bytes") == 0)
444                         {
445                         if (--argc < 1) goto bad;
446                         bytes= atol(*(++argv));
447                         if (bytes == 0L) bytes=1L;
448                         i=strlen(argv[0]);
449                         if (argv[0][i-1] == 'k') bytes*=1024L;
450                         if (argv[0][i-1] == 'm') bytes*=1024L*1024L;
451                         }
452                 else if (strcmp(*argv,"-cert") == 0)
453                         {
454                         if (--argc < 1) goto bad;
455                         server_cert= *(++argv);
456                         }
457                 else if (strcmp(*argv,"-s_cert") == 0)
458                         {
459                         if (--argc < 1) goto bad;
460                         server_cert= *(++argv);
461                         }
462                 else if (strcmp(*argv,"-key") == 0)
463                         {
464                         if (--argc < 1) goto bad;
465                         server_key= *(++argv);
466                         }
467                 else if (strcmp(*argv,"-s_key") == 0)
468                         {
469                         if (--argc < 1) goto bad;
470                         server_key= *(++argv);
471                         }
472                 else if (strcmp(*argv,"-c_cert") == 0)
473                         {
474                         if (--argc < 1) goto bad;
475                         client_cert= *(++argv);
476                         }
477                 else if (strcmp(*argv,"-c_key") == 0)
478                         {
479                         if (--argc < 1) goto bad;
480                         client_key= *(++argv);
481                         }
482                 else if (strcmp(*argv,"-cipher") == 0)
483                         {
484                         if (--argc < 1) goto bad;
485                         cipher= *(++argv);
486                         }
487                 else if (strcmp(*argv,"-CApath") == 0)
488                         {
489                         if (--argc < 1) goto bad;
490                         CApath= *(++argv);
491                         }
492                 else if (strcmp(*argv,"-CAfile") == 0)
493                         {
494                         if (--argc < 1) goto bad;
495                         CAfile= *(++argv);
496                         }
497                 else if (strcmp(*argv,"-bio_pair") == 0)
498                         {
499                         bio_pair = 1;
500                         }
501                 else if (strcmp(*argv,"-f") == 0)
502                         {
503                         force = 1;
504                         }
505                 else if (strcmp(*argv,"-time") == 0)
506                         {
507                         print_time = 1;
508                         }
509                 else if (strcmp(*argv,"-zlib") == 0)
510                         {
511                         comp = COMP_ZLIB;
512                         }
513                 else if (strcmp(*argv,"-rle") == 0)
514                         {
515                         comp = COMP_RLE;
516                         }
517                 else if (strcmp(*argv,"-app_verify") == 0)
518                         {
519                         app_verify = 1;
520                         }
521                 else
522                         {
523                         fprintf(stderr,"unknown option %s\n",*argv);
524                         badop=1;
525                         break;
526                         }
527                 argc--;
528                 argv++;
529                 }
530         if (badop)
531                 {
532 bad:
533                 sv_usage();
534                 goto end;
535                 }
536
537         if (!ssl2 && !ssl3 && !tls1 && number > 1 && !reuse && !force)
538                 {
539                 fprintf(stderr, "This case cannot work.  Use -f to perform "
540                         "the test anyway (and\n-d to see what happens), "
541                         "or add one of -ssl2, -ssl3, -tls1, -reuse\n"
542                         "to avoid protocol mismatch.\n");
543                 EXIT(1);
544                 }
545
546         if (print_time)
547                 {
548                 if (!bio_pair)
549                         {
550                         fprintf(stderr, "Using BIO pair (-bio_pair)\n");
551                         bio_pair = 1;
552                         }
553                 if (number < 50 && !force)
554                         fprintf(stderr, "Warning: For accurate timings, use more connections (e.g. -num 1000)\n");
555                 }
556
557 /*      if (cipher == NULL) cipher=getenv("SSL_CIPHER"); */
558
559         SSL_library_init();
560         SSL_load_error_strings();
561
562         if (comp == COMP_ZLIB) cm = COMP_zlib();
563         if (comp == COMP_RLE) cm = COMP_rle();
564         if (cm != NULL)
565                 {
566                 if (cm->type != NID_undef)
567                         SSL_COMP_add_compression_method(comp, cm);
568                 else
569                         {
570                         fprintf(stderr,
571                                 "Warning: %s compression not supported\n",
572                                 (comp == COMP_RLE ? "rle" :
573                                         (comp == COMP_ZLIB ? "zlib" :
574                                                 "unknown")));
575                         ERR_print_errors_fp(stderr);
576                         }
577                 }
578
579 #if !defined(OPENSSL_NO_SSL2) && !defined(OPENSSL_NO_SSL3)
580         if (ssl2)
581                 meth=SSLv2_method();
582         else 
583         if (tls1)
584                 meth=TLSv1_method();
585         else
586         if (ssl3)
587                 meth=SSLv3_method();
588         else
589                 meth=SSLv23_method();
590 #else
591 #ifdef OPENSSL_NO_SSL2
592         meth=SSLv3_method();
593 #else
594         meth=SSLv2_method();
595 #endif
596 #endif
597
598         c_ctx=SSL_CTX_new(meth);
599         s_ctx=SSL_CTX_new(meth);
600         if ((c_ctx == NULL) || (s_ctx == NULL))
601                 {
602                 ERR_print_errors(bio_err);
603                 goto end;
604                 }
605
606         if (cipher != NULL)
607                 {
608                 SSL_CTX_set_cipher_list(c_ctx,cipher);
609                 SSL_CTX_set_cipher_list(s_ctx,cipher);
610                 }
611
612 #ifndef OPENSSL_NO_DH
613         if (!no_dhe)
614                 {
615                 if (dhe1024dsa)
616                         {
617                         /* use SSL_OP_SINGLE_DH_USE to avoid small subgroup attacks */
618                         SSL_CTX_set_options(s_ctx, SSL_OP_SINGLE_DH_USE);
619                         dh=get_dh1024dsa();
620                         }
621                 else if (dhe1024)
622                         dh=get_dh1024();
623                 else
624                         dh=get_dh512();
625                 SSL_CTX_set_tmp_dh(s_ctx,dh);
626                 DH_free(dh);
627                 }
628 #else
629         (void)no_dhe;
630 #endif
631
632 #ifndef OPENSSL_NO_RSA
633         SSL_CTX_set_tmp_rsa_callback(s_ctx,tmp_rsa_cb);
634 #endif
635
636         if (!SSL_CTX_use_certificate_file(s_ctx,server_cert,SSL_FILETYPE_PEM))
637                 {
638                 ERR_print_errors(bio_err);
639                 }
640         else if (!SSL_CTX_use_PrivateKey_file(s_ctx,
641                 (server_key?server_key:server_cert), SSL_FILETYPE_PEM))
642                 {
643                 ERR_print_errors(bio_err);
644                 goto end;
645                 }
646
647         if (client_auth)
648                 {
649                 SSL_CTX_use_certificate_file(c_ctx,client_cert,
650                         SSL_FILETYPE_PEM);
651                 SSL_CTX_use_PrivateKey_file(c_ctx,
652                         (client_key?client_key:client_cert),
653                         SSL_FILETYPE_PEM);
654                 }
655
656         if (    (!SSL_CTX_load_verify_locations(s_ctx,CAfile,CApath)) ||
657                 (!SSL_CTX_set_default_verify_paths(s_ctx)) ||
658                 (!SSL_CTX_load_verify_locations(c_ctx,CAfile,CApath)) ||
659                 (!SSL_CTX_set_default_verify_paths(c_ctx)))
660                 {
661                 /* fprintf(stderr,"SSL_load_verify_locations\n"); */
662                 ERR_print_errors(bio_err);
663                 /* goto end; */
664                 }
665
666         if (client_auth)
667                 {
668                 BIO_printf(bio_err,"client authentication\n");
669                 SSL_CTX_set_verify(s_ctx,
670                         SSL_VERIFY_PEER|SSL_VERIFY_FAIL_IF_NO_PEER_CERT,
671                         verify_callback);
672                 if (app_verify) 
673                         {
674                         SSL_CTX_set_cert_verify_callback(s_ctx, app_verify_callback, app_verify_arg);
675                         }
676                 }
677         if (server_auth)
678                 {
679                 BIO_printf(bio_err,"server authentication\n");
680                 SSL_CTX_set_verify(c_ctx,SSL_VERIFY_PEER,
681                         verify_callback);
682                 if (app_verify) 
683                         {
684                         SSL_CTX_set_cert_verify_callback(s_ctx, app_verify_callback, app_verify_arg);
685                         }
686                 }
687         
688         {
689                 int session_id_context = 0;
690                 SSL_CTX_set_session_id_context(s_ctx, (void *)&session_id_context, sizeof session_id_context);
691         }
692
693         c_ssl=SSL_new(c_ctx);
694         s_ssl=SSL_new(s_ctx);
695
696 #ifndef OPENSSL_NO_KRB5
697         if (c_ssl  &&  c_ssl->kssl_ctx)
698                 {
699                 char    localhost[MAXHOSTNAMELEN+2];
700
701                 if (gethostname(localhost, sizeof localhost-1) == 0)
702                         {
703                         localhost[sizeof localhost-1]='\0';
704                         if(strlen(localhost) == sizeof localhost-1)
705                                 {
706                                 BIO_printf(bio_err,"localhost name too long\n");
707                                 goto end;
708                                 }
709                         kssl_ctx_setstring(c_ssl->kssl_ctx, KSSL_SERVER,
710                                 localhost);
711                         }
712                 }
713 #endif    /* OPENSSL_NO_KRB5  */
714
715         for (i=0; i<number; i++)
716                 {
717                 if (!reuse) SSL_set_session(c_ssl,NULL);
718                 if (bio_pair)
719                         ret=doit_biopair(s_ssl,c_ssl,bytes,&s_time,&c_time);
720                 else
721                         ret=doit(s_ssl,c_ssl,bytes);
722                 }
723
724         if (!verbose)
725                 {
726                 print_details(c_ssl, "");
727                 }
728         if ((number > 1) || (bytes > 1L))
729                 BIO_printf(bio_stdout, "%d handshakes of %ld bytes done\n",number,bytes);
730         if (print_time)
731                 {
732 #ifdef CLOCKS_PER_SEC
733                 /* "To determine the time in seconds, the value returned
734                  * by the clock function should be divided by the value
735                  * of the macro CLOCKS_PER_SEC."
736                  *                                       -- ISO/IEC 9899 */
737                 BIO_printf(bio_stdout, "Approximate total server time: %6.2f s\n"
738                         "Approximate total client time: %6.2f s\n",
739                         (double)s_time/CLOCKS_PER_SEC,
740                         (double)c_time/CLOCKS_PER_SEC);
741 #else
742                 /* "`CLOCKS_PER_SEC' undeclared (first use this function)"
743                  *                            -- cc on NeXTstep/OpenStep */
744                 BIO_printf(bio_stdout,
745                         "Approximate total server time: %6.2f units\n"
746                         "Approximate total client time: %6.2f units\n",
747                         (double)s_time,
748                         (double)c_time);
749 #endif
750                 }
751
752         SSL_free(s_ssl);
753         SSL_free(c_ssl);
754
755 end:
756         if (s_ctx != NULL) SSL_CTX_free(s_ctx);
757         if (c_ctx != NULL) SSL_CTX_free(c_ctx);
758
759         if (bio_stdout != NULL) BIO_free(bio_stdout);
760
761 #ifndef OPENSSL_NO_RSA
762         free_tmp_rsa();
763 #endif
764 #ifndef OPENSSL_NO_ENGINE
765         ENGINE_cleanup();
766 #endif
767         CRYPTO_cleanup_all_ex_data();
768         ERR_free_strings();
769         ERR_remove_state(0);
770         EVP_cleanup();
771         CRYPTO_mem_leaks(bio_err);
772         if (bio_err != NULL) BIO_free(bio_err);
773         EXIT(ret);
774         }
775
776 int doit_biopair(SSL *s_ssl, SSL *c_ssl, long count,
777         clock_t *s_time, clock_t *c_time)
778         {
779         long cw_num = count, cr_num = count, sw_num = count, sr_num = count;
780         BIO *s_ssl_bio = NULL, *c_ssl_bio = NULL;
781         BIO *server = NULL, *server_io = NULL, *client = NULL, *client_io = NULL;
782         int ret = 1;
783         
784         size_t bufsiz = 256; /* small buffer for testing */
785
786         if (!BIO_new_bio_pair(&server, bufsiz, &server_io, bufsiz))
787                 goto err;
788         if (!BIO_new_bio_pair(&client, bufsiz, &client_io, bufsiz))
789                 goto err;
790         
791         s_ssl_bio = BIO_new(BIO_f_ssl());
792         if (!s_ssl_bio)
793                 goto err;
794
795         c_ssl_bio = BIO_new(BIO_f_ssl());
796         if (!c_ssl_bio)
797                 goto err;
798
799         SSL_set_connect_state(c_ssl);
800         SSL_set_bio(c_ssl, client, client);
801         (void)BIO_set_ssl(c_ssl_bio, c_ssl, BIO_NOCLOSE);
802
803         SSL_set_accept_state(s_ssl);
804         SSL_set_bio(s_ssl, server, server);
805         (void)BIO_set_ssl(s_ssl_bio, s_ssl, BIO_NOCLOSE);
806
807         do
808                 {
809                 /* c_ssl_bio:          SSL filter BIO
810                  *
811                  * client:             pseudo-I/O for SSL library
812                  *
813                  * client_io:          client's SSL communication; usually to be
814                  *                     relayed over some I/O facility, but in this
815                  *                     test program, we're the server, too:
816                  *
817                  * server_io:          server's SSL communication
818                  *
819                  * server:             pseudo-I/O for SSL library
820                  *
821                  * s_ssl_bio:          SSL filter BIO
822                  *
823                  * The client and the server each employ a "BIO pair":
824                  * client + client_io, server + server_io.
825                  * BIO pairs are symmetric.  A BIO pair behaves similar
826                  * to a non-blocking socketpair (but both endpoints must
827                  * be handled by the same thread).
828                  * [Here we could connect client and server to the ends
829                  * of a single BIO pair, but then this code would be less
830                  * suitable as an example for BIO pairs in general.]
831                  *
832                  * Useful functions for querying the state of BIO pair endpoints:
833                  *
834                  * BIO_ctrl_pending(bio)              number of bytes we can read now
835                  * BIO_ctrl_get_read_request(bio)     number of bytes needed to fulfil
836                  *                                      other side's read attempt
837                  * BIO_ctrl_get_write_guarantee(bio)   number of bytes we can write now
838                  *
839                  * ..._read_request is never more than ..._write_guarantee;
840                  * it depends on the application which one you should use.
841                  */
842
843                 /* We have non-blocking behaviour throughout this test program, but
844                  * can be sure that there is *some* progress in each iteration; so
845                  * we don't have to worry about ..._SHOULD_READ or ..._SHOULD_WRITE
846                  * -- we just try everything in each iteration
847                  */
848
849                         {
850                         /* CLIENT */
851                 
852                         MS_STATIC char cbuf[1024*8];
853                         int i, r;
854                         clock_t c_clock = clock();
855
856                         memset(cbuf, 0, sizeof(cbuf));
857
858                         if (debug)
859                                 if (SSL_in_init(c_ssl))
860                                         printf("client waiting in SSL_connect - %s\n",
861                                                 SSL_state_string_long(c_ssl));
862
863                         if (cw_num > 0)
864                                 {
865                                 /* Write to server. */
866                                 
867                                 if (cw_num > (long)sizeof cbuf)
868                                         i = sizeof cbuf;
869                                 else
870                                         i = (int)cw_num;
871                                 r = BIO_write(c_ssl_bio, cbuf, i);
872                                 if (r < 0)
873                                         {
874                                         if (!BIO_should_retry(c_ssl_bio))
875                                                 {
876                                                 fprintf(stderr,"ERROR in CLIENT\n");
877                                                 goto err;
878                                                 }
879                                         /* BIO_should_retry(...) can just be ignored here.
880                                          * The library expects us to call BIO_write with
881                                          * the same arguments again, and that's what we will
882                                          * do in the next iteration. */
883                                         }
884                                 else if (r == 0)
885                                         {
886                                         fprintf(stderr,"SSL CLIENT STARTUP FAILED\n");
887                                         goto err;
888                                         }
889                                 else
890                                         {
891                                         if (debug)
892                                                 printf("client wrote %d\n", r);
893                                         cw_num -= r;                            
894                                         }
895                                 }
896
897                         if (cr_num > 0)
898                                 {
899                                 /* Read from server. */
900
901                                 r = BIO_read(c_ssl_bio, cbuf, sizeof(cbuf));
902                                 if (r < 0)
903                                         {
904                                         if (!BIO_should_retry(c_ssl_bio))
905                                                 {
906                                                 fprintf(stderr,"ERROR in CLIENT\n");
907                                                 goto err;
908                                                 }
909                                         /* Again, "BIO_should_retry" can be ignored. */
910                                         }
911                                 else if (r == 0)
912                                         {
913                                         fprintf(stderr,"SSL CLIENT STARTUP FAILED\n");
914                                         goto err;
915                                         }
916                                 else
917                                         {
918                                         if (debug)
919                                                 printf("client read %d\n", r);
920                                         cr_num -= r;
921                                         }
922                                 }
923
924                         /* c_time and s_time increments will typically be very small
925                          * (depending on machine speed and clock tick intervals),
926                          * but sampling over a large number of connections should
927                          * result in fairly accurate figures.  We cannot guarantee
928                          * a lot, however -- if each connection lasts for exactly
929                          * one clock tick, it will be counted only for the client
930                          * or only for the server or even not at all.
931                          */
932                         *c_time += (clock() - c_clock);
933                         }
934
935                         {
936                         /* SERVER */
937                 
938                         MS_STATIC char sbuf[1024*8];
939                         int i, r;
940                         clock_t s_clock = clock();
941
942                         memset(sbuf, 0, sizeof(sbuf));
943
944                         if (debug)
945                                 if (SSL_in_init(s_ssl))
946                                         printf("server waiting in SSL_accept - %s\n",
947                                                 SSL_state_string_long(s_ssl));
948
949                         if (sw_num > 0)
950                                 {
951                                 /* Write to client. */
952                                 
953                                 if (sw_num > (long)sizeof sbuf)
954                                         i = sizeof sbuf;
955                                 else
956                                         i = (int)sw_num;
957                                 r = BIO_write(s_ssl_bio, sbuf, i);
958                                 if (r < 0)
959                                         {
960                                         if (!BIO_should_retry(s_ssl_bio))
961                                                 {
962                                                 fprintf(stderr,"ERROR in SERVER\n");
963                                                 goto err;
964                                                 }
965                                         /* Ignore "BIO_should_retry". */
966                                         }
967                                 else if (r == 0)
968                                         {
969                                         fprintf(stderr,"SSL SERVER STARTUP FAILED\n");
970                                         goto err;
971                                         }
972                                 else
973                                         {
974                                         if (debug)
975                                                 printf("server wrote %d\n", r);
976                                         sw_num -= r;                            
977                                         }
978                                 }
979
980                         if (sr_num > 0)
981                                 {
982                                 /* Read from client. */
983
984                                 r = BIO_read(s_ssl_bio, sbuf, sizeof(sbuf));
985                                 if (r < 0)
986                                         {
987                                         if (!BIO_should_retry(s_ssl_bio))
988                                                 {
989                                                 fprintf(stderr,"ERROR in SERVER\n");
990                                                 goto err;
991                                                 }
992                                         /* blah, blah */
993                                         }
994                                 else if (r == 0)
995                                         {
996                                         fprintf(stderr,"SSL SERVER STARTUP FAILED\n");
997                                         goto err;
998                                         }
999                                 else
1000                                         {
1001                                         if (debug)
1002                                                 printf("server read %d\n", r);
1003                                         sr_num -= r;
1004                                         }
1005                                 }
1006
1007                         *s_time += (clock() - s_clock);
1008                         }
1009                         
1010                         {
1011                         /* "I/O" BETWEEN CLIENT AND SERVER. */
1012
1013                         size_t r1, r2;
1014                         BIO *io1 = server_io, *io2 = client_io;
1015                         /* we use the non-copying interface for io1
1016                          * and the standard BIO_write/BIO_read interface for io2
1017                          */
1018                         
1019                         static int prev_progress = 1;
1020                         int progress = 0;
1021                         
1022                         /* io1 to io2 */
1023                         do
1024                                 {
1025                                 size_t num;
1026                                 int r;
1027
1028                                 r1 = BIO_ctrl_pending(io1);
1029                                 r2 = BIO_ctrl_get_write_guarantee(io2);
1030
1031                                 num = r1;
1032                                 if (r2 < num)
1033                                         num = r2;
1034                                 if (num)
1035                                         {
1036                                         char *dataptr;
1037
1038                                         if (INT_MAX < num) /* yeah, right */
1039                                                 num = INT_MAX;
1040                                         
1041                                         r = BIO_nread(io1, &dataptr, (int)num);
1042                                         assert(r > 0);
1043                                         assert(r <= (int)num);
1044                                         /* possibly r < num (non-contiguous data) */
1045                                         num = r;
1046                                         r = BIO_write(io2, dataptr, (int)num);
1047                                         if (r != (int)num) /* can't happen */
1048                                                 {
1049                                                 fprintf(stderr, "ERROR: BIO_write could not write "
1050                                                         "BIO_ctrl_get_write_guarantee() bytes");
1051                                                 goto err;
1052                                                 }
1053                                         progress = 1;
1054
1055                                         if (debug)
1056                                                 printf((io1 == client_io) ?
1057                                                         "C->S relaying: %d bytes\n" :
1058                                                         "S->C relaying: %d bytes\n",
1059                                                         (int)num);
1060                                         }
1061                                 }
1062                         while (r1 && r2);
1063
1064                         /* io2 to io1 */
1065                         {
1066                                 size_t num;
1067                                 int r;
1068
1069                                 r1 = BIO_ctrl_pending(io2);
1070                                 r2 = BIO_ctrl_get_read_request(io1);
1071                                 /* here we could use ..._get_write_guarantee instead of
1072                                  * ..._get_read_request, but by using the latter
1073                                  * we test restartability of the SSL implementation
1074                                  * more thoroughly */
1075                                 num = r1;
1076                                 if (r2 < num)
1077                                         num = r2;
1078                                 if (num)
1079                                         {
1080                                         char *dataptr;
1081                                         
1082                                         if (INT_MAX < num)
1083                                                 num = INT_MAX;
1084
1085                                         if (num > 1)
1086                                                 --num; /* test restartability even more thoroughly */
1087                                         
1088                                         r = BIO_nwrite0(io1, &dataptr);
1089                                         assert(r > 0);
1090                                         if (r < (int)num)
1091                                                 num = r;
1092                                         r = BIO_read(io2, dataptr, (int)num);
1093                                         if (r != (int)num) /* can't happen */
1094                                                 {
1095                                                 fprintf(stderr, "ERROR: BIO_read could not read "
1096                                                         "BIO_ctrl_pending() bytes");
1097                                                 goto err;
1098                                                 }
1099                                         progress = 1;
1100                                         r = BIO_nwrite(io1, &dataptr, (int)num);
1101                                         if (r != (int)num) /* can't happen */
1102                                                 {
1103                                                 fprintf(stderr, "ERROR: BIO_nwrite() did not accept "
1104                                                         "BIO_nwrite0() bytes");
1105                                                 goto err;
1106                                                 }
1107                                         
1108                                         if (debug)
1109                                                 printf((io2 == client_io) ?
1110                                                         "C->S relaying: %d bytes\n" :
1111                                                         "S->C relaying: %d bytes\n",
1112                                                         (int)num);
1113                                         }
1114                         } /* no loop, BIO_ctrl_get_read_request now returns 0 anyway */
1115
1116                         if (!progress && !prev_progress)
1117                                 if (cw_num > 0 || cr_num > 0 || sw_num > 0 || sr_num > 0)
1118                                         {
1119                                         fprintf(stderr, "ERROR: got stuck\n");
1120                                         if (strcmp("SSLv2", SSL_get_version(c_ssl)) == 0)
1121                                                 {
1122                                                 fprintf(stderr, "This can happen for SSL2 because "
1123                                                         "CLIENT-FINISHED and SERVER-VERIFY are written \n"
1124                                                         "concurrently ...");
1125                                                 if (strncmp("2SCF", SSL_state_string(c_ssl), 4) == 0
1126                                                         && strncmp("2SSV", SSL_state_string(s_ssl), 4) == 0)
1127                                                         {
1128                                                         fprintf(stderr, " ok.\n");
1129                                                         goto end;
1130                                                         }
1131                                                 }
1132                                         fprintf(stderr, " ERROR.\n");
1133                                         goto err;
1134                                         }
1135                         prev_progress = progress;
1136                         }
1137                 }
1138         while (cw_num > 0 || cr_num > 0 || sw_num > 0 || sr_num > 0);
1139
1140         if (verbose)
1141                 print_details(c_ssl, "DONE via BIO pair: ");
1142 end:
1143         ret = 0;
1144
1145  err:
1146         ERR_print_errors(bio_err);
1147         
1148         if (server)
1149                 BIO_free(server);
1150         if (server_io)
1151                 BIO_free(server_io);
1152         if (client)
1153                 BIO_free(client);
1154         if (client_io)
1155                 BIO_free(client_io);
1156         if (s_ssl_bio)
1157                 BIO_free(s_ssl_bio);
1158         if (c_ssl_bio)
1159                 BIO_free(c_ssl_bio);
1160
1161         return ret;
1162         }
1163
1164
1165 #define W_READ  1
1166 #define W_WRITE 2
1167 #define C_DONE  1
1168 #define S_DONE  2
1169
1170 int doit(SSL *s_ssl, SSL *c_ssl, long count)
1171         {
1172         MS_STATIC char cbuf[1024*8],sbuf[1024*8];
1173         long cw_num=count,cr_num=count;
1174         long sw_num=count,sr_num=count;
1175         int ret=1;
1176         BIO *c_to_s=NULL;
1177         BIO *s_to_c=NULL;
1178         BIO *c_bio=NULL;
1179         BIO *s_bio=NULL;
1180         int c_r,c_w,s_r,s_w;
1181         int c_want,s_want;
1182         int i,j;
1183         int done=0;
1184         int c_write,s_write;
1185         int do_server=0,do_client=0;
1186
1187         memset(cbuf,0,sizeof(cbuf));
1188         memset(sbuf,0,sizeof(sbuf));
1189
1190         c_to_s=BIO_new(BIO_s_mem());
1191         s_to_c=BIO_new(BIO_s_mem());
1192         if ((s_to_c == NULL) || (c_to_s == NULL))
1193                 {
1194                 ERR_print_errors(bio_err);
1195                 goto err;
1196                 }
1197
1198         c_bio=BIO_new(BIO_f_ssl());
1199         s_bio=BIO_new(BIO_f_ssl());
1200         if ((c_bio == NULL) || (s_bio == NULL))
1201                 {
1202                 ERR_print_errors(bio_err);
1203                 goto err;
1204                 }
1205
1206         SSL_set_connect_state(c_ssl);
1207         SSL_set_bio(c_ssl,s_to_c,c_to_s);
1208         BIO_set_ssl(c_bio,c_ssl,BIO_NOCLOSE);
1209
1210         SSL_set_accept_state(s_ssl);
1211         SSL_set_bio(s_ssl,c_to_s,s_to_c);
1212         BIO_set_ssl(s_bio,s_ssl,BIO_NOCLOSE);
1213
1214         c_r=0; s_r=1;
1215         c_w=1; s_w=0;
1216         c_want=W_WRITE;
1217         s_want=0;
1218         c_write=1,s_write=0;
1219
1220         /* We can always do writes */
1221         for (;;)
1222                 {
1223                 do_server=0;
1224                 do_client=0;
1225
1226                 i=(int)BIO_pending(s_bio);
1227                 if ((i && s_r) || s_w) do_server=1;
1228
1229                 i=(int)BIO_pending(c_bio);
1230                 if ((i && c_r) || c_w) do_client=1;
1231
1232                 if (do_server && debug)
1233                         {
1234                         if (SSL_in_init(s_ssl))
1235                                 printf("server waiting in SSL_accept - %s\n",
1236                                         SSL_state_string_long(s_ssl));
1237 /*                      else if (s_write)
1238                                 printf("server:SSL_write()\n");
1239                         else
1240                                 printf("server:SSL_read()\n"); */
1241                         }
1242
1243                 if (do_client && debug)
1244                         {
1245                         if (SSL_in_init(c_ssl))
1246                                 printf("client waiting in SSL_connect - %s\n",
1247                                         SSL_state_string_long(c_ssl));
1248 /*                      else if (c_write)
1249                                 printf("client:SSL_write()\n");
1250                         else
1251                                 printf("client:SSL_read()\n"); */
1252                         }
1253
1254                 if (!do_client && !do_server)
1255                         {
1256                         fprintf(stdout,"ERROR IN STARTUP\n");
1257                         ERR_print_errors(bio_err);
1258                         break;
1259                         }
1260                 if (do_client && !(done & C_DONE))
1261                         {
1262                         if (c_write)
1263                                 {
1264                                 j=(cw_num > (long)sizeof(cbuf))
1265                                         ?sizeof(cbuf):(int)cw_num;
1266                                 i=BIO_write(c_bio,cbuf,j);
1267                                 if (i < 0)
1268                                         {
1269                                         c_r=0;
1270                                         c_w=0;
1271                                         if (BIO_should_retry(c_bio))
1272                                                 {
1273                                                 if (BIO_should_read(c_bio))
1274                                                         c_r=1;
1275                                                 if (BIO_should_write(c_bio))
1276                                                         c_w=1;
1277                                                 }
1278                                         else
1279                                                 {
1280                                                 fprintf(stderr,"ERROR in CLIENT\n");
1281                                                 ERR_print_errors(bio_err);
1282                                                 goto err;
1283                                                 }
1284                                         }
1285                                 else if (i == 0)
1286                                         {
1287                                         fprintf(stderr,"SSL CLIENT STARTUP FAILED\n");
1288                                         goto err;
1289                                         }
1290                                 else
1291                                         {
1292                                         if (debug)
1293                                                 printf("client wrote %d\n",i);
1294                                         /* ok */
1295                                         s_r=1;
1296                                         c_write=0;
1297                                         cw_num-=i;
1298                                         }
1299                                 }
1300                         else
1301                                 {
1302                                 i=BIO_read(c_bio,cbuf,sizeof(cbuf));
1303                                 if (i < 0)
1304                                         {
1305                                         c_r=0;
1306                                         c_w=0;
1307                                         if (BIO_should_retry(c_bio))
1308                                                 {
1309                                                 if (BIO_should_read(c_bio))
1310                                                         c_r=1;
1311                                                 if (BIO_should_write(c_bio))
1312                                                         c_w=1;
1313                                                 }
1314                                         else
1315                                                 {
1316                                                 fprintf(stderr,"ERROR in CLIENT\n");
1317                                                 ERR_print_errors(bio_err);
1318                                                 goto err;
1319                                                 }
1320                                         }
1321                                 else if (i == 0)
1322                                         {
1323                                         fprintf(stderr,"SSL CLIENT STARTUP FAILED\n");
1324                                         goto err;
1325                                         }
1326                                 else
1327                                         {
1328                                         if (debug)
1329                                                 printf("client read %d\n",i);
1330                                         cr_num-=i;
1331                                         if (sw_num > 0)
1332                                                 {
1333                                                 s_write=1;
1334                                                 s_w=1;
1335                                                 }
1336                                         if (cr_num <= 0)
1337                                                 {
1338                                                 s_write=1;
1339                                                 s_w=1;
1340                                                 done=S_DONE|C_DONE;
1341                                                 }
1342                                         }
1343                                 }
1344                         }
1345
1346                 if (do_server && !(done & S_DONE))
1347                         {
1348                         if (!s_write)
1349                                 {
1350                                 i=BIO_read(s_bio,sbuf,sizeof(cbuf));
1351                                 if (i < 0)
1352                                         {
1353                                         s_r=0;
1354                                         s_w=0;
1355                                         if (BIO_should_retry(s_bio))
1356                                                 {
1357                                                 if (BIO_should_read(s_bio))
1358                                                         s_r=1;
1359                                                 if (BIO_should_write(s_bio))
1360                                                         s_w=1;
1361                                                 }
1362                                         else
1363                                                 {
1364                                                 fprintf(stderr,"ERROR in SERVER\n");
1365                                                 ERR_print_errors(bio_err);
1366                                                 goto err;
1367                                                 }
1368                                         }
1369                                 else if (i == 0)
1370                                         {
1371                                         ERR_print_errors(bio_err);
1372                                         fprintf(stderr,"SSL SERVER STARTUP FAILED in SSL_read\n");
1373                                         goto err;
1374                                         }
1375                                 else
1376                                         {
1377                                         if (debug)
1378                                                 printf("server read %d\n",i);
1379                                         sr_num-=i;
1380                                         if (cw_num > 0)
1381                                                 {
1382                                                 c_write=1;
1383                                                 c_w=1;
1384                                                 }
1385                                         if (sr_num <= 0)
1386                                                 {
1387                                                 s_write=1;
1388                                                 s_w=1;
1389                                                 c_write=0;
1390                                                 }
1391                                         }
1392                                 }
1393                         else
1394                                 {
1395                                 j=(sw_num > (long)sizeof(sbuf))?
1396                                         sizeof(sbuf):(int)sw_num;
1397                                 i=BIO_write(s_bio,sbuf,j);
1398                                 if (i < 0)
1399                                         {
1400                                         s_r=0;
1401                                         s_w=0;
1402                                         if (BIO_should_retry(s_bio))
1403                                                 {
1404                                                 if (BIO_should_read(s_bio))
1405                                                         s_r=1;
1406                                                 if (BIO_should_write(s_bio))
1407                                                         s_w=1;
1408                                                 }
1409                                         else
1410                                                 {
1411                                                 fprintf(stderr,"ERROR in SERVER\n");
1412                                                 ERR_print_errors(bio_err);
1413                                                 goto err;
1414                                                 }
1415                                         }
1416                                 else if (i == 0)
1417                                         {
1418                                         ERR_print_errors(bio_err);
1419                                         fprintf(stderr,"SSL SERVER STARTUP FAILED in SSL_write\n");
1420                                         goto err;
1421                                         }
1422                                 else
1423                                         {
1424                                         if (debug)
1425                                                 printf("server wrote %d\n",i);
1426                                         sw_num-=i;
1427                                         s_write=0;
1428                                         c_r=1;
1429                                         if (sw_num <= 0)
1430                                                 done|=S_DONE;
1431                                         }
1432                                 }
1433                         }
1434
1435                 if ((done & S_DONE) && (done & C_DONE)) break;
1436                 }
1437
1438         if (verbose)
1439                 print_details(c_ssl, "DONE: ");
1440         ret=0;
1441 err:
1442         /* We have to set the BIO's to NULL otherwise they will be
1443          * OPENSSL_free()ed twice.  Once when th s_ssl is SSL_free()ed and
1444          * again when c_ssl is SSL_free()ed.
1445          * This is a hack required because s_ssl and c_ssl are sharing the same
1446          * BIO structure and SSL_set_bio() and SSL_free() automatically
1447          * BIO_free non NULL entries.
1448          * You should not normally do this or be required to do this */
1449         if (s_ssl != NULL)
1450                 {
1451                 s_ssl->rbio=NULL;
1452                 s_ssl->wbio=NULL;
1453                 }
1454         if (c_ssl != NULL)
1455                 {
1456                 c_ssl->rbio=NULL;
1457                 c_ssl->wbio=NULL;
1458                 }
1459
1460         if (c_to_s != NULL) BIO_free(c_to_s);
1461         if (s_to_c != NULL) BIO_free(s_to_c);
1462         if (c_bio != NULL) BIO_free_all(c_bio);
1463         if (s_bio != NULL) BIO_free_all(s_bio);
1464         return(ret);
1465         }
1466
1467 static int MS_CALLBACK verify_callback(int ok, X509_STORE_CTX *ctx)
1468         {
1469         char *s,buf[256];
1470
1471         s=X509_NAME_oneline(X509_get_subject_name(ctx->current_cert),buf,
1472                             sizeof buf);
1473         if (s != NULL)
1474                 {
1475                 if (ok)
1476                         fprintf(stderr,"depth=%d %s\n",ctx->error_depth,buf);
1477                 else
1478                         fprintf(stderr,"depth=%d error=%d %s\n",
1479                                 ctx->error_depth,ctx->error,buf);
1480                 }
1481
1482         if (ok == 0)
1483                 {
1484                 switch (ctx->error)
1485                         {
1486                 case X509_V_ERR_CERT_NOT_YET_VALID:
1487                 case X509_V_ERR_CERT_HAS_EXPIRED:
1488                 case X509_V_ERR_DEPTH_ZERO_SELF_SIGNED_CERT:
1489                         ok=1;
1490                         }
1491                 }
1492
1493         return(ok);
1494         }
1495
1496 static int MS_CALLBACK app_verify_callback(X509_STORE_CTX *ctx, void *arg)
1497         {
1498         char *s = NULL,buf[256];
1499         int ok=1;
1500
1501         fprintf(stderr, "In app_verify_callback, allowing cert. ");
1502         fprintf(stderr, "Arg is: %s\n", (char *)arg);
1503         fprintf(stderr, "Finished printing do we have a context? 0x%x a cert? 0x%x\n",
1504                         (unsigned int)ctx, (unsigned int)ctx->cert);
1505         if (ctx->cert)
1506                 s=X509_NAME_oneline(X509_get_subject_name(ctx->cert),buf,256);
1507         if (s != NULL)
1508                 {
1509                         fprintf(stderr,"cert depth=%d %s\n",ctx->error_depth,buf);
1510                 }
1511
1512         return(ok);
1513         }
1514
1515 #ifndef OPENSSL_NO_RSA
1516 static RSA *rsa_tmp=NULL;
1517
1518 static RSA MS_CALLBACK *tmp_rsa_cb(SSL *s, int is_export, int keylength)
1519         {
1520         if (rsa_tmp == NULL)
1521                 {
1522                 BIO_printf(bio_err,"Generating temp (%d bit) RSA key...",keylength);
1523                 (void)BIO_flush(bio_err);
1524                 rsa_tmp=RSA_generate_key(keylength,RSA_F4,NULL,NULL);
1525                 BIO_printf(bio_err,"\n");
1526                 (void)BIO_flush(bio_err);
1527                 }
1528         return(rsa_tmp);
1529         }
1530
1531 static void free_tmp_rsa(void)
1532         {
1533         if (rsa_tmp != NULL)
1534                 {
1535                 RSA_free(rsa_tmp);
1536                 rsa_tmp = NULL;
1537                 }
1538         }
1539 #endif
1540
1541 #ifndef OPENSSL_NO_DH
1542 /* These DH parameters have been generated as follows:
1543  *    $ openssl dhparam -C -noout 512
1544  *    $ openssl dhparam -C -noout 1024
1545  *    $ openssl dhparam -C -noout -dsaparam 1024
1546  * (The third function has been renamed to avoid name conflicts.)
1547  */
1548 static DH *get_dh512()
1549         {
1550         static unsigned char dh512_p[]={
1551                 0xCB,0xC8,0xE1,0x86,0xD0,0x1F,0x94,0x17,0xA6,0x99,0xF0,0xC6,
1552                 0x1F,0x0D,0xAC,0xB6,0x25,0x3E,0x06,0x39,0xCA,0x72,0x04,0xB0,
1553                 0x6E,0xDA,0xC0,0x61,0xE6,0x7A,0x77,0x25,0xE8,0x3B,0xB9,0x5F,
1554                 0x9A,0xB6,0xB5,0xFE,0x99,0x0B,0xA1,0x93,0x4E,0x35,0x33,0xB8,
1555                 0xE1,0xF1,0x13,0x4F,0x59,0x1A,0xD2,0x57,0xC0,0x26,0x21,0x33,
1556                 0x02,0xC5,0xAE,0x23,
1557                 };
1558         static unsigned char dh512_g[]={
1559                 0x02,
1560                 };
1561         DH *dh;
1562
1563         if ((dh=DH_new()) == NULL) return(NULL);
1564         dh->p=BN_bin2bn(dh512_p,sizeof(dh512_p),NULL);
1565         dh->g=BN_bin2bn(dh512_g,sizeof(dh512_g),NULL);
1566         if ((dh->p == NULL) || (dh->g == NULL))
1567                 { DH_free(dh); return(NULL); }
1568         return(dh);
1569         }
1570
1571 static DH *get_dh1024()
1572         {
1573         static unsigned char dh1024_p[]={
1574                 0xF8,0x81,0x89,0x7D,0x14,0x24,0xC5,0xD1,0xE6,0xF7,0xBF,0x3A,
1575                 0xE4,0x90,0xF4,0xFC,0x73,0xFB,0x34,0xB5,0xFA,0x4C,0x56,0xA2,
1576                 0xEA,0xA7,0xE9,0xC0,0xC0,0xCE,0x89,0xE1,0xFA,0x63,0x3F,0xB0,
1577                 0x6B,0x32,0x66,0xF1,0xD1,0x7B,0xB0,0x00,0x8F,0xCA,0x87,0xC2,
1578                 0xAE,0x98,0x89,0x26,0x17,0xC2,0x05,0xD2,0xEC,0x08,0xD0,0x8C,
1579                 0xFF,0x17,0x52,0x8C,0xC5,0x07,0x93,0x03,0xB1,0xF6,0x2F,0xB8,
1580                 0x1C,0x52,0x47,0x27,0x1B,0xDB,0xD1,0x8D,0x9D,0x69,0x1D,0x52,
1581                 0x4B,0x32,0x81,0xAA,0x7F,0x00,0xC8,0xDC,0xE6,0xD9,0xCC,0xC1,
1582                 0x11,0x2D,0x37,0x34,0x6C,0xEA,0x02,0x97,0x4B,0x0E,0xBB,0xB1,
1583                 0x71,0x33,0x09,0x15,0xFD,0xDD,0x23,0x87,0x07,0x5E,0x89,0xAB,
1584                 0x6B,0x7C,0x5F,0xEC,0xA6,0x24,0xDC,0x53,
1585                 };
1586         static unsigned char dh1024_g[]={
1587                 0x02,
1588                 };
1589         DH *dh;
1590
1591         if ((dh=DH_new()) == NULL) return(NULL);
1592         dh->p=BN_bin2bn(dh1024_p,sizeof(dh1024_p),NULL);
1593         dh->g=BN_bin2bn(dh1024_g,sizeof(dh1024_g),NULL);
1594         if ((dh->p == NULL) || (dh->g == NULL))
1595                 { DH_free(dh); return(NULL); }
1596         return(dh);
1597         }
1598
1599 static DH *get_dh1024dsa()
1600         {
1601         static unsigned char dh1024_p[]={
1602                 0xC8,0x00,0xF7,0x08,0x07,0x89,0x4D,0x90,0x53,0xF3,0xD5,0x00,
1603                 0x21,0x1B,0xF7,0x31,0xA6,0xA2,0xDA,0x23,0x9A,0xC7,0x87,0x19,
1604                 0x3B,0x47,0xB6,0x8C,0x04,0x6F,0xFF,0xC6,0x9B,0xB8,0x65,0xD2,
1605                 0xC2,0x5F,0x31,0x83,0x4A,0xA7,0x5F,0x2F,0x88,0x38,0xB6,0x55,
1606                 0xCF,0xD9,0x87,0x6D,0x6F,0x9F,0xDA,0xAC,0xA6,0x48,0xAF,0xFC,
1607                 0x33,0x84,0x37,0x5B,0x82,0x4A,0x31,0x5D,0xE7,0xBD,0x52,0x97,
1608                 0xA1,0x77,0xBF,0x10,0x9E,0x37,0xEA,0x64,0xFA,0xCA,0x28,0x8D,
1609                 0x9D,0x3B,0xD2,0x6E,0x09,0x5C,0x68,0xC7,0x45,0x90,0xFD,0xBB,
1610                 0x70,0xC9,0x3A,0xBB,0xDF,0xD4,0x21,0x0F,0xC4,0x6A,0x3C,0xF6,
1611                 0x61,0xCF,0x3F,0xD6,0x13,0xF1,0x5F,0xBC,0xCF,0xBC,0x26,0x9E,
1612                 0xBC,0x0B,0xBD,0xAB,0x5D,0xC9,0x54,0x39,
1613                 };
1614         static unsigned char dh1024_g[]={
1615                 0x3B,0x40,0x86,0xE7,0xF3,0x6C,0xDE,0x67,0x1C,0xCC,0x80,0x05,
1616                 0x5A,0xDF,0xFE,0xBD,0x20,0x27,0x74,0x6C,0x24,0xC9,0x03,0xF3,
1617                 0xE1,0x8D,0xC3,0x7D,0x98,0x27,0x40,0x08,0xB8,0x8C,0x6A,0xE9,
1618                 0xBB,0x1A,0x3A,0xD6,0x86,0x83,0x5E,0x72,0x41,0xCE,0x85,0x3C,
1619                 0xD2,0xB3,0xFC,0x13,0xCE,0x37,0x81,0x9E,0x4C,0x1C,0x7B,0x65,
1620                 0xD3,0xE6,0xA6,0x00,0xF5,0x5A,0x95,0x43,0x5E,0x81,0xCF,0x60,
1621                 0xA2,0x23,0xFC,0x36,0xA7,0x5D,0x7A,0x4C,0x06,0x91,0x6E,0xF6,
1622                 0x57,0xEE,0x36,0xCB,0x06,0xEA,0xF5,0x3D,0x95,0x49,0xCB,0xA7,
1623                 0xDD,0x81,0xDF,0x80,0x09,0x4A,0x97,0x4D,0xA8,0x22,0x72,0xA1,
1624                 0x7F,0xC4,0x70,0x56,0x70,0xE8,0x20,0x10,0x18,0x8F,0x2E,0x60,
1625                 0x07,0xE7,0x68,0x1A,0x82,0x5D,0x32,0xA2,
1626                 };
1627         DH *dh;
1628
1629         if ((dh=DH_new()) == NULL) return(NULL);
1630         dh->p=BN_bin2bn(dh1024_p,sizeof(dh1024_p),NULL);
1631         dh->g=BN_bin2bn(dh1024_g,sizeof(dh1024_g),NULL);
1632         if ((dh->p == NULL) || (dh->g == NULL))
1633                 { DH_free(dh); return(NULL); }
1634         dh->length = 160;
1635         return(dh);
1636         }
1637 #endif