eb97430fba103c5d39d0b151faad899a9174c47f
[openssl.git] / crypto / threads / mttest.c
1 /* crypto/threads/mttest.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 #include <stdio.h>
60 #include <stdlib.h>
61 #include <string.h>
62 #include <errno.h>
63 #ifdef LINUX
64 # include <typedefs.h>
65 #endif
66 #ifdef OPENSSL_SYS_WIN32
67 # include <windows.h>
68 #endif
69 #ifdef SOLARIS
70 # include <synch.h>
71 # include <thread.h>
72 #endif
73 #ifdef IRIX
74 # include <ulocks.h>
75 # include <sys/prctl.h>
76 #endif
77 #ifdef PTHREADS
78 # include <pthread.h>
79 #endif
80 #ifdef OPENSSL_SYS_NETWARE
81 # if !defined __int64
82 #  define __int64 long long
83 # endif
84 # include <nwmpk.h>
85 #endif
86 #include <openssl/lhash.h>
87 #include <openssl/crypto.h>
88 #include <openssl/buffer.h>
89 #include <openssl/x509.h>
90 #include <openssl/ssl.h>
91 #include <openssl/err.h>
92 #include <openssl/rand.h>
93
94 #ifdef OPENSSL_SYS_NETWARE
95 # define TEST_SERVER_CERT "/openssl/apps/server.pem"
96 # define TEST_CLIENT_CERT "/openssl/apps/client.pem"
97 #else
98 # define TEST_SERVER_CERT "../../apps/server.pem"
99 # define TEST_CLIENT_CERT "../../apps/client.pem"
100 #endif
101
102 #define MAX_THREAD_NUMBER       100
103
104 int verify_callback(int ok, X509_STORE_CTX *xs);
105 void thread_setup(void);
106 void thread_cleanup(void);
107 void do_threads(SSL_CTX *s_ctx, SSL_CTX *c_ctx);
108
109 void irix_locking_callback(int mode, int type, const char *file, int line);
110 void solaris_locking_callback(int mode, int type, const char *file, int line);
111 void win32_locking_callback(int mode, int type, const char *file, int line);
112 void pthreads_locking_callback(int mode, int type, const char *file, int line);
113 void netware_locking_callback(int mode, int type, const char *file, int line);
114 void beos_locking_callback(int mode, int type, const char *file, int line);
115
116 void irix_thread_id(CRYPTO_THREADID *tid);
117 void solaris_thread_id(CRYPTO_THREADID *tid);
118 void pthreads_thread_id(CRYPTO_THREADID *tid);
119 void netware_thread_id(CRYPTO_THREADID *tid);
120 void beos_thread_id(CRYPTO_THREADID *tid);
121
122 #if defined(OPENSSL_SYS_NETWARE)
123 static MPKMutex *lock_cs;
124 static MPKSema ThreadSem;
125 static long *lock_count;
126 #endif
127
128 BIO *bio_err = NULL;
129 BIO *bio_stdout = NULL;
130
131 static char *cipher = NULL;
132 int verbose = 0;
133 #ifdef FIONBIO
134 static int s_nbio = 0;
135 #endif
136
137 int thread_number = 10;
138 int number_of_loops = 10;
139 int reconnect = 0;
140 int cache_stats = 0;
141
142 static const char rnd_seed[] =
143     "string to make the random number generator think it has entropy";
144
145 int doit(char *ctx[4]);
146 static void print_stats(BIO *bio, SSL_CTX *ctx)
147 {
148     BIO_printf(bio, "%4ld items in the session cache\n",
149                SSL_CTX_sess_number(ctx));
150     BIO_printf(bio, "%4d client connects (SSL_connect())\n",
151                SSL_CTX_sess_connect(ctx));
152     BIO_printf(bio, "%4d client connects that finished\n",
153                SSL_CTX_sess_connect_good(ctx));
154     BIO_printf(bio, "%4d server connects (SSL_accept())\n",
155                SSL_CTX_sess_accept(ctx));
156     BIO_printf(bio, "%4d server connects that finished\n",
157                SSL_CTX_sess_accept_good(ctx));
158     BIO_printf(bio, "%4d session cache hits\n", SSL_CTX_sess_hits(ctx));
159     BIO_printf(bio, "%4d session cache misses\n", SSL_CTX_sess_misses(ctx));
160     BIO_printf(bio, "%4d session cache timeouts\n", SSL_CTX_sess_timeouts(ctx));
161 }
162
163 static void sv_usage(void)
164 {
165     BIO_printf(bio_err, "usage: ssltest [args ...]\n");
166     BIO_printf(bio_err, "\n");
167     BIO_printf(bio_err, " -server_auth  - check server certificate\n");
168     BIO_printf(bio_err, " -client_auth  - do client authentication\n");
169     BIO_printf(bio_err, " -v            - more output\n");
170     BIO_printf(bio_err, " -CApath arg   - PEM format directory of CA's\n");
171     BIO_printf(bio_err, " -CAfile arg   - PEM format file of CA's\n");
172     BIO_printf(bio_err, " -threads arg  - number of threads\n");
173     BIO_printf(bio_err, " -loops arg    - number of 'connections', per thread\n");
174     BIO_printf(bio_err, " -reconnect    - reuse session-id's\n");
175     BIO_printf(bio_err, " -stats        - server session-id cache stats\n");
176     BIO_printf(bio_err, " -cert arg     - server certificate/key\n");
177     BIO_printf(bio_err, " -ccert arg    - client certificate/key\n");
178     BIO_printf(bio_err, " -ssl3         - just SSLv3n\n");
179 }
180
181 int main(int argc, char *argv[])
182 {
183     char *CApath = NULL, *CAfile = NULL;
184     int badop = 0;
185     int ret = 1;
186     int client_auth = 0;
187     int server_auth = 0;
188     SSL_CTX *s_ctx = NULL;
189     SSL_CTX *c_ctx = NULL;
190     char *scert = TEST_SERVER_CERT;
191     char *ccert = TEST_CLIENT_CERT;
192     const SSL_METHOD *ssl_method = SSLv23_method();
193
194     RAND_seed(rnd_seed, sizeof rnd_seed);
195
196     if (bio_err == NULL)
197         bio_err = BIO_new_fd(2, BIO_NOCLOSE);
198     if (bio_stdout == NULL)
199         bio_stdout = BIO_new_fd(1, BIO_NOCLOSE);
200     argc--;
201     argv++;
202
203     while (argc >= 1) {
204         if (strcmp(*argv, "-server_auth") == 0)
205             server_auth = 1;
206         else if (strcmp(*argv, "-client_auth") == 0)
207             client_auth = 1;
208         else if (strcmp(*argv, "-reconnect") == 0)
209             reconnect = 1;
210         else if (strcmp(*argv, "-stats") == 0)
211             cache_stats = 1;
212         else if (strcmp(*argv, "-ssl3") == 0)
213             ssl_method = SSLv3_method();
214         else if (strcmp(*argv, "-ssl2") == 0)
215             ssl_method = SSLv2_method();
216         else if (strcmp(*argv, "-CApath") == 0) {
217             if (--argc < 1)
218                 goto bad;
219             CApath = *(++argv);
220         } else if (strcmp(*argv, "-CAfile") == 0) {
221             if (--argc < 1)
222                 goto bad;
223             CAfile = *(++argv);
224         } else if (strcmp(*argv, "-cert") == 0) {
225             if (--argc < 1)
226                 goto bad;
227             scert = *(++argv);
228         } else if (strcmp(*argv, "-ccert") == 0) {
229             if (--argc < 1)
230                 goto bad;
231             ccert = *(++argv);
232         } else if (strcmp(*argv, "-threads") == 0) {
233             if (--argc < 1)
234                 goto bad;
235             thread_number = atoi(*(++argv));
236             if (thread_number == 0)
237                 thread_number = 1;
238             if (thread_number > MAX_THREAD_NUMBER)
239                 thread_number = MAX_THREAD_NUMBER;
240         } else if (strcmp(*argv, "-loops") == 0) {
241             if (--argc < 1)
242                 goto bad;
243             number_of_loops = atoi(*(++argv));
244             if (number_of_loops == 0)
245                 number_of_loops = 1;
246         } else {
247             BIO_printf(bio_err, "unknown option %s\n", *argv);
248             badop = 1;
249             break;
250         }
251         argc--;
252         argv++;
253     }
254     if (badop) {
255  bad:
256         sv_usage();
257         goto end;
258     }
259
260     if (cipher == NULL && OPENSSL_issetugid() == 0)
261         cipher = getenv("SSL_CIPHER");
262
263     SSL_load_error_strings();
264     OpenSSL_add_ssl_algorithms();
265
266     c_ctx = SSL_CTX_new(ssl_method);
267     s_ctx = SSL_CTX_new(ssl_method);
268     if ((c_ctx == NULL) || (s_ctx == NULL)) {
269         ERR_print_errors(bio_err);
270         goto end;
271     }
272
273     SSL_CTX_set_session_cache_mode(s_ctx,
274                                    SSL_SESS_CACHE_NO_AUTO_CLEAR |
275                                    SSL_SESS_CACHE_SERVER);
276     SSL_CTX_set_session_cache_mode(c_ctx,
277                                    SSL_SESS_CACHE_NO_AUTO_CLEAR |
278                                    SSL_SESS_CACHE_SERVER);
279
280     if (!SSL_CTX_use_certificate_file(s_ctx, scert, SSL_FILETYPE_PEM)) {
281         BIO_printf(bio_err, "SSL_CTX_use_certificate_file (%s)\n", scert);
282         ERR_print_errors(bio_err);
283         goto end;
284     } else
285         if (!SSL_CTX_use_RSAPrivateKey_file(s_ctx, scert, SSL_FILETYPE_PEM)) {
286         BIO_printf(bio_err, "SSL_CTX_use_RSAPrivateKey_file (%s)\n", scert);
287         ERR_print_errors(bio_err);
288         goto end;
289     }
290
291     if (client_auth) {
292         SSL_CTX_use_certificate_file(c_ctx, ccert, SSL_FILETYPE_PEM);
293         SSL_CTX_use_RSAPrivateKey_file(c_ctx, ccert, SSL_FILETYPE_PEM);
294     }
295
296     if ((!SSL_CTX_load_verify_locations(s_ctx, CAfile, CApath)) ||
297         (!SSL_CTX_set_default_verify_paths(s_ctx)) ||
298         (!SSL_CTX_load_verify_locations(c_ctx, CAfile, CApath)) ||
299         (!SSL_CTX_set_default_verify_paths(c_ctx))) {
300         BIO_printf(bio_err, "SSL_load_verify_locations\n");
301         ERR_print_errors(bio_err);
302         goto end;
303     }
304
305     if (client_auth) {
306         BIO_printf(bio_err, "client authentication\n");
307         SSL_CTX_set_verify(s_ctx,
308                            SSL_VERIFY_PEER | SSL_VERIFY_FAIL_IF_NO_PEER_CERT,
309                            verify_callback);
310     }
311     if (server_auth) {
312         BIO_printf(bio_err, "server authentication\n");
313         SSL_CTX_set_verify(c_ctx, SSL_VERIFY_PEER, verify_callback);
314     }
315
316     thread_setup();
317     do_threads(s_ctx, c_ctx);
318     thread_cleanup();
319  end:
320
321     if (c_ctx != NULL) {
322         BIO_printf(bio_err, "Client SSL_CTX stats then free it\n");
323         print_stats(bio_err, c_ctx);
324         SSL_CTX_free(c_ctx);
325     }
326     if (s_ctx != NULL) {
327         BIO_printf(bio_err, "Server SSL_CTX stats then free it\n");
328         print_stats(bio_err, s_ctx);
329         if (cache_stats) {
330             BIO_printf(bio_err, "-----\n");
331             lh_SSL_SESSION_stats_bio(SSL_CTX_sessions(s_ctx), bio_err);
332             BIO_printf(bio_err, "-----\n");
333     /*-     lh_SSL_SESSION_node_stats_bio(SSL_CTX_sessions(s_ctx),bio_err);
334             BIO_printf(bio_err,"-----\n"); */
335             lh_SSL_SESSION_node_usage_stats_bio(SSL_CTX_sessions(s_ctx), bio_err);
336             BIO_printf(bio_err, "-----\n");
337         }
338         SSL_CTX_free(s_ctx);
339         BIO_printf(bio_err, "done free\n");
340     }
341     exit(ret);
342     return (0);
343 }
344
345 #define W_READ  1
346 #define W_WRITE 2
347 #define C_DONE  1
348 #define S_DONE  2
349
350 int ndoit(SSL_CTX *ssl_ctx[2])
351 {
352     int i;
353     int ret;
354     char *ctx[4];
355     CRYPTO_THREADID thread_id;
356
357     ctx[0] = (char *)ssl_ctx[0];
358     ctx[1] = (char *)ssl_ctx[1];
359
360     if (reconnect) {
361         ctx[2] = (char *)SSL_new(ssl_ctx[0]);
362         ctx[3] = (char *)SSL_new(ssl_ctx[1]);
363     } else {
364         ctx[2] = NULL;
365         ctx[3] = NULL;
366     }
367
368     CRYPTO_THREADID_current(&thread_id);
369     BIO_printf(bio_stdout, "started thread %lu\n",
370                CRYPTO_THREADID_hash(&thread_id));
371     for (i = 0; i < number_of_loops; i++) {
372 /*-     BIO_printf(bio_err,"%4d %2d ctx->ref (%3d,%3d)\n",
373                    CRYPTO_THREADID_hash(&thread_id),i,
374                    ssl_ctx[0]->references,
375                    ssl_ctx[1]->references); */
376 /*      pthread_delay_np(&tm); */
377
378         ret = doit(ctx);
379         if (ret != 0) {
380             BIO_printf(bio_stdout, "error[%d] %lu - %d\n",
381                        i, CRYPTO_THREADID_hash(&thread_id), ret);
382             return (ret);
383         }
384     }
385     BIO_printf(bio_stdout, "DONE %lu\n", CRYPTO_THREADID_hash(&thread_id));
386     if (reconnect) {
387         SSL_free((SSL *)ctx[2]);
388         SSL_free((SSL *)ctx[3]);
389     }
390 #ifdef OPENSSL_SYS_NETWARE
391     MPKSemaphoreSignal(ThreadSem);
392 #endif
393     return (0);
394 }
395
396 int doit(char *ctx[4])
397 {
398     SSL_CTX *s_ctx, *c_ctx;
399     static char cbuf[200], sbuf[200];
400     SSL *c_ssl = NULL;
401     SSL *s_ssl = NULL;
402     BIO *c_to_s = NULL;
403     BIO *s_to_c = NULL;
404     BIO *c_bio = NULL;
405     BIO *s_bio = NULL;
406     int c_r, c_w, s_r, s_w;
407     int c_want, s_want;
408     int i;
409     int done = 0;
410     int c_write, s_write;
411     int do_server = 0, do_client = 0;
412
413     s_ctx = (SSL_CTX *)ctx[0];
414     c_ctx = (SSL_CTX *)ctx[1];
415
416     if (ctx[2] != NULL)
417         s_ssl = (SSL *)ctx[2];
418     else
419         s_ssl = SSL_new(s_ctx);
420
421     if (ctx[3] != NULL)
422         c_ssl = (SSL *)ctx[3];
423     else
424         c_ssl = SSL_new(c_ctx);
425
426     if ((s_ssl == NULL) || (c_ssl == NULL))
427         goto err;
428
429     c_to_s = BIO_new(BIO_s_mem());
430     s_to_c = BIO_new(BIO_s_mem());
431     if ((s_to_c == NULL) || (c_to_s == NULL))
432         goto err;
433
434     c_bio = BIO_new(BIO_f_ssl());
435     s_bio = BIO_new(BIO_f_ssl());
436     if ((c_bio == NULL) || (s_bio == NULL))
437         goto err;
438
439     SSL_set_connect_state(c_ssl);
440     SSL_set_bio(c_ssl, s_to_c, c_to_s);
441     BIO_set_ssl(c_bio, c_ssl, (ctx[2] == NULL) ? BIO_CLOSE : BIO_NOCLOSE);
442
443     SSL_set_accept_state(s_ssl);
444     SSL_set_bio(s_ssl, c_to_s, s_to_c);
445     BIO_set_ssl(s_bio, s_ssl, (ctx[3] == NULL) ? BIO_CLOSE : BIO_NOCLOSE);
446
447     c_r = 0;
448     s_r = 1;
449     c_w = 1;
450     s_w = 0;
451     c_want = W_WRITE;
452     s_want = 0;
453     c_write = 1, s_write = 0;
454
455     /* We can always do writes */
456     for (;;) {
457         do_server = 0;
458         do_client = 0;
459
460         i = (int)BIO_pending(s_bio);
461         if ((i && s_r) || s_w)
462             do_server = 1;
463
464         i = (int)BIO_pending(c_bio);
465         if ((i && c_r) || c_w)
466             do_client = 1;
467
468         if (do_server && verbose) {
469             if (SSL_in_init(s_ssl))
470                 BIO_printf(bio_stdout, "server waiting in SSL_accept - %s\n",
471                            SSL_state_string_long(s_ssl));
472             else if (s_write)
473                 BIO_printf(bio_stdout, "server:SSL_write()\n");
474             else
475                 BIO_printf(bio_stdout, "server:SSL_read()\n");
476         }
477
478         if (do_client && verbose) {
479             if (SSL_in_init(c_ssl))
480                 BIO_printf(bio_stdout, "client waiting in SSL_connect - %s\n",
481                            SSL_state_string_long(c_ssl));
482             else if (c_write)
483                 BIO_printf(bio_stdout, "client:SSL_write()\n");
484             else
485                 BIO_printf(bio_stdout, "client:SSL_read()\n");
486         }
487
488         if (!do_client && !do_server) {
489             BIO_printf(bio_stdout, "ERROR IN STARTUP\n");
490             break;
491         }
492         if (do_client && !(done & C_DONE)) {
493             if (c_write) {
494                 i = BIO_write(c_bio, "hello from client\n", 18);
495                 if (i < 0) {
496                     c_r = 0;
497                     c_w = 0;
498                     if (BIO_should_retry(c_bio)) {
499                         if (BIO_should_read(c_bio))
500                             c_r = 1;
501                         if (BIO_should_write(c_bio))
502                             c_w = 1;
503                     } else {
504                         BIO_printf(bio_err, "ERROR in CLIENT\n");
505                         ERR_print_errors_fp(stderr);
506                         return (1);
507                     }
508                 } else if (i == 0) {
509                     BIO_printf(bio_err, "SSL CLIENT STARTUP FAILED\n");
510                     return (1);
511                 } else {
512                     /* ok */
513                     c_write = 0;
514                 }
515             } else {
516                 i = BIO_read(c_bio, cbuf, 100);
517                 if (i < 0) {
518                     c_r = 0;
519                     c_w = 0;
520                     if (BIO_should_retry(c_bio)) {
521                         if (BIO_should_read(c_bio))
522                             c_r = 1;
523                         if (BIO_should_write(c_bio))
524                             c_w = 1;
525                     } else {
526                         BIO_printf(bio_err, "ERROR in CLIENT\n");
527                         ERR_print_errors_fp(stderr);
528                         return (1);
529                     }
530                 } else if (i == 0) {
531                     BIO_printf(bio_err, "SSL CLIENT STARTUP FAILED\n");
532                     return (1);
533                 } else {
534                     done |= C_DONE;
535 #ifdef undef
536                     BIO_printf(bio_stdout, "CLIENT:from server:");
537                     BIO_write(bio_stdout, cbuf, i);
538                     BIO_flush(bio_stdout);
539 #endif
540                 }
541             }
542         }
543
544         if (do_server && !(done & S_DONE)) {
545             if (!s_write) {
546                 i = BIO_read(s_bio, sbuf, 100);
547                 if (i < 0) {
548                     s_r = 0;
549                     s_w = 0;
550                     if (BIO_should_retry(s_bio)) {
551                         if (BIO_should_read(s_bio))
552                             s_r = 1;
553                         if (BIO_should_write(s_bio))
554                             s_w = 1;
555                     } else {
556                         BIO_printf(bio_err, "ERROR in SERVER\n");
557                         ERR_print_errors_fp(stderr);
558                         return (1);
559                     }
560                 } else if (i == 0) {
561                     BIO_printf(bio_err, "SSL SERVER STARTUP FAILED\n");
562                     return (1);
563                 } else {
564                     s_write = 1;
565                     s_w = 1;
566 #ifdef undef
567                     BIO_printf(bio_stdout, "SERVER:from client:");
568                     BIO_write(bio_stdout, sbuf, i);
569                     BIO_flush(bio_stdout);
570 #endif
571                 }
572             } else {
573                 i = BIO_write(s_bio, "hello from server\n", 18);
574                 if (i < 0) {
575                     s_r = 0;
576                     s_w = 0;
577                     if (BIO_should_retry(s_bio)) {
578                         if (BIO_should_read(s_bio))
579                             s_r = 1;
580                         if (BIO_should_write(s_bio))
581                             s_w = 1;
582                     } else {
583                         BIO_printf(bio_err, "ERROR in SERVER\n");
584                         ERR_print_errors_fp(stderr);
585                         return (1);
586                     }
587                 } else if (i == 0) {
588                     BIO_printf(bio_err, "SSL SERVER STARTUP FAILED\n");
589                     return (1);
590                 } else {
591                     s_write = 0;
592                     s_r = 1;
593                     done |= S_DONE;
594                 }
595             }
596         }
597
598         if ((done & S_DONE) && (done & C_DONE))
599             break;
600 #if defined(OPENSSL_SYS_NETWARE)
601         ThreadSwitchWithDelay();
602 #endif
603     }
604
605     SSL_set_shutdown(c_ssl, SSL_SENT_SHUTDOWN | SSL_RECEIVED_SHUTDOWN);
606     SSL_set_shutdown(s_ssl, SSL_SENT_SHUTDOWN | SSL_RECEIVED_SHUTDOWN);
607
608 #ifdef undef
609     BIO_printf(bio_stdout, "DONE\n");
610 #endif
611  err:
612     /*
613      * We have to set the BIO's to NULL otherwise they will be free()ed
614      * twice.  Once when th s_ssl is SSL_free()ed and again when c_ssl is
615      * SSL_free()ed. This is a hack required because s_ssl and c_ssl are
616      * sharing the same BIO structure and SSL_set_bio() and SSL_free()
617      * automatically BIO_free non NULL entries. You should not normally do
618      * this or be required to do this
619      */
620
621     if (s_ssl != NULL) {
622         s_ssl->rbio = NULL;
623         s_ssl->wbio = NULL;
624     }
625     if (c_ssl != NULL) {
626         c_ssl->rbio = NULL;
627         c_ssl->wbio = NULL;
628     }
629
630     /* The SSL's are optionally freed in the following calls */
631     if (c_to_s != NULL)
632         BIO_free(c_to_s);
633     if (s_to_c != NULL)
634         BIO_free(s_to_c);
635
636     if (c_bio != NULL)
637         BIO_free(c_bio);
638     if (s_bio != NULL)
639         BIO_free(s_bio);
640     return (0);
641 }
642
643 int verify_callback(int ok, X509_STORE_CTX *ctx)
644 {
645     char *s, buf[256];
646
647     if (verbose) {
648         s = X509_NAME_oneline(X509_get_subject_name(ctx->current_cert),
649                               buf, 256);
650         if (s != NULL) {
651             if (ok)
652                 BIO_printf(bio_err, "depth=%d %s\n", ctx->error_depth, buf);
653             else
654                 BIO_printf(bio_err, "depth=%d error=%d %s\n",
655                         ctx->error_depth, ctx->error, buf);
656         }
657     }
658     return (ok);
659 }
660
661 #define THREAD_STACK_SIZE (16*1024)
662
663 #ifdef OPENSSL_SYS_WIN32
664
665 static HANDLE *lock_cs;
666
667 void thread_setup(void)
668 {
669     int i;
670
671     lock_cs = OPENSSL_malloc(CRYPTO_num_locks() * sizeof(HANDLE));
672     for (i = 0; i < CRYPTO_num_locks(); i++) {
673         lock_cs[i] = CreateMutex(NULL, FALSE, NULL);
674     }
675
676     CRYPTO_set_locking_callback((void (*)(int, int, char *, int))
677                                 win32_locking_callback);
678     /* id callback defined */
679 }
680
681 void thread_cleanup(void)
682 {
683     int i;
684
685     CRYPTO_set_locking_callback(NULL);
686     for (i = 0; i < CRYPTO_num_locks(); i++)
687         CloseHandle(lock_cs[i]);
688     OPENSSL_free(lock_cs);
689 }
690
691 void win32_locking_callback(int mode, int type, const char *file, int line)
692 {
693     if (mode & CRYPTO_LOCK) {
694         WaitForSingleObject(lock_cs[type], INFINITE);
695     } else {
696         ReleaseMutex(lock_cs[type]);
697     }
698 }
699
700 void do_threads(SSL_CTX *s_ctx, SSL_CTX *c_ctx)
701 {
702     double ret;
703     SSL_CTX *ssl_ctx[2];
704     DWORD thread_id[MAX_THREAD_NUMBER];
705     HANDLE thread_handle[MAX_THREAD_NUMBER];
706     int i;
707     SYSTEMTIME start, end;
708
709     ssl_ctx[0] = s_ctx;
710     ssl_ctx[1] = c_ctx;
711
712     GetSystemTime(&start);
713     for (i = 0; i < thread_number; i++) {
714         thread_handle[i] = CreateThread(NULL,
715                                         THREAD_STACK_SIZE,
716                                         (LPTHREAD_START_ROUTINE) ndoit,
717                                         (void *)ssl_ctx, 0L, &(thread_id[i]));
718     }
719
720     BIO_printf(bio_stdout, "reaping\n");
721     for (i = 0; i < thread_number; i += 50) {
722         int j;
723
724         j = (thread_number < (i + 50)) ? (thread_number - i) : 50;
725
726         if (WaitForMultipleObjects(j,
727                                    (CONST HANDLE *) & (thread_handle[i]),
728                                    TRUE, INFINITE)
729             == WAIT_FAILED) {
730             BIO_printf(bio_err, "WaitForMultipleObjects failed:%d\n",
731                     GetLastError());
732             exit(1);
733         }
734     }
735     GetSystemTime(&end);
736
737     if (start.wDayOfWeek > end.wDayOfWeek)
738         end.wDayOfWeek += 7;
739     ret = (end.wDayOfWeek - start.wDayOfWeek) * 24;
740
741     ret = (ret + end.wHour - start.wHour) * 60;
742     ret = (ret + end.wMinute - start.wMinute) * 60;
743     ret = (ret + end.wSecond - start.wSecond);
744     ret += (end.wMilliseconds - start.wMilliseconds) / 1000.0;
745
746     BIO_printf(bio_stdout, "win32 threads done - %.3f seconds\n", ret);
747 }
748
749 #endif                          /* OPENSSL_SYS_WIN32 */
750
751 #ifdef SOLARIS
752
753 static mutex_t *lock_cs;
754 /*
755  * static rwlock_t *lock_cs;
756  */
757 static long *lock_count;
758
759 void thread_setup(void)
760 {
761     int i;
762
763     lock_cs = OPENSSL_malloc(CRYPTO_num_locks() * sizeof(mutex_t));
764     lock_count = OPENSSL_malloc(CRYPTO_num_locks() * sizeof(long));
765     for (i = 0; i < CRYPTO_num_locks(); i++) {
766         lock_count[i] = 0;
767         /* rwlock_init(&(lock_cs[i]),USYNC_THREAD,NULL); */
768         mutex_init(&(lock_cs[i]), USYNC_THREAD, NULL);
769     }
770
771     CRYPTO_set_id_callback(solaris_thread_id);
772     CRYPTO_set_locking_callback(solaris_locking_callback);
773 }
774
775 void thread_cleanup(void)
776 {
777     int i;
778
779     CRYPTO_set_locking_callback(NULL);
780
781     BIO_printf(bio_err, "cleanup\n");
782
783     for (i = 0; i < CRYPTO_num_locks(); i++) {
784         /* rwlock_destroy(&(lock_cs[i])); */
785         mutex_destroy(&(lock_cs[i]));
786         BIO_printf(bio_err, "%8ld:%s\n", lock_count[i], CRYPTO_get_lock_name(i));
787     }
788     OPENSSL_free(lock_cs);
789     OPENSSL_free(lock_count);
790
791     BIO_printf(bio_err, "done cleanup\n");
792
793 }
794
795 void solaris_locking_callback(int mode, int type, const char *file, int line)
796 {
797 # ifdef undef
798     BIO_printf(bio_err, "thread=%4d mode=%s lock=%s %s:%d\n",
799                CRYPTO_thread_id(),
800                (mode & CRYPTO_LOCK) ? "l" : "u",
801                (type & CRYPTO_READ) ? "r" : "w", file, line);
802 # endif
803
804     /*-
805     if (CRYPTO_LOCK_SSL_CERT == type)
806     BIO_printf(bio_err,"(t,m,f,l) %ld %d %s %d\n",
807                CRYPTO_thread_id(),
808                mode,file,line);
809     */
810     if (mode & CRYPTO_LOCK) {
811         /*-
812         if (mode & CRYPTO_READ)
813                 rw_rdlock(&(lock_cs[type]));
814         else
815                 rw_wrlock(&(lock_cs[type])); */
816
817         mutex_lock(&(lock_cs[type]));
818         lock_count[type]++;
819     } else {
820 /*      rw_unlock(&(lock_cs[type]));  */
821         mutex_unlock(&(lock_cs[type]));
822     }
823 }
824
825 void do_threads(SSL_CTX *s_ctx, SSL_CTX *c_ctx)
826 {
827     SSL_CTX *ssl_ctx[2];
828     thread_t thread_ctx[MAX_THREAD_NUMBER];
829     int i;
830
831     ssl_ctx[0] = s_ctx;
832     ssl_ctx[1] = c_ctx;
833
834     thr_setconcurrency(thread_number);
835     for (i = 0; i < thread_number; i++) {
836         thr_create(NULL, THREAD_STACK_SIZE,
837                    (void *(*)())ndoit, (void *)ssl_ctx, 0L, &(thread_ctx[i]));
838     }
839
840     BIO_printf(bio_stdout, "reaping\n");
841     for (i = 0; i < thread_number; i++) {
842         thr_join(thread_ctx[i], NULL, NULL);
843     }
844
845 #if 0 /* We can't currently find out the reference amount */
846     BIO_printf(bio_stdout, "solaris threads done (%d,%d)\n",
847                s_ctx->references, c_ctx->references);
848 #else
849     BIO_printf(bio_stdout, "solaris threads done\n");
850 #endif
851 }
852
853 void solaris_thread_id(CRYPTO_THREADID *tid)
854 {
855     CRYPTO_THREADID_set_numeric((unsigned long)thr_self());
856 }
857 #endif                          /* SOLARIS */
858
859 #ifdef IRIX
860
861 static usptr_t *arena;
862 static usema_t **lock_cs;
863
864 void thread_setup(void)
865 {
866     int i;
867     char filename[20];
868
869     strcpy(filename, "/tmp/mttest.XXXXXX");
870     mktemp(filename);
871
872     usconfig(CONF_STHREADIOOFF);
873     usconfig(CONF_STHREADMALLOCOFF);
874     usconfig(CONF_INITUSERS, 100);
875     usconfig(CONF_LOCKTYPE, US_DEBUGPLUS);
876     arena = usinit(filename);
877     unlink(filename);
878
879     lock_cs = OPENSSL_malloc(CRYPTO_num_locks() * sizeof(usema_t *));
880     for (i = 0; i < CRYPTO_num_locks(); i++) {
881         lock_cs[i] = usnewsema(arena, 1);
882     }
883
884     CRYPTO_set_id_callback(irix_thread_id);
885     CRYPTO_set_locking_callback(irix_locking_callback);
886 }
887
888 void thread_cleanup(void)
889 {
890     int i;
891
892     CRYPTO_set_locking_callback(NULL);
893     for (i = 0; i < CRYPTO_num_locks(); i++) {
894         char buf[10];
895
896         sprintf(buf, "%2d:", i);
897         usdumpsema(lock_cs[i], stdout, buf);
898         usfreesema(lock_cs[i], arena);
899     }
900     OPENSSL_free(lock_cs);
901 }
902
903 void irix_locking_callback(int mode, int type, const char *file, int line)
904 {
905     if (mode & CRYPTO_LOCK) {
906         BIO_printf(bio_stdout, "lock %d\n", type);
907         uspsema(lock_cs[type]);
908     } else {
909         BIO_printf(bio_stdout, "unlock %d\n", type);
910         usvsema(lock_cs[type]);
911     }
912 }
913
914 void do_threads(SSL_CTX *s_ctx, SSL_CTX *c_ctx)
915 {
916     SSL_CTX *ssl_ctx[2];
917     int thread_ctx[MAX_THREAD_NUMBER];
918     int i;
919
920     ssl_ctx[0] = s_ctx;
921     ssl_ctx[1] = c_ctx;
922
923     for (i = 0; i < thread_number; i++) {
924         thread_ctx[i] = sproc((void (*)())ndoit,
925                               PR_SADDR | PR_SFDS, (void *)ssl_ctx);
926     }
927
928     BIO_printf(bio_stdout, "reaping\n");
929     for (i = 0; i < thread_number; i++) {
930         wait(NULL);
931     }
932
933 #if 0 /* We can't currently find out the reference amount */
934     BIO_printf(bio_stdout, "irix threads done (%d,%d)\n",
935                s_ctx->references, c_ctx->references);
936 #else
937     BIO_printf(bio_stdout, "irix threads done\n");
938 #endif
939 }
940
941 unsigned long irix_thread_id(void)
942 {
943     CRYPTO_THREADID_set_numeric((unsigned long)getpid());
944 }
945 #endif                          /* IRIX */
946
947 #ifdef PTHREADS
948
949 static pthread_mutex_t *lock_cs;
950 static long *lock_count;
951
952 void thread_setup(void)
953 {
954     int i;
955
956     lock_cs = OPENSSL_malloc(CRYPTO_num_locks() * sizeof(pthread_mutex_t));
957     lock_count = OPENSSL_malloc(CRYPTO_num_locks() * sizeof(long));
958     for (i = 0; i < CRYPTO_num_locks(); i++) {
959         lock_count[i] = 0;
960         pthread_mutex_init(&(lock_cs[i]), NULL);
961     }
962
963     CRYPTO_THREADID_set_callback(pthreads_thread_id);
964     CRYPTO_set_locking_callback(pthreads_locking_callback);
965 }
966
967 void thread_cleanup(void)
968 {
969     int i;
970
971     CRYPTO_set_locking_callback(NULL);
972     BIO_printf(bio_err, "cleanup\n");
973     for (i = 0; i < CRYPTO_num_locks(); i++) {
974         pthread_mutex_destroy(&(lock_cs[i]));
975         BIO_printf(bio_err, "%8ld:%s\n", lock_count[i], CRYPTO_get_lock_name(i));
976     }
977     OPENSSL_free(lock_cs);
978     OPENSSL_free(lock_count);
979
980     BIO_printf(bio_err, "done cleanup\n");
981 }
982
983 void pthreads_locking_callback(int mode, int type, const char *file, int line)
984 {
985 # ifdef undef
986     BIO_printf(bio_err, "thread=%4d mode=%s lock=%s %s:%d\n",
987                CRYPTO_thread_id(),
988                (mode & CRYPTO_LOCK) ? "l" : "u",
989                (type & CRYPTO_READ) ? "r" : "w", file, line);
990 # endif
991 /*-
992     if (CRYPTO_LOCK_SSL_CERT == type)
993             BIO_printf(bio_err,"(t,m,f,l) %ld %d %s %d\n",
994                        CRYPTO_thread_id(),
995                        mode,file,line);
996 */
997     if (mode & CRYPTO_LOCK) {
998         pthread_mutex_lock(&(lock_cs[type]));
999         lock_count[type]++;
1000     } else {
1001         pthread_mutex_unlock(&(lock_cs[type]));
1002     }
1003 }
1004
1005 void do_threads(SSL_CTX *s_ctx, SSL_CTX *c_ctx)
1006 {
1007     SSL_CTX *ssl_ctx[2];
1008     pthread_t thread_ctx[MAX_THREAD_NUMBER];
1009     int i;
1010
1011     ssl_ctx[0] = s_ctx;
1012     ssl_ctx[1] = c_ctx;
1013
1014     /*
1015      * thr_setconcurrency(thread_number);
1016      */
1017     for (i = 0; i < thread_number; i++) {
1018         pthread_create(&(thread_ctx[i]), NULL,
1019                        (void *(*)())ndoit, (void *)ssl_ctx);
1020     }
1021
1022     BIO_printf(bio_stdout, "reaping\n");
1023     for (i = 0; i < thread_number; i++) {
1024         pthread_join(thread_ctx[i], NULL);
1025     }
1026
1027 #if 0 /* We can't currently find out the reference amount */
1028     BIO_printf(bio_stdout, "pthreads threads done (%d,%d)\n",
1029                s_ctx->references, c_ctx->references);
1030 #else
1031     BIO_printf(bio_stdout, "pthreads threads done\n");
1032 #endif
1033 }
1034
1035 void pthreads_thread_id(CRYPTO_THREADID *tid)
1036 {
1037     CRYPTO_THREADID_set_numeric(tid, (unsigned long)pthread_self());
1038 }
1039
1040 #endif                          /* PTHREADS */
1041
1042 #ifdef OPENSSL_SYS_NETWARE
1043
1044 void thread_setup(void)
1045 {
1046     int i;
1047
1048     lock_cs = OPENSSL_malloc(CRYPTO_num_locks() * sizeof(MPKMutex));
1049     lock_count = OPENSSL_malloc(CRYPTO_num_locks() * sizeof(long));
1050     for (i = 0; i < CRYPTO_num_locks(); i++) {
1051         lock_count[i] = 0;
1052         lock_cs[i] = MPKMutexAlloc("OpenSSL mutex");
1053     }
1054
1055     ThreadSem = MPKSemaphoreAlloc("OpenSSL mttest semaphore", 0);
1056
1057     CRYPTO_set_id_callback(netware_thread_id);
1058     CRYPTO_set_locking_callback(netware_locking_callback);
1059 }
1060
1061 void thread_cleanup(void)
1062 {
1063     int i;
1064
1065     CRYPTO_set_locking_callback(NULL);
1066
1067     BIO_printf(bio_stdout, "thread_cleanup\n");
1068
1069     for (i = 0; i < CRYPTO_num_locks(); i++) {
1070         MPKMutexFree(lock_cs[i]);
1071         BIO_printf(bio_stdout, "%8ld:%s\n", lock_count[i], CRYPTO_get_lock_name(i));
1072     }
1073     OPENSSL_free(lock_cs);
1074     OPENSSL_free(lock_count);
1075
1076     MPKSemaphoreFree(ThreadSem);
1077
1078     BIO_printf(bio_stdout, "done cleanup\n");
1079 }
1080
1081 void netware_locking_callback(int mode, int type, const char *file, int line)
1082 {
1083     if (mode & CRYPTO_LOCK) {
1084         MPKMutexLock(lock_cs[type]);
1085         lock_count[type]++;
1086     } else
1087         MPKMutexUnlock(lock_cs[type]);
1088 }
1089
1090 void do_threads(SSL_CTX *s_ctx, SSL_CTX *c_ctx)
1091 {
1092     SSL_CTX *ssl_ctx[2];
1093     int i;
1094     ssl_ctx[0] = s_ctx;
1095     ssl_ctx[1] = c_ctx;
1096
1097     for (i = 0; i < thread_number; i++) {
1098         BeginThread((void (*)(void *))ndoit, NULL, THREAD_STACK_SIZE,
1099                     (void *)ssl_ctx);
1100         ThreadSwitchWithDelay();
1101     }
1102
1103     BIO_printf(bio_stdout, "reaping\n");
1104
1105     /* loop until all threads have signaled the semaphore */
1106     for (i = 0; i < thread_number; i++) {
1107         MPKSemaphoreWait(ThreadSem);
1108     }
1109 #if 0 /* We can't currently find out the reference amount */
1110     BIO_printf(bio_stdout, "netware threads done (%d,%d)\n",
1111                s_ctx->references, c_ctx->references);
1112 #else
1113     BIO_printf(bio_stdout, "netware threads done\n");
1114 #endif
1115 }
1116
1117 unsigned long netware_thread_id(void)
1118 {
1119     CRYPTO_THREADID_set_numeric((unsigned long)GetThreadID());
1120 }
1121 #endif                          /* NETWARE */
1122
1123 #ifdef BEOS_THREADS
1124
1125 # include <Locker.h>
1126
1127 static BLocker **lock_cs;
1128 static long *lock_count;
1129
1130 void thread_setup(void)
1131 {
1132     int i;
1133
1134     lock_cs =
1135         (BLocker **) OPENSSL_malloc(CRYPTO_num_locks() * sizeof(BLocker *));
1136     lock_count = (long *)OPENSSL_malloc(CRYPTO_num_locks() * sizeof(long));
1137     for (i = 0; i < CRYPTO_num_locks(); i++) {
1138         lock_count[i] = 0;
1139         lock_cs[i] = new BLocker(CRYPTO_get_lock_name(i));
1140     }
1141
1142     CRYPTO_set_id_callback((unsigned long (*)())beos_thread_id);
1143     CRYPTO_set_locking_callback(beos_locking_callback);
1144 }
1145
1146 void thread_cleanup(void)
1147 {
1148     int i;
1149
1150     CRYPTO_set_locking_callback(NULL);
1151     BIO_printf(bio_err, "cleanup\n");
1152     for (i = 0; i < CRYPTO_num_locks(); i++) {
1153         delete lock_cs[i];
1154         BIO_printf(bio_err, "%8ld:%s\n", lock_count[i], CRYPTO_get_lock_name(i));
1155     }
1156     OPENSSL_free(lock_cs);
1157     OPENSSL_free(lock_count);
1158
1159     BIO_printf(bio_err, "done cleanup\n");
1160 }
1161
1162 void beos_locking_callback(int mode, int type, const char *file, int line)
1163 {
1164 # if 0
1165     BIO_printf(bio_err, "thread=%4d mode=%s lock=%s %s:%d\n",
1166                CRYPTO_thread_id(),
1167                (mode & CRYPTO_LOCK) ? "l" : "u",
1168                (type & CRYPTO_READ) ? "r" : "w", file, line);
1169 # endif
1170     if (mode & CRYPTO_LOCK) {
1171         lock_cs[type]->Lock();
1172         lock_count[type]++;
1173     } else {
1174         lock_cs[type]->Unlock();
1175     }
1176 }
1177
1178 void do_threads(SSL_CTX *s_ctx, SSL_CTX *c_ctx)
1179 {
1180     SSL_CTX *ssl_ctx[2];
1181     thread_id thread_ctx[MAX_THREAD_NUMBER];
1182     int i;
1183
1184     ssl_ctx[0] = s_ctx;
1185     ssl_ctx[1] = c_ctx;
1186
1187     for (i = 0; i < thread_number; i++) {
1188         thread_ctx[i] = spawn_thread((thread_func) ndoit,
1189                                      NULL, B_NORMAL_PRIORITY,
1190                                      (void *)ssl_ctx);
1191         resume_thread(thread_ctx[i]);
1192     }
1193
1194     BIO_printf(bio_stdout, "waiting...\n");
1195     for (i = 0; i < thread_number; i++) {
1196         status_t result;
1197         wait_for_thread(thread_ctx[i], &result);
1198     }
1199
1200     BIO_printf(bio_stdout, "beos threads done (%d,%d)\n",
1201                s_ctx->references, c_ctx->references);
1202 }
1203
1204 unsigned long beos_thread_id(void)
1205 {
1206     unsigned long ret;
1207
1208     ret = (unsigned long)find_thread(NULL);
1209     return (ret);
1210 }
1211
1212 #endif                          /* BEOS_THREADS */