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