test-gendsa: Add test cases with FIPS provider
[openssl.git] / test / ssl_old_test.c
1 /*
2  * Copyright 1995-2020 The OpenSSL Project Authors. All Rights Reserved.
3  * Copyright (c) 2002, Oracle and/or its affiliates. All rights reserved
4  * Copyright 2005 Nokia. All rights reserved.
5  *
6  * Licensed under the Apache License 2.0 (the "License").  You may not use
7  * this file except in compliance with the License.  You can obtain a copy
8  * in the file LICENSE in the source distribution or at
9  * https://www.openssl.org/source/license.html
10  */
11
12 #include "e_os.h"
13
14 /* Or gethostname won't be declared properly on Linux and GNU platforms. */
15 #ifndef _BSD_SOURCE
16 # define _BSD_SOURCE 1
17 #endif
18 #ifndef _DEFAULT_SOURCE
19 # define _DEFAULT_SOURCE 1
20 #endif
21
22 #include <assert.h>
23 #include <errno.h>
24 #include <limits.h>
25 #include <stdio.h>
26 #include <stdlib.h>
27 #include <string.h>
28 #include <time.h>
29
30 #include "internal/nelem.h"
31
32 #ifdef OPENSSL_SYS_VMS
33 /*
34  * Or isascii won't be declared properly on VMS (at least with DECompHP C).
35  */
36 # define _XOPEN_SOURCE 500
37 #endif
38
39 #include <ctype.h>
40
41 #include <openssl/bio.h>
42 #include <openssl/crypto.h>
43 #include <openssl/evp.h>
44 #include <openssl/x509.h>
45 #include <openssl/x509v3.h>
46 #include <openssl/ssl.h>
47 #include <openssl/err.h>
48 #include <openssl/rand.h>
49 #include <openssl/rsa.h>
50 #ifndef OPENSSL_NO_DSA
51 # include <openssl/dsa.h>
52 #endif
53 #include <openssl/bn.h>
54 #ifndef OPENSSL_NO_CT
55 # include <openssl/ct.h>
56 #endif
57 #include <openssl/provider.h>
58 #include "testutil.h"
59
60 /*
61  * Or gethostname won't be declared properly
62  * on Compaq platforms (at least with DEC C).
63  * Do not try to put it earlier, or IPv6 includes
64  * get screwed...
65  */
66 #define _XOPEN_SOURCE_EXTENDED  1
67
68 #ifdef OPENSSL_SYS_WINDOWS
69 # include <winsock.h>
70 #else
71 # include <unistd.h>
72 #endif
73
74 #include "helpers/predefined_dhparams.h"
75
76 static SSL_CTX *s_ctx = NULL;
77 static SSL_CTX *s_ctx2 = NULL;
78
79 /*
80  * There is really no standard for this, so let's assign something
81  * only for this test
82  */
83 #define COMP_ZLIB       1
84
85 static int verify_callback(int ok, X509_STORE_CTX *ctx);
86 static int app_verify_callback(X509_STORE_CTX *ctx, void *arg);
87 #define APP_CALLBACK_STRING "Test Callback Argument"
88 struct app_verify_arg {
89     char *string;
90     int app_verify;
91 };
92
93 static char *psk_key = NULL;    /* by default PSK is not used */
94 #ifndef OPENSSL_NO_PSK
95 static unsigned int psk_client_callback(SSL *ssl, const char *hint,
96                                         char *identity,
97                                         unsigned int max_identity_len,
98                                         unsigned char *psk,
99                                         unsigned int max_psk_len);
100 static unsigned int psk_server_callback(SSL *ssl, const char *identity,
101                                         unsigned char *psk,
102                                         unsigned int max_psk_len);
103 #endif
104
105 static BIO *bio_stdout = NULL;
106
107 #ifndef OPENSSL_NO_NEXTPROTONEG
108 /* Note that this code assumes that this is only a one element list: */
109 static const char NEXT_PROTO_STRING[] = "\x09testproto";
110 static int npn_client = 0;
111 static int npn_server = 0;
112 static int npn_server_reject = 0;
113
114 static int cb_client_npn(SSL *s, unsigned char **out, unsigned char *outlen,
115                          const unsigned char *in, unsigned int inlen,
116                          void *arg)
117 {
118     /*
119      * This callback only returns the protocol string, rather than a length
120      * prefixed set. We assume that NEXT_PROTO_STRING is a one element list
121      * and remove the first byte to chop off the length prefix.
122      */
123     *out = (unsigned char *)NEXT_PROTO_STRING + 1;
124     *outlen = sizeof(NEXT_PROTO_STRING) - 2;
125     return SSL_TLSEXT_ERR_OK;
126 }
127
128 static int cb_server_npn(SSL *s, const unsigned char **data,
129                          unsigned int *len, void *arg)
130 {
131     *data = (const unsigned char *)NEXT_PROTO_STRING;
132     *len = sizeof(NEXT_PROTO_STRING) - 1;
133     return SSL_TLSEXT_ERR_OK;
134 }
135
136 static int cb_server_rejects_npn(SSL *s, const unsigned char **data,
137                                  unsigned int *len, void *arg)
138 {
139     return SSL_TLSEXT_ERR_NOACK;
140 }
141
142 static int verify_npn(SSL *client, SSL *server)
143 {
144     const unsigned char *client_s;
145     unsigned client_len;
146     const unsigned char *server_s;
147     unsigned server_len;
148
149     SSL_get0_next_proto_negotiated(client, &client_s, &client_len);
150     SSL_get0_next_proto_negotiated(server, &server_s, &server_len);
151
152     if (client_len) {
153         BIO_printf(bio_stdout, "Client NPN: ");
154         BIO_write(bio_stdout, client_s, client_len);
155         BIO_printf(bio_stdout, "\n");
156     }
157
158     if (server_len) {
159         BIO_printf(bio_stdout, "Server NPN: ");
160         BIO_write(bio_stdout, server_s, server_len);
161         BIO_printf(bio_stdout, "\n");
162     }
163
164     /*
165      * If an NPN string was returned, it must be the protocol that we
166      * expected to negotiate.
167      */
168     if (client_len && (client_len != sizeof(NEXT_PROTO_STRING) - 2 ||
169                        memcmp(client_s, NEXT_PROTO_STRING + 1, client_len)))
170         return -1;
171     if (server_len && (server_len != sizeof(NEXT_PROTO_STRING) - 2 ||
172                        memcmp(server_s, NEXT_PROTO_STRING + 1, server_len)))
173         return -1;
174
175     if (!npn_client && client_len)
176         return -1;
177     if (!npn_server && server_len)
178         return -1;
179     if (npn_server_reject && server_len)
180         return -1;
181     if (npn_client && npn_server && (!client_len || !server_len))
182         return -1;
183
184     return 0;
185 }
186 #endif
187
188 static const char *alpn_client;
189 static char *alpn_server;
190 static char *alpn_server2;
191 static const char *alpn_expected;
192 static unsigned char *alpn_selected;
193 static const char *server_min_proto;
194 static const char *server_max_proto;
195 static const char *client_min_proto;
196 static const char *client_max_proto;
197 static const char *should_negotiate;
198 static const char *sn_client;
199 static const char *sn_server1;
200 static const char *sn_server2;
201 static int sn_expect = 0;
202 static const char *server_sess_out;
203 static const char *server_sess_in;
204 static const char *client_sess_out;
205 static const char *client_sess_in;
206 static SSL_SESSION *server_sess;
207 static SSL_SESSION *client_sess;
208
209 static int servername_cb(SSL *s, int *ad, void *arg)
210 {
211     const char *servername = SSL_get_servername(s, TLSEXT_NAMETYPE_host_name);
212     if (sn_server2 == NULL) {
213         BIO_printf(bio_stdout, "Servername 2 is NULL\n");
214         return SSL_TLSEXT_ERR_NOACK;
215     }
216
217     if (servername) {
218         if (s_ctx2 != NULL && sn_server2 != NULL &&
219             !strcasecmp(servername, sn_server2)) {
220             BIO_printf(bio_stdout, "Switching server context.\n");
221             SSL_set_SSL_CTX(s, s_ctx2);
222         }
223     }
224     return SSL_TLSEXT_ERR_OK;
225 }
226 static int verify_servername(SSL *client, SSL *server)
227 {
228     /* just need to see if sn_context is what we expect */
229     SSL_CTX* ctx = SSL_get_SSL_CTX(server);
230     if (sn_expect == 0)
231         return 0;
232     if (sn_expect == 1 && ctx == s_ctx)
233         return 0;
234     if (sn_expect == 2 && ctx == s_ctx2)
235         return 0;
236     BIO_printf(bio_stdout, "Servername: expected context %d\n", sn_expect);
237     if (ctx == s_ctx2)
238         BIO_printf(bio_stdout, "Servername: context is 2\n");
239     else if (ctx == s_ctx)
240         BIO_printf(bio_stdout, "Servername: context is 1\n");
241     else
242         BIO_printf(bio_stdout, "Servername: context is unknown\n");
243     return -1;
244 }
245
246
247 /*-
248  * next_protos_parse parses a comma separated list of strings into a string
249  * in a format suitable for passing to SSL_CTX_set_next_protos_advertised.
250  *   outlen: (output) set to the length of the resulting buffer on success.
251  *   in: a NUL terminated string like "abc,def,ghi"
252  *
253  *   returns: a malloced buffer or NULL on failure.
254  */
255 static unsigned char *next_protos_parse(size_t *outlen,
256                                         const char *in)
257 {
258     size_t len;
259     unsigned char *out;
260     size_t i, start = 0;
261
262     len = strlen(in);
263     if (len >= 65535)
264         return NULL;
265
266     out = OPENSSL_malloc(strlen(in) + 1);
267     if (!out)
268         return NULL;
269
270     for (i = 0; i <= len; ++i) {
271         if (i == len || in[i] == ',') {
272             if (i - start > 255) {
273                 OPENSSL_free(out);
274                 return NULL;
275             }
276             out[start] = (unsigned char)(i - start);
277             start = i + 1;
278         } else
279             out[i + 1] = in[i];
280     }
281
282     *outlen = len + 1;
283     return out;
284 }
285
286 static int cb_server_alpn(SSL *s, const unsigned char **out,
287                           unsigned char *outlen, const unsigned char *in,
288                           unsigned int inlen, void *arg)
289 {
290     unsigned char *protos;
291     size_t protos_len;
292     char* alpn_str = arg;
293
294     protos = next_protos_parse(&protos_len, alpn_str);
295     if (protos == NULL) {
296         fprintf(stderr, "failed to parser ALPN server protocol string: %s\n",
297                 alpn_str);
298         abort();
299     }
300
301     if (SSL_select_next_proto
302         ((unsigned char **)out, outlen, protos, protos_len, in,
303          inlen) != OPENSSL_NPN_NEGOTIATED) {
304         OPENSSL_free(protos);
305         return SSL_TLSEXT_ERR_NOACK;
306     }
307
308     /*
309      * Make a copy of the selected protocol which will be freed in
310      * verify_alpn.
311      */
312     alpn_selected = OPENSSL_malloc(*outlen);
313     memcpy(alpn_selected, *out, *outlen);
314     *out = alpn_selected;
315
316     OPENSSL_free(protos);
317     return SSL_TLSEXT_ERR_OK;
318 }
319
320 static int verify_alpn(SSL *client, SSL *server)
321 {
322     const unsigned char *client_proto, *server_proto;
323     unsigned int client_proto_len = 0, server_proto_len = 0;
324     SSL_get0_alpn_selected(client, &client_proto, &client_proto_len);
325     SSL_get0_alpn_selected(server, &server_proto, &server_proto_len);
326
327     OPENSSL_free(alpn_selected);
328     alpn_selected = NULL;
329
330     if (client_proto_len != server_proto_len) {
331         BIO_printf(bio_stdout, "ALPN selected protocols differ!\n");
332         goto err;
333     }
334
335     if (client_proto != NULL &&
336         memcmp(client_proto, server_proto, client_proto_len) != 0) {
337         BIO_printf(bio_stdout, "ALPN selected protocols differ!\n");
338         goto err;
339     }
340
341     if (client_proto_len > 0 && alpn_expected == NULL) {
342         BIO_printf(bio_stdout, "ALPN unexpectedly negotiated\n");
343         goto err;
344     }
345
346     if (alpn_expected != NULL &&
347         (client_proto_len != strlen(alpn_expected) ||
348          memcmp(client_proto, alpn_expected, client_proto_len) != 0)) {
349         BIO_printf(bio_stdout,
350                    "ALPN selected protocols not equal to expected protocol: %s\n",
351                    alpn_expected);
352         goto err;
353     }
354
355     return 0;
356
357  err:
358     BIO_printf(bio_stdout, "ALPN results: client: '");
359     BIO_write(bio_stdout, client_proto, client_proto_len);
360     BIO_printf(bio_stdout, "', server: '");
361     BIO_write(bio_stdout, server_proto, server_proto_len);
362     BIO_printf(bio_stdout, "'\n");
363     BIO_printf(bio_stdout, "ALPN configured: client: '%s', server: '",
364                    alpn_client);
365     if (SSL_get_SSL_CTX(server) == s_ctx2) {
366         BIO_printf(bio_stdout, "%s'\n",
367                    alpn_server2);
368     } else {
369         BIO_printf(bio_stdout, "%s'\n",
370                    alpn_server);
371     }
372     return -1;
373 }
374
375 /*
376  * WARNING : below extension types are *NOT* IETF assigned, and could
377  * conflict if these types are reassigned and handled specially by OpenSSL
378  * in the future
379  */
380 #define TACK_EXT_TYPE 62208
381 #define CUSTOM_EXT_TYPE_0 1000
382 #define CUSTOM_EXT_TYPE_1 1001
383 #define CUSTOM_EXT_TYPE_2 1002
384 #define CUSTOM_EXT_TYPE_3 1003
385
386 static const char custom_ext_cli_string[] = "abc";
387 static const char custom_ext_srv_string[] = "defg";
388
389 /* These set from cmdline */
390 static char *serverinfo_file = NULL;
391 static int serverinfo_sct = 0;
392 static int serverinfo_tack = 0;
393
394 /* These set based on extension callbacks */
395 static int serverinfo_sct_seen = 0;
396 static int serverinfo_tack_seen = 0;
397 static int serverinfo_other_seen = 0;
398
399 /* This set from cmdline */
400 static int custom_ext = 0;
401
402 /* This set based on extension callbacks */
403 static int custom_ext_error = 0;
404
405 static int serverinfo_cli_parse_cb(SSL *s, unsigned int ext_type,
406                                    const unsigned char *in, size_t inlen,
407                                    int *al, void *arg)
408 {
409     if (ext_type == TLSEXT_TYPE_signed_certificate_timestamp)
410         serverinfo_sct_seen++;
411     else if (ext_type == TACK_EXT_TYPE)
412         serverinfo_tack_seen++;
413     else
414         serverinfo_other_seen++;
415     return 1;
416 }
417
418 static int verify_serverinfo(void)
419 {
420     if (serverinfo_sct != serverinfo_sct_seen)
421         return -1;
422     if (serverinfo_tack != serverinfo_tack_seen)
423         return -1;
424     if (serverinfo_other_seen)
425         return -1;
426     return 0;
427 }
428
429 /*-
430  * Four test cases for custom extensions:
431  * 0 - no ClientHello extension or ServerHello response
432  * 1 - ClientHello with "abc", no response
433  * 2 - ClientHello with "abc", empty response
434  * 3 - ClientHello with "abc", "defg" response
435  */
436
437 static int custom_ext_0_cli_add_cb(SSL *s, unsigned int ext_type,
438                                    const unsigned char **out,
439                                    size_t *outlen, int *al, void *arg)
440 {
441     if (ext_type != CUSTOM_EXT_TYPE_0)
442         custom_ext_error = 1;
443     return 0;                   /* Don't send an extension */
444 }
445
446 static int custom_ext_0_cli_parse_cb(SSL *s, unsigned int ext_type,
447                                      const unsigned char *in,
448                                      size_t inlen, int *al, void *arg)
449 {
450     return 1;
451 }
452
453 static int custom_ext_1_cli_add_cb(SSL *s, unsigned int ext_type,
454                                    const unsigned char **out,
455                                    size_t *outlen, int *al, void *arg)
456 {
457     if (ext_type != CUSTOM_EXT_TYPE_1)
458         custom_ext_error = 1;
459     *out = (const unsigned char *)custom_ext_cli_string;
460     *outlen = strlen(custom_ext_cli_string);
461     return 1;                   /* Send "abc" */
462 }
463
464 static int custom_ext_1_cli_parse_cb(SSL *s, unsigned int ext_type,
465                                      const unsigned char *in,
466                                      size_t inlen, int *al, void *arg)
467 {
468     return 1;
469 }
470
471 static int custom_ext_2_cli_add_cb(SSL *s, unsigned int ext_type,
472                                    const unsigned char **out,
473                                    size_t *outlen, int *al, void *arg)
474 {
475     if (ext_type != CUSTOM_EXT_TYPE_2)
476         custom_ext_error = 1;
477     *out = (const unsigned char *)custom_ext_cli_string;
478     *outlen = strlen(custom_ext_cli_string);
479     return 1;                   /* Send "abc" */
480 }
481
482 static int custom_ext_2_cli_parse_cb(SSL *s, unsigned int ext_type,
483                                      const unsigned char *in,
484                                      size_t inlen, int *al, void *arg)
485 {
486     if (ext_type != CUSTOM_EXT_TYPE_2)
487         custom_ext_error = 1;
488     if (inlen != 0)
489         custom_ext_error = 1;   /* Should be empty response */
490     return 1;
491 }
492
493 static int custom_ext_3_cli_add_cb(SSL *s, unsigned int ext_type,
494                                    const unsigned char **out,
495                                    size_t *outlen, int *al, void *arg)
496 {
497     if (ext_type != CUSTOM_EXT_TYPE_3)
498         custom_ext_error = 1;
499     *out = (const unsigned char *)custom_ext_cli_string;
500     *outlen = strlen(custom_ext_cli_string);
501     return 1;                   /* Send "abc" */
502 }
503
504 static int custom_ext_3_cli_parse_cb(SSL *s, unsigned int ext_type,
505                                      const unsigned char *in,
506                                      size_t inlen, int *al, void *arg)
507 {
508     if (ext_type != CUSTOM_EXT_TYPE_3)
509         custom_ext_error = 1;
510     if (inlen != strlen(custom_ext_srv_string))
511         custom_ext_error = 1;
512     if (memcmp(custom_ext_srv_string, in, inlen) != 0)
513         custom_ext_error = 1;   /* Check for "defg" */
514     return 1;
515 }
516
517 /*
518  * custom_ext_0_cli_add_cb returns 0 - the server won't receive a callback
519  * for this extension
520  */
521 static int custom_ext_0_srv_parse_cb(SSL *s, unsigned int ext_type,
522                                      const unsigned char *in,
523                                      size_t inlen, int *al, void *arg)
524 {
525     custom_ext_error = 1;
526     return 1;
527 }
528
529 /* 'add' callbacks are only called if the 'parse' callback is called */
530 static int custom_ext_0_srv_add_cb(SSL *s, unsigned int ext_type,
531                                    const unsigned char **out,
532                                    size_t *outlen, int *al, void *arg)
533 {
534     /* Error: should not have been called */
535     custom_ext_error = 1;
536     return 0;                   /* Don't send an extension */
537 }
538
539 static int custom_ext_1_srv_parse_cb(SSL *s, unsigned int ext_type,
540                                      const unsigned char *in,
541                                      size_t inlen, int *al, void *arg)
542 {
543     if (ext_type != CUSTOM_EXT_TYPE_1)
544         custom_ext_error = 1;
545     /* Check for "abc" */
546     if (inlen != strlen(custom_ext_cli_string))
547         custom_ext_error = 1;
548     if (memcmp(in, custom_ext_cli_string, inlen) != 0)
549         custom_ext_error = 1;
550     return 1;
551 }
552
553 static int custom_ext_1_srv_add_cb(SSL *s, unsigned int ext_type,
554                                    const unsigned char **out,
555                                    size_t *outlen, int *al, void *arg)
556 {
557     return 0;                   /* Don't send an extension */
558 }
559
560 static int custom_ext_2_srv_parse_cb(SSL *s, unsigned int ext_type,
561                                      const unsigned char *in,
562                                      size_t inlen, int *al, void *arg)
563 {
564     if (ext_type != CUSTOM_EXT_TYPE_2)
565         custom_ext_error = 1;
566     /* Check for "abc" */
567     if (inlen != strlen(custom_ext_cli_string))
568         custom_ext_error = 1;
569     if (memcmp(in, custom_ext_cli_string, inlen) != 0)
570         custom_ext_error = 1;
571     return 1;
572 }
573
574 static int custom_ext_2_srv_add_cb(SSL *s, unsigned int ext_type,
575                                    const unsigned char **out,
576                                    size_t *outlen, int *al, void *arg)
577 {
578     *out = NULL;
579     *outlen = 0;
580     return 1;                   /* Send empty extension */
581 }
582
583 static int custom_ext_3_srv_parse_cb(SSL *s, unsigned int ext_type,
584                                      const unsigned char *in,
585                                      size_t inlen, int *al, void *arg)
586 {
587     if (ext_type != CUSTOM_EXT_TYPE_3)
588         custom_ext_error = 1;
589     /* Check for "abc" */
590     if (inlen != strlen(custom_ext_cli_string))
591         custom_ext_error = 1;
592     if (memcmp(in, custom_ext_cli_string, inlen) != 0)
593         custom_ext_error = 1;
594     return 1;
595 }
596
597 static int custom_ext_3_srv_add_cb(SSL *s, unsigned int ext_type,
598                                    const unsigned char **out,
599                                    size_t *outlen, int *al, void *arg)
600 {
601     *out = (const unsigned char *)custom_ext_srv_string;
602     *outlen = strlen(custom_ext_srv_string);
603     return 1;                   /* Send "defg" */
604 }
605
606 static char *cipher = NULL;
607 static char *ciphersuites = NULL;
608 static int verbose = 0;
609 static int debug = 0;
610
611 int doit_localhost(SSL *s_ssl, SSL *c_ssl, int family,
612                    long bytes, clock_t *s_time, clock_t *c_time);
613 int doit_biopair(SSL *s_ssl, SSL *c_ssl, long bytes, clock_t *s_time,
614                  clock_t *c_time);
615 int doit(SSL *s_ssl, SSL *c_ssl, long bytes);
616
617 static void sv_usage(void)
618 {
619     fprintf(stderr, "usage: ssltest [args ...]\n");
620     fprintf(stderr, "\n");
621     fprintf(stderr, " -server_auth  - check server certificate\n");
622     fprintf(stderr, " -client_auth  - do client authentication\n");
623     fprintf(stderr, " -v            - more output\n");
624     fprintf(stderr, " -d            - debug output\n");
625     fprintf(stderr, " -reuse        - use session-id reuse\n");
626     fprintf(stderr, " -num <val>    - number of connections to perform\n");
627     fprintf(stderr,
628             " -bytes <val>  - number of bytes to swap between client/server\n");
629 #ifndef OPENSSL_NO_DH
630     fprintf(stderr,
631             " -dhe512       - use 512 bit key for DHE (to test failure)\n");
632     fprintf(stderr,
633             " -dhe1024      - use 1024 bit key (safe prime) for DHE (default, no-op)\n");
634     fprintf(stderr,
635             " -dhe1024dsa   - use 1024 bit key (with 160-bit subprime) for DHE\n");
636 #endif
637     fprintf(stderr, " -no_dhe       - disable DHE\n");
638 #ifndef OPENSSL_NO_EC
639     fprintf(stderr, " -no_ecdhe     - disable ECDHE\nTODO(openssl-team): no_ecdhe was broken by auto ecdh. Make this work again.\n");
640 #endif
641 #ifndef OPENSSL_NO_PSK
642     fprintf(stderr, " -psk arg      - PSK in hex (without 0x)\n");
643 #endif
644 #ifndef OPENSSL_NO_SSL3
645     fprintf(stderr, " -ssl3         - use SSLv3\n");
646 #endif
647 #ifndef OPENSSL_NO_TLS1
648     fprintf(stderr, " -tls1         - use TLSv1\n");
649 #endif
650 #ifndef OPENSSL_NO_DTLS
651     fprintf(stderr, " -dtls         - use DTLS\n");
652 #ifndef OPENSSL_NO_DTLS1
653     fprintf(stderr, " -dtls1        - use DTLSv1\n");
654 #endif
655 #ifndef OPENSSL_NO_DTLS1_2
656     fprintf(stderr, " -dtls12       - use DTLSv1.2\n");
657 #endif
658 #endif
659     fprintf(stderr, " -CApath arg   - PEM format directory of CA's\n");
660     fprintf(stderr, " -CAfile arg   - PEM format file of CA's\n");
661     fprintf(stderr, " -cert arg     - Server certificate file\n");
662     fprintf(stderr,
663             " -key arg      - Server key file (default: same as -cert)\n");
664     fprintf(stderr, " -c_cert arg   - Client certificate file\n");
665     fprintf(stderr,
666             " -c_key arg    - Client key file (default: same as -c_cert)\n");
667     fprintf(stderr, " -cipher arg   - The TLSv1.2 and below cipher list\n");
668     fprintf(stderr, " -ciphersuites arg   - The TLSv1.3 ciphersuites\n");
669     fprintf(stderr, " -bio_pair     - Use BIO pairs\n");
670     fprintf(stderr, " -ipv4         - Use IPv4 connection on localhost\n");
671     fprintf(stderr, " -ipv6         - Use IPv6 connection on localhost\n");
672     fprintf(stderr, " -f            - Test even cases that can't work\n");
673     fprintf(stderr,
674             " -time         - measure processor time used by client and server\n");
675     fprintf(stderr, " -zlib         - use zlib compression\n");
676 #ifndef OPENSSL_NO_NEXTPROTONEG
677     fprintf(stderr, " -npn_client - have client side offer NPN\n");
678     fprintf(stderr, " -npn_server - have server side offer NPN\n");
679     fprintf(stderr, " -npn_server_reject - have server reject NPN\n");
680 #endif
681     fprintf(stderr, " -serverinfo_file file - have server use this file\n");
682     fprintf(stderr, " -serverinfo_sct  - have client offer and expect SCT\n");
683     fprintf(stderr,
684             " -serverinfo_tack - have client offer and expect TACK\n");
685     fprintf(stderr,
686             " -custom_ext - try various custom extension callbacks\n");
687     fprintf(stderr, " -alpn_client <string> - have client side offer ALPN\n");
688     fprintf(stderr, " -alpn_server <string> - have server side offer ALPN\n");
689     fprintf(stderr, " -alpn_server1 <string> - alias for -alpn_server\n");
690     fprintf(stderr, " -alpn_server2 <string> - have server side context 2 offer ALPN\n");
691     fprintf(stderr,
692             " -alpn_expected <string> - the ALPN protocol that should be negotiated\n");
693     fprintf(stderr, " -server_min_proto <string> - Minimum version the server should support\n");
694     fprintf(stderr, " -server_max_proto <string> - Maximum version the server should support\n");
695     fprintf(stderr, " -client_min_proto <string> - Minimum version the client should support\n");
696     fprintf(stderr, " -client_max_proto <string> - Maximum version the client should support\n");
697     fprintf(stderr, " -should_negotiate <string> - The version that should be negotiated, fail-client or fail-server\n");
698 #ifndef OPENSSL_NO_CT
699     fprintf(stderr, " -noct         - no certificate transparency\n");
700     fprintf(stderr, " -requestct    - request certificate transparency\n");
701     fprintf(stderr, " -requirect    - require certificate transparency\n");
702 #endif
703     fprintf(stderr, " -sn_client <string>  - have client request this servername\n");
704     fprintf(stderr, " -sn_server1 <string> - have server context 1 respond to this servername\n");
705     fprintf(stderr, " -sn_server2 <string> - have server context 2 respond to this servername\n");
706     fprintf(stderr, " -sn_expect1          - expected server 1\n");
707     fprintf(stderr, " -sn_expect2          - expected server 2\n");
708     fprintf(stderr, " -server_sess_out <file>    - Save the server session to a file\n");
709     fprintf(stderr, " -server_sess_in <file>     - Read the server session from a file\n");
710     fprintf(stderr, " -client_sess_out <file>    - Save the client session to a file\n");
711     fprintf(stderr, " -client_sess_in <file>     - Read the client session from a file\n");
712     fprintf(stderr, " -should_reuse <number>     - The expected state of reusing the session\n");
713     fprintf(stderr, " -no_ticket    - do not issue TLS session ticket\n");
714     fprintf(stderr, " -provider <name>    - Load the given provider into the library context\n");
715     fprintf(stderr, " -config <cnf>    - Load the given config file into the library context\n");
716 }
717
718 static void print_key_details(BIO *out, EVP_PKEY *key)
719 {
720     int keyid = EVP_PKEY_id(key);
721 #ifndef OPENSSL_NO_EC
722     if (keyid == EVP_PKEY_EC) {
723         EC_KEY *ec = EVP_PKEY_get1_EC_KEY(key);
724         int nid;
725         const char *cname;
726         nid = EC_GROUP_get_curve_name(EC_KEY_get0_group(ec));
727         EC_KEY_free(ec);
728         cname = EC_curve_nid2nist(nid);
729         if (!cname)
730             cname = OBJ_nid2sn(nid);
731         BIO_printf(out, "%d bits EC (%s)", EVP_PKEY_bits(key), cname);
732     } else
733 #endif
734     {
735         const char *algname;
736         switch (keyid) {
737         case EVP_PKEY_RSA:
738             algname = "RSA";
739             break;
740         case EVP_PKEY_DSA:
741             algname = "DSA";
742             break;
743         case EVP_PKEY_DH:
744             algname = "DH";
745             break;
746         default:
747             algname = OBJ_nid2sn(keyid);
748             break;
749         }
750         BIO_printf(out, "%d bits %s", EVP_PKEY_bits(key), algname);
751     }
752 }
753
754 static void print_details(SSL *c_ssl, const char *prefix)
755 {
756     const SSL_CIPHER *ciph;
757     int mdnid;
758     X509 *cert;
759     EVP_PKEY *pkey;
760
761     ciph = SSL_get_current_cipher(c_ssl);
762     BIO_printf(bio_stdout, "%s%s, cipher %s %s",
763                prefix,
764                SSL_get_version(c_ssl),
765                SSL_CIPHER_get_version(ciph), SSL_CIPHER_get_name(ciph));
766     cert = SSL_get0_peer_certificate(c_ssl);
767     if (cert != NULL) {
768         EVP_PKEY* pubkey = X509_get0_pubkey(cert);
769
770         if (pubkey != NULL) {
771             BIO_puts(bio_stdout, ", ");
772             print_key_details(bio_stdout, pubkey);
773         }
774     }
775     if (SSL_get_peer_tmp_key(c_ssl, &pkey)) {
776         BIO_puts(bio_stdout, ", temp key: ");
777         print_key_details(bio_stdout, pkey);
778         EVP_PKEY_free(pkey);
779     }
780     if (SSL_get_peer_signature_nid(c_ssl, &mdnid))
781         BIO_printf(bio_stdout, ", digest=%s", OBJ_nid2sn(mdnid));
782     BIO_printf(bio_stdout, "\n");
783 }
784
785 /*
786  * protocol_from_string - converts a protocol version string to a number
787  *
788  * Returns -1 on failure or the version on success
789  */
790 static int protocol_from_string(const char *value)
791 {
792     struct protocol_versions {
793         const char *name;
794         int version;
795     };
796     static const struct protocol_versions versions[] = {
797         {"ssl3", SSL3_VERSION},
798         {"tls1", TLS1_VERSION},
799         {"tls1.1", TLS1_1_VERSION},
800         {"tls1.2", TLS1_2_VERSION},
801         {"tls1.3", TLS1_3_VERSION},
802         {"dtls1", DTLS1_VERSION},
803         {"dtls1.2", DTLS1_2_VERSION}};
804     size_t i;
805     size_t n = OSSL_NELEM(versions);
806
807     for (i = 0; i < n; i++)
808         if (strcmp(versions[i].name, value) == 0)
809             return versions[i].version;
810     return -1;
811 }
812
813 static SSL_SESSION *read_session(const char *filename)
814 {
815     SSL_SESSION *sess;
816     BIO *f = BIO_new_file(filename, "r");
817
818     if (f == NULL) {
819         BIO_printf(bio_err, "Can't open session file %s\n", filename);
820         ERR_print_errors(bio_err);
821         return NULL;
822     }
823     sess = PEM_read_bio_SSL_SESSION(f, NULL, 0, NULL);
824     if (sess == NULL) {
825         BIO_printf(bio_err, "Can't parse session file %s\n", filename);
826         ERR_print_errors(bio_err);
827     }
828     BIO_free(f);
829     return sess;
830 }
831
832 static int write_session(const char *filename, SSL_SESSION *sess)
833 {
834     BIO *f = BIO_new_file(filename, "w");
835
836     if (sess == NULL) {
837         BIO_printf(bio_err, "No session information\n");
838         return 0;
839     }
840     if (f == NULL) {
841         BIO_printf(bio_err, "Can't open session file %s\n", filename);
842         ERR_print_errors(bio_err);
843         return 0;
844     }
845     PEM_write_bio_SSL_SESSION(f, sess);
846     BIO_free(f);
847     return 1;
848 }
849
850 /*
851  * set_protocol_version - Sets protocol version minimum or maximum
852  *
853  * Returns 0 on failure and 1 on success
854  */
855 static int set_protocol_version(const char *version, SSL *ssl, int setting)
856 {
857     if (version != NULL) {
858         int ver = protocol_from_string(version);
859         if (ver < 0) {
860             BIO_printf(bio_err, "Error parsing: %s\n", version);
861             return 0;
862         }
863         return SSL_ctrl(ssl, setting, ver, NULL);
864     }
865     return 1;
866 }
867
868 int main(int argc, char *argv[])
869 {
870     const char *CApath = NULL, *CAfile = NULL;
871     int badop = 0;
872     enum { BIO_MEM, BIO_PAIR, BIO_IPV4, BIO_IPV6 } bio_type = BIO_MEM;
873     int force = 0;
874     int dtls1 = 0, dtls12 = 0, dtls = 0, tls1 = 0, tls1_2 = 0, ssl3 = 0;
875     int ret = EXIT_FAILURE;
876     int client_auth = 0;
877     int server_auth = 0, i;
878     struct app_verify_arg app_verify_arg =
879         { APP_CALLBACK_STRING, 0 };
880     SSL_CTX *c_ctx = NULL;
881     const SSL_METHOD *meth = NULL;
882     SSL *c_ssl, *s_ssl;
883     int number = 1, reuse = 0;
884     int should_reuse = -1;
885     int no_ticket = 0;
886     long bytes = 256L;
887 #ifndef OPENSSL_NO_DH
888     EVP_PKEY *dhpkey;
889     int dhe512 = 0, dhe1024dsa = 0;
890     int no_dhe = 0;
891 #endif
892     int no_psk = 0;
893     int print_time = 0;
894     clock_t s_time = 0, c_time = 0;
895 #ifndef OPENSSL_NO_COMP
896     int n, comp = 0;
897     COMP_METHOD *cm = NULL;
898     STACK_OF(SSL_COMP) *ssl_comp_methods = NULL;
899 #endif
900     int no_protocol;
901     int min_version = 0, max_version = 0;
902 #ifndef OPENSSL_NO_CT
903     /*
904      * Disable CT validation by default, because it will interfere with
905      * anything using custom extension handlers to deal with SCT extensions.
906      */
907     int ct_validation = 0;
908 #endif
909     SSL_CONF_CTX *s_cctx = NULL, *c_cctx = NULL, *s_cctx2 = NULL;
910     STACK_OF(OPENSSL_STRING) *conf_args = NULL;
911     char *arg = NULL, *argn = NULL;
912     const char *provider = NULL, *config = NULL;
913     OSSL_PROVIDER *thisprov = NULL, *defctxnull = NULL;
914     OSSL_LIB_CTX *libctx = NULL;
915
916     verbose = 0;
917     debug = 0;
918
919     bio_err = BIO_new_fp(stderr, BIO_NOCLOSE | BIO_FP_TEXT);
920     bio_stdout = BIO_new_fp(stdout, BIO_NOCLOSE | BIO_FP_TEXT);
921
922     s_cctx = SSL_CONF_CTX_new();
923     s_cctx2 = SSL_CONF_CTX_new();
924     c_cctx = SSL_CONF_CTX_new();
925
926     if (!s_cctx || !c_cctx || !s_cctx2) {
927         ERR_print_errors(bio_err);
928         goto end;
929     }
930
931     SSL_CONF_CTX_set_flags(s_cctx,
932                            SSL_CONF_FLAG_CMDLINE | SSL_CONF_FLAG_SERVER |
933                            SSL_CONF_FLAG_CERTIFICATE |
934                            SSL_CONF_FLAG_REQUIRE_PRIVATE);
935     SSL_CONF_CTX_set_flags(s_cctx2,
936                            SSL_CONF_FLAG_CMDLINE | SSL_CONF_FLAG_SERVER |
937                            SSL_CONF_FLAG_CERTIFICATE |
938                            SSL_CONF_FLAG_REQUIRE_PRIVATE);
939     if (!SSL_CONF_CTX_set1_prefix(s_cctx, "-s_")) {
940         ERR_print_errors(bio_err);
941         goto end;
942     }
943     if (!SSL_CONF_CTX_set1_prefix(s_cctx2, "-s_")) {
944         ERR_print_errors(bio_err);
945         goto end;
946     }
947
948     SSL_CONF_CTX_set_flags(c_cctx,
949                            SSL_CONF_FLAG_CMDLINE | SSL_CONF_FLAG_CLIENT |
950                            SSL_CONF_FLAG_CERTIFICATE |
951                            SSL_CONF_FLAG_REQUIRE_PRIVATE);
952     if (!SSL_CONF_CTX_set1_prefix(c_cctx, "-c_")) {
953         ERR_print_errors(bio_err);
954         goto end;
955     }
956
957     argc--;
958     argv++;
959
960     while (argc >= 1) {
961         if (strcmp(*argv, "-F") == 0) {
962             fprintf(stderr,
963                     "not compiled with FIPS support, so exiting without running.\n");
964             EXIT(0);
965         } else if (strcmp(*argv, "-server_auth") == 0)
966             server_auth = 1;
967         else if (strcmp(*argv, "-client_auth") == 0)
968             client_auth = 1;
969         else if (strcmp(*argv, "-v") == 0)
970             verbose = 1;
971         else if (strcmp(*argv, "-d") == 0)
972             debug = 1;
973         else if (strcmp(*argv, "-reuse") == 0)
974             reuse = 1;
975         else if (strcmp(*argv, "-no_dhe") == 0)
976 #ifdef OPENSSL_NO_DH
977             /* unused in this case */;
978 #else
979             no_dhe = 1;
980         else if (strcmp(*argv, "-dhe512") == 0)
981             dhe512 = 1;
982         else if (strcmp(*argv, "-dhe1024dsa") == 0)
983             dhe1024dsa = 1;
984 #endif
985         else if (strcmp(*argv, "-no_ecdhe") == 0)
986             /* obsolete */;
987         else if (strcmp(*argv, "-psk") == 0) {
988             if (--argc < 1)
989                 goto bad;
990             psk_key = *(++argv);
991 #ifndef OPENSSL_NO_PSK
992             if (strspn(psk_key, "abcdefABCDEF1234567890") != strlen(psk_key)) {
993                 BIO_printf(bio_err, "Not a hex number '%s'\n", *argv);
994                 goto bad;
995             }
996 #else
997             no_psk = 1;
998 #endif
999         }
1000         else if (strcmp(*argv, "-tls1_2") == 0) {
1001             tls1_2 = 1;
1002         } else if (strcmp(*argv, "-tls1") == 0) {
1003             tls1 = 1;
1004         } else if (strcmp(*argv, "-ssl3") == 0) {
1005             ssl3 = 1;
1006         } else if (strcmp(*argv, "-dtls1") == 0) {
1007             dtls1 = 1;
1008         } else if (strcmp(*argv, "-dtls12") == 0) {
1009             dtls12 = 1;
1010         } else if (strcmp(*argv, "-dtls") == 0) {
1011             dtls = 1;
1012         } else if (strncmp(*argv, "-num", 4) == 0) {
1013             if (--argc < 1)
1014                 goto bad;
1015             number = atoi(*(++argv));
1016             if (number == 0)
1017                 number = 1;
1018         } else if (strcmp(*argv, "-bytes") == 0) {
1019             if (--argc < 1)
1020                 goto bad;
1021             bytes = atol(*(++argv));
1022             if (bytes == 0L)
1023                 bytes = 1L;
1024             i = strlen(argv[0]);
1025             if (argv[0][i - 1] == 'k')
1026                 bytes *= 1024L;
1027             if (argv[0][i - 1] == 'm')
1028                 bytes *= 1024L * 1024L;
1029         } else if (strcmp(*argv, "-cipher") == 0) {
1030             if (--argc < 1)
1031                 goto bad;
1032             cipher = *(++argv);
1033         } else if (strcmp(*argv, "-ciphersuites") == 0) {
1034             if (--argc < 1)
1035                 goto bad;
1036             ciphersuites = *(++argv);
1037         } else if (strcmp(*argv, "-CApath") == 0) {
1038             if (--argc < 1)
1039                 goto bad;
1040             CApath = *(++argv);
1041         } else if (strcmp(*argv, "-CAfile") == 0) {
1042             if (--argc < 1)
1043                 goto bad;
1044             CAfile = *(++argv);
1045         } else if (strcmp(*argv, "-bio_pair") == 0) {
1046             bio_type = BIO_PAIR;
1047         }
1048 #ifndef OPENSSL_NO_SOCK
1049         else if (strcmp(*argv, "-ipv4") == 0) {
1050             bio_type = BIO_IPV4;
1051         } else if (strcmp(*argv, "-ipv6") == 0) {
1052             bio_type = BIO_IPV6;
1053         }
1054 #endif
1055         else if (strcmp(*argv, "-f") == 0) {
1056             force = 1;
1057         } else if (strcmp(*argv, "-time") == 0) {
1058             print_time = 1;
1059         }
1060 #ifndef OPENSSL_NO_CT
1061         else if (strcmp(*argv, "-noct") == 0) {
1062             ct_validation = 0;
1063         }
1064         else if (strcmp(*argv, "-ct") == 0) {
1065             ct_validation = 1;
1066         }
1067 #endif
1068 #ifndef OPENSSL_NO_COMP
1069         else if (strcmp(*argv, "-zlib") == 0) {
1070             comp = COMP_ZLIB;
1071         }
1072 #endif
1073         else if (strcmp(*argv, "-app_verify") == 0) {
1074             app_verify_arg.app_verify = 1;
1075         }
1076 #ifndef OPENSSL_NO_NEXTPROTONEG
1077           else if (strcmp(*argv, "-npn_client") == 0) {
1078             npn_client = 1;
1079         } else if (strcmp(*argv, "-npn_server") == 0) {
1080             npn_server = 1;
1081         } else if (strcmp(*argv, "-npn_server_reject") == 0) {
1082             npn_server_reject = 1;
1083         }
1084 #endif
1085         else if (strcmp(*argv, "-serverinfo_sct") == 0) {
1086             serverinfo_sct = 1;
1087         } else if (strcmp(*argv, "-serverinfo_tack") == 0) {
1088             serverinfo_tack = 1;
1089         } else if (strcmp(*argv, "-serverinfo_file") == 0) {
1090             if (--argc < 1)
1091                 goto bad;
1092             serverinfo_file = *(++argv);
1093         } else if (strcmp(*argv, "-custom_ext") == 0) {
1094             custom_ext = 1;
1095         } else if (strcmp(*argv, "-alpn_client") == 0) {
1096             if (--argc < 1)
1097                 goto bad;
1098             alpn_client = *(++argv);
1099         } else if (strcmp(*argv, "-alpn_server") == 0 ||
1100                    strcmp(*argv, "-alpn_server1") == 0) {
1101             if (--argc < 1)
1102                 goto bad;
1103             alpn_server = *(++argv);
1104         } else if (strcmp(*argv, "-alpn_server2") == 0) {
1105             if (--argc < 1)
1106                 goto bad;
1107             alpn_server2 = *(++argv);
1108         } else if (strcmp(*argv, "-alpn_expected") == 0) {
1109             if (--argc < 1)
1110                 goto bad;
1111             alpn_expected = *(++argv);
1112         } else if (strcmp(*argv, "-server_min_proto") == 0) {
1113             if (--argc < 1)
1114                 goto bad;
1115             server_min_proto = *(++argv);
1116         } else if (strcmp(*argv, "-server_max_proto") == 0) {
1117             if (--argc < 1)
1118                 goto bad;
1119             server_max_proto = *(++argv);
1120         } else if (strcmp(*argv, "-client_min_proto") == 0) {
1121             if (--argc < 1)
1122                 goto bad;
1123             client_min_proto = *(++argv);
1124         } else if (strcmp(*argv, "-client_max_proto") == 0) {
1125             if (--argc < 1)
1126                 goto bad;
1127             client_max_proto = *(++argv);
1128         } else if (strcmp(*argv, "-should_negotiate") == 0) {
1129             if (--argc < 1)
1130                 goto bad;
1131             should_negotiate = *(++argv);
1132         } else if (strcmp(*argv, "-sn_client") == 0) {
1133             if (--argc < 1)
1134                 goto bad;
1135             sn_client = *(++argv);
1136         } else if (strcmp(*argv, "-sn_server1") == 0) {
1137             if (--argc < 1)
1138                 goto bad;
1139             sn_server1 = *(++argv);
1140         } else if (strcmp(*argv, "-sn_server2") == 0) {
1141             if (--argc < 1)
1142                 goto bad;
1143             sn_server2 = *(++argv);
1144         } else if (strcmp(*argv, "-sn_expect1") == 0) {
1145             sn_expect = 1;
1146         } else if (strcmp(*argv, "-sn_expect2") == 0) {
1147             sn_expect = 2;
1148         } else if (strcmp(*argv, "-server_sess_out") == 0) {
1149             if (--argc < 1)
1150                 goto bad;
1151             server_sess_out = *(++argv);
1152         } else if (strcmp(*argv, "-server_sess_in") == 0) {
1153             if (--argc < 1)
1154                 goto bad;
1155             server_sess_in = *(++argv);
1156         } else if (strcmp(*argv, "-client_sess_out") == 0) {
1157             if (--argc < 1)
1158                 goto bad;
1159             client_sess_out = *(++argv);
1160         } else if (strcmp(*argv, "-client_sess_in") == 0) {
1161             if (--argc < 1)
1162                 goto bad;
1163             client_sess_in = *(++argv);
1164         } else if (strcmp(*argv, "-should_reuse") == 0) {
1165             if (--argc < 1)
1166                 goto bad;
1167             should_reuse = !!atoi(*(++argv));
1168         } else if (strcmp(*argv, "-no_ticket") == 0) {
1169             no_ticket = 1;
1170         } else if (strcmp(*argv, "-provider") == 0) {
1171             if (--argc < 1)
1172                 goto bad;
1173             provider = *(++argv);
1174         } else if (strcmp(*argv, "-config") == 0) {
1175             if (--argc < 1)
1176                 goto bad;
1177             config = *(++argv);
1178         } else {
1179             int rv;
1180             arg = argv[0];
1181             argn = argv[1];
1182             /* Try to process command using SSL_CONF */
1183             rv = SSL_CONF_cmd_argv(c_cctx, &argc, &argv);
1184             /* If not processed try server */
1185             if (rv == 0)
1186                 rv = SSL_CONF_cmd_argv(s_cctx, &argc, &argv);
1187             /* Recognised: store it for later use */
1188             if (rv > 0) {
1189                 if (rv == 1)
1190                     argn = NULL;
1191                 if (!conf_args) {
1192                     conf_args = sk_OPENSSL_STRING_new_null();
1193                     if (!conf_args)
1194                         goto end;
1195                 }
1196                 if (!sk_OPENSSL_STRING_push(conf_args, arg))
1197                     goto end;
1198                 if (!sk_OPENSSL_STRING_push(conf_args, argn))
1199                     goto end;
1200                 continue;
1201             }
1202             if (rv == -3)
1203                 BIO_printf(bio_err, "Missing argument for %s\n", arg);
1204             else if (rv < 0)
1205                 BIO_printf(bio_err, "Error with command %s\n", arg);
1206             else if (rv == 0)
1207                 BIO_printf(bio_err, "unknown option %s\n", arg);
1208             badop = 1;
1209             break;
1210         }
1211         argc--;
1212         argv++;
1213     }
1214     if (badop) {
1215  bad:
1216         sv_usage();
1217         goto end;
1218     }
1219
1220     if (ssl3 + tls1 + tls1_2 + dtls + dtls1 + dtls12 > 1) {
1221         fprintf(stderr, "At most one of -ssl3, -tls1, -tls1_2, -dtls, -dtls1 or -dtls12 should "
1222                 "be requested.\n");
1223         EXIT(1);
1224     }
1225
1226 #ifdef OPENSSL_NO_SSL3
1227     if (ssl3)
1228         no_protocol = 1;
1229     else
1230 #endif
1231 #ifdef OPENSSL_NO_TLS1
1232     if (tls1)
1233         no_protocol = 1;
1234     else
1235 #endif
1236 #ifdef OPENSSL_NO_TLS1_2
1237     if (tls1_2)
1238         no_protocol = 1;
1239     else
1240 #endif
1241 #if defined(OPENSSL_NO_DTLS) || defined(OPENSSL_NO_DTLS1)
1242     if (dtls1)
1243         no_protocol = 1;
1244     else
1245 #endif
1246 #if defined(OPENSSL_NO_DTLS) || defined(OPENSSL_NO_DTLS1_2)
1247     if (dtls12)
1248         no_protocol = 1;
1249     else
1250 #endif
1251         no_protocol = 0;
1252
1253     /*
1254      * Testing was requested for a compiled-out protocol (e.g. SSLv3).
1255      * Ideally, we would error out, but the generic test wrapper can't know
1256      * when to expect failure. So we do nothing and return success.
1257      */
1258     if (no_protocol) {
1259         fprintf(stderr, "Testing was requested for a disabled protocol. "
1260                 "Skipping tests.\n");
1261         ret = EXIT_SUCCESS;
1262         goto end;
1263     }
1264
1265     if (!ssl3 && !tls1 && !tls1_2 && !dtls && !dtls1 && !dtls12 && number > 1
1266             && !reuse && !force) {
1267         fprintf(stderr, "This case cannot work.  Use -f to perform "
1268                 "the test anyway (and\n-d to see what happens), "
1269                 "or add one of -ssl3, -tls1, -tls1_2, -dtls, -dtls1, -dtls12, -reuse\n"
1270                 "to avoid protocol mismatch.\n");
1271         EXIT(1);
1272     }
1273
1274     if (print_time) {
1275         if (bio_type != BIO_PAIR) {
1276             fprintf(stderr, "Using BIO pair (-bio_pair)\n");
1277             bio_type = BIO_PAIR;
1278         }
1279         if (number < 50 && !force)
1280             fprintf(stderr,
1281                     "Warning: For accurate timings, use more connections (e.g. -num 1000)\n");
1282     }
1283
1284 #ifndef OPENSSL_NO_COMP
1285     if (comp == COMP_ZLIB)
1286         cm = COMP_zlib();
1287     if (cm != NULL) {
1288         if (COMP_get_type(cm) != NID_undef) {
1289             if (SSL_COMP_add_compression_method(comp, cm) != 0) {
1290                 fprintf(stderr, "Failed to add compression method\n");
1291                 ERR_print_errors_fp(stderr);
1292             }
1293         } else {
1294             fprintf(stderr,
1295                     "Warning: %s compression not supported\n",
1296                     comp == COMP_ZLIB ? "zlib" : "unknown");
1297             ERR_print_errors_fp(stderr);
1298         }
1299     }
1300     ssl_comp_methods = SSL_COMP_get_compression_methods();
1301     n = sk_SSL_COMP_num(ssl_comp_methods);
1302     if (n) {
1303         int j;
1304         printf("Available compression methods:");
1305         for (j = 0; j < n; j++) {
1306             SSL_COMP *c = sk_SSL_COMP_value(ssl_comp_methods, j);
1307             printf("  %s:%d", SSL_COMP_get0_name(c), SSL_COMP_get_id(c));
1308         }
1309         printf("\n");
1310     }
1311 #endif
1312
1313 #ifndef OPENSSL_NO_TLS
1314     meth = TLS_method();
1315     if (ssl3) {
1316         min_version = SSL3_VERSION;
1317         max_version = SSL3_VERSION;
1318     } else if (tls1) {
1319         min_version = TLS1_VERSION;
1320         max_version = TLS1_VERSION;
1321     } else if (tls1_2) {
1322         min_version = TLS1_2_VERSION;
1323         max_version = TLS1_2_VERSION;
1324     } else {
1325         min_version = 0;
1326         max_version = 0;
1327     }
1328 #endif
1329 #ifndef OPENSSL_NO_DTLS
1330     if (dtls || dtls1 || dtls12) {
1331         meth = DTLS_method();
1332         if (dtls1) {
1333             min_version = DTLS1_VERSION;
1334             max_version = DTLS1_VERSION;
1335         } else if (dtls12) {
1336             min_version = DTLS1_2_VERSION;
1337             max_version = DTLS1_2_VERSION;
1338         } else {
1339             min_version = 0;
1340             max_version = 0;
1341         }
1342     }
1343 #endif
1344
1345     if (provider != NULL
1346             && !test_get_libctx(&libctx, &defctxnull, config, &thisprov, provider))
1347         goto end;
1348
1349     c_ctx = SSL_CTX_new_ex(libctx, NULL, meth);
1350     s_ctx = SSL_CTX_new_ex(libctx, NULL, meth);
1351     s_ctx2 = SSL_CTX_new_ex(libctx, NULL, meth); /* no SSL_CTX_dup! */
1352     if ((c_ctx == NULL) || (s_ctx == NULL) || (s_ctx2 == NULL)) {
1353         ERR_print_errors(bio_err);
1354         goto end;
1355     }
1356     /*
1357      * Since we will use low security ciphersuites and keys for testing set
1358      * security level to zero by default. Tests can override this by adding
1359      * "@SECLEVEL=n" to the cipher string.
1360      */
1361     SSL_CTX_set_security_level(c_ctx, 0);
1362     SSL_CTX_set_security_level(s_ctx, 0);
1363     SSL_CTX_set_security_level(s_ctx2, 0);
1364
1365     if (no_ticket) {
1366         SSL_CTX_set_options(c_ctx, SSL_OP_NO_TICKET);
1367         SSL_CTX_set_options(s_ctx, SSL_OP_NO_TICKET);
1368     }
1369
1370     if (SSL_CTX_set_min_proto_version(c_ctx, min_version) == 0)
1371         goto end;
1372     if (SSL_CTX_set_max_proto_version(c_ctx, max_version) == 0)
1373         goto end;
1374     if (SSL_CTX_set_min_proto_version(s_ctx, min_version) == 0)
1375         goto end;
1376     if (SSL_CTX_set_max_proto_version(s_ctx, max_version) == 0)
1377         goto end;
1378
1379     if (cipher != NULL) {
1380         if (strcmp(cipher, "") == 0) {
1381             if (!SSL_CTX_set_cipher_list(c_ctx, cipher)) {
1382                 if (ERR_GET_REASON(ERR_peek_error()) == SSL_R_NO_CIPHER_MATCH) {
1383                     ERR_clear_error();
1384                 } else {
1385                     ERR_print_errors(bio_err);
1386                     goto end;
1387                 }
1388             } else {
1389                 /* Should have failed when clearing all TLSv1.2 ciphers. */
1390                 fprintf(stderr, "CLEARING ALL TLSv1.2 CIPHERS SHOULD FAIL\n");
1391                 goto end;
1392             }
1393
1394             if (!SSL_CTX_set_cipher_list(s_ctx, cipher)) {
1395                 if (ERR_GET_REASON(ERR_peek_error()) == SSL_R_NO_CIPHER_MATCH) {
1396                     ERR_clear_error();
1397                 } else {
1398                     ERR_print_errors(bio_err);
1399                     goto end;
1400                 }
1401             } else {
1402                 /* Should have failed when clearing all TLSv1.2 ciphers. */
1403                 fprintf(stderr, "CLEARING ALL TLSv1.2 CIPHERS SHOULD FAIL\n");
1404                 goto end;
1405             }
1406
1407             if (!SSL_CTX_set_cipher_list(s_ctx2, cipher)) {
1408                 if (ERR_GET_REASON(ERR_peek_error()) == SSL_R_NO_CIPHER_MATCH) {
1409                     ERR_clear_error();
1410                 } else {
1411                     ERR_print_errors(bio_err);
1412                     goto end;
1413                 }
1414             } else {
1415                 /* Should have failed when clearing all TLSv1.2 ciphers. */
1416                 fprintf(stderr, "CLEARING ALL TLSv1.2 CIPHERS SHOULD FAIL\n");
1417                 goto end;
1418             }
1419         } else {
1420             if (!SSL_CTX_set_cipher_list(c_ctx, cipher)
1421                     || !SSL_CTX_set_cipher_list(s_ctx, cipher)
1422                     || !SSL_CTX_set_cipher_list(s_ctx2, cipher)) {
1423                 ERR_print_errors(bio_err);
1424                 goto end;
1425             }
1426         }
1427     }
1428     if (ciphersuites != NULL) {
1429         if (!SSL_CTX_set_ciphersuites(c_ctx, ciphersuites)
1430             || !SSL_CTX_set_ciphersuites(s_ctx, ciphersuites)
1431             || !SSL_CTX_set_ciphersuites(s_ctx2, ciphersuites)) {
1432             ERR_print_errors(bio_err);
1433             goto end;
1434         }
1435     }
1436
1437 #ifndef OPENSSL_NO_CT
1438     if (ct_validation &&
1439         !SSL_CTX_enable_ct(c_ctx, SSL_CT_VALIDATION_STRICT)) {
1440         ERR_print_errors(bio_err);
1441         goto end;
1442     }
1443 #endif
1444
1445     /* Process SSL_CONF arguments */
1446     SSL_CONF_CTX_set_ssl_ctx(c_cctx, c_ctx);
1447     SSL_CONF_CTX_set_ssl_ctx(s_cctx, s_ctx);
1448     SSL_CONF_CTX_set_ssl_ctx(s_cctx2, s_ctx2);
1449
1450     for (i = 0; i < sk_OPENSSL_STRING_num(conf_args); i += 2) {
1451         int rv;
1452         arg = sk_OPENSSL_STRING_value(conf_args, i);
1453         argn = sk_OPENSSL_STRING_value(conf_args, i + 1);
1454         rv = SSL_CONF_cmd(c_cctx, arg, argn);
1455         /* If not recognised use server context */
1456         if (rv == -2) {
1457             rv = SSL_CONF_cmd(s_cctx2, arg, argn);
1458             if (rv > 0)
1459                 rv = SSL_CONF_cmd(s_cctx, arg, argn);
1460         }
1461         if (rv <= 0) {
1462             BIO_printf(bio_err, "Error processing %s %s\n",
1463                        arg, argn ? argn : "");
1464             ERR_print_errors(bio_err);
1465             goto end;
1466         }
1467     }
1468
1469     if (!SSL_CONF_CTX_finish(s_cctx) || !SSL_CONF_CTX_finish(c_cctx) || !SSL_CONF_CTX_finish(s_cctx2)) {
1470         BIO_puts(bio_err, "Error finishing context\n");
1471         ERR_print_errors(bio_err);
1472         goto end;
1473     }
1474 #ifndef OPENSSL_NO_DH
1475     if (!no_dhe) {
1476         if (dhe1024dsa)
1477             dhpkey = get_dh1024dsa(libctx);
1478         else if (dhe512)
1479             dhpkey = get_dh512(libctx);
1480         else
1481             dhpkey = get_dh2048(libctx);
1482
1483         if (dhpkey == NULL || !EVP_PKEY_up_ref(dhpkey)) {
1484             EVP_PKEY_free(dhpkey);
1485             BIO_puts(bio_err, "Error getting DH parameters\n");
1486             ERR_print_errors(bio_err);
1487             goto end;
1488         }
1489         SSL_CTX_set0_tmp_dh_pkey(s_ctx, dhpkey);
1490         SSL_CTX_set0_tmp_dh_pkey(s_ctx2, dhpkey);
1491     }
1492 #endif
1493
1494     if (!(SSL_CTX_load_verify_file(s_ctx, CAfile)
1495           || SSL_CTX_load_verify_dir(s_ctx, CApath))
1496         || !SSL_CTX_set_default_verify_paths(s_ctx)
1497         || !(SSL_CTX_load_verify_file(s_ctx2, CAfile)
1498              || SSL_CTX_load_verify_dir(s_ctx2, CApath))
1499         || !SSL_CTX_set_default_verify_paths(s_ctx2)
1500         || !(SSL_CTX_load_verify_file(c_ctx, CAfile)
1501              || SSL_CTX_load_verify_dir(c_ctx, CApath))
1502         || !SSL_CTX_set_default_verify_paths(c_ctx)) {
1503         ERR_print_errors(bio_err);
1504     }
1505
1506 #ifndef OPENSSL_NO_CT
1507     if (!SSL_CTX_set_default_ctlog_list_file(s_ctx) ||
1508         !SSL_CTX_set_default_ctlog_list_file(s_ctx2) ||
1509         !SSL_CTX_set_default_ctlog_list_file(c_ctx)) {
1510         ERR_print_errors(bio_err);
1511     }
1512 #endif
1513
1514     if (client_auth) {
1515         printf("client authentication\n");
1516         SSL_CTX_set_verify(s_ctx,
1517                            SSL_VERIFY_PEER | SSL_VERIFY_FAIL_IF_NO_PEER_CERT,
1518                            verify_callback);
1519         SSL_CTX_set_verify(s_ctx2,
1520                            SSL_VERIFY_PEER | SSL_VERIFY_FAIL_IF_NO_PEER_CERT,
1521                            verify_callback);
1522         SSL_CTX_set_cert_verify_callback(s_ctx, app_verify_callback,
1523                                          &app_verify_arg);
1524         SSL_CTX_set_cert_verify_callback(s_ctx2, app_verify_callback,
1525                                          &app_verify_arg);
1526     }
1527     if (server_auth) {
1528         printf("server authentication\n");
1529         SSL_CTX_set_verify(c_ctx, SSL_VERIFY_PEER, verify_callback);
1530         SSL_CTX_set_cert_verify_callback(c_ctx, app_verify_callback,
1531                                          &app_verify_arg);
1532     }
1533
1534     {
1535         int session_id_context = 0;
1536         if (!SSL_CTX_set_session_id_context(s_ctx, (void *)&session_id_context,
1537                                             sizeof(session_id_context)) ||
1538             !SSL_CTX_set_session_id_context(s_ctx2, (void *)&session_id_context,
1539                                             sizeof(session_id_context))) {
1540             ERR_print_errors(bio_err);
1541             goto end;
1542         }
1543     }
1544
1545     /* Use PSK only if PSK key is given */
1546     if (psk_key != NULL) {
1547         /*
1548          * no_psk is used to avoid putting psk command to openssl tool
1549          */
1550         if (no_psk) {
1551             /*
1552              * if PSK is not compiled in and psk key is given, do nothing and
1553              * exit successfully
1554              */
1555             ret = EXIT_SUCCESS;
1556             goto end;
1557         }
1558 #ifndef OPENSSL_NO_PSK
1559         SSL_CTX_set_psk_client_callback(c_ctx, psk_client_callback);
1560         SSL_CTX_set_psk_server_callback(s_ctx, psk_server_callback);
1561         SSL_CTX_set_psk_server_callback(s_ctx2, psk_server_callback);
1562         if (debug)
1563             BIO_printf(bio_err, "setting PSK identity hint to s_ctx\n");
1564         if (!SSL_CTX_use_psk_identity_hint(s_ctx, "ctx server identity_hint") ||
1565             !SSL_CTX_use_psk_identity_hint(s_ctx2, "ctx server identity_hint")) {
1566             BIO_printf(bio_err, "error setting PSK identity hint to s_ctx\n");
1567             ERR_print_errors(bio_err);
1568             goto end;
1569         }
1570 #endif
1571     }
1572
1573 #ifndef OPENSSL_NO_NEXTPROTONEG
1574     if (npn_client) {
1575         SSL_CTX_set_next_proto_select_cb(c_ctx, cb_client_npn, NULL);
1576     }
1577     if (npn_server) {
1578         if (npn_server_reject) {
1579             BIO_printf(bio_err,
1580                        "Can't have both -npn_server and -npn_server_reject\n");
1581             goto end;
1582         }
1583         SSL_CTX_set_npn_advertised_cb(s_ctx, cb_server_npn, NULL);
1584         SSL_CTX_set_npn_advertised_cb(s_ctx2, cb_server_npn, NULL);
1585     }
1586     if (npn_server_reject) {
1587         SSL_CTX_set_npn_advertised_cb(s_ctx, cb_server_rejects_npn, NULL);
1588         SSL_CTX_set_npn_advertised_cb(s_ctx2, cb_server_rejects_npn, NULL);
1589     }
1590 #endif
1591
1592     if (serverinfo_sct) {
1593         if (!SSL_CTX_add_client_custom_ext(c_ctx,
1594                 TLSEXT_TYPE_signed_certificate_timestamp,
1595                 NULL, NULL, NULL,
1596                 serverinfo_cli_parse_cb, NULL)) {
1597             BIO_printf(bio_err, "Error adding SCT extension\n");
1598             goto end;
1599         }
1600     }
1601     if (serverinfo_tack) {
1602         if (!SSL_CTX_add_client_custom_ext(c_ctx, TACK_EXT_TYPE,
1603                                       NULL, NULL, NULL,
1604                                       serverinfo_cli_parse_cb, NULL)) {
1605             BIO_printf(bio_err, "Error adding TACK extension\n");
1606             goto end;
1607         }
1608     }
1609     if (serverinfo_file)
1610         if (!SSL_CTX_use_serverinfo_file(s_ctx, serverinfo_file) ||
1611             !SSL_CTX_use_serverinfo_file(s_ctx2, serverinfo_file)) {
1612             BIO_printf(bio_err, "missing serverinfo file\n");
1613             goto end;
1614         }
1615
1616     if (custom_ext) {
1617         if (!SSL_CTX_add_client_custom_ext(c_ctx, CUSTOM_EXT_TYPE_0,
1618                                       custom_ext_0_cli_add_cb,
1619                                       NULL, NULL,
1620                                       custom_ext_0_cli_parse_cb, NULL)
1621             || !SSL_CTX_add_client_custom_ext(c_ctx, CUSTOM_EXT_TYPE_1,
1622                                       custom_ext_1_cli_add_cb,
1623                                       NULL, NULL,
1624                                       custom_ext_1_cli_parse_cb, NULL)
1625             || !SSL_CTX_add_client_custom_ext(c_ctx, CUSTOM_EXT_TYPE_2,
1626                                       custom_ext_2_cli_add_cb,
1627                                       NULL, NULL,
1628                                       custom_ext_2_cli_parse_cb, NULL)
1629             || !SSL_CTX_add_client_custom_ext(c_ctx, CUSTOM_EXT_TYPE_3,
1630                                       custom_ext_3_cli_add_cb,
1631                                       NULL, NULL,
1632                                       custom_ext_3_cli_parse_cb, NULL)
1633             || !SSL_CTX_add_server_custom_ext(s_ctx, CUSTOM_EXT_TYPE_0,
1634                                       custom_ext_0_srv_add_cb,
1635                                       NULL, NULL,
1636                                       custom_ext_0_srv_parse_cb, NULL)
1637             || !SSL_CTX_add_server_custom_ext(s_ctx2, CUSTOM_EXT_TYPE_0,
1638                                       custom_ext_0_srv_add_cb,
1639                                       NULL, NULL,
1640                                       custom_ext_0_srv_parse_cb, NULL)
1641             || !SSL_CTX_add_server_custom_ext(s_ctx, CUSTOM_EXT_TYPE_1,
1642                                       custom_ext_1_srv_add_cb,
1643                                       NULL, NULL,
1644                                       custom_ext_1_srv_parse_cb, NULL)
1645             || !SSL_CTX_add_server_custom_ext(s_ctx2, CUSTOM_EXT_TYPE_1,
1646                                       custom_ext_1_srv_add_cb,
1647                                       NULL, NULL,
1648                                       custom_ext_1_srv_parse_cb, NULL)
1649             || !SSL_CTX_add_server_custom_ext(s_ctx, CUSTOM_EXT_TYPE_2,
1650                                       custom_ext_2_srv_add_cb,
1651                                       NULL, NULL,
1652                                       custom_ext_2_srv_parse_cb, NULL)
1653             || !SSL_CTX_add_server_custom_ext(s_ctx2, CUSTOM_EXT_TYPE_2,
1654                                       custom_ext_2_srv_add_cb,
1655                                       NULL, NULL,
1656                                       custom_ext_2_srv_parse_cb, NULL)
1657             || !SSL_CTX_add_server_custom_ext(s_ctx, CUSTOM_EXT_TYPE_3,
1658                                       custom_ext_3_srv_add_cb,
1659                                       NULL, NULL,
1660                                       custom_ext_3_srv_parse_cb, NULL)
1661             || !SSL_CTX_add_server_custom_ext(s_ctx2, CUSTOM_EXT_TYPE_3,
1662                                       custom_ext_3_srv_add_cb,
1663                                       NULL, NULL,
1664                                       custom_ext_3_srv_parse_cb, NULL)) {
1665             BIO_printf(bio_err, "Error setting custom extensions\n");
1666             goto end;
1667         }
1668     }
1669
1670     if (alpn_server)
1671         SSL_CTX_set_alpn_select_cb(s_ctx, cb_server_alpn, alpn_server);
1672     if (alpn_server2)
1673         SSL_CTX_set_alpn_select_cb(s_ctx2, cb_server_alpn, alpn_server2);
1674
1675     if (alpn_client) {
1676         size_t alpn_len;
1677         unsigned char *alpn = next_protos_parse(&alpn_len, alpn_client);
1678
1679         if (alpn == NULL) {
1680             BIO_printf(bio_err, "Error parsing -alpn_client argument\n");
1681             goto end;
1682         }
1683         /* Returns 0 on success!! */
1684         if (SSL_CTX_set_alpn_protos(c_ctx, alpn, alpn_len)) {
1685             BIO_printf(bio_err, "Error setting ALPN\n");
1686             OPENSSL_free(alpn);
1687             goto end;
1688         }
1689         OPENSSL_free(alpn);
1690     }
1691
1692     if (server_sess_in != NULL) {
1693         server_sess = read_session(server_sess_in);
1694         if (server_sess == NULL)
1695             goto end;
1696     }
1697     if (client_sess_in != NULL) {
1698         client_sess = read_session(client_sess_in);
1699         if (client_sess == NULL)
1700             goto end;
1701     }
1702
1703     if (server_sess_out != NULL || server_sess_in != NULL) {
1704         char *keys;
1705         long size;
1706
1707         /* Use a fixed key so that we can decrypt the ticket. */
1708         size = SSL_CTX_set_tlsext_ticket_keys(s_ctx, NULL, 0);
1709         keys = OPENSSL_zalloc(size);
1710         SSL_CTX_set_tlsext_ticket_keys(s_ctx, keys, size);
1711         OPENSSL_free(keys);
1712     }
1713
1714     if (sn_server1 != NULL || sn_server2 != NULL)
1715         SSL_CTX_set_tlsext_servername_callback(s_ctx, servername_cb);
1716
1717     c_ssl = SSL_new(c_ctx);
1718     s_ssl = SSL_new(s_ctx);
1719
1720     if (sn_client)
1721         SSL_set_tlsext_host_name(c_ssl, sn_client);
1722
1723     if (!set_protocol_version(server_min_proto, s_ssl, SSL_CTRL_SET_MIN_PROTO_VERSION))
1724         goto end;
1725     if (!set_protocol_version(server_max_proto, s_ssl, SSL_CTRL_SET_MAX_PROTO_VERSION))
1726         goto end;
1727     if (!set_protocol_version(client_min_proto, c_ssl, SSL_CTRL_SET_MIN_PROTO_VERSION))
1728         goto end;
1729     if (!set_protocol_version(client_max_proto, c_ssl, SSL_CTRL_SET_MAX_PROTO_VERSION))
1730         goto end;
1731
1732     if (server_sess) {
1733         if (SSL_CTX_add_session(s_ctx, server_sess) == 0) {
1734             BIO_printf(bio_err, "Can't add server session\n");
1735             ERR_print_errors(bio_err);
1736             goto end;
1737         }
1738     }
1739
1740     BIO_printf(bio_stdout, "Doing handshakes=%d bytes=%ld\n", number, bytes);
1741     for (i = 0; i < number; i++) {
1742         if (!reuse) {
1743             if (!SSL_set_session(c_ssl, NULL)) {
1744                 BIO_printf(bio_err, "Failed to set session\n");
1745                 goto end;
1746             }
1747         }
1748         if (client_sess_in != NULL) {
1749             if (SSL_set_session(c_ssl, client_sess) == 0) {
1750                 BIO_printf(bio_err, "Can't set client session\n");
1751                 ERR_print_errors(bio_err);
1752                 goto end;
1753             }
1754         }
1755         switch (bio_type) {
1756         case BIO_MEM:
1757             ret = doit(s_ssl, c_ssl, bytes);
1758             break;
1759         case BIO_PAIR:
1760             ret = doit_biopair(s_ssl, c_ssl, bytes, &s_time, &c_time);
1761             break;
1762 #ifndef OPENSSL_NO_SOCK
1763         case BIO_IPV4:
1764             ret = doit_localhost(s_ssl, c_ssl, BIO_FAMILY_IPV4,
1765                                  bytes, &s_time, &c_time);
1766             break;
1767         case BIO_IPV6:
1768             ret = doit_localhost(s_ssl, c_ssl, BIO_FAMILY_IPV6,
1769                                  bytes, &s_time, &c_time);
1770             break;
1771 #else
1772         case BIO_IPV4:
1773         case BIO_IPV6:
1774             ret = EXIT_FAILURE;
1775             goto err;
1776 #endif
1777         }
1778         if (ret != EXIT_SUCCESS)  break;
1779     }
1780
1781     if (should_negotiate && ret == EXIT_SUCCESS &&
1782         strcmp(should_negotiate, "fail-server") != 0 &&
1783         strcmp(should_negotiate, "fail-client") != 0) {
1784         int version = protocol_from_string(should_negotiate);
1785         if (version < 0) {
1786             BIO_printf(bio_err, "Error parsing: %s\n", should_negotiate);
1787             ret = EXIT_FAILURE;
1788             goto err;
1789         }
1790         if (SSL_version(c_ssl) != version) {
1791             BIO_printf(bio_err, "Unexpected version negotiated. "
1792                 "Expected: %s, got %s\n", should_negotiate, SSL_get_version(c_ssl));
1793             ret = EXIT_FAILURE;
1794             goto err;
1795         }
1796     }
1797
1798     if (should_reuse != -1) {
1799         if (SSL_session_reused(s_ssl) != should_reuse ||
1800             SSL_session_reused(c_ssl) != should_reuse) {
1801             BIO_printf(bio_err, "Unexpected session reuse state. "
1802                 "Expected: %d, server: %d, client: %d\n", should_reuse,
1803                 SSL_session_reused(s_ssl), SSL_session_reused(c_ssl));
1804             ret = EXIT_FAILURE;
1805             goto err;
1806         }
1807     }
1808
1809     if (server_sess_out != NULL) {
1810         if (write_session(server_sess_out, SSL_get_session(s_ssl)) == 0) {
1811             ret = EXIT_FAILURE;
1812             goto err;
1813         }
1814     }
1815     if (client_sess_out != NULL) {
1816         if (write_session(client_sess_out, SSL_get_session(c_ssl)) == 0) {
1817             ret = EXIT_FAILURE;
1818             goto err;
1819         }
1820     }
1821
1822     if (!verbose) {
1823         print_details(c_ssl, "");
1824     }
1825     if (print_time) {
1826 #ifdef CLOCKS_PER_SEC
1827         /*
1828          * "To determine the time in seconds, the value returned by the clock
1829          * function should be divided by the value of the macro
1830          * CLOCKS_PER_SEC." -- ISO/IEC 9899
1831          */
1832         BIO_printf(bio_stdout, "Approximate total server time: %6.2f s\n"
1833                    "Approximate total client time: %6.2f s\n",
1834                    (double)s_time / CLOCKS_PER_SEC,
1835                    (double)c_time / CLOCKS_PER_SEC);
1836 #else
1837         BIO_printf(bio_stdout,
1838                    "Approximate total server time: %6.2f units\n"
1839                    "Approximate total client time: %6.2f units\n",
1840                    (double)s_time, (double)c_time);
1841 #endif
1842     }
1843
1844  err:
1845     SSL_free(s_ssl);
1846     SSL_free(c_ssl);
1847
1848  end:
1849     SSL_CTX_free(s_ctx);
1850     SSL_CTX_free(s_ctx2);
1851     SSL_CTX_free(c_ctx);
1852     SSL_CONF_CTX_free(s_cctx);
1853     SSL_CONF_CTX_free(s_cctx2);
1854     SSL_CONF_CTX_free(c_cctx);
1855     sk_OPENSSL_STRING_free(conf_args);
1856
1857     BIO_free(bio_stdout);
1858
1859     SSL_SESSION_free(server_sess);
1860     SSL_SESSION_free(client_sess);
1861
1862     OSSL_PROVIDER_unload(defctxnull);
1863     OSSL_PROVIDER_unload(thisprov);
1864     OSSL_LIB_CTX_free(libctx);
1865
1866     BIO_free(bio_err);
1867     EXIT(ret);
1868 }
1869
1870 #ifndef OPENSSL_NO_SOCK
1871 int doit_localhost(SSL *s_ssl, SSL *c_ssl, int family, long count,
1872                    clock_t *s_time, clock_t *c_time)
1873 {
1874     long cw_num = count, cr_num = count, sw_num = count, sr_num = count;
1875     BIO *s_ssl_bio = NULL, *c_ssl_bio = NULL;
1876     BIO *acpt = NULL, *server = NULL, *client = NULL;
1877     char addr_str[40];
1878     int ret = EXIT_FAILURE;
1879     int err_in_client = 0;
1880     int err_in_server = 0;
1881
1882     acpt = BIO_new_accept(family == BIO_FAMILY_IPV4 ? "127.0.0.1:0"
1883                                                     : "[::1]:0");
1884     if (acpt == NULL)
1885         goto err;
1886     BIO_set_accept_ip_family(acpt, family);
1887     BIO_set_bind_mode(acpt, BIO_SOCK_NONBLOCK | BIO_SOCK_REUSEADDR);
1888     if (BIO_do_accept(acpt) <= 0)
1889         goto err;
1890
1891     BIO_snprintf(addr_str, sizeof(addr_str), ":%s", BIO_get_accept_port(acpt));
1892
1893     client = BIO_new_connect(addr_str);
1894     BIO_set_conn_ip_family(client, family);
1895     if (!client)
1896         goto err;
1897
1898     if (BIO_set_nbio(client, 1) <= 0)
1899         goto err;
1900     if (BIO_set_nbio(acpt, 1) <= 0)
1901         goto err;
1902
1903     {
1904         int st_connect = 0, st_accept = 0;
1905
1906         while(!st_connect || !st_accept) {
1907             if (!st_connect) {
1908                 if (BIO_do_connect(client) <= 0) {
1909                     if (!BIO_should_retry(client))
1910                         goto err;
1911                 } else {
1912                     st_connect = 1;
1913                 }
1914             }
1915             if (!st_accept) {
1916                 if (BIO_do_accept(acpt) <= 0) {
1917                     if (!BIO_should_retry(acpt))
1918                         goto err;
1919                 } else {
1920                     st_accept = 1;
1921                 }
1922             }
1923         }
1924     }
1925     /* We're not interested in accepting further connects */
1926     server = BIO_pop(acpt);
1927     BIO_free_all(acpt);
1928     acpt = NULL;
1929
1930     s_ssl_bio = BIO_new(BIO_f_ssl());
1931     if (!s_ssl_bio)
1932         goto err;
1933
1934     c_ssl_bio = BIO_new(BIO_f_ssl());
1935     if (!c_ssl_bio)
1936         goto err;
1937
1938     SSL_set_connect_state(c_ssl);
1939     SSL_set_bio(c_ssl, client, client);
1940     (void)BIO_set_ssl(c_ssl_bio, c_ssl, BIO_NOCLOSE);
1941
1942     SSL_set_accept_state(s_ssl);
1943     SSL_set_bio(s_ssl, server, server);
1944     (void)BIO_set_ssl(s_ssl_bio, s_ssl, BIO_NOCLOSE);
1945
1946     do {
1947         /*-
1948          * c_ssl_bio:          SSL filter BIO
1949          *
1950          * client:             I/O for SSL library
1951          *
1952          *
1953          * server:             I/O for SSL library
1954          *
1955          * s_ssl_bio:          SSL filter BIO
1956          */
1957
1958         /*
1959          * We have non-blocking behaviour throughout this test program, but
1960          * can be sure that there is *some* progress in each iteration; so we
1961          * don't have to worry about ..._SHOULD_READ or ..._SHOULD_WRITE --
1962          * we just try everything in each iteration
1963          */
1964
1965         {
1966             /* CLIENT */
1967
1968             char cbuf[1024 * 8];
1969             int i, r;
1970             clock_t c_clock = clock();
1971
1972             memset(cbuf, 0, sizeof(cbuf));
1973
1974             if (debug)
1975                 if (SSL_in_init(c_ssl))
1976                     printf("client waiting in SSL_connect - %s\n",
1977                            SSL_state_string_long(c_ssl));
1978
1979             if (cw_num > 0) {
1980                 /* Write to server. */
1981
1982                 if (cw_num > (long)sizeof(cbuf))
1983                     i = sizeof(cbuf);
1984                 else
1985                     i = (int)cw_num;
1986                 r = BIO_write(c_ssl_bio, cbuf, i);
1987                 if (r < 0) {
1988                     if (!BIO_should_retry(c_ssl_bio)) {
1989                         fprintf(stderr, "ERROR in CLIENT\n");
1990                         err_in_client = 1;
1991                         goto err;
1992                     }
1993                     /*
1994                      * BIO_should_retry(...) can just be ignored here. The
1995                      * library expects us to call BIO_write with the same
1996                      * arguments again, and that's what we will do in the
1997                      * next iteration.
1998                      */
1999                 } else if (r == 0) {
2000                     fprintf(stderr, "SSL CLIENT STARTUP FAILED\n");
2001                     goto err;
2002                 } else {
2003                     if (debug)
2004                         printf("client wrote %d\n", r);
2005                     cw_num -= r;
2006                 }
2007             }
2008
2009             if (cr_num > 0) {
2010                 /* Read from server. */
2011
2012                 r = BIO_read(c_ssl_bio, cbuf, sizeof(cbuf));
2013                 if (r < 0) {
2014                     if (!BIO_should_retry(c_ssl_bio)) {
2015                         fprintf(stderr, "ERROR in CLIENT\n");
2016                         err_in_client = 1;
2017                         goto err;
2018                     }
2019                     /*
2020                      * Again, "BIO_should_retry" can be ignored.
2021                      */
2022                 } else if (r == 0) {
2023                     fprintf(stderr, "SSL CLIENT STARTUP FAILED\n");
2024                     goto err;
2025                 } else {
2026                     if (debug)
2027                         printf("client read %d\n", r);
2028                     cr_num -= r;
2029                 }
2030             }
2031
2032             /*
2033              * c_time and s_time increments will typically be very small
2034              * (depending on machine speed and clock tick intervals), but
2035              * sampling over a large number of connections should result in
2036              * fairly accurate figures.  We cannot guarantee a lot, however
2037              * -- if each connection lasts for exactly one clock tick, it
2038              * will be counted only for the client or only for the server or
2039              * even not at all.
2040              */
2041             *c_time += (clock() - c_clock);
2042         }
2043
2044         {
2045             /* SERVER */
2046
2047             char sbuf[1024 * 8];
2048             int i, r;
2049             clock_t s_clock = clock();
2050
2051             memset(sbuf, 0, sizeof(sbuf));
2052
2053             if (debug)
2054                 if (SSL_in_init(s_ssl))
2055                     printf("server waiting in SSL_accept - %s\n",
2056                            SSL_state_string_long(s_ssl));
2057
2058             if (sw_num > 0) {
2059                 /* Write to client. */
2060
2061                 if (sw_num > (long)sizeof(sbuf))
2062                     i = sizeof(sbuf);
2063                 else
2064                     i = (int)sw_num;
2065                 r = BIO_write(s_ssl_bio, sbuf, i);
2066                 if (r < 0) {
2067                     if (!BIO_should_retry(s_ssl_bio)) {
2068                         fprintf(stderr, "ERROR in SERVER\n");
2069                         err_in_server = 1;
2070                         goto err;
2071                     }
2072                     /* Ignore "BIO_should_retry". */
2073                 } else if (r == 0) {
2074                     fprintf(stderr, "SSL SERVER STARTUP FAILED\n");
2075                     goto err;
2076                 } else {
2077                     if (debug)
2078                         printf("server wrote %d\n", r);
2079                     sw_num -= r;
2080                 }
2081             }
2082
2083             if (sr_num > 0) {
2084                 /* Read from client. */
2085
2086                 r = BIO_read(s_ssl_bio, sbuf, sizeof(sbuf));
2087                 if (r < 0) {
2088                     if (!BIO_should_retry(s_ssl_bio)) {
2089                         fprintf(stderr, "ERROR in SERVER\n");
2090                         err_in_server = 1;
2091                         goto err;
2092                     }
2093                     /* blah, blah */
2094                 } else if (r == 0) {
2095                     fprintf(stderr, "SSL SERVER STARTUP FAILED\n");
2096                     goto err;
2097                 } else {
2098                     if (debug)
2099                         printf("server read %d\n", r);
2100                     sr_num -= r;
2101                 }
2102             }
2103
2104             *s_time += (clock() - s_clock);
2105         }
2106     }
2107     while (cw_num > 0 || cr_num > 0 || sw_num > 0 || sr_num > 0);
2108
2109     if (verbose)
2110         print_details(c_ssl, "DONE via TCP connect: ");
2111 # ifndef OPENSSL_NO_NEXTPROTONEG
2112     if (verify_npn(c_ssl, s_ssl) < 0)
2113         goto end;
2114 # endif
2115     if (verify_serverinfo() < 0) {
2116         fprintf(stderr, "Server info verify error\n");
2117         goto err;
2118     }
2119     if (verify_alpn(c_ssl, s_ssl) < 0
2120             || verify_servername(c_ssl, s_ssl) < 0)
2121         goto err;
2122
2123     if (custom_ext_error) {
2124         fprintf(stderr, "Custom extension error\n");
2125         goto err;
2126     }
2127
2128 # ifndef OPENSSL_NO_NEXTPROTONEG
2129  end:
2130 # endif
2131     ret = EXIT_SUCCESS;
2132
2133  err:
2134     ERR_print_errors(bio_err);
2135
2136     BIO_free_all(acpt);
2137     BIO_free(server);
2138     BIO_free(client);
2139     BIO_free(s_ssl_bio);
2140     BIO_free(c_ssl_bio);
2141
2142     if (should_negotiate != NULL && strcmp(should_negotiate, "fail-client") == 0)
2143         ret = (err_in_client != 0) ? EXIT_SUCCESS : EXIT_FAILURE;
2144     else if (should_negotiate != NULL && strcmp(should_negotiate, "fail-server") == 0)
2145         ret = (err_in_server != 0) ? EXIT_SUCCESS : EXIT_FAILURE;
2146
2147     return ret;
2148 }
2149 #endif
2150
2151 int doit_biopair(SSL *s_ssl, SSL *c_ssl, long count,
2152                  clock_t *s_time, clock_t *c_time)
2153 {
2154     long cw_num = count, cr_num = count, sw_num = count, sr_num = count;
2155     BIO *s_ssl_bio = NULL, *c_ssl_bio = NULL;
2156     BIO *server = NULL, *server_io = NULL, *client = NULL, *client_io = NULL;
2157     int ret = EXIT_FAILURE;
2158     int err_in_client = 0;
2159     int err_in_server = 0;
2160
2161     size_t bufsiz = 256;        /* small buffer for testing */
2162
2163     if (!BIO_new_bio_pair(&server, bufsiz, &server_io, bufsiz))
2164         goto err;
2165     if (!BIO_new_bio_pair(&client, bufsiz, &client_io, bufsiz))
2166         goto err;
2167
2168     s_ssl_bio = BIO_new(BIO_f_ssl());
2169     if (!s_ssl_bio)
2170         goto err;
2171
2172     c_ssl_bio = BIO_new(BIO_f_ssl());
2173     if (!c_ssl_bio)
2174         goto err;
2175
2176     SSL_set_connect_state(c_ssl);
2177     SSL_set_bio(c_ssl, client, client);
2178     (void)BIO_set_ssl(c_ssl_bio, c_ssl, BIO_NOCLOSE);
2179
2180     SSL_set_accept_state(s_ssl);
2181     SSL_set_bio(s_ssl, server, server);
2182     (void)BIO_set_ssl(s_ssl_bio, s_ssl, BIO_NOCLOSE);
2183
2184     do {
2185         /*-
2186          * c_ssl_bio:          SSL filter BIO
2187          *
2188          * client:             pseudo-I/O for SSL library
2189          *
2190          * client_io:          client's SSL communication; usually to be
2191          *                     relayed over some I/O facility, but in this
2192          *                     test program, we're the server, too:
2193          *
2194          * server_io:          server's SSL communication
2195          *
2196          * server:             pseudo-I/O for SSL library
2197          *
2198          * s_ssl_bio:          SSL filter BIO
2199          *
2200          * The client and the server each employ a "BIO pair":
2201          * client + client_io, server + server_io.
2202          * BIO pairs are symmetric.  A BIO pair behaves similar
2203          * to a non-blocking socketpair (but both endpoints must
2204          * be handled by the same thread).
2205          * [Here we could connect client and server to the ends
2206          * of a single BIO pair, but then this code would be less
2207          * suitable as an example for BIO pairs in general.]
2208          *
2209          * Useful functions for querying the state of BIO pair endpoints:
2210          *
2211          * BIO_ctrl_pending(bio)              number of bytes we can read now
2212          * BIO_ctrl_get_read_request(bio)     number of bytes needed to fulfill
2213          *                                      other side's read attempt
2214          * BIO_ctrl_get_write_guarantee(bio)   number of bytes we can write now
2215          *
2216          * ..._read_request is never more than ..._write_guarantee;
2217          * it depends on the application which one you should use.
2218          */
2219
2220         /*
2221          * We have non-blocking behaviour throughout this test program, but
2222          * can be sure that there is *some* progress in each iteration; so we
2223          * don't have to worry about ..._SHOULD_READ or ..._SHOULD_WRITE --
2224          * we just try everything in each iteration
2225          */
2226
2227         {
2228             /* CLIENT */
2229
2230             char cbuf[1024 * 8];
2231             int i, r;
2232             clock_t c_clock = clock();
2233
2234             memset(cbuf, 0, sizeof(cbuf));
2235
2236             if (debug)
2237                 if (SSL_in_init(c_ssl))
2238                     printf("client waiting in SSL_connect - %s\n",
2239                            SSL_state_string_long(c_ssl));
2240
2241             if (cw_num > 0) {
2242                 /* Write to server. */
2243
2244                 if (cw_num > (long)sizeof(cbuf))
2245                     i = sizeof(cbuf);
2246                 else
2247                     i = (int)cw_num;
2248                 r = BIO_write(c_ssl_bio, cbuf, i);
2249                 if (r < 0) {
2250                     if (!BIO_should_retry(c_ssl_bio)) {
2251                         fprintf(stderr, "ERROR in CLIENT\n");
2252                         err_in_client = 1;
2253                         goto err;
2254                     }
2255                     /*
2256                      * BIO_should_retry(...) can just be ignored here. The
2257                      * library expects us to call BIO_write with the same
2258                      * arguments again, and that's what we will do in the
2259                      * next iteration.
2260                      */
2261                 } else if (r == 0) {
2262                     fprintf(stderr, "SSL CLIENT STARTUP FAILED\n");
2263                     goto err;
2264                 } else {
2265                     if (debug)
2266                         printf("client wrote %d\n", r);
2267                     cw_num -= r;
2268                 }
2269             }
2270
2271             if (cr_num > 0) {
2272                 /* Read from server. */
2273
2274                 r = BIO_read(c_ssl_bio, cbuf, sizeof(cbuf));
2275                 if (r < 0) {
2276                     if (!BIO_should_retry(c_ssl_bio)) {
2277                         fprintf(stderr, "ERROR in CLIENT\n");
2278                         err_in_client = 1;
2279                         goto err;
2280                     }
2281                     /*
2282                      * Again, "BIO_should_retry" can be ignored.
2283                      */
2284                 } else if (r == 0) {
2285                     fprintf(stderr, "SSL CLIENT STARTUP FAILED\n");
2286                     goto err;
2287                 } else {
2288                     if (debug)
2289                         printf("client read %d\n", r);
2290                     cr_num -= r;
2291                 }
2292             }
2293
2294             /*
2295              * c_time and s_time increments will typically be very small
2296              * (depending on machine speed and clock tick intervals), but
2297              * sampling over a large number of connections should result in
2298              * fairly accurate figures.  We cannot guarantee a lot, however
2299              * -- if each connection lasts for exactly one clock tick, it
2300              * will be counted only for the client or only for the server or
2301              * even not at all.
2302              */
2303             *c_time += (clock() - c_clock);
2304         }
2305
2306         {
2307             /* SERVER */
2308
2309             char sbuf[1024 * 8];
2310             int i, r;
2311             clock_t s_clock = clock();
2312
2313             memset(sbuf, 0, sizeof(sbuf));
2314
2315             if (debug)
2316                 if (SSL_in_init(s_ssl))
2317                     printf("server waiting in SSL_accept - %s\n",
2318                            SSL_state_string_long(s_ssl));
2319
2320             if (sw_num > 0) {
2321                 /* Write to client. */
2322
2323                 if (sw_num > (long)sizeof(sbuf))
2324                     i = sizeof(sbuf);
2325                 else
2326                     i = (int)sw_num;
2327                 r = BIO_write(s_ssl_bio, sbuf, i);
2328                 if (r < 0) {
2329                     if (!BIO_should_retry(s_ssl_bio)) {
2330                         fprintf(stderr, "ERROR in SERVER\n");
2331                         err_in_server = 1;
2332                         goto err;
2333                     }
2334                     /* Ignore "BIO_should_retry". */
2335                 } else if (r == 0) {
2336                     fprintf(stderr, "SSL SERVER STARTUP FAILED\n");
2337                     goto err;
2338                 } else {
2339                     if (debug)
2340                         printf("server wrote %d\n", r);
2341                     sw_num -= r;
2342                 }
2343             }
2344
2345             if (sr_num > 0) {
2346                 /* Read from client. */
2347
2348                 r = BIO_read(s_ssl_bio, sbuf, sizeof(sbuf));
2349                 if (r < 0) {
2350                     if (!BIO_should_retry(s_ssl_bio)) {
2351                         fprintf(stderr, "ERROR in SERVER\n");
2352                         err_in_server = 1;
2353                         goto err;
2354                     }
2355                     /* blah, blah */
2356                 } else if (r == 0) {
2357                     fprintf(stderr, "SSL SERVER STARTUP FAILED\n");
2358                     goto err;
2359                 } else {
2360                     if (debug)
2361                         printf("server read %d\n", r);
2362                     sr_num -= r;
2363                 }
2364             }
2365
2366             *s_time += (clock() - s_clock);
2367         }
2368
2369         {
2370             /* "I/O" BETWEEN CLIENT AND SERVER. */
2371
2372             size_t r1, r2;
2373             BIO *io1 = server_io, *io2 = client_io;
2374             /*
2375              * we use the non-copying interface for io1 and the standard
2376              * BIO_write/BIO_read interface for io2
2377              */
2378
2379             static int prev_progress = 1;
2380             int progress = 0;
2381
2382             /* io1 to io2 */
2383             do {
2384                 size_t num;
2385                 int r;
2386
2387                 r1 = BIO_ctrl_pending(io1);
2388                 r2 = BIO_ctrl_get_write_guarantee(io2);
2389
2390                 num = r1;
2391                 if (r2 < num)
2392                     num = r2;
2393                 if (num) {
2394                     char *dataptr;
2395
2396                     if (INT_MAX < num) /* yeah, right */
2397                         num = INT_MAX;
2398
2399                     r = BIO_nread(io1, &dataptr, (int)num);
2400                     assert(r > 0);
2401                     assert(r <= (int)num);
2402                     /*
2403                      * possibly r < num (non-contiguous data)
2404                      */
2405                     num = r;
2406                     r = BIO_write(io2, dataptr, (int)num);
2407                     if (r != (int)num) { /* can't happen */
2408                         fprintf(stderr, "ERROR: BIO_write could not write "
2409                                 "BIO_ctrl_get_write_guarantee() bytes");
2410                         goto err;
2411                     }
2412                     progress = 1;
2413
2414                     if (debug)
2415                         printf((io1 == client_io) ?
2416                                "C->S relaying: %d bytes\n" :
2417                                "S->C relaying: %d bytes\n", (int)num);
2418                 }
2419             }
2420             while (r1 && r2);
2421
2422             /* io2 to io1 */
2423             {
2424                 size_t num;
2425                 int r;
2426
2427                 r1 = BIO_ctrl_pending(io2);
2428                 r2 = BIO_ctrl_get_read_request(io1);
2429                 /*
2430                  * here we could use ..._get_write_guarantee instead of
2431                  * ..._get_read_request, but by using the latter we test
2432                  * restartability of the SSL implementation more thoroughly
2433                  */
2434                 num = r1;
2435                 if (r2 < num)
2436                     num = r2;
2437                 if (num) {
2438                     char *dataptr;
2439
2440                     if (INT_MAX < num)
2441                         num = INT_MAX;
2442
2443                     if (num > 1)
2444                         --num;  /* test restartability even more thoroughly */
2445
2446                     r = BIO_nwrite0(io1, &dataptr);
2447                     assert(r > 0);
2448                     if (r < (int)num)
2449                         num = r;
2450                     r = BIO_read(io2, dataptr, (int)num);
2451                     if (r != (int)num) { /* can't happen */
2452                         fprintf(stderr, "ERROR: BIO_read could not read "
2453                                 "BIO_ctrl_pending() bytes");
2454                         goto err;
2455                     }
2456                     progress = 1;
2457                     r = BIO_nwrite(io1, &dataptr, (int)num);
2458                     if (r != (int)num) { /* can't happen */
2459                         fprintf(stderr, "ERROR: BIO_nwrite() did not accept "
2460                                 "BIO_nwrite0() bytes");
2461                         goto err;
2462                     }
2463
2464                     if (debug)
2465                         printf((io2 == client_io) ?
2466                                "C->S relaying: %d bytes\n" :
2467                                "S->C relaying: %d bytes\n", (int)num);
2468                 }
2469             }                   /* no loop, BIO_ctrl_get_read_request now
2470                                  * returns 0 anyway */
2471
2472             if (!progress && !prev_progress)
2473                 if (cw_num > 0 || cr_num > 0 || sw_num > 0 || sr_num > 0) {
2474                     fprintf(stderr, "ERROR: got stuck\n");
2475                     fprintf(stderr, " ERROR.\n");
2476                     goto err;
2477                 }
2478             prev_progress = progress;
2479         }
2480     }
2481     while (cw_num > 0 || cr_num > 0 || sw_num > 0 || sr_num > 0);
2482
2483     if (verbose)
2484         print_details(c_ssl, "DONE via BIO pair: ");
2485 #ifndef OPENSSL_NO_NEXTPROTONEG
2486     if (verify_npn(c_ssl, s_ssl) < 0)
2487         goto end;
2488 #endif
2489     if (verify_serverinfo() < 0) {
2490         fprintf(stderr, "Server info verify error\n");
2491         goto err;
2492     }
2493     if (verify_alpn(c_ssl, s_ssl) < 0
2494             || verify_servername(c_ssl, s_ssl) < 0)
2495         goto err;
2496
2497     if (custom_ext_error) {
2498         fprintf(stderr, "Custom extension error\n");
2499         goto err;
2500     }
2501
2502 #ifndef OPENSSL_NO_NEXTPROTONEG
2503  end:
2504 #endif
2505     ret = EXIT_SUCCESS;
2506
2507  err:
2508     ERR_print_errors(bio_err);
2509
2510     BIO_free(server);
2511     BIO_free(server_io);
2512     BIO_free(client);
2513     BIO_free(client_io);
2514     BIO_free(s_ssl_bio);
2515     BIO_free(c_ssl_bio);
2516
2517     if (should_negotiate != NULL && strcmp(should_negotiate, "fail-client") == 0)
2518         ret = (err_in_client != 0) ? EXIT_SUCCESS : EXIT_FAILURE;
2519     else if (should_negotiate != NULL && strcmp(should_negotiate, "fail-server") == 0)
2520         ret = (err_in_server != 0) ? EXIT_SUCCESS : EXIT_FAILURE;
2521
2522     return ret;
2523 }
2524
2525 #define W_READ  1
2526 #define W_WRITE 2
2527 #define C_DONE  1
2528 #define S_DONE  2
2529
2530 int doit(SSL *s_ssl, SSL *c_ssl, long count)
2531 {
2532     char *cbuf = NULL, *sbuf = NULL;
2533     long bufsiz;
2534     long cw_num = count, cr_num = count;
2535     long sw_num = count, sr_num = count;
2536     int ret = EXIT_FAILURE;
2537     BIO *c_to_s = NULL;
2538     BIO *s_to_c = NULL;
2539     BIO *c_bio = NULL;
2540     BIO *s_bio = NULL;
2541     int c_r, c_w, s_r, s_w;
2542     int i, j;
2543     int done = 0;
2544     int c_write, s_write;
2545     int do_server = 0, do_client = 0;
2546     int max_frag = 5 * 1024;
2547     int err_in_client = 0;
2548     int err_in_server = 0;
2549
2550     bufsiz = count > 40 * 1024 ? 40 * 1024 : count;
2551
2552     if ((cbuf = OPENSSL_zalloc(bufsiz)) == NULL)
2553         goto err;
2554     if ((sbuf = OPENSSL_zalloc(bufsiz)) == NULL)
2555         goto err;
2556
2557     c_to_s = BIO_new(BIO_s_mem());
2558     s_to_c = BIO_new(BIO_s_mem());
2559     if ((s_to_c == NULL) || (c_to_s == NULL)) {
2560         ERR_print_errors(bio_err);
2561         goto err;
2562     }
2563
2564     c_bio = BIO_new(BIO_f_ssl());
2565     s_bio = BIO_new(BIO_f_ssl());
2566     if ((c_bio == NULL) || (s_bio == NULL)) {
2567         ERR_print_errors(bio_err);
2568         goto err;
2569     }
2570
2571     SSL_set_connect_state(c_ssl);
2572     SSL_set_bio(c_ssl, s_to_c, c_to_s);
2573     SSL_set_max_send_fragment(c_ssl, max_frag);
2574     BIO_set_ssl(c_bio, c_ssl, BIO_NOCLOSE);
2575
2576     /*
2577      * We've just given our ref to these BIOs to c_ssl. We need another one to
2578      * give to s_ssl
2579      */
2580     if (!BIO_up_ref(c_to_s)) {
2581         /* c_to_s and s_to_c will get freed when we free c_ssl */
2582         c_to_s = NULL;
2583         s_to_c = NULL;
2584         goto err;
2585     }
2586     if (!BIO_up_ref(s_to_c)) {
2587         /* s_to_c will get freed when we free c_ssl */
2588         s_to_c = NULL;
2589         goto err;
2590     }
2591
2592     SSL_set_accept_state(s_ssl);
2593     SSL_set_bio(s_ssl, c_to_s, s_to_c);
2594
2595     /* We've used up all our refs to these now */
2596     c_to_s = NULL;
2597     s_to_c = NULL;
2598
2599     SSL_set_max_send_fragment(s_ssl, max_frag);
2600     BIO_set_ssl(s_bio, s_ssl, BIO_NOCLOSE);
2601
2602     c_r = 0;
2603     s_r = 1;
2604     c_w = 1;
2605     s_w = 0;
2606     c_write = 1, s_write = 0;
2607
2608     /* We can always do writes */
2609     for (;;) {
2610         do_server = 0;
2611         do_client = 0;
2612
2613         i = (int)BIO_pending(s_bio);
2614         if ((i && s_r) || s_w)
2615             do_server = 1;
2616
2617         i = (int)BIO_pending(c_bio);
2618         if ((i && c_r) || c_w)
2619             do_client = 1;
2620
2621         if (do_server && debug) {
2622             if (SSL_in_init(s_ssl))
2623                 printf("server waiting in SSL_accept - %s\n",
2624                        SSL_state_string_long(s_ssl));
2625         }
2626
2627         if (do_client && debug) {
2628             if (SSL_in_init(c_ssl))
2629                 printf("client waiting in SSL_connect - %s\n",
2630                        SSL_state_string_long(c_ssl));
2631         }
2632
2633         if (!do_client && !do_server) {
2634             fprintf(stdout, "ERROR IN STARTUP\n");
2635             ERR_print_errors(bio_err);
2636             goto err;
2637         }
2638         if (do_client && !(done & C_DONE)) {
2639             if (c_write) {
2640                 j = (cw_num > bufsiz) ? (int)bufsiz : (int)cw_num;
2641                 i = BIO_write(c_bio, cbuf, j);
2642                 if (i < 0) {
2643                     c_r = 0;
2644                     c_w = 0;
2645                     if (BIO_should_retry(c_bio)) {
2646                         if (BIO_should_read(c_bio))
2647                             c_r = 1;
2648                         if (BIO_should_write(c_bio))
2649                             c_w = 1;
2650                     } else {
2651                         fprintf(stderr, "ERROR in CLIENT\n");
2652                         err_in_client = 1;
2653                         ERR_print_errors(bio_err);
2654                         goto err;
2655                     }
2656                 } else if (i == 0) {
2657                     fprintf(stderr, "SSL CLIENT STARTUP FAILED\n");
2658                     goto err;
2659                 } else {
2660                     if (debug)
2661                         printf("client wrote %d\n", i);
2662                     /* ok */
2663                     s_r = 1;
2664                     c_write = 0;
2665                     cw_num -= i;
2666                     if (max_frag > 1029)
2667                         SSL_set_max_send_fragment(c_ssl, max_frag -= 5);
2668                 }
2669             } else {
2670                 i = BIO_read(c_bio, cbuf, bufsiz);
2671                 if (i < 0) {
2672                     c_r = 0;
2673                     c_w = 0;
2674                     if (BIO_should_retry(c_bio)) {
2675                         if (BIO_should_read(c_bio))
2676                             c_r = 1;
2677                         if (BIO_should_write(c_bio))
2678                             c_w = 1;
2679                     } else {
2680                         fprintf(stderr, "ERROR in CLIENT\n");
2681                         err_in_client = 1;
2682                         ERR_print_errors(bio_err);
2683                         goto err;
2684                     }
2685                 } else if (i == 0) {
2686                     fprintf(stderr, "SSL CLIENT STARTUP FAILED\n");
2687                     goto err;
2688                 } else {
2689                     if (debug)
2690                         printf("client read %d\n", i);
2691                     cr_num -= i;
2692                     if (sw_num > 0) {
2693                         s_write = 1;
2694                         s_w = 1;
2695                     }
2696                     if (cr_num <= 0) {
2697                         s_write = 1;
2698                         s_w = 1;
2699                         done = S_DONE | C_DONE;
2700                     }
2701                 }
2702             }
2703         }
2704
2705         if (do_server && !(done & S_DONE)) {
2706             if (!s_write) {
2707                 i = BIO_read(s_bio, sbuf, bufsiz);
2708                 if (i < 0) {
2709                     s_r = 0;
2710                     s_w = 0;
2711                     if (BIO_should_retry(s_bio)) {
2712                         if (BIO_should_read(s_bio))
2713                             s_r = 1;
2714                         if (BIO_should_write(s_bio))
2715                             s_w = 1;
2716                     } else {
2717                         fprintf(stderr, "ERROR in SERVER\n");
2718                         err_in_server = 1;
2719                         ERR_print_errors(bio_err);
2720                         goto err;
2721                     }
2722                 } else if (i == 0) {
2723                     ERR_print_errors(bio_err);
2724                     fprintf(stderr,
2725                             "SSL SERVER STARTUP FAILED in SSL_read\n");
2726                     goto err;
2727                 } else {
2728                     if (debug)
2729                         printf("server read %d\n", i);
2730                     sr_num -= i;
2731                     if (cw_num > 0) {
2732                         c_write = 1;
2733                         c_w = 1;
2734                     }
2735                     if (sr_num <= 0) {
2736                         s_write = 1;
2737                         s_w = 1;
2738                         c_write = 0;
2739                     }
2740                 }
2741             } else {
2742                 j = (sw_num > bufsiz) ? (int)bufsiz : (int)sw_num;
2743                 i = BIO_write(s_bio, sbuf, j);
2744                 if (i < 0) {
2745                     s_r = 0;
2746                     s_w = 0;
2747                     if (BIO_should_retry(s_bio)) {
2748                         if (BIO_should_read(s_bio))
2749                             s_r = 1;
2750                         if (BIO_should_write(s_bio))
2751                             s_w = 1;
2752                     } else {
2753                         fprintf(stderr, "ERROR in SERVER\n");
2754                         err_in_server = 1;
2755                         ERR_print_errors(bio_err);
2756                         goto err;
2757                     }
2758                 } else if (i == 0) {
2759                     ERR_print_errors(bio_err);
2760                     fprintf(stderr,
2761                             "SSL SERVER STARTUP FAILED in SSL_write\n");
2762                     goto err;
2763                 } else {
2764                     if (debug)
2765                         printf("server wrote %d\n", i);
2766                     sw_num -= i;
2767                     s_write = 0;
2768                     c_r = 1;
2769                     if (sw_num <= 0)
2770                         done |= S_DONE;
2771                     if (max_frag > 1029)
2772                         SSL_set_max_send_fragment(s_ssl, max_frag -= 5);
2773                 }
2774             }
2775         }
2776
2777         if ((done & S_DONE) && (done & C_DONE))
2778             break;
2779     }
2780
2781     if (verbose)
2782         print_details(c_ssl, "DONE: ");
2783 #ifndef OPENSSL_NO_NEXTPROTONEG
2784     if (verify_npn(c_ssl, s_ssl) < 0)
2785         goto err;
2786 #endif
2787     if (verify_serverinfo() < 0) {
2788         fprintf(stderr, "Server info verify error\n");
2789         goto err;
2790     }
2791     if (custom_ext_error) {
2792         fprintf(stderr, "Custom extension error\n");
2793         goto err;
2794     }
2795     ret = EXIT_SUCCESS;
2796  err:
2797     BIO_free(c_to_s);
2798     BIO_free(s_to_c);
2799     BIO_free_all(c_bio);
2800     BIO_free_all(s_bio);
2801     OPENSSL_free(cbuf);
2802     OPENSSL_free(sbuf);
2803
2804     if (should_negotiate != NULL && strcmp(should_negotiate, "fail-client") == 0)
2805         ret = (err_in_client != 0) ? EXIT_SUCCESS : EXIT_FAILURE;
2806     else if (should_negotiate != NULL && strcmp(should_negotiate, "fail-server") == 0)
2807         ret = (err_in_server != 0) ? EXIT_SUCCESS : EXIT_FAILURE;
2808
2809     return ret;
2810 }
2811
2812 static int verify_callback(int ok, X509_STORE_CTX *ctx)
2813 {
2814     char *s, buf[256];
2815
2816     s = X509_NAME_oneline(X509_get_subject_name(X509_STORE_CTX_get_current_cert(ctx)),
2817                           buf, sizeof(buf));
2818     if (s != NULL) {
2819         if (ok)
2820             printf("depth=%d %s\n", X509_STORE_CTX_get_error_depth(ctx), buf);
2821         else {
2822             fprintf(stderr, "depth=%d error=%d %s\n",
2823                     X509_STORE_CTX_get_error_depth(ctx),
2824                     X509_STORE_CTX_get_error(ctx), buf);
2825         }
2826     }
2827
2828     if (ok == 0) {
2829         int i = X509_STORE_CTX_get_error(ctx);
2830
2831         switch (i) {
2832         default:
2833             fprintf(stderr, "Error string: %s\n",
2834                     X509_verify_cert_error_string(i));
2835             break;
2836         case X509_V_ERR_CERT_NOT_YET_VALID:
2837         case X509_V_ERR_CERT_HAS_EXPIRED:
2838         case X509_V_ERR_DEPTH_ZERO_SELF_SIGNED_CERT:
2839             ok = 1;
2840             break;
2841         }
2842     }
2843
2844     return ok;
2845 }
2846
2847 static int app_verify_callback(X509_STORE_CTX *ctx, void *arg)
2848 {
2849     int ok = 1;
2850     struct app_verify_arg *cb_arg = arg;
2851
2852     if (cb_arg->app_verify) {
2853         char *s = NULL, buf[256];
2854         X509 *c = X509_STORE_CTX_get0_cert(ctx);
2855
2856         printf("In app_verify_callback, allowing cert. ");
2857         printf("Arg is: %s\n", cb_arg->string);
2858         printf("Finished printing do we have a context? 0x%p a cert? 0x%p\n",
2859                 (void *)ctx, (void *)c);
2860         if (c)
2861             s = X509_NAME_oneline(X509_get_subject_name(c), buf, 256);
2862         if (s != NULL) {
2863             printf("cert depth=%d %s\n",
2864                     X509_STORE_CTX_get_error_depth(ctx), buf);
2865         }
2866         return 1;
2867     }
2868
2869     ok = X509_verify_cert(ctx);
2870
2871     return ok;
2872 }
2873
2874 #ifndef OPENSSL_NO_PSK
2875 /* convert the PSK key (psk_key) in ascii to binary (psk) */
2876 static int psk_key2bn(const char *pskkey, unsigned char *psk,
2877                       unsigned int max_psk_len)
2878 {
2879     int ret;
2880     BIGNUM *bn = NULL;
2881
2882     ret = BN_hex2bn(&bn, pskkey);
2883     if (!ret) {
2884         BIO_printf(bio_err, "Could not convert PSK key '%s' to BIGNUM\n",
2885                    pskkey);
2886         BN_free(bn);
2887         return 0;
2888     }
2889     if (BN_num_bytes(bn) > (int)max_psk_len) {
2890         BIO_printf(bio_err,
2891                    "psk buffer of callback is too small (%d) for key (%d)\n",
2892                    max_psk_len, BN_num_bytes(bn));
2893         BN_free(bn);
2894         return 0;
2895     }
2896     ret = BN_bn2bin(bn, psk);
2897     BN_free(bn);
2898     return ret;
2899 }
2900
2901 static unsigned int psk_client_callback(SSL *ssl, const char *hint,
2902                                         char *identity,
2903                                         unsigned int max_identity_len,
2904                                         unsigned char *psk,
2905                                         unsigned int max_psk_len)
2906 {
2907     int ret;
2908     unsigned int psk_len = 0;
2909
2910     ret = BIO_snprintf(identity, max_identity_len, "Client_identity");
2911     if (ret < 0)
2912         goto out_err;
2913     if (debug)
2914         fprintf(stderr, "client: created identity '%s' len=%d\n", identity,
2915                 ret);
2916     ret = psk_key2bn(psk_key, psk, max_psk_len);
2917     if (ret < 0)
2918         goto out_err;
2919     psk_len = ret;
2920  out_err:
2921     return psk_len;
2922 }
2923
2924 static unsigned int psk_server_callback(SSL *ssl, const char *identity,
2925                                         unsigned char *psk,
2926                                         unsigned int max_psk_len)
2927 {
2928     unsigned int psk_len = 0;
2929
2930     if (strcmp(identity, "Client_identity") != 0) {
2931         BIO_printf(bio_err, "server: PSK error: client identity not found\n");
2932         return 0;
2933     }
2934     psk_len = psk_key2bn(psk_key, psk, max_psk_len);
2935     return psk_len;
2936 }
2937 #endif