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