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