Add testcase for TLS1.3 FFDHE
[openssl.git] / test / sslapitest.c
1 /*
2  * Copyright 2016-2018 The OpenSSL Project Authors. All Rights Reserved.
3  *
4  * Licensed under the Apache License 2.0 (the "License").  You may not use
5  * this file except in compliance with the License.  You can obtain a copy
6  * in the file LICENSE in the source distribution or at
7  * https://www.openssl.org/source/license.html
8  */
9
10 #include <stdio.h>
11 #include <string.h>
12
13 #include <openssl/opensslconf.h>
14 #include <openssl/bio.h>
15 #include <openssl/crypto.h>
16 #include <openssl/ssl.h>
17 #include <openssl/ocsp.h>
18 #include <openssl/srp.h>
19 #include <openssl/txt_db.h>
20 #include <openssl/aes.h>
21 #include <openssl/rand.h>
22
23 #include "ssltestlib.h"
24 #include "testutil.h"
25 #include "testutil/output.h"
26 #include "internal/nelem.h"
27 #include "internal/ktls.h"
28 #include "../ssl/ssl_locl.h"
29
30 #ifndef OPENSSL_NO_TLS1_3
31
32 static SSL_SESSION *clientpsk = NULL;
33 static SSL_SESSION *serverpsk = NULL;
34 static const char *pskid = "Identity";
35 static const char *srvid;
36
37 static int use_session_cb(SSL *ssl, const EVP_MD *md, const unsigned char **id,
38                           size_t *idlen, SSL_SESSION **sess);
39 static int find_session_cb(SSL *ssl, const unsigned char *identity,
40                            size_t identity_len, SSL_SESSION **sess);
41
42 static int use_session_cb_cnt = 0;
43 static int find_session_cb_cnt = 0;
44
45 static SSL_SESSION *create_a_psk(SSL *ssl);
46 #endif
47
48 static char *cert = NULL;
49 static char *privkey = NULL;
50 static char *srpvfile = NULL;
51 static char *tmpfilename = NULL;
52
53 #define LOG_BUFFER_SIZE 2048
54 static char server_log_buffer[LOG_BUFFER_SIZE + 1] = {0};
55 static size_t server_log_buffer_index = 0;
56 static char client_log_buffer[LOG_BUFFER_SIZE + 1] = {0};
57 static size_t client_log_buffer_index = 0;
58 static int error_writing_log = 0;
59
60 #ifndef OPENSSL_NO_OCSP
61 static const unsigned char orespder[] = "Dummy OCSP Response";
62 static int ocsp_server_called = 0;
63 static int ocsp_client_called = 0;
64
65 static int cdummyarg = 1;
66 static X509 *ocspcert = NULL;
67 #endif
68
69 #define NUM_EXTRA_CERTS 40
70 #define CLIENT_VERSION_LEN      2
71
72 /*
73  * This structure is used to validate that the correct number of log messages
74  * of various types are emitted when emitting secret logs.
75  */
76 struct sslapitest_log_counts {
77     unsigned int rsa_key_exchange_count;
78     unsigned int master_secret_count;
79     unsigned int client_early_secret_count;
80     unsigned int client_handshake_secret_count;
81     unsigned int server_handshake_secret_count;
82     unsigned int client_application_secret_count;
83     unsigned int server_application_secret_count;
84     unsigned int early_exporter_secret_count;
85     unsigned int exporter_secret_count;
86 };
87
88
89 static unsigned char serverinfov1[] = {
90     0xff, 0xff, /* Dummy extension type */
91     0x00, 0x01, /* Extension length is 1 byte */
92     0xff        /* Dummy extension data */
93 };
94
95 static unsigned char serverinfov2[] = {
96     0x00, 0x00, 0x00,
97     (unsigned char)(SSL_EXT_CLIENT_HELLO & 0xff), /* Dummy context - 4 bytes */
98     0xff, 0xff, /* Dummy extension type */
99     0x00, 0x01, /* Extension length is 1 byte */
100     0xff        /* Dummy extension data */
101 };
102
103 static void client_keylog_callback(const SSL *ssl, const char *line)
104 {
105     int line_length = strlen(line);
106
107     /* If the log doesn't fit, error out. */
108     if (client_log_buffer_index + line_length > sizeof(client_log_buffer) - 1) {
109         TEST_info("Client log too full");
110         error_writing_log = 1;
111         return;
112     }
113
114     strcat(client_log_buffer, line);
115     client_log_buffer_index += line_length;
116     client_log_buffer[client_log_buffer_index++] = '\n';
117 }
118
119 static void server_keylog_callback(const SSL *ssl, const char *line)
120 {
121     int line_length = strlen(line);
122
123     /* If the log doesn't fit, error out. */
124     if (server_log_buffer_index + line_length > sizeof(server_log_buffer) - 1) {
125         TEST_info("Server log too full");
126         error_writing_log = 1;
127         return;
128     }
129
130     strcat(server_log_buffer, line);
131     server_log_buffer_index += line_length;
132     server_log_buffer[server_log_buffer_index++] = '\n';
133 }
134
135 static int compare_hex_encoded_buffer(const char *hex_encoded,
136                                       size_t hex_length,
137                                       const uint8_t *raw,
138                                       size_t raw_length)
139 {
140     size_t i, j;
141     char hexed[3];
142
143     if (!TEST_size_t_eq(raw_length * 2, hex_length))
144         return 1;
145
146     for (i = j = 0; i < raw_length && j + 1 < hex_length; i++, j += 2) {
147         sprintf(hexed, "%02x", raw[i]);
148         if (!TEST_int_eq(hexed[0], hex_encoded[j])
149                 || !TEST_int_eq(hexed[1], hex_encoded[j + 1]))
150             return 1;
151     }
152
153     return 0;
154 }
155
156 static int test_keylog_output(char *buffer, const SSL *ssl,
157                               const SSL_SESSION *session,
158                               struct sslapitest_log_counts *expected)
159 {
160     char *token = NULL;
161     unsigned char actual_client_random[SSL3_RANDOM_SIZE] = {0};
162     size_t client_random_size = SSL3_RANDOM_SIZE;
163     unsigned char actual_master_key[SSL_MAX_MASTER_KEY_LENGTH] = {0};
164     size_t master_key_size = SSL_MAX_MASTER_KEY_LENGTH;
165     unsigned int rsa_key_exchange_count = 0;
166     unsigned int master_secret_count = 0;
167     unsigned int client_early_secret_count = 0;
168     unsigned int client_handshake_secret_count = 0;
169     unsigned int server_handshake_secret_count = 0;
170     unsigned int client_application_secret_count = 0;
171     unsigned int server_application_secret_count = 0;
172     unsigned int early_exporter_secret_count = 0;
173     unsigned int exporter_secret_count = 0;
174
175     for (token = strtok(buffer, " \n"); token != NULL;
176          token = strtok(NULL, " \n")) {
177         if (strcmp(token, "RSA") == 0) {
178             /*
179              * Premaster secret. Tokens should be: 16 ASCII bytes of
180              * hex-encoded encrypted secret, then the hex-encoded pre-master
181              * secret.
182              */
183             if (!TEST_ptr(token = strtok(NULL, " \n")))
184                 return 0;
185             if (!TEST_size_t_eq(strlen(token), 16))
186                 return 0;
187             if (!TEST_ptr(token = strtok(NULL, " \n")))
188                 return 0;
189             /*
190              * We can't sensibly check the log because the premaster secret is
191              * transient, and OpenSSL doesn't keep hold of it once the master
192              * secret is generated.
193              */
194             rsa_key_exchange_count++;
195         } else if (strcmp(token, "CLIENT_RANDOM") == 0) {
196             /*
197              * Master secret. Tokens should be: 64 ASCII bytes of hex-encoded
198              * client random, then the hex-encoded master secret.
199              */
200             client_random_size = SSL_get_client_random(ssl,
201                                                        actual_client_random,
202                                                        SSL3_RANDOM_SIZE);
203             if (!TEST_size_t_eq(client_random_size, SSL3_RANDOM_SIZE))
204                 return 0;
205
206             if (!TEST_ptr(token = strtok(NULL, " \n")))
207                 return 0;
208             if (!TEST_size_t_eq(strlen(token), 64))
209                 return 0;
210             if (!TEST_false(compare_hex_encoded_buffer(token, 64,
211                                                        actual_client_random,
212                                                        client_random_size)))
213                 return 0;
214
215             if (!TEST_ptr(token = strtok(NULL, " \n")))
216                 return 0;
217             master_key_size = SSL_SESSION_get_master_key(session,
218                                                          actual_master_key,
219                                                          master_key_size);
220             if (!TEST_size_t_ne(master_key_size, 0))
221                 return 0;
222             if (!TEST_false(compare_hex_encoded_buffer(token, strlen(token),
223                                                        actual_master_key,
224                                                        master_key_size)))
225                 return 0;
226             master_secret_count++;
227         } else if (strcmp(token, "CLIENT_EARLY_TRAFFIC_SECRET") == 0
228                     || strcmp(token, "CLIENT_HANDSHAKE_TRAFFIC_SECRET") == 0
229                     || strcmp(token, "SERVER_HANDSHAKE_TRAFFIC_SECRET") == 0
230                     || strcmp(token, "CLIENT_TRAFFIC_SECRET_0") == 0
231                     || strcmp(token, "SERVER_TRAFFIC_SECRET_0") == 0
232                     || strcmp(token, "EARLY_EXPORTER_SECRET") == 0
233                     || strcmp(token, "EXPORTER_SECRET") == 0) {
234             /*
235              * TLSv1.3 secret. Tokens should be: 64 ASCII bytes of hex-encoded
236              * client random, and then the hex-encoded secret. In this case,
237              * we treat all of these secrets identically and then just
238              * distinguish between them when counting what we saw.
239              */
240             if (strcmp(token, "CLIENT_EARLY_TRAFFIC_SECRET") == 0)
241                 client_early_secret_count++;
242             else if (strcmp(token, "CLIENT_HANDSHAKE_TRAFFIC_SECRET") == 0)
243                 client_handshake_secret_count++;
244             else if (strcmp(token, "SERVER_HANDSHAKE_TRAFFIC_SECRET") == 0)
245                 server_handshake_secret_count++;
246             else if (strcmp(token, "CLIENT_TRAFFIC_SECRET_0") == 0)
247                 client_application_secret_count++;
248             else if (strcmp(token, "SERVER_TRAFFIC_SECRET_0") == 0)
249                 server_application_secret_count++;
250             else if (strcmp(token, "EARLY_EXPORTER_SECRET") == 0)
251                 early_exporter_secret_count++;
252             else if (strcmp(token, "EXPORTER_SECRET") == 0)
253                 exporter_secret_count++;
254
255             client_random_size = SSL_get_client_random(ssl,
256                                                        actual_client_random,
257                                                        SSL3_RANDOM_SIZE);
258             if (!TEST_size_t_eq(client_random_size, SSL3_RANDOM_SIZE))
259                 return 0;
260
261             if (!TEST_ptr(token = strtok(NULL, " \n")))
262                 return 0;
263             if (!TEST_size_t_eq(strlen(token), 64))
264                 return 0;
265             if (!TEST_false(compare_hex_encoded_buffer(token, 64,
266                                                        actual_client_random,
267                                                        client_random_size)))
268                 return 0;
269
270             if (!TEST_ptr(token = strtok(NULL, " \n")))
271                 return 0;
272
273             /*
274              * TODO(TLS1.3): test that application traffic secrets are what
275              * we expect */
276         } else {
277             TEST_info("Unexpected token %s\n", token);
278             return 0;
279         }
280     }
281
282     /* Got what we expected? */
283     if (!TEST_size_t_eq(rsa_key_exchange_count,
284                         expected->rsa_key_exchange_count)
285             || !TEST_size_t_eq(master_secret_count,
286                                expected->master_secret_count)
287             || !TEST_size_t_eq(client_early_secret_count,
288                                expected->client_early_secret_count)
289             || !TEST_size_t_eq(client_handshake_secret_count,
290                                expected->client_handshake_secret_count)
291             || !TEST_size_t_eq(server_handshake_secret_count,
292                                expected->server_handshake_secret_count)
293             || !TEST_size_t_eq(client_application_secret_count,
294                                expected->client_application_secret_count)
295             || !TEST_size_t_eq(server_application_secret_count,
296                                expected->server_application_secret_count)
297             || !TEST_size_t_eq(early_exporter_secret_count,
298                                expected->early_exporter_secret_count)
299             || !TEST_size_t_eq(exporter_secret_count,
300                                expected->exporter_secret_count))
301         return 0;
302     return 1;
303 }
304
305 #if !defined(OPENSSL_NO_TLS1_2) || defined(OPENSSL_NO_TLS1_3)
306 static int test_keylog(void)
307 {
308     SSL_CTX *cctx = NULL, *sctx = NULL;
309     SSL *clientssl = NULL, *serverssl = NULL;
310     int testresult = 0;
311     struct sslapitest_log_counts expected;
312
313     /* Clean up logging space */
314     memset(&expected, 0, sizeof(expected));
315     memset(client_log_buffer, 0, sizeof(client_log_buffer));
316     memset(server_log_buffer, 0, sizeof(server_log_buffer));
317     client_log_buffer_index = 0;
318     server_log_buffer_index = 0;
319     error_writing_log = 0;
320
321     if (!TEST_true(create_ssl_ctx_pair(TLS_server_method(),
322                                        TLS_client_method(),
323                                        TLS1_VERSION, 0,
324                                        &sctx, &cctx, cert, privkey)))
325         return 0;
326
327     /* We cannot log the master secret for TLSv1.3, so we should forbid it. */
328     SSL_CTX_set_options(cctx, SSL_OP_NO_TLSv1_3);
329     SSL_CTX_set_options(sctx, SSL_OP_NO_TLSv1_3);
330
331     /* We also want to ensure that we use RSA-based key exchange. */
332     if (!TEST_true(SSL_CTX_set_cipher_list(cctx, "RSA")))
333         goto end;
334
335     if (!TEST_true(SSL_CTX_get_keylog_callback(cctx) == NULL)
336             || !TEST_true(SSL_CTX_get_keylog_callback(sctx) == NULL))
337         goto end;
338     SSL_CTX_set_keylog_callback(cctx, client_keylog_callback);
339     if (!TEST_true(SSL_CTX_get_keylog_callback(cctx)
340                    == client_keylog_callback))
341         goto end;
342     SSL_CTX_set_keylog_callback(sctx, server_keylog_callback);
343     if (!TEST_true(SSL_CTX_get_keylog_callback(sctx)
344                    == server_keylog_callback))
345         goto end;
346
347     /* Now do a handshake and check that the logs have been written to. */
348     if (!TEST_true(create_ssl_objects(sctx, cctx, &serverssl,
349                                       &clientssl, NULL, NULL))
350             || !TEST_true(create_ssl_connection(serverssl, clientssl,
351                                                 SSL_ERROR_NONE))
352             || !TEST_false(error_writing_log)
353             || !TEST_int_gt(client_log_buffer_index, 0)
354             || !TEST_int_gt(server_log_buffer_index, 0))
355         goto end;
356
357     /*
358      * Now we want to test that our output data was vaguely sensible. We
359      * do that by using strtok and confirming that we have more or less the
360      * data we expect. For both client and server, we expect to see one master
361      * secret. The client should also see a RSA key exchange.
362      */
363     expected.rsa_key_exchange_count = 1;
364     expected.master_secret_count = 1;
365     if (!TEST_true(test_keylog_output(client_log_buffer, clientssl,
366                                       SSL_get_session(clientssl), &expected)))
367         goto end;
368
369     expected.rsa_key_exchange_count = 0;
370     if (!TEST_true(test_keylog_output(server_log_buffer, serverssl,
371                                       SSL_get_session(serverssl), &expected)))
372         goto end;
373
374     testresult = 1;
375
376 end:
377     SSL_free(serverssl);
378     SSL_free(clientssl);
379     SSL_CTX_free(sctx);
380     SSL_CTX_free(cctx);
381
382     return testresult;
383 }
384 #endif
385
386 #ifndef OPENSSL_NO_TLS1_3
387 static int test_keylog_no_master_key(void)
388 {
389     SSL_CTX *cctx = NULL, *sctx = NULL;
390     SSL *clientssl = NULL, *serverssl = NULL;
391     SSL_SESSION *sess = NULL;
392     int testresult = 0;
393     struct sslapitest_log_counts expected;
394     unsigned char buf[1];
395     size_t readbytes, written;
396
397     /* Clean up logging space */
398     memset(&expected, 0, sizeof(expected));
399     memset(client_log_buffer, 0, sizeof(client_log_buffer));
400     memset(server_log_buffer, 0, sizeof(server_log_buffer));
401     client_log_buffer_index = 0;
402     server_log_buffer_index = 0;
403     error_writing_log = 0;
404
405     if (!TEST_true(create_ssl_ctx_pair(TLS_server_method(), TLS_client_method(),
406                                        TLS1_VERSION, 0,
407                                        &sctx, &cctx, cert, privkey))
408         || !TEST_true(SSL_CTX_set_max_early_data(sctx,
409                                                  SSL3_RT_MAX_PLAIN_LENGTH)))
410         return 0;
411
412     if (!TEST_true(SSL_CTX_get_keylog_callback(cctx) == NULL)
413             || !TEST_true(SSL_CTX_get_keylog_callback(sctx) == NULL))
414         goto end;
415
416     SSL_CTX_set_keylog_callback(cctx, client_keylog_callback);
417     if (!TEST_true(SSL_CTX_get_keylog_callback(cctx)
418                    == client_keylog_callback))
419         goto end;
420
421     SSL_CTX_set_keylog_callback(sctx, server_keylog_callback);
422     if (!TEST_true(SSL_CTX_get_keylog_callback(sctx)
423                    == server_keylog_callback))
424         goto end;
425
426     /* Now do a handshake and check that the logs have been written to. */
427     if (!TEST_true(create_ssl_objects(sctx, cctx, &serverssl,
428                                       &clientssl, NULL, NULL))
429             || !TEST_true(create_ssl_connection(serverssl, clientssl,
430                                                 SSL_ERROR_NONE))
431             || !TEST_false(error_writing_log))
432         goto end;
433
434     /*
435      * Now we want to test that our output data was vaguely sensible. For this
436      * test, we expect no CLIENT_RANDOM entry because it doesn't make sense for
437      * TLSv1.3, but we do expect both client and server to emit keys.
438      */
439     expected.client_handshake_secret_count = 1;
440     expected.server_handshake_secret_count = 1;
441     expected.client_application_secret_count = 1;
442     expected.server_application_secret_count = 1;
443     expected.exporter_secret_count = 1;
444     if (!TEST_true(test_keylog_output(client_log_buffer, clientssl,
445                                       SSL_get_session(clientssl), &expected))
446             || !TEST_true(test_keylog_output(server_log_buffer, serverssl,
447                                              SSL_get_session(serverssl),
448                                              &expected)))
449         goto end;
450
451     /* Terminate old session and resume with early data. */
452     sess = SSL_get1_session(clientssl);
453     SSL_shutdown(clientssl);
454     SSL_shutdown(serverssl);
455     SSL_free(serverssl);
456     SSL_free(clientssl);
457     serverssl = clientssl = NULL;
458
459     /* Reset key log */
460     memset(client_log_buffer, 0, sizeof(client_log_buffer));
461     memset(server_log_buffer, 0, sizeof(server_log_buffer));
462     client_log_buffer_index = 0;
463     server_log_buffer_index = 0;
464
465     if (!TEST_true(create_ssl_objects(sctx, cctx, &serverssl,
466                                       &clientssl, NULL, NULL))
467             || !TEST_true(SSL_set_session(clientssl, sess))
468             /* Here writing 0 length early data is enough. */
469             || !TEST_true(SSL_write_early_data(clientssl, NULL, 0, &written))
470             || !TEST_int_eq(SSL_read_early_data(serverssl, buf, sizeof(buf),
471                                                 &readbytes),
472                             SSL_READ_EARLY_DATA_ERROR)
473             || !TEST_int_eq(SSL_get_early_data_status(serverssl),
474                             SSL_EARLY_DATA_ACCEPTED)
475             || !TEST_true(create_ssl_connection(serverssl, clientssl,
476                           SSL_ERROR_NONE))
477             || !TEST_true(SSL_session_reused(clientssl)))
478         goto end;
479
480     /* In addition to the previous entries, expect early secrets. */
481     expected.client_early_secret_count = 1;
482     expected.early_exporter_secret_count = 1;
483     if (!TEST_true(test_keylog_output(client_log_buffer, clientssl,
484                                       SSL_get_session(clientssl), &expected))
485             || !TEST_true(test_keylog_output(server_log_buffer, serverssl,
486                                              SSL_get_session(serverssl),
487                                              &expected)))
488         goto end;
489
490     testresult = 1;
491
492 end:
493     SSL_SESSION_free(sess);
494     SSL_free(serverssl);
495     SSL_free(clientssl);
496     SSL_CTX_free(sctx);
497     SSL_CTX_free(cctx);
498
499     return testresult;
500 }
501 #endif
502
503 #ifndef OPENSSL_NO_TLS1_2
504 static int full_client_hello_callback(SSL *s, int *al, void *arg)
505 {
506     int *ctr = arg;
507     const unsigned char *p;
508     int *exts;
509     /* We only configure two ciphers, but the SCSV is added automatically. */
510 #ifdef OPENSSL_NO_EC
511     const unsigned char expected_ciphers[] = {0x00, 0x9d, 0x00, 0xff};
512 #else
513     const unsigned char expected_ciphers[] = {0x00, 0x9d, 0xc0,
514                                               0x2c, 0x00, 0xff};
515 #endif
516     const int expected_extensions[] = {
517 #ifndef OPENSSL_NO_EC
518                                        11, 10,
519 #endif
520                                        35, 22, 23, 13};
521     size_t len;
522
523     /* Make sure we can defer processing and get called back. */
524     if ((*ctr)++ == 0)
525         return SSL_CLIENT_HELLO_RETRY;
526
527     len = SSL_client_hello_get0_ciphers(s, &p);
528     if (!TEST_mem_eq(p, len, expected_ciphers, sizeof(expected_ciphers))
529             || !TEST_size_t_eq(
530                        SSL_client_hello_get0_compression_methods(s, &p), 1)
531             || !TEST_int_eq(*p, 0))
532         return SSL_CLIENT_HELLO_ERROR;
533     if (!SSL_client_hello_get1_extensions_present(s, &exts, &len))
534         return SSL_CLIENT_HELLO_ERROR;
535     if (len != OSSL_NELEM(expected_extensions) ||
536         memcmp(exts, expected_extensions, len * sizeof(*exts)) != 0) {
537         printf("ClientHello callback expected extensions mismatch\n");
538         OPENSSL_free(exts);
539         return SSL_CLIENT_HELLO_ERROR;
540     }
541     OPENSSL_free(exts);
542     return SSL_CLIENT_HELLO_SUCCESS;
543 }
544
545 static int test_client_hello_cb(void)
546 {
547     SSL_CTX *cctx = NULL, *sctx = NULL;
548     SSL *clientssl = NULL, *serverssl = NULL;
549     int testctr = 0, testresult = 0;
550
551     if (!TEST_true(create_ssl_ctx_pair(TLS_server_method(), TLS_client_method(),
552                                        TLS1_VERSION, 0,
553                                        &sctx, &cctx, cert, privkey)))
554         goto end;
555     SSL_CTX_set_client_hello_cb(sctx, full_client_hello_callback, &testctr);
556
557     /* The gimpy cipher list we configure can't do TLS 1.3. */
558     SSL_CTX_set_max_proto_version(cctx, TLS1_2_VERSION);
559
560     if (!TEST_true(SSL_CTX_set_cipher_list(cctx,
561                         "AES256-GCM-SHA384:ECDHE-ECDSA-AES256-GCM-SHA384"))
562             || !TEST_true(create_ssl_objects(sctx, cctx, &serverssl,
563                                              &clientssl, NULL, NULL))
564             || !TEST_false(create_ssl_connection(serverssl, clientssl,
565                         SSL_ERROR_WANT_CLIENT_HELLO_CB))
566                 /*
567                  * Passing a -1 literal is a hack since
568                  * the real value was lost.
569                  * */
570             || !TEST_int_eq(SSL_get_error(serverssl, -1),
571                             SSL_ERROR_WANT_CLIENT_HELLO_CB)
572             || !TEST_true(create_ssl_connection(serverssl, clientssl,
573                                                 SSL_ERROR_NONE)))
574         goto end;
575
576     testresult = 1;
577
578 end:
579     SSL_free(serverssl);
580     SSL_free(clientssl);
581     SSL_CTX_free(sctx);
582     SSL_CTX_free(cctx);
583
584     return testresult;
585 }
586
587 static int test_no_ems(void)
588 {
589     SSL_CTX *cctx = NULL, *sctx = NULL;
590     SSL *clientssl = NULL, *serverssl = NULL;
591     int testresult = 0;
592
593     if (!create_ssl_ctx_pair(TLS_server_method(), TLS_client_method(),
594                              TLS1_VERSION, TLS1_2_VERSION,
595                              &sctx, &cctx, cert, privkey)) {
596         printf("Unable to create SSL_CTX pair\n");
597         goto end;
598     }
599
600     SSL_CTX_set_options(sctx, SSL_OP_NO_EXTENDED_MASTER_SECRET);
601
602     if (!create_ssl_objects(sctx, cctx, &serverssl, &clientssl, NULL, NULL)) {
603         printf("Unable to create SSL objects\n");
604         goto end;
605     }
606
607     if (!create_ssl_connection(serverssl, clientssl, SSL_ERROR_NONE)) {
608         printf("Creating SSL connection failed\n");
609         goto end;
610     }
611
612     if (SSL_get_extms_support(serverssl)) {
613         printf("Server reports Extended Master Secret support\n");
614         goto end;
615     }
616
617     if (SSL_get_extms_support(clientssl)) {
618         printf("Client reports Extended Master Secret support\n");
619         goto end;
620     }
621     testresult = 1;
622
623 end:
624     SSL_free(serverssl);
625     SSL_free(clientssl);
626     SSL_CTX_free(sctx);
627     SSL_CTX_free(cctx);
628
629     return testresult;
630 }
631 #endif
632
633 static int execute_test_large_message(const SSL_METHOD *smeth,
634                                       const SSL_METHOD *cmeth,
635                                       int min_version, int max_version,
636                                       int read_ahead)
637 {
638     SSL_CTX *cctx = NULL, *sctx = NULL;
639     SSL *clientssl = NULL, *serverssl = NULL;
640     int testresult = 0;
641     int i;
642     BIO *certbio = NULL;
643     X509 *chaincert = NULL;
644     int certlen;
645
646     if (!TEST_ptr(certbio = BIO_new_file(cert, "r")))
647         goto end;
648     chaincert = PEM_read_bio_X509(certbio, NULL, NULL, NULL);
649     BIO_free(certbio);
650     certbio = NULL;
651     if (!TEST_ptr(chaincert))
652         goto end;
653
654     if (!TEST_true(create_ssl_ctx_pair(smeth, cmeth, min_version, max_version,
655                                        &sctx, &cctx, cert, privkey)))
656         goto end;
657
658     if (read_ahead) {
659         /*
660          * Test that read_ahead works correctly when dealing with large
661          * records
662          */
663         SSL_CTX_set_read_ahead(cctx, 1);
664     }
665
666     /*
667      * We assume the supplied certificate is big enough so that if we add
668      * NUM_EXTRA_CERTS it will make the overall message large enough. The
669      * default buffer size is requested to be 16k, but due to the way BUF_MEM
670      * works, it ends up allocating a little over 21k (16 * 4/3). So, in this
671      * test we need to have a message larger than that.
672      */
673     certlen = i2d_X509(chaincert, NULL);
674     OPENSSL_assert(certlen * NUM_EXTRA_CERTS >
675                    (SSL3_RT_MAX_PLAIN_LENGTH * 4) / 3);
676     for (i = 0; i < NUM_EXTRA_CERTS; i++) {
677         if (!X509_up_ref(chaincert))
678             goto end;
679         if (!SSL_CTX_add_extra_chain_cert(sctx, chaincert)) {
680             X509_free(chaincert);
681             goto end;
682         }
683     }
684
685     if (!TEST_true(create_ssl_objects(sctx, cctx, &serverssl, &clientssl,
686                                       NULL, NULL))
687             || !TEST_true(create_ssl_connection(serverssl, clientssl,
688                                                 SSL_ERROR_NONE)))
689         goto end;
690
691     /*
692      * Calling SSL_clear() first is not required but this tests that SSL_clear()
693      * doesn't leak (when using enable-crypto-mdebug).
694      */
695     if (!TEST_true(SSL_clear(serverssl)))
696         goto end;
697
698     testresult = 1;
699  end:
700     X509_free(chaincert);
701     SSL_free(serverssl);
702     SSL_free(clientssl);
703     SSL_CTX_free(sctx);
704     SSL_CTX_free(cctx);
705
706     return testresult;
707 }
708
709 #if !defined(OPENSSL_NO_TLS1_2) && !defined(OPENSSL_NO_KTLS) \
710     && !defined(OPENSSL_NO_SOCK)
711
712 /* sock must be connected */
713 static int ktls_chk_platform(int sock)
714 {
715     if (!ktls_enable(sock))
716         return 0;
717     return 1;
718 }
719
720 static int ping_pong_query(SSL *clientssl, SSL *serverssl, int cfd, int sfd)
721 {
722     static char count = 1;
723     unsigned char cbuf[16000] = {0};
724     unsigned char sbuf[16000];
725     size_t err = 0;
726     char crec_wseq_before[TLS_CIPHER_AES_GCM_128_REC_SEQ_SIZE];
727     char crec_wseq_after[TLS_CIPHER_AES_GCM_128_REC_SEQ_SIZE];
728     char crec_rseq_before[TLS_CIPHER_AES_GCM_128_REC_SEQ_SIZE];
729     char crec_rseq_after[TLS_CIPHER_AES_GCM_128_REC_SEQ_SIZE];
730     char srec_wseq_before[TLS_CIPHER_AES_GCM_128_REC_SEQ_SIZE];
731     char srec_wseq_after[TLS_CIPHER_AES_GCM_128_REC_SEQ_SIZE];
732     char srec_rseq_before[TLS_CIPHER_AES_GCM_128_REC_SEQ_SIZE];
733     char srec_rseq_after[TLS_CIPHER_AES_GCM_128_REC_SEQ_SIZE];
734
735     cbuf[0] = count++;
736     memcpy(crec_wseq_before, &clientssl->rlayer.write_sequence,
737             TLS_CIPHER_AES_GCM_128_REC_SEQ_SIZE);
738     memcpy(crec_rseq_before, &clientssl->rlayer.read_sequence,
739             TLS_CIPHER_AES_GCM_128_REC_SEQ_SIZE);
740     memcpy(srec_wseq_before, &serverssl->rlayer.write_sequence,
741             TLS_CIPHER_AES_GCM_128_REC_SEQ_SIZE);
742     memcpy(srec_rseq_before, &serverssl->rlayer.read_sequence,
743             TLS_CIPHER_AES_GCM_128_REC_SEQ_SIZE);
744
745     if (!TEST_true(SSL_write(clientssl, cbuf, sizeof(cbuf)) == sizeof(cbuf)))
746         goto end;
747
748     while ((err = SSL_read(serverssl, &sbuf, sizeof(sbuf))) != sizeof(sbuf)) {
749         if (SSL_get_error(serverssl, err) != SSL_ERROR_WANT_READ) {
750             goto end;
751         }
752     }
753
754     if (!TEST_true(SSL_write(serverssl, sbuf, sizeof(sbuf)) == sizeof(sbuf)))
755         goto end;
756
757     while ((err = SSL_read(clientssl, &cbuf, sizeof(cbuf))) != sizeof(cbuf)) {
758         if (SSL_get_error(clientssl, err) != SSL_ERROR_WANT_READ) {
759             goto end;
760         }
761     }
762
763     memcpy(crec_wseq_after, &clientssl->rlayer.write_sequence,
764             TLS_CIPHER_AES_GCM_128_REC_SEQ_SIZE);
765     memcpy(crec_rseq_after, &clientssl->rlayer.read_sequence,
766             TLS_CIPHER_AES_GCM_128_REC_SEQ_SIZE);
767     memcpy(srec_wseq_after, &serverssl->rlayer.write_sequence,
768             TLS_CIPHER_AES_GCM_128_REC_SEQ_SIZE);
769     memcpy(srec_rseq_after, &serverssl->rlayer.read_sequence,
770             TLS_CIPHER_AES_GCM_128_REC_SEQ_SIZE);
771
772     /* verify the payload */
773     if (!TEST_mem_eq(cbuf, sizeof(cbuf), sbuf, sizeof(sbuf)))
774         goto end;
775
776     /* ktls is used then kernel sequences are used instead of OpenSSL sequences */
777     if (clientssl->mode & SSL_MODE_NO_KTLS_TX) {
778         if (!TEST_mem_ne(crec_wseq_before, TLS_CIPHER_AES_GCM_128_REC_SEQ_SIZE,
779                          crec_wseq_after, TLS_CIPHER_AES_GCM_128_REC_SEQ_SIZE))
780             goto end;
781     } else {
782         if (!TEST_mem_eq(crec_wseq_before, TLS_CIPHER_AES_GCM_128_REC_SEQ_SIZE,
783                          crec_wseq_after, TLS_CIPHER_AES_GCM_128_REC_SEQ_SIZE))
784             goto end;
785     }
786
787     if (serverssl->mode & SSL_MODE_NO_KTLS_TX) {
788         if (!TEST_mem_ne(srec_wseq_before, TLS_CIPHER_AES_GCM_128_REC_SEQ_SIZE,
789                          srec_wseq_after, TLS_CIPHER_AES_GCM_128_REC_SEQ_SIZE))
790             goto end;
791     } else {
792         if (!TEST_mem_eq(srec_wseq_before, TLS_CIPHER_AES_GCM_128_REC_SEQ_SIZE,
793                          srec_wseq_after, TLS_CIPHER_AES_GCM_128_REC_SEQ_SIZE))
794             goto end;
795     }
796
797     if (clientssl->mode & SSL_MODE_NO_KTLS_RX) {
798         if (!TEST_mem_ne(crec_rseq_before, TLS_CIPHER_AES_GCM_128_REC_SEQ_SIZE,
799                          crec_rseq_after, TLS_CIPHER_AES_GCM_128_REC_SEQ_SIZE))
800             goto end;
801     } else {
802         if (!TEST_mem_eq(crec_rseq_before, TLS_CIPHER_AES_GCM_128_REC_SEQ_SIZE,
803                          crec_rseq_after, TLS_CIPHER_AES_GCM_128_REC_SEQ_SIZE))
804             goto end;
805     }
806
807     if (serverssl->mode & SSL_MODE_NO_KTLS_RX) {
808         if (!TEST_mem_ne(srec_rseq_before, TLS_CIPHER_AES_GCM_128_REC_SEQ_SIZE,
809                          srec_rseq_after, TLS_CIPHER_AES_GCM_128_REC_SEQ_SIZE))
810             goto end;
811     } else {
812         if (!TEST_mem_eq(srec_rseq_before, TLS_CIPHER_AES_GCM_128_REC_SEQ_SIZE,
813                          srec_rseq_after, TLS_CIPHER_AES_GCM_128_REC_SEQ_SIZE))
814             goto end;
815     }
816
817     return 1;
818 end:
819     return 0;
820 }
821
822 static int execute_test_ktls(int cis_ktls_tx, int cis_ktls_rx,
823                              int sis_ktls_tx, int sis_ktls_rx)
824 {
825     SSL_CTX *cctx = NULL, *sctx = NULL;
826     SSL *clientssl = NULL, *serverssl = NULL;
827     int testresult = 0;
828     int cfd, sfd;
829
830     if (!TEST_true(create_test_sockets(&cfd, &sfd)))
831         goto end;
832
833     /* Skip this test if the platform does not support ktls */
834     if (!ktls_chk_platform(cfd))
835         return 1;
836
837     /* Create a session based on SHA-256 */
838     if (!TEST_true(create_ssl_ctx_pair(TLS_server_method(),
839                                        TLS_client_method(),
840                                        TLS1_2_VERSION, TLS1_2_VERSION,
841                                        &sctx, &cctx, cert, privkey))
842             || !TEST_true(SSL_CTX_set_cipher_list(cctx,
843                                                   "AES128-GCM-SHA256"))
844             || !TEST_true(create_ssl_objects2(sctx, cctx, &serverssl,
845                                           &clientssl, sfd, cfd)))
846         goto end;
847
848     if (!cis_ktls_tx) {
849         if (!TEST_true(SSL_set_mode(clientssl, SSL_MODE_NO_KTLS_TX)))
850             goto end;
851     }
852
853     if (!sis_ktls_tx) {
854         if (!TEST_true(SSL_set_mode(serverssl, SSL_MODE_NO_KTLS_TX)))
855             goto end;
856     }
857
858     if (!cis_ktls_rx) {
859         if (!TEST_true(SSL_set_mode(clientssl, SSL_MODE_NO_KTLS_RX)))
860             goto end;
861     }
862
863     if (!sis_ktls_rx) {
864         if (!TEST_true(SSL_set_mode(serverssl, SSL_MODE_NO_KTLS_RX)))
865             goto end;
866     }
867
868     if (!TEST_true(create_ssl_connection(serverssl, clientssl,
869                                                 SSL_ERROR_NONE)))
870         goto end;
871
872     if (!cis_ktls_tx) {
873         if (!TEST_false(BIO_get_ktls_send(clientssl->wbio)))
874             goto end;
875     } else {
876         if (!TEST_true(BIO_get_ktls_send(clientssl->wbio)))
877             goto end;
878     }
879
880     if (!sis_ktls_tx) {
881         if (!TEST_false(BIO_get_ktls_send(serverssl->wbio)))
882             goto end;
883     } else {
884         if (!TEST_true(BIO_get_ktls_send(serverssl->wbio)))
885             goto end;
886     }
887
888     if (!cis_ktls_rx) {
889         if (!TEST_false(BIO_get_ktls_recv(clientssl->rbio)))
890             goto end;
891     } else {
892         if (!TEST_true(BIO_get_ktls_recv(clientssl->rbio)))
893             goto end;
894     }
895
896     if (!sis_ktls_rx) {
897         if (!TEST_false(BIO_get_ktls_recv(serverssl->rbio)))
898             goto end;
899     } else {
900         if (!TEST_true(BIO_get_ktls_recv(serverssl->rbio)))
901             goto end;
902     }
903
904     if (!TEST_true(ping_pong_query(clientssl, serverssl, cfd, sfd)))
905         goto end;
906
907     testresult = 1;
908 end:
909     if (clientssl) {
910         SSL_shutdown(clientssl);
911         SSL_free(clientssl);
912     }
913     if (serverssl) {
914         SSL_shutdown(serverssl);
915         SSL_free(serverssl);
916     }
917     SSL_CTX_free(sctx);
918     SSL_CTX_free(cctx);
919     serverssl = clientssl = NULL;
920     return testresult;
921 }
922
923 #define SENDFILE_SZ                     (16 * 4096)
924 #define SENDFILE_CHUNK                  (4 * 4096)
925 #define min(a,b)                        ((a) > (b) ? (b) : (a))
926
927 static int test_ktls_sendfile(void)
928 {
929     SSL_CTX *cctx = NULL, *sctx = NULL;
930     SSL *clientssl = NULL, *serverssl = NULL;
931     unsigned char *buf, *buf_dst;
932     BIO *out = NULL, *in = NULL;
933     int cfd, sfd, ffd, err;
934     ssize_t chunk_size = 0;
935     off_t chunk_off = 0;
936     int testresult = 0;
937     FILE *ffdp;
938
939     buf = OPENSSL_zalloc(SENDFILE_SZ);
940     buf_dst = OPENSSL_zalloc(SENDFILE_SZ);
941     if (!TEST_ptr(buf) || !TEST_ptr(buf_dst)
942         || !TEST_true(create_test_sockets(&cfd, &sfd)))
943         goto end;
944
945     /* Skip this test if the platform does not support ktls */
946     if (!ktls_chk_platform(sfd)) {
947         testresult = 1;
948         goto end;
949     }
950
951     /* Create a session based on SHA-256 */
952     if (!TEST_true(create_ssl_ctx_pair(TLS_server_method(),
953                                        TLS_client_method(),
954                                        TLS1_2_VERSION, TLS1_2_VERSION,
955                                        &sctx, &cctx, cert, privkey))
956         || !TEST_true(SSL_CTX_set_cipher_list(cctx,
957                                               "AES128-GCM-SHA256"))
958         || !TEST_true(create_ssl_objects2(sctx, cctx, &serverssl,
959                                           &clientssl, sfd, cfd)))
960         goto end;
961
962     if (!TEST_true(create_ssl_connection(serverssl, clientssl,
963                                          SSL_ERROR_NONE))
964         || !TEST_true(BIO_get_ktls_send(serverssl->wbio)))
965         goto end;
966
967     RAND_bytes(buf, SENDFILE_SZ);
968     out = BIO_new_file(tmpfilename, "wb");
969     if (!TEST_ptr(out))
970         goto end;
971
972     if (BIO_write(out, buf, SENDFILE_SZ) != SENDFILE_SZ)
973         goto end;
974
975     BIO_free(out);
976     out = NULL;
977     in = BIO_new_file(tmpfilename, "rb");
978     BIO_get_fp(in, &ffdp);
979     ffd = fileno(ffdp);
980
981     while (chunk_off < SENDFILE_SZ) {
982         chunk_size = min(SENDFILE_CHUNK, SENDFILE_SZ - chunk_off);
983         while ((err = SSL_sendfile(serverssl,
984                                    ffd,
985                                    chunk_off,
986                                    chunk_size,
987                                    0)) != chunk_size) {
988             if (SSL_get_error(serverssl, err) != SSL_ERROR_WANT_WRITE)
989                 goto end;
990         }
991         while ((err = SSL_read(clientssl,
992                                buf_dst + chunk_off,
993                                chunk_size)) != chunk_size) {
994             if (SSL_get_error(clientssl, err) != SSL_ERROR_WANT_READ)
995                 goto end;
996         }
997
998         /* verify the payload */
999         if (!TEST_mem_eq(buf_dst + chunk_off,
1000                          chunk_size,
1001                          buf + chunk_off,
1002                          chunk_size))
1003             goto end;
1004
1005         chunk_off += chunk_size;
1006     }
1007
1008     testresult = 1;
1009 end:
1010     if (clientssl) {
1011         SSL_shutdown(clientssl);
1012         SSL_free(clientssl);
1013     }
1014     if (serverssl) {
1015         SSL_shutdown(serverssl);
1016         SSL_free(serverssl);
1017     }
1018     SSL_CTX_free(sctx);
1019     SSL_CTX_free(cctx);
1020     serverssl = clientssl = NULL;
1021     BIO_free(out);
1022     BIO_free(in);
1023     OPENSSL_free(buf);
1024     OPENSSL_free(buf_dst);
1025     return testresult;
1026 }
1027
1028 static int test_ktls_no_txrx_client_no_txrx_server(void)
1029 {
1030     return execute_test_ktls(0, 0, 0, 0);
1031 }
1032
1033 static int test_ktls_no_rx_client_no_txrx_server(void)
1034 {
1035     return execute_test_ktls(1, 0, 0, 0);
1036 }
1037
1038 static int test_ktls_no_tx_client_no_txrx_server(void)
1039 {
1040     return execute_test_ktls(0, 1, 0, 0);
1041 }
1042
1043 static int test_ktls_client_no_txrx_server(void)
1044 {
1045     return execute_test_ktls(1, 1, 0, 0);
1046 }
1047
1048 static int test_ktls_no_txrx_client_no_rx_server(void)
1049 {
1050     return execute_test_ktls(0, 0, 1, 0);
1051 }
1052
1053 static int test_ktls_no_rx_client_no_rx_server(void)
1054 {
1055     return execute_test_ktls(1, 0, 1, 0);
1056 }
1057
1058 static int test_ktls_no_tx_client_no_rx_server(void)
1059 {
1060     return execute_test_ktls(0, 1, 1, 0);
1061 }
1062
1063 static int test_ktls_client_no_rx_server(void)
1064 {
1065     return execute_test_ktls(1, 1, 1, 0);
1066 }
1067
1068 static int test_ktls_no_txrx_client_no_tx_server(void)
1069 {
1070     return execute_test_ktls(0, 0, 0, 1);
1071 }
1072
1073 static int test_ktls_no_rx_client_no_tx_server(void)
1074 {
1075     return execute_test_ktls(1, 0, 0, 1);
1076 }
1077
1078 static int test_ktls_no_tx_client_no_tx_server(void)
1079 {
1080     return execute_test_ktls(0, 1, 0, 1);
1081 }
1082
1083 static int test_ktls_client_no_tx_server(void)
1084 {
1085     return execute_test_ktls(1, 1, 0, 1);
1086 }
1087
1088 static int test_ktls_no_txrx_client_server(void)
1089 {
1090     return execute_test_ktls(0, 0, 1, 1);
1091 }
1092
1093 static int test_ktls_no_rx_client_server(void)
1094 {
1095     return execute_test_ktls(1, 0, 1, 1);
1096 }
1097
1098 static int test_ktls_no_tx_client_server(void)
1099 {
1100     return execute_test_ktls(0, 1, 1, 1);
1101 }
1102
1103 static int test_ktls_client_server(void)
1104 {
1105     return execute_test_ktls(1, 1, 1, 1);
1106 }
1107 #endif
1108
1109 static int test_large_message_tls(void)
1110 {
1111     return execute_test_large_message(TLS_server_method(), TLS_client_method(),
1112                                       TLS1_VERSION, 0, 0);
1113 }
1114
1115 static int test_large_message_tls_read_ahead(void)
1116 {
1117     return execute_test_large_message(TLS_server_method(), TLS_client_method(),
1118                                       TLS1_VERSION, 0, 1);
1119 }
1120
1121 #ifndef OPENSSL_NO_DTLS
1122 static int test_large_message_dtls(void)
1123 {
1124     /*
1125      * read_ahead is not relevant to DTLS because DTLS always acts as if
1126      * read_ahead is set.
1127      */
1128     return execute_test_large_message(DTLS_server_method(),
1129                                       DTLS_client_method(),
1130                                       DTLS1_VERSION, 0, 0);
1131 }
1132 #endif
1133
1134 #ifndef OPENSSL_NO_OCSP
1135 static int ocsp_server_cb(SSL *s, void *arg)
1136 {
1137     int *argi = (int *)arg;
1138     unsigned char *copy = NULL;
1139     STACK_OF(OCSP_RESPID) *ids = NULL;
1140     OCSP_RESPID *id = NULL;
1141
1142     if (*argi == 2) {
1143         /* In this test we are expecting exactly 1 OCSP_RESPID */
1144         SSL_get_tlsext_status_ids(s, &ids);
1145         if (ids == NULL || sk_OCSP_RESPID_num(ids) != 1)
1146             return SSL_TLSEXT_ERR_ALERT_FATAL;
1147
1148         id = sk_OCSP_RESPID_value(ids, 0);
1149         if (id == NULL || !OCSP_RESPID_match(id, ocspcert))
1150             return SSL_TLSEXT_ERR_ALERT_FATAL;
1151     } else if (*argi != 1) {
1152         return SSL_TLSEXT_ERR_ALERT_FATAL;
1153     }
1154
1155     if (!TEST_ptr(copy = OPENSSL_memdup(orespder, sizeof(orespder))))
1156         return SSL_TLSEXT_ERR_ALERT_FATAL;
1157
1158     SSL_set_tlsext_status_ocsp_resp(s, copy, sizeof(orespder));
1159     ocsp_server_called = 1;
1160     return SSL_TLSEXT_ERR_OK;
1161 }
1162
1163 static int ocsp_client_cb(SSL *s, void *arg)
1164 {
1165     int *argi = (int *)arg;
1166     const unsigned char *respderin;
1167     size_t len;
1168
1169     if (*argi != 1 && *argi != 2)
1170         return 0;
1171
1172     len = SSL_get_tlsext_status_ocsp_resp(s, &respderin);
1173     if (!TEST_mem_eq(orespder, len, respderin, len))
1174         return 0;
1175
1176     ocsp_client_called = 1;
1177     return 1;
1178 }
1179
1180 static int test_tlsext_status_type(void)
1181 {
1182     SSL_CTX *cctx = NULL, *sctx = NULL;
1183     SSL *clientssl = NULL, *serverssl = NULL;
1184     int testresult = 0;
1185     STACK_OF(OCSP_RESPID) *ids = NULL;
1186     OCSP_RESPID *id = NULL;
1187     BIO *certbio = NULL;
1188
1189     if (!create_ssl_ctx_pair(TLS_server_method(), TLS_client_method(),
1190                              TLS1_VERSION, 0,
1191                              &sctx, &cctx, cert, privkey))
1192         return 0;
1193
1194     if (SSL_CTX_get_tlsext_status_type(cctx) != -1)
1195         goto end;
1196
1197     /* First just do various checks getting and setting tlsext_status_type */
1198
1199     clientssl = SSL_new(cctx);
1200     if (!TEST_int_eq(SSL_get_tlsext_status_type(clientssl), -1)
1201             || !TEST_true(SSL_set_tlsext_status_type(clientssl,
1202                                                       TLSEXT_STATUSTYPE_ocsp))
1203             || !TEST_int_eq(SSL_get_tlsext_status_type(clientssl),
1204                             TLSEXT_STATUSTYPE_ocsp))
1205         goto end;
1206
1207     SSL_free(clientssl);
1208     clientssl = NULL;
1209
1210     if (!SSL_CTX_set_tlsext_status_type(cctx, TLSEXT_STATUSTYPE_ocsp)
1211      || SSL_CTX_get_tlsext_status_type(cctx) != TLSEXT_STATUSTYPE_ocsp)
1212         goto end;
1213
1214     clientssl = SSL_new(cctx);
1215     if (SSL_get_tlsext_status_type(clientssl) != TLSEXT_STATUSTYPE_ocsp)
1216         goto end;
1217     SSL_free(clientssl);
1218     clientssl = NULL;
1219
1220     /*
1221      * Now actually do a handshake and check OCSP information is exchanged and
1222      * the callbacks get called
1223      */
1224     SSL_CTX_set_tlsext_status_cb(cctx, ocsp_client_cb);
1225     SSL_CTX_set_tlsext_status_arg(cctx, &cdummyarg);
1226     SSL_CTX_set_tlsext_status_cb(sctx, ocsp_server_cb);
1227     SSL_CTX_set_tlsext_status_arg(sctx, &cdummyarg);
1228     if (!TEST_true(create_ssl_objects(sctx, cctx, &serverssl,
1229                                       &clientssl, NULL, NULL))
1230             || !TEST_true(create_ssl_connection(serverssl, clientssl,
1231                                                 SSL_ERROR_NONE))
1232             || !TEST_true(ocsp_client_called)
1233             || !TEST_true(ocsp_server_called))
1234         goto end;
1235     SSL_free(serverssl);
1236     SSL_free(clientssl);
1237     serverssl = NULL;
1238     clientssl = NULL;
1239
1240     /* Try again but this time force the server side callback to fail */
1241     ocsp_client_called = 0;
1242     ocsp_server_called = 0;
1243     cdummyarg = 0;
1244     if (!TEST_true(create_ssl_objects(sctx, cctx, &serverssl,
1245                                       &clientssl, NULL, NULL))
1246                 /* This should fail because the callback will fail */
1247             || !TEST_false(create_ssl_connection(serverssl, clientssl,
1248                                                  SSL_ERROR_NONE))
1249             || !TEST_false(ocsp_client_called)
1250             || !TEST_false(ocsp_server_called))
1251         goto end;
1252     SSL_free(serverssl);
1253     SSL_free(clientssl);
1254     serverssl = NULL;
1255     clientssl = NULL;
1256
1257     /*
1258      * This time we'll get the client to send an OCSP_RESPID that it will
1259      * accept.
1260      */
1261     ocsp_client_called = 0;
1262     ocsp_server_called = 0;
1263     cdummyarg = 2;
1264     if (!TEST_true(create_ssl_objects(sctx, cctx, &serverssl,
1265                                       &clientssl, NULL, NULL)))
1266         goto end;
1267
1268     /*
1269      * We'll just use any old cert for this test - it doesn't have to be an OCSP
1270      * specific one. We'll use the server cert.
1271      */
1272     if (!TEST_ptr(certbio = BIO_new_file(cert, "r"))
1273             || !TEST_ptr(id = OCSP_RESPID_new())
1274             || !TEST_ptr(ids = sk_OCSP_RESPID_new_null())
1275             || !TEST_ptr(ocspcert = PEM_read_bio_X509(certbio,
1276                                                       NULL, NULL, NULL))
1277             || !TEST_true(OCSP_RESPID_set_by_key(id, ocspcert))
1278             || !TEST_true(sk_OCSP_RESPID_push(ids, id)))
1279         goto end;
1280     id = NULL;
1281     SSL_set_tlsext_status_ids(clientssl, ids);
1282     /* Control has been transferred */
1283     ids = NULL;
1284
1285     BIO_free(certbio);
1286     certbio = NULL;
1287
1288     if (!TEST_true(create_ssl_connection(serverssl, clientssl,
1289                                          SSL_ERROR_NONE))
1290             || !TEST_true(ocsp_client_called)
1291             || !TEST_true(ocsp_server_called))
1292         goto end;
1293
1294     testresult = 1;
1295
1296  end:
1297     SSL_free(serverssl);
1298     SSL_free(clientssl);
1299     SSL_CTX_free(sctx);
1300     SSL_CTX_free(cctx);
1301     sk_OCSP_RESPID_pop_free(ids, OCSP_RESPID_free);
1302     OCSP_RESPID_free(id);
1303     BIO_free(certbio);
1304     X509_free(ocspcert);
1305     ocspcert = NULL;
1306
1307     return testresult;
1308 }
1309 #endif
1310
1311 #if !defined(OPENSSL_NO_TLS1_3) || !defined(OPENSSL_NO_TLS1_2)
1312 static int new_called, remove_called, get_called;
1313
1314 static int new_session_cb(SSL *ssl, SSL_SESSION *sess)
1315 {
1316     new_called++;
1317     /*
1318      * sess has been up-refed for us, but we don't actually need it so free it
1319      * immediately.
1320      */
1321     SSL_SESSION_free(sess);
1322     return 1;
1323 }
1324
1325 static void remove_session_cb(SSL_CTX *ctx, SSL_SESSION *sess)
1326 {
1327     remove_called++;
1328 }
1329
1330 static SSL_SESSION *get_sess_val = NULL;
1331
1332 static SSL_SESSION *get_session_cb(SSL *ssl, const unsigned char *id, int len,
1333                                    int *copy)
1334 {
1335     get_called++;
1336     *copy = 1;
1337     return get_sess_val;
1338 }
1339
1340 static int execute_test_session(int maxprot, int use_int_cache,
1341                                 int use_ext_cache)
1342 {
1343     SSL_CTX *sctx = NULL, *cctx = NULL;
1344     SSL *serverssl1 = NULL, *clientssl1 = NULL;
1345     SSL *serverssl2 = NULL, *clientssl2 = NULL;
1346 # ifndef OPENSSL_NO_TLS1_1
1347     SSL *serverssl3 = NULL, *clientssl3 = NULL;
1348 # endif
1349     SSL_SESSION *sess1 = NULL, *sess2 = NULL;
1350     int testresult = 0, numnewsesstick = 1;
1351
1352     new_called = remove_called = 0;
1353
1354     /* TLSv1.3 sends 2 NewSessionTickets */
1355     if (maxprot == TLS1_3_VERSION)
1356         numnewsesstick = 2;
1357
1358     if (!TEST_true(create_ssl_ctx_pair(TLS_server_method(), TLS_client_method(),
1359                                        TLS1_VERSION, 0,
1360                                        &sctx, &cctx, cert, privkey)))
1361         return 0;
1362
1363     /*
1364      * Only allow the max protocol version so we can force a connection failure
1365      * later
1366      */
1367     SSL_CTX_set_min_proto_version(cctx, maxprot);
1368     SSL_CTX_set_max_proto_version(cctx, maxprot);
1369
1370     /* Set up session cache */
1371     if (use_ext_cache) {
1372         SSL_CTX_sess_set_new_cb(cctx, new_session_cb);
1373         SSL_CTX_sess_set_remove_cb(cctx, remove_session_cb);
1374     }
1375     if (use_int_cache) {
1376         /* Also covers instance where both are set */
1377         SSL_CTX_set_session_cache_mode(cctx, SSL_SESS_CACHE_CLIENT);
1378     } else {
1379         SSL_CTX_set_session_cache_mode(cctx,
1380                                        SSL_SESS_CACHE_CLIENT
1381                                        | SSL_SESS_CACHE_NO_INTERNAL_STORE);
1382     }
1383
1384     if (!TEST_true(create_ssl_objects(sctx, cctx, &serverssl1, &clientssl1,
1385                                       NULL, NULL))
1386             || !TEST_true(create_ssl_connection(serverssl1, clientssl1,
1387                                                 SSL_ERROR_NONE))
1388             || !TEST_ptr(sess1 = SSL_get1_session(clientssl1)))
1389         goto end;
1390
1391     /* Should fail because it should already be in the cache */
1392     if (use_int_cache && !TEST_false(SSL_CTX_add_session(cctx, sess1)))
1393         goto end;
1394     if (use_ext_cache
1395             && (!TEST_int_eq(new_called, numnewsesstick)
1396
1397                 || !TEST_int_eq(remove_called, 0)))
1398         goto end;
1399
1400     new_called = remove_called = 0;
1401     if (!TEST_true(create_ssl_objects(sctx, cctx, &serverssl2,
1402                                       &clientssl2, NULL, NULL))
1403             || !TEST_true(SSL_set_session(clientssl2, sess1))
1404             || !TEST_true(create_ssl_connection(serverssl2, clientssl2,
1405                                                 SSL_ERROR_NONE))
1406             || !TEST_true(SSL_session_reused(clientssl2)))
1407         goto end;
1408
1409     if (maxprot == TLS1_3_VERSION) {
1410         /*
1411          * In TLSv1.3 we should have created a new session even though we have
1412          * resumed. Since we attempted a resume we should also have removed the
1413          * old ticket from the cache so that we try to only use tickets once.
1414          */
1415         if (use_ext_cache
1416                 && (!TEST_int_eq(new_called, 1)
1417                     || !TEST_int_eq(remove_called, 1)))
1418             goto end;
1419     } else {
1420         /*
1421          * In TLSv1.2 we expect to have resumed so no sessions added or
1422          * removed.
1423          */
1424         if (use_ext_cache
1425                 && (!TEST_int_eq(new_called, 0)
1426                     || !TEST_int_eq(remove_called, 0)))
1427             goto end;
1428     }
1429
1430     SSL_SESSION_free(sess1);
1431     if (!TEST_ptr(sess1 = SSL_get1_session(clientssl2)))
1432         goto end;
1433     shutdown_ssl_connection(serverssl2, clientssl2);
1434     serverssl2 = clientssl2 = NULL;
1435
1436     new_called = remove_called = 0;
1437     if (!TEST_true(create_ssl_objects(sctx, cctx, &serverssl2,
1438                                       &clientssl2, NULL, NULL))
1439             || !TEST_true(create_ssl_connection(serverssl2, clientssl2,
1440                                                 SSL_ERROR_NONE)))
1441         goto end;
1442
1443     if (!TEST_ptr(sess2 = SSL_get1_session(clientssl2)))
1444         goto end;
1445
1446     if (use_ext_cache
1447             && (!TEST_int_eq(new_called, numnewsesstick)
1448                 || !TEST_int_eq(remove_called, 0)))
1449         goto end;
1450
1451     new_called = remove_called = 0;
1452     /*
1453      * This should clear sess2 from the cache because it is a "bad" session.
1454      * See SSL_set_session() documentation.
1455      */
1456     if (!TEST_true(SSL_set_session(clientssl2, sess1)))
1457         goto end;
1458     if (use_ext_cache
1459             && (!TEST_int_eq(new_called, 0) || !TEST_int_eq(remove_called, 1)))
1460         goto end;
1461     if (!TEST_ptr_eq(SSL_get_session(clientssl2), sess1))
1462         goto end;
1463
1464     if (use_int_cache) {
1465         /* Should succeeded because it should not already be in the cache */
1466         if (!TEST_true(SSL_CTX_add_session(cctx, sess2))
1467                 || !TEST_true(SSL_CTX_remove_session(cctx, sess2)))
1468             goto end;
1469     }
1470
1471     new_called = remove_called = 0;
1472     /* This shouldn't be in the cache so should fail */
1473     if (!TEST_false(SSL_CTX_remove_session(cctx, sess2)))
1474         goto end;
1475
1476     if (use_ext_cache
1477             && (!TEST_int_eq(new_called, 0) || !TEST_int_eq(remove_called, 1)))
1478         goto end;
1479
1480 # if !defined(OPENSSL_NO_TLS1_1)
1481     new_called = remove_called = 0;
1482     /* Force a connection failure */
1483     SSL_CTX_set_max_proto_version(sctx, TLS1_1_VERSION);
1484     if (!TEST_true(create_ssl_objects(sctx, cctx, &serverssl3,
1485                                       &clientssl3, NULL, NULL))
1486             || !TEST_true(SSL_set_session(clientssl3, sess1))
1487             /* This should fail because of the mismatched protocol versions */
1488             || !TEST_false(create_ssl_connection(serverssl3, clientssl3,
1489                                                  SSL_ERROR_NONE)))
1490         goto end;
1491
1492     /* We should have automatically removed the session from the cache */
1493     if (use_ext_cache
1494             && (!TEST_int_eq(new_called, 0) || !TEST_int_eq(remove_called, 1)))
1495         goto end;
1496
1497     /* Should succeed because it should not already be in the cache */
1498     if (use_int_cache && !TEST_true(SSL_CTX_add_session(cctx, sess2)))
1499         goto end;
1500 # endif
1501
1502     /* Now do some tests for server side caching */
1503     if (use_ext_cache) {
1504         SSL_CTX_sess_set_new_cb(cctx, NULL);
1505         SSL_CTX_sess_set_remove_cb(cctx, NULL);
1506         SSL_CTX_sess_set_new_cb(sctx, new_session_cb);
1507         SSL_CTX_sess_set_remove_cb(sctx, remove_session_cb);
1508         SSL_CTX_sess_set_get_cb(sctx, get_session_cb);
1509         get_sess_val = NULL;
1510     }
1511
1512     SSL_CTX_set_session_cache_mode(cctx, 0);
1513     /* Internal caching is the default on the server side */
1514     if (!use_int_cache)
1515         SSL_CTX_set_session_cache_mode(sctx,
1516                                        SSL_SESS_CACHE_SERVER
1517                                        | SSL_SESS_CACHE_NO_INTERNAL_STORE);
1518
1519     SSL_free(serverssl1);
1520     SSL_free(clientssl1);
1521     serverssl1 = clientssl1 = NULL;
1522     SSL_free(serverssl2);
1523     SSL_free(clientssl2);
1524     serverssl2 = clientssl2 = NULL;
1525     SSL_SESSION_free(sess1);
1526     sess1 = NULL;
1527     SSL_SESSION_free(sess2);
1528     sess2 = NULL;
1529
1530     SSL_CTX_set_max_proto_version(sctx, maxprot);
1531     if (maxprot == TLS1_2_VERSION)
1532         SSL_CTX_set_options(sctx, SSL_OP_NO_TICKET);
1533     new_called = remove_called = get_called = 0;
1534     if (!TEST_true(create_ssl_objects(sctx, cctx, &serverssl1, &clientssl1,
1535                                       NULL, NULL))
1536             || !TEST_true(create_ssl_connection(serverssl1, clientssl1,
1537                                                 SSL_ERROR_NONE))
1538             || !TEST_ptr(sess1 = SSL_get1_session(clientssl1))
1539             || !TEST_ptr(sess2 = SSL_get1_session(serverssl1)))
1540         goto end;
1541
1542     if (use_int_cache) {
1543         if (maxprot == TLS1_3_VERSION && !use_ext_cache) {
1544             /*
1545              * In TLSv1.3 it should not have been added to the internal cache,
1546              * except in the case where we also have an external cache (in that
1547              * case it gets added to the cache in order to generate remove
1548              * events after timeout).
1549              */
1550             if (!TEST_false(SSL_CTX_remove_session(sctx, sess2)))
1551                 goto end;
1552         } else {
1553             /* Should fail because it should already be in the cache */
1554             if (!TEST_false(SSL_CTX_add_session(sctx, sess2)))
1555                 goto end;
1556         }
1557     }
1558
1559     if (use_ext_cache) {
1560         SSL_SESSION *tmp = sess2;
1561
1562         if (!TEST_int_eq(new_called, numnewsesstick)
1563                 || !TEST_int_eq(remove_called, 0)
1564                 || !TEST_int_eq(get_called, 0))
1565             goto end;
1566         /*
1567          * Delete the session from the internal cache to force a lookup from
1568          * the external cache. We take a copy first because
1569          * SSL_CTX_remove_session() also marks the session as non-resumable.
1570          */
1571         if (use_int_cache && maxprot != TLS1_3_VERSION) {
1572             if (!TEST_ptr(tmp = SSL_SESSION_dup(sess2))
1573                     || !TEST_true(SSL_CTX_remove_session(sctx, sess2)))
1574                 goto end;
1575             SSL_SESSION_free(sess2);
1576         }
1577         sess2 = tmp;
1578     }
1579
1580     new_called = remove_called = get_called = 0;
1581     get_sess_val = sess2;
1582     if (!TEST_true(create_ssl_objects(sctx, cctx, &serverssl2,
1583                                       &clientssl2, NULL, NULL))
1584             || !TEST_true(SSL_set_session(clientssl2, sess1))
1585             || !TEST_true(create_ssl_connection(serverssl2, clientssl2,
1586                                                 SSL_ERROR_NONE))
1587             || !TEST_true(SSL_session_reused(clientssl2)))
1588         goto end;
1589
1590     if (use_ext_cache) {
1591         if (!TEST_int_eq(remove_called, 0))
1592             goto end;
1593
1594         if (maxprot == TLS1_3_VERSION) {
1595             if (!TEST_int_eq(new_called, 1)
1596                     || !TEST_int_eq(get_called, 0))
1597                 goto end;
1598         } else {
1599             if (!TEST_int_eq(new_called, 0)
1600                     || !TEST_int_eq(get_called, 1))
1601                 goto end;
1602         }
1603     }
1604
1605     testresult = 1;
1606
1607  end:
1608     SSL_free(serverssl1);
1609     SSL_free(clientssl1);
1610     SSL_free(serverssl2);
1611     SSL_free(clientssl2);
1612 # ifndef OPENSSL_NO_TLS1_1
1613     SSL_free(serverssl3);
1614     SSL_free(clientssl3);
1615 # endif
1616     SSL_SESSION_free(sess1);
1617     SSL_SESSION_free(sess2);
1618     SSL_CTX_free(sctx);
1619     SSL_CTX_free(cctx);
1620
1621     return testresult;
1622 }
1623 #endif /* !defined(OPENSSL_NO_TLS1_3) || !defined(OPENSSL_NO_TLS1_2) */
1624
1625 static int test_session_with_only_int_cache(void)
1626 {
1627 #ifndef OPENSSL_NO_TLS1_3
1628     if (!execute_test_session(TLS1_3_VERSION, 1, 0))
1629         return 0;
1630 #endif
1631
1632 #ifndef OPENSSL_NO_TLS1_2
1633     return execute_test_session(TLS1_2_VERSION, 1, 0);
1634 #else
1635     return 1;
1636 #endif
1637 }
1638
1639 static int test_session_with_only_ext_cache(void)
1640 {
1641 #ifndef OPENSSL_NO_TLS1_3
1642     if (!execute_test_session(TLS1_3_VERSION, 0, 1))
1643         return 0;
1644 #endif
1645
1646 #ifndef OPENSSL_NO_TLS1_2
1647     return execute_test_session(TLS1_2_VERSION, 0, 1);
1648 #else
1649     return 1;
1650 #endif
1651 }
1652
1653 static int test_session_with_both_cache(void)
1654 {
1655 #ifndef OPENSSL_NO_TLS1_3
1656     if (!execute_test_session(TLS1_3_VERSION, 1, 1))
1657         return 0;
1658 #endif
1659
1660 #ifndef OPENSSL_NO_TLS1_2
1661     return execute_test_session(TLS1_2_VERSION, 1, 1);
1662 #else
1663     return 1;
1664 #endif
1665 }
1666
1667 #ifndef OPENSSL_NO_TLS1_3
1668 static SSL_SESSION *sesscache[6];
1669 static int do_cache;
1670
1671 static int new_cachesession_cb(SSL *ssl, SSL_SESSION *sess)
1672 {
1673     if (do_cache) {
1674         sesscache[new_called] = sess;
1675     } else {
1676         /* We don't need the reference to the session, so free it */
1677         SSL_SESSION_free(sess);
1678     }
1679     new_called++;
1680
1681     return 1;
1682 }
1683
1684 static int post_handshake_verify(SSL *sssl, SSL *cssl)
1685 {
1686     SSL_set_verify(sssl, SSL_VERIFY_PEER, NULL);
1687     if (!TEST_true(SSL_verify_client_post_handshake(sssl)))
1688         return 0;
1689
1690     /* Start handshake on the server and client */
1691     if (!TEST_int_eq(SSL_do_handshake(sssl), 1)
1692             || !TEST_int_le(SSL_read(cssl, NULL, 0), 0)
1693             || !TEST_int_le(SSL_read(sssl, NULL, 0), 0)
1694             || !TEST_true(create_ssl_connection(sssl, cssl,
1695                                                 SSL_ERROR_NONE)))
1696         return 0;
1697
1698     return 1;
1699 }
1700
1701 static int setup_ticket_test(int stateful, int idx, SSL_CTX **sctx,
1702                              SSL_CTX **cctx)
1703 {
1704     int sess_id_ctx = 1;
1705
1706     if (!TEST_true(create_ssl_ctx_pair(TLS_server_method(), TLS_client_method(),
1707                                        TLS1_VERSION, 0, sctx,
1708                                        cctx, cert, privkey))
1709             || !TEST_true(SSL_CTX_set_num_tickets(*sctx, idx))
1710             || !TEST_true(SSL_CTX_set_session_id_context(*sctx,
1711                                                          (void *)&sess_id_ctx,
1712                                                          sizeof(sess_id_ctx))))
1713         return 0;
1714
1715     if (stateful)
1716         SSL_CTX_set_options(*sctx, SSL_OP_NO_TICKET);
1717
1718     SSL_CTX_set_session_cache_mode(*cctx, SSL_SESS_CACHE_CLIENT
1719                                           | SSL_SESS_CACHE_NO_INTERNAL_STORE);
1720     SSL_CTX_sess_set_new_cb(*cctx, new_cachesession_cb);
1721
1722     return 1;
1723 }
1724
1725 static int check_resumption(int idx, SSL_CTX *sctx, SSL_CTX *cctx, int succ)
1726 {
1727     SSL *serverssl = NULL, *clientssl = NULL;
1728     int i;
1729
1730     /* Test that we can resume with all the tickets we got given */
1731     for (i = 0; i < idx * 2; i++) {
1732         new_called = 0;
1733         if (!TEST_true(create_ssl_objects(sctx, cctx, &serverssl,
1734                                               &clientssl, NULL, NULL))
1735                 || !TEST_true(SSL_set_session(clientssl, sesscache[i])))
1736             goto end;
1737
1738         SSL_set_post_handshake_auth(clientssl, 1);
1739
1740         if (!TEST_true(create_ssl_connection(serverssl, clientssl,
1741                                                     SSL_ERROR_NONE)))
1742             goto end;
1743
1744         /*
1745          * Following a successful resumption we only get 1 ticket. After a
1746          * failed one we should get idx tickets.
1747          */
1748         if (succ) {
1749             if (!TEST_true(SSL_session_reused(clientssl))
1750                     || !TEST_int_eq(new_called, 1))
1751                 goto end;
1752         } else {
1753             if (!TEST_false(SSL_session_reused(clientssl))
1754                     || !TEST_int_eq(new_called, idx))
1755                 goto end;
1756         }
1757
1758         new_called = 0;
1759         /* After a post-handshake authentication we should get 1 new ticket */
1760         if (succ
1761                 && (!post_handshake_verify(serverssl, clientssl)
1762                     || !TEST_int_eq(new_called, 1)))
1763             goto end;
1764
1765         SSL_shutdown(clientssl);
1766         SSL_shutdown(serverssl);
1767         SSL_free(serverssl);
1768         SSL_free(clientssl);
1769         serverssl = clientssl = NULL;
1770         SSL_SESSION_free(sesscache[i]);
1771         sesscache[i] = NULL;
1772     }
1773
1774     return 1;
1775
1776  end:
1777     SSL_free(clientssl);
1778     SSL_free(serverssl);
1779     return 0;
1780 }
1781
1782 static int test_tickets(int stateful, int idx)
1783 {
1784     SSL_CTX *sctx = NULL, *cctx = NULL;
1785     SSL *serverssl = NULL, *clientssl = NULL;
1786     int testresult = 0;
1787     size_t j;
1788
1789     /* idx is the test number, but also the number of tickets we want */
1790
1791     new_called = 0;
1792     do_cache = 1;
1793
1794     if (!setup_ticket_test(stateful, idx, &sctx, &cctx))
1795         goto end;
1796
1797     if (!TEST_true(create_ssl_objects(sctx, cctx, &serverssl,
1798                                           &clientssl, NULL, NULL)))
1799         goto end;
1800
1801     if (!TEST_true(create_ssl_connection(serverssl, clientssl,
1802                                                 SSL_ERROR_NONE))
1803                /* Check we got the number of tickets we were expecting */
1804             || !TEST_int_eq(idx, new_called))
1805         goto end;
1806
1807     SSL_shutdown(clientssl);
1808     SSL_shutdown(serverssl);
1809     SSL_free(serverssl);
1810     SSL_free(clientssl);
1811     SSL_CTX_free(sctx);
1812     SSL_CTX_free(cctx);
1813     clientssl = serverssl = NULL;
1814     sctx = cctx = NULL;
1815
1816     /*
1817      * Now we try to resume with the tickets we previously created. The
1818      * resumption attempt is expected to fail (because we're now using a new
1819      * SSL_CTX). We should see idx number of tickets issued again.
1820      */
1821
1822     /* Stop caching sessions - just count them */
1823     do_cache = 0;
1824
1825     if (!setup_ticket_test(stateful, idx, &sctx, &cctx))
1826         goto end;
1827
1828     if (!check_resumption(idx, sctx, cctx, 0))
1829         goto end;
1830
1831     /* Start again with caching sessions */
1832     new_called = 0;
1833     do_cache = 1;
1834     SSL_CTX_free(sctx);
1835     SSL_CTX_free(cctx);
1836     sctx = cctx = NULL;
1837
1838     if (!setup_ticket_test(stateful, idx, &sctx, &cctx))
1839         goto end;
1840
1841     if (!TEST_true(create_ssl_objects(sctx, cctx, &serverssl,
1842                                           &clientssl, NULL, NULL)))
1843         goto end;
1844
1845     SSL_set_post_handshake_auth(clientssl, 1);
1846
1847     if (!TEST_true(create_ssl_connection(serverssl, clientssl,
1848                                                 SSL_ERROR_NONE))
1849                /* Check we got the number of tickets we were expecting */
1850             || !TEST_int_eq(idx, new_called))
1851         goto end;
1852
1853     /* After a post-handshake authentication we should get new tickets issued */
1854     if (!post_handshake_verify(serverssl, clientssl)
1855             || !TEST_int_eq(idx * 2, new_called))
1856         goto end;
1857
1858     SSL_shutdown(clientssl);
1859     SSL_shutdown(serverssl);
1860     SSL_free(serverssl);
1861     SSL_free(clientssl);
1862     serverssl = clientssl = NULL;
1863
1864     /* Stop caching sessions - just count them */
1865     do_cache = 0;
1866
1867     /*
1868      * Check we can resume with all the tickets we created. This time around the
1869      * resumptions should all be successful.
1870      */
1871     if (!check_resumption(idx, sctx, cctx, 1))
1872         goto end;
1873
1874     testresult = 1;
1875
1876  end:
1877     SSL_free(serverssl);
1878     SSL_free(clientssl);
1879     for (j = 0; j < OSSL_NELEM(sesscache); j++) {
1880         SSL_SESSION_free(sesscache[j]);
1881         sesscache[j] = NULL;
1882     }
1883     SSL_CTX_free(sctx);
1884     SSL_CTX_free(cctx);
1885
1886     return testresult;
1887 }
1888
1889 static int test_stateless_tickets(int idx)
1890 {
1891     return test_tickets(0, idx);
1892 }
1893
1894 static int test_stateful_tickets(int idx)
1895 {
1896     return test_tickets(1, idx);
1897 }
1898
1899 static int test_psk_tickets(void)
1900 {
1901     SSL_CTX *sctx = NULL, *cctx = NULL;
1902     SSL *serverssl = NULL, *clientssl = NULL;
1903     int testresult = 0;
1904     int sess_id_ctx = 1;
1905
1906     if (!TEST_true(create_ssl_ctx_pair(TLS_server_method(), TLS_client_method(),
1907                                        TLS1_VERSION, 0, &sctx,
1908                                        &cctx, NULL, NULL))
1909             || !TEST_true(SSL_CTX_set_session_id_context(sctx,
1910                                                          (void *)&sess_id_ctx,
1911                                                          sizeof(sess_id_ctx))))
1912         goto end;
1913
1914     SSL_CTX_set_session_cache_mode(cctx, SSL_SESS_CACHE_CLIENT
1915                                          | SSL_SESS_CACHE_NO_INTERNAL_STORE);
1916     SSL_CTX_set_psk_use_session_callback(cctx, use_session_cb);
1917     SSL_CTX_set_psk_find_session_callback(sctx, find_session_cb);
1918     SSL_CTX_sess_set_new_cb(cctx, new_session_cb);
1919     use_session_cb_cnt = 0;
1920     find_session_cb_cnt = 0;
1921     srvid = pskid;
1922     new_called = 0;
1923
1924     if (!TEST_true(create_ssl_objects(sctx, cctx, &serverssl, &clientssl,
1925                                       NULL, NULL)))
1926         goto end;
1927     clientpsk = serverpsk = create_a_psk(clientssl);
1928     if (!TEST_ptr(clientpsk))
1929         goto end;
1930     SSL_SESSION_up_ref(clientpsk);
1931
1932     if (!TEST_true(create_ssl_connection(serverssl, clientssl,
1933                                                 SSL_ERROR_NONE))
1934             || !TEST_int_eq(1, find_session_cb_cnt)
1935             || !TEST_int_eq(1, use_session_cb_cnt)
1936                /* We should always get 1 ticket when using external PSK */
1937             || !TEST_int_eq(1, new_called))
1938         goto end;
1939
1940     testresult = 1;
1941
1942  end:
1943     SSL_free(serverssl);
1944     SSL_free(clientssl);
1945     SSL_CTX_free(sctx);
1946     SSL_CTX_free(cctx);
1947     SSL_SESSION_free(clientpsk);
1948     SSL_SESSION_free(serverpsk);
1949     clientpsk = serverpsk = NULL;
1950
1951     return testresult;
1952 }
1953 #endif
1954
1955 #define USE_NULL            0
1956 #define USE_BIO_1           1
1957 #define USE_BIO_2           2
1958 #define USE_DEFAULT         3
1959
1960 #define CONNTYPE_CONNECTION_SUCCESS  0
1961 #define CONNTYPE_CONNECTION_FAIL     1
1962 #define CONNTYPE_NO_CONNECTION       2
1963
1964 #define TOTAL_NO_CONN_SSL_SET_BIO_TESTS         (3 * 3 * 3 * 3)
1965 #define TOTAL_CONN_SUCCESS_SSL_SET_BIO_TESTS    (2 * 2)
1966 #if !defined(OPENSSL_NO_TLS1_3) && !defined(OPENSSL_NO_TLS1_2)
1967 # define TOTAL_CONN_FAIL_SSL_SET_BIO_TESTS       (2 * 2)
1968 #else
1969 # define TOTAL_CONN_FAIL_SSL_SET_BIO_TESTS       0
1970 #endif
1971
1972 #define TOTAL_SSL_SET_BIO_TESTS TOTAL_NO_CONN_SSL_SET_BIO_TESTS \
1973                                 + TOTAL_CONN_SUCCESS_SSL_SET_BIO_TESTS \
1974                                 + TOTAL_CONN_FAIL_SSL_SET_BIO_TESTS
1975
1976 static void setupbio(BIO **res, BIO *bio1, BIO *bio2, int type)
1977 {
1978     switch (type) {
1979     case USE_NULL:
1980         *res = NULL;
1981         break;
1982     case USE_BIO_1:
1983         *res = bio1;
1984         break;
1985     case USE_BIO_2:
1986         *res = bio2;
1987         break;
1988     }
1989 }
1990
1991
1992 /*
1993  * Tests calls to SSL_set_bio() under various conditions.
1994  *
1995  * For the first 3 * 3 * 3 * 3 = 81 tests we do 2 calls to SSL_set_bio() with
1996  * various combinations of valid BIOs or NULL being set for the rbio/wbio. We
1997  * then do more tests where we create a successful connection first using our
1998  * standard connection setup functions, and then call SSL_set_bio() with
1999  * various combinations of valid BIOs or NULL. We then repeat these tests
2000  * following a failed connection. In this last case we are looking to check that
2001  * SSL_set_bio() functions correctly in the case where s->bbio is not NULL.
2002  */
2003 static int test_ssl_set_bio(int idx)
2004 {
2005     SSL_CTX *sctx = NULL, *cctx = NULL;
2006     BIO *bio1 = NULL;
2007     BIO *bio2 = NULL;
2008     BIO *irbio = NULL, *iwbio = NULL, *nrbio = NULL, *nwbio = NULL;
2009     SSL *serverssl = NULL, *clientssl = NULL;
2010     int initrbio, initwbio, newrbio, newwbio, conntype;
2011     int testresult = 0;
2012
2013     if (idx < TOTAL_NO_CONN_SSL_SET_BIO_TESTS) {
2014         initrbio = idx % 3;
2015         idx /= 3;
2016         initwbio = idx % 3;
2017         idx /= 3;
2018         newrbio = idx % 3;
2019         idx /= 3;
2020         newwbio = idx % 3;
2021         conntype = CONNTYPE_NO_CONNECTION;
2022     } else {
2023         idx -= TOTAL_NO_CONN_SSL_SET_BIO_TESTS;
2024         initrbio = initwbio = USE_DEFAULT;
2025         newrbio = idx % 2;
2026         idx /= 2;
2027         newwbio = idx % 2;
2028         idx /= 2;
2029         conntype = idx % 2;
2030     }
2031
2032     if (!TEST_true(create_ssl_ctx_pair(TLS_server_method(), TLS_client_method(),
2033                                        TLS1_VERSION, 0,
2034                                        &sctx, &cctx, cert, privkey)))
2035         goto end;
2036
2037     if (conntype == CONNTYPE_CONNECTION_FAIL) {
2038         /*
2039          * We won't ever get here if either TLSv1.3 or TLSv1.2 is disabled
2040          * because we reduced the number of tests in the definition of
2041          * TOTAL_CONN_FAIL_SSL_SET_BIO_TESTS to avoid this scenario. By setting
2042          * mismatched protocol versions we will force a connection failure.
2043          */
2044         SSL_CTX_set_min_proto_version(sctx, TLS1_3_VERSION);
2045         SSL_CTX_set_max_proto_version(cctx, TLS1_2_VERSION);
2046     }
2047
2048     if (!TEST_true(create_ssl_objects(sctx, cctx, &serverssl, &clientssl,
2049                                       NULL, NULL)))
2050         goto end;
2051
2052     if (initrbio == USE_BIO_1
2053             || initwbio == USE_BIO_1
2054             || newrbio == USE_BIO_1
2055             || newwbio == USE_BIO_1) {
2056         if (!TEST_ptr(bio1 = BIO_new(BIO_s_mem())))
2057             goto end;
2058     }
2059
2060     if (initrbio == USE_BIO_2
2061             || initwbio == USE_BIO_2
2062             || newrbio == USE_BIO_2
2063             || newwbio == USE_BIO_2) {
2064         if (!TEST_ptr(bio2 = BIO_new(BIO_s_mem())))
2065             goto end;
2066     }
2067
2068     if (initrbio != USE_DEFAULT) {
2069         setupbio(&irbio, bio1, bio2, initrbio);
2070         setupbio(&iwbio, bio1, bio2, initwbio);
2071         SSL_set_bio(clientssl, irbio, iwbio);
2072
2073         /*
2074          * We want to maintain our own refs to these BIO, so do an up ref for
2075          * each BIO that will have ownership transferred in the SSL_set_bio()
2076          * call
2077          */
2078         if (irbio != NULL)
2079             BIO_up_ref(irbio);
2080         if (iwbio != NULL && iwbio != irbio)
2081             BIO_up_ref(iwbio);
2082     }
2083
2084     if (conntype != CONNTYPE_NO_CONNECTION
2085             && !TEST_true(create_ssl_connection(serverssl, clientssl,
2086                                                 SSL_ERROR_NONE)
2087                           == (conntype == CONNTYPE_CONNECTION_SUCCESS)))
2088         goto end;
2089
2090     setupbio(&nrbio, bio1, bio2, newrbio);
2091     setupbio(&nwbio, bio1, bio2, newwbio);
2092
2093     /*
2094      * We will (maybe) transfer ownership again so do more up refs.
2095      * SSL_set_bio() has some really complicated ownership rules where BIOs have
2096      * already been set!
2097      */
2098     if (nrbio != NULL
2099             && nrbio != irbio
2100             && (nwbio != iwbio || nrbio != nwbio))
2101         BIO_up_ref(nrbio);
2102     if (nwbio != NULL
2103             && nwbio != nrbio
2104             && (nwbio != iwbio || (nwbio == iwbio && irbio == iwbio)))
2105         BIO_up_ref(nwbio);
2106
2107     SSL_set_bio(clientssl, nrbio, nwbio);
2108
2109     testresult = 1;
2110
2111  end:
2112     BIO_free(bio1);
2113     BIO_free(bio2);
2114
2115     /*
2116      * This test is checking that the ref counting for SSL_set_bio is correct.
2117      * If we get here and we did too many frees then we will fail in the above
2118      * functions. If we haven't done enough then this will only be detected in
2119      * a crypto-mdebug build
2120      */
2121     SSL_free(serverssl);
2122     SSL_free(clientssl);
2123     SSL_CTX_free(sctx);
2124     SSL_CTX_free(cctx);
2125     return testresult;
2126 }
2127
2128 typedef enum { NO_BIO_CHANGE, CHANGE_RBIO, CHANGE_WBIO } bio_change_t;
2129
2130 static int execute_test_ssl_bio(int pop_ssl, bio_change_t change_bio)
2131 {
2132     BIO *sslbio = NULL, *membio1 = NULL, *membio2 = NULL;
2133     SSL_CTX *ctx;
2134     SSL *ssl = NULL;
2135     int testresult = 0;
2136
2137     if (!TEST_ptr(ctx = SSL_CTX_new(TLS_method()))
2138             || !TEST_ptr(ssl = SSL_new(ctx))
2139             || !TEST_ptr(sslbio = BIO_new(BIO_f_ssl()))
2140             || !TEST_ptr(membio1 = BIO_new(BIO_s_mem())))
2141         goto end;
2142
2143     BIO_set_ssl(sslbio, ssl, BIO_CLOSE);
2144
2145     /*
2146      * If anything goes wrong here then we could leak memory, so this will
2147      * be caught in a crypto-mdebug build
2148      */
2149     BIO_push(sslbio, membio1);
2150
2151     /* Verify changing the rbio/wbio directly does not cause leaks */
2152     if (change_bio != NO_BIO_CHANGE) {
2153         if (!TEST_ptr(membio2 = BIO_new(BIO_s_mem())))
2154             goto end;
2155         if (change_bio == CHANGE_RBIO)
2156             SSL_set0_rbio(ssl, membio2);
2157         else
2158             SSL_set0_wbio(ssl, membio2);
2159     }
2160     ssl = NULL;
2161
2162     if (pop_ssl)
2163         BIO_pop(sslbio);
2164     else
2165         BIO_pop(membio1);
2166
2167     testresult = 1;
2168  end:
2169     BIO_free(membio1);
2170     BIO_free(sslbio);
2171     SSL_free(ssl);
2172     SSL_CTX_free(ctx);
2173
2174     return testresult;
2175 }
2176
2177 static int test_ssl_bio_pop_next_bio(void)
2178 {
2179     return execute_test_ssl_bio(0, NO_BIO_CHANGE);
2180 }
2181
2182 static int test_ssl_bio_pop_ssl_bio(void)
2183 {
2184     return execute_test_ssl_bio(1, NO_BIO_CHANGE);
2185 }
2186
2187 static int test_ssl_bio_change_rbio(void)
2188 {
2189     return execute_test_ssl_bio(0, CHANGE_RBIO);
2190 }
2191
2192 static int test_ssl_bio_change_wbio(void)
2193 {
2194     return execute_test_ssl_bio(0, CHANGE_WBIO);
2195 }
2196
2197 #if !defined(OPENSSL_NO_TLS1_2) || defined(OPENSSL_NO_TLS1_3)
2198 typedef struct {
2199     /* The list of sig algs */
2200     const int *list;
2201     /* The length of the list */
2202     size_t listlen;
2203     /* A sigalgs list in string format */
2204     const char *liststr;
2205     /* Whether setting the list should succeed */
2206     int valid;
2207     /* Whether creating a connection with the list should succeed */
2208     int connsuccess;
2209 } sigalgs_list;
2210
2211 static const int validlist1[] = {NID_sha256, EVP_PKEY_RSA};
2212 # ifndef OPENSSL_NO_EC
2213 static const int validlist2[] = {NID_sha256, EVP_PKEY_RSA, NID_sha512, EVP_PKEY_EC};
2214 static const int validlist3[] = {NID_sha512, EVP_PKEY_EC};
2215 # endif
2216 static const int invalidlist1[] = {NID_undef, EVP_PKEY_RSA};
2217 static const int invalidlist2[] = {NID_sha256, NID_undef};
2218 static const int invalidlist3[] = {NID_sha256, EVP_PKEY_RSA, NID_sha256};
2219 static const int invalidlist4[] = {NID_sha256};
2220 static const sigalgs_list testsigalgs[] = {
2221     {validlist1, OSSL_NELEM(validlist1), NULL, 1, 1},
2222 # ifndef OPENSSL_NO_EC
2223     {validlist2, OSSL_NELEM(validlist2), NULL, 1, 1},
2224     {validlist3, OSSL_NELEM(validlist3), NULL, 1, 0},
2225 # endif
2226     {NULL, 0, "RSA+SHA256", 1, 1},
2227 # ifndef OPENSSL_NO_EC
2228     {NULL, 0, "RSA+SHA256:ECDSA+SHA512", 1, 1},
2229     {NULL, 0, "ECDSA+SHA512", 1, 0},
2230 # endif
2231     {invalidlist1, OSSL_NELEM(invalidlist1), NULL, 0, 0},
2232     {invalidlist2, OSSL_NELEM(invalidlist2), NULL, 0, 0},
2233     {invalidlist3, OSSL_NELEM(invalidlist3), NULL, 0, 0},
2234     {invalidlist4, OSSL_NELEM(invalidlist4), NULL, 0, 0},
2235     {NULL, 0, "RSA", 0, 0},
2236     {NULL, 0, "SHA256", 0, 0},
2237     {NULL, 0, "RSA+SHA256:SHA256", 0, 0},
2238     {NULL, 0, "Invalid", 0, 0}
2239 };
2240
2241 static int test_set_sigalgs(int idx)
2242 {
2243     SSL_CTX *cctx = NULL, *sctx = NULL;
2244     SSL *clientssl = NULL, *serverssl = NULL;
2245     int testresult = 0;
2246     const sigalgs_list *curr;
2247     int testctx;
2248
2249     /* Should never happen */
2250     if (!TEST_size_t_le((size_t)idx, OSSL_NELEM(testsigalgs) * 2))
2251         return 0;
2252
2253     testctx = ((size_t)idx < OSSL_NELEM(testsigalgs));
2254     curr = testctx ? &testsigalgs[idx]
2255                    : &testsigalgs[idx - OSSL_NELEM(testsigalgs)];
2256
2257     if (!TEST_true(create_ssl_ctx_pair(TLS_server_method(), TLS_client_method(),
2258                                        TLS1_VERSION, 0,
2259                                        &sctx, &cctx, cert, privkey)))
2260         return 0;
2261
2262     /*
2263      * TODO(TLS1.3): These APIs cannot set TLSv1.3 sig algs so we just test it
2264      * for TLSv1.2 for now until we add a new API.
2265      */
2266     SSL_CTX_set_max_proto_version(cctx, TLS1_2_VERSION);
2267
2268     if (testctx) {
2269         int ret;
2270
2271         if (curr->list != NULL)
2272             ret = SSL_CTX_set1_sigalgs(cctx, curr->list, curr->listlen);
2273         else
2274             ret = SSL_CTX_set1_sigalgs_list(cctx, curr->liststr);
2275
2276         if (!ret) {
2277             if (curr->valid)
2278                 TEST_info("Failure setting sigalgs in SSL_CTX (%d)\n", idx);
2279             else
2280                 testresult = 1;
2281             goto end;
2282         }
2283         if (!curr->valid) {
2284             TEST_info("Not-failed setting sigalgs in SSL_CTX (%d)\n", idx);
2285             goto end;
2286         }
2287     }
2288
2289     if (!TEST_true(create_ssl_objects(sctx, cctx, &serverssl,
2290                                       &clientssl, NULL, NULL)))
2291         goto end;
2292
2293     if (!testctx) {
2294         int ret;
2295
2296         if (curr->list != NULL)
2297             ret = SSL_set1_sigalgs(clientssl, curr->list, curr->listlen);
2298         else
2299             ret = SSL_set1_sigalgs_list(clientssl, curr->liststr);
2300         if (!ret) {
2301             if (curr->valid)
2302                 TEST_info("Failure setting sigalgs in SSL (%d)\n", idx);
2303             else
2304                 testresult = 1;
2305             goto end;
2306         }
2307         if (!curr->valid)
2308             goto end;
2309     }
2310
2311     if (!TEST_int_eq(create_ssl_connection(serverssl, clientssl,
2312                                            SSL_ERROR_NONE),
2313                 curr->connsuccess))
2314         goto end;
2315
2316     testresult = 1;
2317
2318  end:
2319     SSL_free(serverssl);
2320     SSL_free(clientssl);
2321     SSL_CTX_free(sctx);
2322     SSL_CTX_free(cctx);
2323
2324     return testresult;
2325 }
2326 #endif
2327
2328 #ifndef OPENSSL_NO_TLS1_3
2329 static int psk_client_cb_cnt = 0;
2330 static int psk_server_cb_cnt = 0;
2331
2332 static int use_session_cb(SSL *ssl, const EVP_MD *md, const unsigned char **id,
2333                           size_t *idlen, SSL_SESSION **sess)
2334 {
2335     switch (++use_session_cb_cnt) {
2336     case 1:
2337         /* The first call should always have a NULL md */
2338         if (md != NULL)
2339             return 0;
2340         break;
2341
2342     case 2:
2343         /* The second call should always have an md */
2344         if (md == NULL)
2345             return 0;
2346         break;
2347
2348     default:
2349         /* We should only be called a maximum of twice */
2350         return 0;
2351     }
2352
2353     if (clientpsk != NULL)
2354         SSL_SESSION_up_ref(clientpsk);
2355
2356     *sess = clientpsk;
2357     *id = (const unsigned char *)pskid;
2358     *idlen = strlen(pskid);
2359
2360     return 1;
2361 }
2362
2363 #ifndef OPENSSL_NO_PSK
2364 static unsigned int psk_client_cb(SSL *ssl, const char *hint, char *id,
2365                                   unsigned int max_id_len,
2366                                   unsigned char *psk,
2367                                   unsigned int max_psk_len)
2368 {
2369     unsigned int psklen = 0;
2370
2371     psk_client_cb_cnt++;
2372
2373     if (strlen(pskid) + 1 > max_id_len)
2374         return 0;
2375
2376     /* We should only ever be called a maximum of twice per connection */
2377     if (psk_client_cb_cnt > 2)
2378         return 0;
2379
2380     if (clientpsk == NULL)
2381         return 0;
2382
2383     /* We'll reuse the PSK we set up for TLSv1.3 */
2384     if (SSL_SESSION_get_master_key(clientpsk, NULL, 0) > max_psk_len)
2385         return 0;
2386     psklen = SSL_SESSION_get_master_key(clientpsk, psk, max_psk_len);
2387     strncpy(id, pskid, max_id_len);
2388
2389     return psklen;
2390 }
2391 #endif /* OPENSSL_NO_PSK */
2392
2393 static int find_session_cb(SSL *ssl, const unsigned char *identity,
2394                            size_t identity_len, SSL_SESSION **sess)
2395 {
2396     find_session_cb_cnt++;
2397
2398     /* We should only ever be called a maximum of twice per connection */
2399     if (find_session_cb_cnt > 2)
2400         return 0;
2401
2402     if (serverpsk == NULL)
2403         return 0;
2404
2405     /* Identity should match that set by the client */
2406     if (strlen(srvid) != identity_len
2407             || strncmp(srvid, (const char *)identity, identity_len) != 0) {
2408         /* No PSK found, continue but without a PSK */
2409         *sess = NULL;
2410         return 1;
2411     }
2412
2413     SSL_SESSION_up_ref(serverpsk);
2414     *sess = serverpsk;
2415
2416     return 1;
2417 }
2418
2419 #ifndef OPENSSL_NO_PSK
2420 static unsigned int psk_server_cb(SSL *ssl, const char *identity,
2421                                   unsigned char *psk, unsigned int max_psk_len)
2422 {
2423     unsigned int psklen = 0;
2424
2425     psk_server_cb_cnt++;
2426
2427     /* We should only ever be called a maximum of twice per connection */
2428     if (find_session_cb_cnt > 2)
2429         return 0;
2430
2431     if (serverpsk == NULL)
2432         return 0;
2433
2434     /* Identity should match that set by the client */
2435     if (strcmp(srvid, identity) != 0) {
2436         return 0;
2437     }
2438
2439     /* We'll reuse the PSK we set up for TLSv1.3 */
2440     if (SSL_SESSION_get_master_key(serverpsk, NULL, 0) > max_psk_len)
2441         return 0;
2442     psklen = SSL_SESSION_get_master_key(serverpsk, psk, max_psk_len);
2443
2444     return psklen;
2445 }
2446 #endif /* OPENSSL_NO_PSK */
2447
2448 #define MSG1    "Hello"
2449 #define MSG2    "World."
2450 #define MSG3    "This"
2451 #define MSG4    "is"
2452 #define MSG5    "a"
2453 #define MSG6    "test"
2454 #define MSG7    "message."
2455
2456 #define TLS13_AES_256_GCM_SHA384_BYTES  ((const unsigned char *)"\x13\x02")
2457 #define TLS13_AES_128_GCM_SHA256_BYTES  ((const unsigned char *)"\x13\x01")
2458
2459
2460 static SSL_SESSION *create_a_psk(SSL *ssl)
2461 {
2462     const SSL_CIPHER *cipher = NULL;
2463     const unsigned char key[] = {
2464         0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a,
2465         0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0x10, 0x11, 0x12, 0x13, 0x14, 0x15,
2466         0x16, 0x17, 0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f, 0x20,
2467         0x21, 0x22, 0x23, 0x24, 0x25, 0x26, 0x27, 0x28, 0x29, 0x2a, 0x2b,
2468         0x2c, 0x2d, 0x2e, 0x2f
2469     };
2470     SSL_SESSION *sess = NULL;
2471
2472     cipher = SSL_CIPHER_find(ssl, TLS13_AES_256_GCM_SHA384_BYTES);
2473     sess = SSL_SESSION_new();
2474     if (!TEST_ptr(sess)
2475             || !TEST_ptr(cipher)
2476             || !TEST_true(SSL_SESSION_set1_master_key(sess, key,
2477                                                       sizeof(key)))
2478             || !TEST_true(SSL_SESSION_set_cipher(sess, cipher))
2479             || !TEST_true(
2480                     SSL_SESSION_set_protocol_version(sess,
2481                                                      TLS1_3_VERSION))) {
2482         SSL_SESSION_free(sess);
2483         return NULL;
2484     }
2485     return sess;
2486 }
2487
2488 /*
2489  * Helper method to setup objects for early data test. Caller frees objects on
2490  * error.
2491  */
2492 static int setupearly_data_test(SSL_CTX **cctx, SSL_CTX **sctx, SSL **clientssl,
2493                                 SSL **serverssl, SSL_SESSION **sess, int idx)
2494 {
2495     if (*sctx == NULL
2496             && !TEST_true(create_ssl_ctx_pair(TLS_server_method(),
2497                                               TLS_client_method(),
2498                                               TLS1_VERSION, 0,
2499                                               sctx, cctx, cert, privkey)))
2500         return 0;
2501
2502     if (!TEST_true(SSL_CTX_set_max_early_data(*sctx, SSL3_RT_MAX_PLAIN_LENGTH)))
2503         return 0;
2504
2505     if (idx == 1) {
2506         /* When idx == 1 we repeat the tests with read_ahead set */
2507         SSL_CTX_set_read_ahead(*cctx, 1);
2508         SSL_CTX_set_read_ahead(*sctx, 1);
2509     } else if (idx == 2) {
2510         /* When idx == 2 we are doing early_data with a PSK. Set up callbacks */
2511         SSL_CTX_set_psk_use_session_callback(*cctx, use_session_cb);
2512         SSL_CTX_set_psk_find_session_callback(*sctx, find_session_cb);
2513         use_session_cb_cnt = 0;
2514         find_session_cb_cnt = 0;
2515         srvid = pskid;
2516     }
2517
2518     if (!TEST_true(create_ssl_objects(*sctx, *cctx, serverssl, clientssl,
2519                                       NULL, NULL)))
2520         return 0;
2521
2522     /*
2523      * For one of the run throughs (doesn't matter which one), we'll try sending
2524      * some SNI data in the initial ClientHello. This will be ignored (because
2525      * there is no SNI cb set up by the server), so it should not impact
2526      * early_data.
2527      */
2528     if (idx == 1
2529             && !TEST_true(SSL_set_tlsext_host_name(*clientssl, "localhost")))
2530         return 0;
2531
2532     if (idx == 2) {
2533         clientpsk = create_a_psk(*clientssl);
2534         if (!TEST_ptr(clientpsk)
2535                    /*
2536                     * We just choose an arbitrary value for max_early_data which
2537                     * should be big enough for testing purposes.
2538                     */
2539                 || !TEST_true(SSL_SESSION_set_max_early_data(clientpsk,
2540                                                              0x100))
2541                 || !TEST_true(SSL_SESSION_up_ref(clientpsk))) {
2542             SSL_SESSION_free(clientpsk);
2543             clientpsk = NULL;
2544             return 0;
2545         }
2546         serverpsk = clientpsk;
2547
2548         if (sess != NULL) {
2549             if (!TEST_true(SSL_SESSION_up_ref(clientpsk))) {
2550                 SSL_SESSION_free(clientpsk);
2551                 SSL_SESSION_free(serverpsk);
2552                 clientpsk = serverpsk = NULL;
2553                 return 0;
2554             }
2555             *sess = clientpsk;
2556         }
2557         return 1;
2558     }
2559
2560     if (sess == NULL)
2561         return 1;
2562
2563     if (!TEST_true(create_ssl_connection(*serverssl, *clientssl,
2564                                          SSL_ERROR_NONE)))
2565         return 0;
2566
2567     *sess = SSL_get1_session(*clientssl);
2568     SSL_shutdown(*clientssl);
2569     SSL_shutdown(*serverssl);
2570     SSL_free(*serverssl);
2571     SSL_free(*clientssl);
2572     *serverssl = *clientssl = NULL;
2573
2574     if (!TEST_true(create_ssl_objects(*sctx, *cctx, serverssl,
2575                                       clientssl, NULL, NULL))
2576             || !TEST_true(SSL_set_session(*clientssl, *sess)))
2577         return 0;
2578
2579     return 1;
2580 }
2581
2582 static int test_early_data_read_write(int idx)
2583 {
2584     SSL_CTX *cctx = NULL, *sctx = NULL;
2585     SSL *clientssl = NULL, *serverssl = NULL;
2586     int testresult = 0;
2587     SSL_SESSION *sess = NULL;
2588     unsigned char buf[20], data[1024];
2589     size_t readbytes, written, eoedlen, rawread, rawwritten;
2590     BIO *rbio;
2591
2592     if (!TEST_true(setupearly_data_test(&cctx, &sctx, &clientssl,
2593                                         &serverssl, &sess, idx)))
2594         goto end;
2595
2596     /* Write and read some early data */
2597     if (!TEST_true(SSL_write_early_data(clientssl, MSG1, strlen(MSG1),
2598                                         &written))
2599             || !TEST_size_t_eq(written, strlen(MSG1))
2600             || !TEST_int_eq(SSL_read_early_data(serverssl, buf,
2601                                                 sizeof(buf), &readbytes),
2602                             SSL_READ_EARLY_DATA_SUCCESS)
2603             || !TEST_mem_eq(MSG1, readbytes, buf, strlen(MSG1))
2604             || !TEST_int_eq(SSL_get_early_data_status(serverssl),
2605                             SSL_EARLY_DATA_ACCEPTED))
2606         goto end;
2607
2608     /*
2609      * Server should be able to write data, and client should be able to
2610      * read it.
2611      */
2612     if (!TEST_true(SSL_write_early_data(serverssl, MSG2, strlen(MSG2),
2613                                         &written))
2614             || !TEST_size_t_eq(written, strlen(MSG2))
2615             || !TEST_true(SSL_read_ex(clientssl, buf, sizeof(buf), &readbytes))
2616             || !TEST_mem_eq(buf, readbytes, MSG2, strlen(MSG2)))
2617         goto end;
2618
2619     /* Even after reading normal data, client should be able write early data */
2620     if (!TEST_true(SSL_write_early_data(clientssl, MSG3, strlen(MSG3),
2621                                         &written))
2622             || !TEST_size_t_eq(written, strlen(MSG3)))
2623         goto end;
2624
2625     /* Server should still be able read early data after writing data */
2626     if (!TEST_int_eq(SSL_read_early_data(serverssl, buf, sizeof(buf),
2627                                          &readbytes),
2628                      SSL_READ_EARLY_DATA_SUCCESS)
2629             || !TEST_mem_eq(buf, readbytes, MSG3, strlen(MSG3)))
2630         goto end;
2631
2632     /* Write more data from server and read it from client */
2633     if (!TEST_true(SSL_write_early_data(serverssl, MSG4, strlen(MSG4),
2634                                         &written))
2635             || !TEST_size_t_eq(written, strlen(MSG4))
2636             || !TEST_true(SSL_read_ex(clientssl, buf, sizeof(buf), &readbytes))
2637             || !TEST_mem_eq(buf, readbytes, MSG4, strlen(MSG4)))
2638         goto end;
2639
2640     /*
2641      * If client writes normal data it should mean writing early data is no
2642      * longer possible.
2643      */
2644     if (!TEST_true(SSL_write_ex(clientssl, MSG5, strlen(MSG5), &written))
2645             || !TEST_size_t_eq(written, strlen(MSG5))
2646             || !TEST_int_eq(SSL_get_early_data_status(clientssl),
2647                             SSL_EARLY_DATA_ACCEPTED))
2648         goto end;
2649
2650     /*
2651      * At this point the client has written EndOfEarlyData, ClientFinished and
2652      * normal (fully protected) data. We are going to cause a delay between the
2653      * arrival of EndOfEarlyData and ClientFinished. We read out all the data
2654      * in the read BIO, and then just put back the EndOfEarlyData message.
2655      */
2656     rbio = SSL_get_rbio(serverssl);
2657     if (!TEST_true(BIO_read_ex(rbio, data, sizeof(data), &rawread))
2658             || !TEST_size_t_lt(rawread, sizeof(data))
2659             || !TEST_size_t_gt(rawread, SSL3_RT_HEADER_LENGTH))
2660         goto end;
2661
2662     /* Record length is in the 4th and 5th bytes of the record header */
2663     eoedlen = SSL3_RT_HEADER_LENGTH + (data[3] << 8 | data[4]);
2664     if (!TEST_true(BIO_write_ex(rbio, data, eoedlen, &rawwritten))
2665             || !TEST_size_t_eq(rawwritten, eoedlen))
2666         goto end;
2667
2668     /* Server should be told that there is no more early data */
2669     if (!TEST_int_eq(SSL_read_early_data(serverssl, buf, sizeof(buf),
2670                                          &readbytes),
2671                      SSL_READ_EARLY_DATA_FINISH)
2672             || !TEST_size_t_eq(readbytes, 0))
2673         goto end;
2674
2675     /*
2676      * Server has not finished init yet, so should still be able to write early
2677      * data.
2678      */
2679     if (!TEST_true(SSL_write_early_data(serverssl, MSG6, strlen(MSG6),
2680                                         &written))
2681             || !TEST_size_t_eq(written, strlen(MSG6)))
2682         goto end;
2683
2684     /* Push the ClientFinished and the normal data back into the server rbio */
2685     if (!TEST_true(BIO_write_ex(rbio, data + eoedlen, rawread - eoedlen,
2686                                 &rawwritten))
2687             || !TEST_size_t_eq(rawwritten, rawread - eoedlen))
2688         goto end;
2689
2690     /* Server should be able to read normal data */
2691     if (!TEST_true(SSL_read_ex(serverssl, buf, sizeof(buf), &readbytes))
2692             || !TEST_size_t_eq(readbytes, strlen(MSG5)))
2693         goto end;
2694
2695     /* Client and server should not be able to write/read early data now */
2696     if (!TEST_false(SSL_write_early_data(clientssl, MSG6, strlen(MSG6),
2697                                          &written)))
2698         goto end;
2699     ERR_clear_error();
2700     if (!TEST_int_eq(SSL_read_early_data(serverssl, buf, sizeof(buf),
2701                                          &readbytes),
2702                      SSL_READ_EARLY_DATA_ERROR))
2703         goto end;
2704     ERR_clear_error();
2705
2706     /* Client should be able to read the data sent by the server */
2707     if (!TEST_true(SSL_read_ex(clientssl, buf, sizeof(buf), &readbytes))
2708             || !TEST_mem_eq(buf, readbytes, MSG6, strlen(MSG6)))
2709         goto end;
2710
2711     /*
2712      * Make sure we process the two NewSessionTickets. These arrive
2713      * post-handshake. We attempt reads which we do not expect to return any
2714      * data.
2715      */
2716     if (!TEST_false(SSL_read_ex(clientssl, buf, sizeof(buf), &readbytes))
2717             || !TEST_false(SSL_read_ex(clientssl, buf, sizeof(buf),
2718                            &readbytes)))
2719         goto end;
2720
2721     /* Server should be able to write normal data */
2722     if (!TEST_true(SSL_write_ex(serverssl, MSG7, strlen(MSG7), &written))
2723             || !TEST_size_t_eq(written, strlen(MSG7))
2724             || !TEST_true(SSL_read_ex(clientssl, buf, sizeof(buf), &readbytes))
2725             || !TEST_mem_eq(buf, readbytes, MSG7, strlen(MSG7)))
2726         goto end;
2727
2728     SSL_SESSION_free(sess);
2729     sess = SSL_get1_session(clientssl);
2730     use_session_cb_cnt = 0;
2731     find_session_cb_cnt = 0;
2732
2733     SSL_shutdown(clientssl);
2734     SSL_shutdown(serverssl);
2735     SSL_free(serverssl);
2736     SSL_free(clientssl);
2737     serverssl = clientssl = NULL;
2738     if (!TEST_true(create_ssl_objects(sctx, cctx, &serverssl,
2739                                       &clientssl, NULL, NULL))
2740             || !TEST_true(SSL_set_session(clientssl, sess)))
2741         goto end;
2742
2743     /* Write and read some early data */
2744     if (!TEST_true(SSL_write_early_data(clientssl, MSG1, strlen(MSG1),
2745                                         &written))
2746             || !TEST_size_t_eq(written, strlen(MSG1))
2747             || !TEST_int_eq(SSL_read_early_data(serverssl, buf, sizeof(buf),
2748                                                 &readbytes),
2749                             SSL_READ_EARLY_DATA_SUCCESS)
2750             || !TEST_mem_eq(buf, readbytes, MSG1, strlen(MSG1)))
2751         goto end;
2752
2753     if (!TEST_int_gt(SSL_connect(clientssl), 0)
2754             || !TEST_int_gt(SSL_accept(serverssl), 0))
2755         goto end;
2756
2757     /* Client and server should not be able to write/read early data now */
2758     if (!TEST_false(SSL_write_early_data(clientssl, MSG6, strlen(MSG6),
2759                                          &written)))
2760         goto end;
2761     ERR_clear_error();
2762     if (!TEST_int_eq(SSL_read_early_data(serverssl, buf, sizeof(buf),
2763                                          &readbytes),
2764                      SSL_READ_EARLY_DATA_ERROR))
2765         goto end;
2766     ERR_clear_error();
2767
2768     /* Client and server should be able to write/read normal data */
2769     if (!TEST_true(SSL_write_ex(clientssl, MSG5, strlen(MSG5), &written))
2770             || !TEST_size_t_eq(written, strlen(MSG5))
2771             || !TEST_true(SSL_read_ex(serverssl, buf, sizeof(buf), &readbytes))
2772             || !TEST_size_t_eq(readbytes, strlen(MSG5)))
2773         goto end;
2774
2775     testresult = 1;
2776
2777  end:
2778     SSL_SESSION_free(sess);
2779     SSL_SESSION_free(clientpsk);
2780     SSL_SESSION_free(serverpsk);
2781     clientpsk = serverpsk = NULL;
2782     SSL_free(serverssl);
2783     SSL_free(clientssl);
2784     SSL_CTX_free(sctx);
2785     SSL_CTX_free(cctx);
2786     return testresult;
2787 }
2788
2789 static int allow_ed_cb_called = 0;
2790
2791 static int allow_early_data_cb(SSL *s, void *arg)
2792 {
2793     int *usecb = (int *)arg;
2794
2795     allow_ed_cb_called++;
2796
2797     if (*usecb == 1)
2798         return 0;
2799
2800     return 1;
2801 }
2802
2803 /*
2804  * idx == 0: Standard early_data setup
2805  * idx == 1: early_data setup using read_ahead
2806  * usecb == 0: Don't use a custom early data callback
2807  * usecb == 1: Use a custom early data callback and reject the early data
2808  * usecb == 2: Use a custom early data callback and accept the early data
2809  * confopt == 0: Configure anti-replay directly
2810  * confopt == 1: Configure anti-replay using SSL_CONF
2811  */
2812 static int test_early_data_replay_int(int idx, int usecb, int confopt)
2813 {
2814     SSL_CTX *cctx = NULL, *sctx = NULL;
2815     SSL *clientssl = NULL, *serverssl = NULL;
2816     int testresult = 0;
2817     SSL_SESSION *sess = NULL;
2818     size_t readbytes, written;
2819     unsigned char buf[20];
2820
2821     allow_ed_cb_called = 0;
2822
2823     if (!TEST_true(create_ssl_ctx_pair(TLS_server_method(), TLS_client_method(),
2824                                        TLS1_VERSION, 0, &sctx,
2825                                        &cctx, cert, privkey)))
2826         return 0;
2827
2828     if (usecb > 0) {
2829         if (confopt == 0) {
2830             SSL_CTX_set_options(sctx, SSL_OP_NO_ANTI_REPLAY);
2831         } else {
2832             SSL_CONF_CTX *confctx = SSL_CONF_CTX_new();
2833
2834             if (!TEST_ptr(confctx))
2835                 goto end;
2836             SSL_CONF_CTX_set_flags(confctx, SSL_CONF_FLAG_FILE
2837                                             | SSL_CONF_FLAG_SERVER);
2838             SSL_CONF_CTX_set_ssl_ctx(confctx, sctx);
2839             if (!TEST_int_eq(SSL_CONF_cmd(confctx, "Options", "-AntiReplay"),
2840                              2)) {
2841                 SSL_CONF_CTX_free(confctx);
2842                 goto end;
2843             }
2844             SSL_CONF_CTX_free(confctx);
2845         }
2846         SSL_CTX_set_allow_early_data_cb(sctx, allow_early_data_cb, &usecb);
2847     }
2848
2849     if (!TEST_true(setupearly_data_test(&cctx, &sctx, &clientssl,
2850                                         &serverssl, &sess, idx)))
2851         goto end;
2852
2853     /*
2854      * The server is configured to accept early data. Create a connection to
2855      * "use up" the ticket
2856      */
2857     if (!TEST_true(create_ssl_connection(serverssl, clientssl, SSL_ERROR_NONE))
2858             || !TEST_true(SSL_session_reused(clientssl)))
2859         goto end;
2860
2861     SSL_shutdown(clientssl);
2862     SSL_shutdown(serverssl);
2863     SSL_free(serverssl);
2864     SSL_free(clientssl);
2865     serverssl = clientssl = NULL;
2866
2867     if (!TEST_true(create_ssl_objects(sctx, cctx, &serverssl,
2868                                       &clientssl, NULL, NULL))
2869             || !TEST_true(SSL_set_session(clientssl, sess)))
2870         goto end;
2871
2872     /* Write and read some early data */
2873     if (!TEST_true(SSL_write_early_data(clientssl, MSG1, strlen(MSG1),
2874                                         &written))
2875             || !TEST_size_t_eq(written, strlen(MSG1)))
2876         goto end;
2877
2878     if (usecb <= 1) {
2879         if (!TEST_int_eq(SSL_read_early_data(serverssl, buf, sizeof(buf),
2880                                              &readbytes),
2881                          SSL_READ_EARLY_DATA_FINISH)
2882                    /*
2883                     * The ticket was reused, so the we should have rejected the
2884                     * early data
2885                     */
2886                 || !TEST_int_eq(SSL_get_early_data_status(serverssl),
2887                                 SSL_EARLY_DATA_REJECTED))
2888             goto end;
2889     } else {
2890         /* In this case the callback decides to accept the early data */
2891         if (!TEST_int_eq(SSL_read_early_data(serverssl, buf, sizeof(buf),
2892                                              &readbytes),
2893                          SSL_READ_EARLY_DATA_SUCCESS)
2894                 || !TEST_mem_eq(MSG1, strlen(MSG1), buf, readbytes)
2895                    /*
2896                     * Server will have sent its flight so client can now send
2897                     * end of early data and complete its half of the handshake
2898                     */
2899                 || !TEST_int_gt(SSL_connect(clientssl), 0)
2900                 || !TEST_int_eq(SSL_read_early_data(serverssl, buf, sizeof(buf),
2901                                              &readbytes),
2902                                 SSL_READ_EARLY_DATA_FINISH)
2903                 || !TEST_int_eq(SSL_get_early_data_status(serverssl),
2904                                 SSL_EARLY_DATA_ACCEPTED))
2905             goto end;
2906     }
2907
2908     /* Complete the connection */
2909     if (!TEST_true(create_ssl_connection(serverssl, clientssl, SSL_ERROR_NONE))
2910             || !TEST_int_eq(SSL_session_reused(clientssl), (usecb > 0) ? 1 : 0)
2911             || !TEST_int_eq(allow_ed_cb_called, usecb > 0 ? 1 : 0))
2912         goto end;
2913
2914     testresult = 1;
2915
2916  end:
2917     SSL_SESSION_free(sess);
2918     SSL_SESSION_free(clientpsk);
2919     SSL_SESSION_free(serverpsk);
2920     clientpsk = serverpsk = NULL;
2921     SSL_free(serverssl);
2922     SSL_free(clientssl);
2923     SSL_CTX_free(sctx);
2924     SSL_CTX_free(cctx);
2925     return testresult;
2926 }
2927
2928 static int test_early_data_replay(int idx)
2929 {
2930     int ret = 1, usecb, confopt;
2931
2932     for (usecb = 0; usecb < 3; usecb++) {
2933         for (confopt = 0; confopt < 2; confopt++)
2934             ret &= test_early_data_replay_int(idx, usecb, confopt);
2935     }
2936
2937     return ret;
2938 }
2939
2940 /*
2941  * Helper function to test that a server attempting to read early data can
2942  * handle a connection from a client where the early data should be skipped.
2943  * testtype: 0 == No HRR
2944  * testtype: 1 == HRR
2945  * testtype: 2 == HRR, invalid early_data sent after HRR
2946  * testtype: 3 == recv_max_early_data set to 0
2947  */
2948 static int early_data_skip_helper(int testtype, int idx)
2949 {
2950     SSL_CTX *cctx = NULL, *sctx = NULL;
2951     SSL *clientssl = NULL, *serverssl = NULL;
2952     int testresult = 0;
2953     SSL_SESSION *sess = NULL;
2954     unsigned char buf[20];
2955     size_t readbytes, written;
2956
2957     if (!TEST_true(setupearly_data_test(&cctx, &sctx, &clientssl,
2958                                         &serverssl, &sess, idx)))
2959         goto end;
2960
2961     if (testtype == 1 || testtype == 2) {
2962         /* Force an HRR to occur */
2963         if (!TEST_true(SSL_set1_groups_list(serverssl, "P-256")))
2964             goto end;
2965     } else if (idx == 2) {
2966         /*
2967          * We force early_data rejection by ensuring the PSK identity is
2968          * unrecognised
2969          */
2970         srvid = "Dummy Identity";
2971     } else {
2972         /*
2973          * Deliberately corrupt the creation time. We take 20 seconds off the
2974          * time. It could be any value as long as it is not within tolerance.
2975          * This should mean the ticket is rejected.
2976          */
2977         if (!TEST_true(SSL_SESSION_set_time(sess, (long)(time(NULL) - 20))))
2978             goto end;
2979     }
2980
2981     if (testtype == 3
2982             && !TEST_true(SSL_set_recv_max_early_data(serverssl, 0)))
2983         goto end;
2984
2985     /* Write some early data */
2986     if (!TEST_true(SSL_write_early_data(clientssl, MSG1, strlen(MSG1),
2987                                         &written))
2988             || !TEST_size_t_eq(written, strlen(MSG1)))
2989         goto end;
2990
2991     /* Server should reject the early data */
2992     if (!TEST_int_eq(SSL_read_early_data(serverssl, buf, sizeof(buf),
2993                                          &readbytes),
2994                      SSL_READ_EARLY_DATA_FINISH)
2995             || !TEST_size_t_eq(readbytes, 0)
2996             || !TEST_int_eq(SSL_get_early_data_status(serverssl),
2997                             SSL_EARLY_DATA_REJECTED))
2998         goto end;
2999
3000     switch (testtype) {
3001     case 0:
3002         /* Nothing to do */
3003         break;
3004
3005     case 1:
3006         /*
3007          * Finish off the handshake. We perform the same writes and reads as
3008          * further down but we expect them to fail due to the incomplete
3009          * handshake.
3010          */
3011         if (!TEST_false(SSL_write_ex(clientssl, MSG2, strlen(MSG2), &written))
3012                 || !TEST_false(SSL_read_ex(serverssl, buf, sizeof(buf),
3013                                &readbytes)))
3014             goto end;
3015         break;
3016
3017     case 2:
3018         {
3019             BIO *wbio = SSL_get_wbio(clientssl);
3020             /* A record that will appear as bad early_data */
3021             const unsigned char bad_early_data[] = {
3022                 0x17, 0x03, 0x03, 0x00, 0x01, 0x00
3023             };
3024
3025             /*
3026              * We force the client to attempt a write. This will fail because
3027              * we're still in the handshake. It will cause the second
3028              * ClientHello to be sent.
3029              */
3030             if (!TEST_false(SSL_write_ex(clientssl, MSG2, strlen(MSG2),
3031                                          &written)))
3032                 goto end;
3033
3034             /*
3035              * Inject some early_data after the second ClientHello. This should
3036              * cause the server to fail
3037              */
3038             if (!TEST_true(BIO_write_ex(wbio, bad_early_data,
3039                                         sizeof(bad_early_data), &written)))
3040                 goto end;
3041         }
3042         /* fallthrough */
3043
3044     case 3:
3045         /*
3046          * This client has sent more early_data than we are willing to skip
3047          * (case 3) or sent invalid early_data (case 2) so the connection should
3048          * abort.
3049          */
3050         if (!TEST_false(SSL_read_ex(serverssl, buf, sizeof(buf), &readbytes))
3051                 || !TEST_int_eq(SSL_get_error(serverssl, 0), SSL_ERROR_SSL))
3052             goto end;
3053
3054         /* Connection has failed - nothing more to do */
3055         testresult = 1;
3056         goto end;
3057
3058     default:
3059         TEST_error("Invalid test type");
3060         goto end;
3061     }
3062
3063     /*
3064      * Should be able to send normal data despite rejection of early data. The
3065      * early_data should be skipped.
3066      */
3067     if (!TEST_true(SSL_write_ex(clientssl, MSG2, strlen(MSG2), &written))
3068             || !TEST_size_t_eq(written, strlen(MSG2))
3069             || !TEST_int_eq(SSL_get_early_data_status(clientssl),
3070                             SSL_EARLY_DATA_REJECTED)
3071             || !TEST_true(SSL_read_ex(serverssl, buf, sizeof(buf), &readbytes))
3072             || !TEST_mem_eq(buf, readbytes, MSG2, strlen(MSG2)))
3073         goto end;
3074
3075     testresult = 1;
3076
3077  end:
3078     SSL_SESSION_free(clientpsk);
3079     SSL_SESSION_free(serverpsk);
3080     clientpsk = serverpsk = NULL;
3081     SSL_SESSION_free(sess);
3082     SSL_free(serverssl);
3083     SSL_free(clientssl);
3084     SSL_CTX_free(sctx);
3085     SSL_CTX_free(cctx);
3086     return testresult;
3087 }
3088
3089 /*
3090  * Test that a server attempting to read early data can handle a connection
3091  * from a client where the early data is not acceptable.
3092  */
3093 static int test_early_data_skip(int idx)
3094 {
3095     return early_data_skip_helper(0, idx);
3096 }
3097
3098 /*
3099  * Test that a server attempting to read early data can handle a connection
3100  * from a client where an HRR occurs.
3101  */
3102 static int test_early_data_skip_hrr(int idx)
3103 {
3104     return early_data_skip_helper(1, idx);
3105 }
3106
3107 /*
3108  * Test that a server attempting to read early data can handle a connection
3109  * from a client where an HRR occurs and correctly fails if early_data is sent
3110  * after the HRR
3111  */
3112 static int test_early_data_skip_hrr_fail(int idx)
3113 {
3114     return early_data_skip_helper(2, idx);
3115 }
3116
3117 /*
3118  * Test that a server attempting to read early data will abort if it tries to
3119  * skip over too much.
3120  */
3121 static int test_early_data_skip_abort(int idx)
3122 {
3123     return early_data_skip_helper(3, idx);
3124 }
3125
3126 /*
3127  * Test that a server attempting to read early data can handle a connection
3128  * from a client that doesn't send any.
3129  */
3130 static int test_early_data_not_sent(int idx)
3131 {
3132     SSL_CTX *cctx = NULL, *sctx = NULL;
3133     SSL *clientssl = NULL, *serverssl = NULL;
3134     int testresult = 0;
3135     SSL_SESSION *sess = NULL;
3136     unsigned char buf[20];
3137     size_t readbytes, written;
3138
3139     if (!TEST_true(setupearly_data_test(&cctx, &sctx, &clientssl,
3140                                         &serverssl, &sess, idx)))
3141         goto end;
3142
3143     /* Write some data - should block due to handshake with server */
3144     SSL_set_connect_state(clientssl);
3145     if (!TEST_false(SSL_write_ex(clientssl, MSG1, strlen(MSG1), &written)))
3146         goto end;
3147
3148     /* Server should detect that early data has not been sent */
3149     if (!TEST_int_eq(SSL_read_early_data(serverssl, buf, sizeof(buf),
3150                                          &readbytes),
3151                      SSL_READ_EARLY_DATA_FINISH)
3152             || !TEST_size_t_eq(readbytes, 0)
3153             || !TEST_int_eq(SSL_get_early_data_status(serverssl),
3154                             SSL_EARLY_DATA_NOT_SENT)
3155             || !TEST_int_eq(SSL_get_early_data_status(clientssl),
3156                             SSL_EARLY_DATA_NOT_SENT))
3157         goto end;
3158
3159     /* Continue writing the message we started earlier */
3160     if (!TEST_true(SSL_write_ex(clientssl, MSG1, strlen(MSG1), &written))
3161             || !TEST_size_t_eq(written, strlen(MSG1))
3162             || !TEST_true(SSL_read_ex(serverssl, buf, sizeof(buf), &readbytes))
3163             || !TEST_mem_eq(buf, readbytes, MSG1, strlen(MSG1))
3164             || !SSL_write_ex(serverssl, MSG2, strlen(MSG2), &written)
3165             || !TEST_size_t_eq(written, strlen(MSG2)))
3166         goto end;
3167
3168     if (!TEST_true(SSL_read_ex(clientssl, buf, sizeof(buf), &readbytes))
3169             || !TEST_mem_eq(buf, readbytes, MSG2, strlen(MSG2)))
3170         goto end;
3171
3172     testresult = 1;
3173
3174  end:
3175     SSL_SESSION_free(sess);
3176     SSL_SESSION_free(clientpsk);
3177     SSL_SESSION_free(serverpsk);
3178     clientpsk = serverpsk = NULL;
3179     SSL_free(serverssl);
3180     SSL_free(clientssl);
3181     SSL_CTX_free(sctx);
3182     SSL_CTX_free(cctx);
3183     return testresult;
3184 }
3185
3186 static int hostname_cb(SSL *s, int *al, void *arg)
3187 {
3188     const char *hostname = SSL_get_servername(s, TLSEXT_NAMETYPE_host_name);
3189
3190     if (hostname != NULL && strcmp(hostname, "goodhost") == 0)
3191         return  SSL_TLSEXT_ERR_OK;
3192
3193     return SSL_TLSEXT_ERR_NOACK;
3194 }
3195
3196 static const char *servalpn;
3197
3198 static int alpn_select_cb(SSL *ssl, const unsigned char **out,
3199                           unsigned char *outlen, const unsigned char *in,
3200                           unsigned int inlen, void *arg)
3201 {
3202     unsigned int protlen = 0;
3203     const unsigned char *prot;
3204
3205     for (prot = in; prot < in + inlen; prot += protlen) {
3206         protlen = *prot++;
3207         if (in + inlen < prot + protlen)
3208             return SSL_TLSEXT_ERR_NOACK;
3209
3210         if (protlen == strlen(servalpn)
3211                 && memcmp(prot, servalpn, protlen) == 0) {
3212             *out = prot;
3213             *outlen = protlen;
3214             return SSL_TLSEXT_ERR_OK;
3215         }
3216     }
3217
3218     return SSL_TLSEXT_ERR_NOACK;
3219 }
3220
3221 /* Test that a PSK can be used to send early_data */
3222 static int test_early_data_psk(int idx)
3223 {
3224     SSL_CTX *cctx = NULL, *sctx = NULL;
3225     SSL *clientssl = NULL, *serverssl = NULL;
3226     int testresult = 0;
3227     SSL_SESSION *sess = NULL;
3228     unsigned char alpnlist[] = {
3229         0x08, 'g', 'o', 'o', 'd', 'a', 'l', 'p', 'n', 0x07, 'b', 'a', 'd', 'a',
3230         'l', 'p', 'n'
3231     };
3232 #define GOODALPNLEN     9
3233 #define BADALPNLEN      8
3234 #define GOODALPN        (alpnlist)
3235 #define BADALPN         (alpnlist + GOODALPNLEN)
3236     int err = 0;
3237     unsigned char buf[20];
3238     size_t readbytes, written;
3239     int readearlyres = SSL_READ_EARLY_DATA_SUCCESS, connectres = 1;
3240     int edstatus = SSL_EARLY_DATA_ACCEPTED;
3241
3242     /* We always set this up with a final parameter of "2" for PSK */
3243     if (!TEST_true(setupearly_data_test(&cctx, &sctx, &clientssl,
3244                                         &serverssl, &sess, 2)))
3245         goto end;
3246
3247     servalpn = "goodalpn";
3248
3249     /*
3250      * Note: There is no test for inconsistent SNI with late client detection.
3251      * This is because servers do not acknowledge SNI even if they are using
3252      * it in a resumption handshake - so it is not actually possible for a
3253      * client to detect a problem.
3254      */
3255     switch (idx) {
3256     case 0:
3257         /* Set inconsistent SNI (early client detection) */
3258         err = SSL_R_INCONSISTENT_EARLY_DATA_SNI;
3259         if (!TEST_true(SSL_SESSION_set1_hostname(sess, "goodhost"))
3260                 || !TEST_true(SSL_set_tlsext_host_name(clientssl, "badhost")))
3261             goto end;
3262         break;
3263
3264     case 1:
3265         /* Set inconsistent ALPN (early client detection) */
3266         err = SSL_R_INCONSISTENT_EARLY_DATA_ALPN;
3267         /* SSL_set_alpn_protos returns 0 for success and 1 for failure */
3268         if (!TEST_true(SSL_SESSION_set1_alpn_selected(sess, GOODALPN,
3269                                                       GOODALPNLEN))
3270                 || !TEST_false(SSL_set_alpn_protos(clientssl, BADALPN,
3271                                                    BADALPNLEN)))
3272             goto end;
3273         break;
3274
3275     case 2:
3276         /*
3277          * Set invalid protocol version. Technically this affects PSKs without
3278          * early_data too, but we test it here because it is similar to the
3279          * SNI/ALPN consistency tests.
3280          */
3281         err = SSL_R_BAD_PSK;
3282         if (!TEST_true(SSL_SESSION_set_protocol_version(sess, TLS1_2_VERSION)))
3283             goto end;
3284         break;
3285
3286     case 3:
3287         /*
3288          * Set inconsistent SNI (server detected). In this case the connection
3289          * will succeed but reject early_data.
3290          */
3291         SSL_SESSION_free(serverpsk);
3292         serverpsk = SSL_SESSION_dup(clientpsk);
3293         if (!TEST_ptr(serverpsk)
3294                 || !TEST_true(SSL_SESSION_set1_hostname(serverpsk, "badhost")))
3295             goto end;
3296         edstatus = SSL_EARLY_DATA_REJECTED;
3297         readearlyres = SSL_READ_EARLY_DATA_FINISH;
3298         /* Fall through */
3299     case 4:
3300         /* Set consistent SNI */
3301         if (!TEST_true(SSL_SESSION_set1_hostname(sess, "goodhost"))
3302                 || !TEST_true(SSL_set_tlsext_host_name(clientssl, "goodhost"))
3303                 || !TEST_true(SSL_CTX_set_tlsext_servername_callback(sctx,
3304                                 hostname_cb)))
3305             goto end;
3306         break;
3307
3308     case 5:
3309         /*
3310          * Set inconsistent ALPN (server detected). In this case the connection
3311          * will succeed but reject early_data.
3312          */
3313         servalpn = "badalpn";
3314         edstatus = SSL_EARLY_DATA_REJECTED;
3315         readearlyres = SSL_READ_EARLY_DATA_FINISH;
3316         /* Fall through */
3317     case 6:
3318         /*
3319          * Set consistent ALPN.
3320          * SSL_set_alpn_protos returns 0 for success and 1 for failure. It
3321          * accepts a list of protos (each one length prefixed).
3322          * SSL_set1_alpn_selected accepts a single protocol (not length
3323          * prefixed)
3324          */
3325         if (!TEST_true(SSL_SESSION_set1_alpn_selected(sess, GOODALPN + 1,
3326                                                       GOODALPNLEN - 1))
3327                 || !TEST_false(SSL_set_alpn_protos(clientssl, GOODALPN,
3328                                                    GOODALPNLEN)))
3329             goto end;
3330
3331         SSL_CTX_set_alpn_select_cb(sctx, alpn_select_cb, NULL);
3332         break;
3333
3334     case 7:
3335         /* Set inconsistent ALPN (late client detection) */
3336         SSL_SESSION_free(serverpsk);
3337         serverpsk = SSL_SESSION_dup(clientpsk);
3338         if (!TEST_ptr(serverpsk)
3339                 || !TEST_true(SSL_SESSION_set1_alpn_selected(clientpsk,
3340                                                              BADALPN + 1,
3341                                                              BADALPNLEN - 1))
3342                 || !TEST_true(SSL_SESSION_set1_alpn_selected(serverpsk,
3343                                                              GOODALPN + 1,
3344                                                              GOODALPNLEN - 1))
3345                 || !TEST_false(SSL_set_alpn_protos(clientssl, alpnlist,
3346                                                    sizeof(alpnlist))))
3347             goto end;
3348         SSL_CTX_set_alpn_select_cb(sctx, alpn_select_cb, NULL);
3349         edstatus = SSL_EARLY_DATA_ACCEPTED;
3350         readearlyres = SSL_READ_EARLY_DATA_SUCCESS;
3351         /* SSL_connect() call should fail */
3352         connectres = -1;
3353         break;
3354
3355     default:
3356         TEST_error("Bad test index");
3357         goto end;
3358     }
3359
3360     SSL_set_connect_state(clientssl);
3361     if (err != 0) {
3362         if (!TEST_false(SSL_write_early_data(clientssl, MSG1, strlen(MSG1),
3363                                             &written))
3364                 || !TEST_int_eq(SSL_get_error(clientssl, 0), SSL_ERROR_SSL)
3365                 || !TEST_int_eq(ERR_GET_REASON(ERR_get_error()), err))
3366             goto end;
3367     } else {
3368         if (!TEST_true(SSL_write_early_data(clientssl, MSG1, strlen(MSG1),
3369                                             &written)))
3370             goto end;
3371
3372         if (!TEST_int_eq(SSL_read_early_data(serverssl, buf, sizeof(buf),
3373                                              &readbytes), readearlyres)
3374                 || (readearlyres == SSL_READ_EARLY_DATA_SUCCESS
3375                     && !TEST_mem_eq(buf, readbytes, MSG1, strlen(MSG1)))
3376                 || !TEST_int_eq(SSL_get_early_data_status(serverssl), edstatus)
3377                 || !TEST_int_eq(SSL_connect(clientssl), connectres))
3378             goto end;
3379     }
3380
3381     testresult = 1;
3382
3383  end:
3384     SSL_SESSION_free(sess);
3385     SSL_SESSION_free(clientpsk);
3386     SSL_SESSION_free(serverpsk);
3387     clientpsk = serverpsk = NULL;
3388     SSL_free(serverssl);
3389     SSL_free(clientssl);
3390     SSL_CTX_free(sctx);
3391     SSL_CTX_free(cctx);
3392     return testresult;
3393 }
3394
3395 /*
3396  * Test that a server that doesn't try to read early data can handle a
3397  * client sending some.
3398  */
3399 static int test_early_data_not_expected(int idx)
3400 {
3401     SSL_CTX *cctx = NULL, *sctx = NULL;
3402     SSL *clientssl = NULL, *serverssl = NULL;
3403     int testresult = 0;
3404     SSL_SESSION *sess = NULL;
3405     unsigned char buf[20];
3406     size_t readbytes, written;
3407
3408     if (!TEST_true(setupearly_data_test(&cctx, &sctx, &clientssl,
3409                                         &serverssl, &sess, idx)))
3410         goto end;
3411
3412     /* Write some early data */
3413     if (!TEST_true(SSL_write_early_data(clientssl, MSG1, strlen(MSG1),
3414                                         &written)))
3415         goto end;
3416
3417     /*
3418      * Server should skip over early data and then block waiting for client to
3419      * continue handshake
3420      */
3421     if (!TEST_int_le(SSL_accept(serverssl), 0)
3422      || !TEST_int_gt(SSL_connect(clientssl), 0)
3423      || !TEST_int_eq(SSL_get_early_data_status(serverssl),
3424                      SSL_EARLY_DATA_REJECTED)
3425      || !TEST_int_gt(SSL_accept(serverssl), 0)
3426      || !TEST_int_eq(SSL_get_early_data_status(clientssl),
3427                      SSL_EARLY_DATA_REJECTED))
3428         goto end;
3429
3430     /* Send some normal data from client to server */
3431     if (!TEST_true(SSL_write_ex(clientssl, MSG2, strlen(MSG2), &written))
3432             || !TEST_size_t_eq(written, strlen(MSG2)))
3433         goto end;
3434
3435     if (!TEST_true(SSL_read_ex(serverssl, buf, sizeof(buf), &readbytes))
3436             || !TEST_mem_eq(buf, readbytes, MSG2, strlen(MSG2)))
3437         goto end;
3438
3439     testresult = 1;
3440
3441  end:
3442     SSL_SESSION_free(sess);
3443     SSL_SESSION_free(clientpsk);
3444     SSL_SESSION_free(serverpsk);
3445     clientpsk = serverpsk = NULL;
3446     SSL_free(serverssl);
3447     SSL_free(clientssl);
3448     SSL_CTX_free(sctx);
3449     SSL_CTX_free(cctx);
3450     return testresult;
3451 }
3452
3453
3454 # ifndef OPENSSL_NO_TLS1_2
3455 /*
3456  * Test that a server attempting to read early data can handle a connection
3457  * from a TLSv1.2 client.
3458  */
3459 static int test_early_data_tls1_2(int idx)
3460 {
3461     SSL_CTX *cctx = NULL, *sctx = NULL;
3462     SSL *clientssl = NULL, *serverssl = NULL;
3463     int testresult = 0;
3464     unsigned char buf[20];
3465     size_t readbytes, written;
3466
3467     if (!TEST_true(setupearly_data_test(&cctx, &sctx, &clientssl,
3468                                         &serverssl, NULL, idx)))
3469         goto end;
3470
3471     /* Write some data - should block due to handshake with server */
3472     SSL_set_max_proto_version(clientssl, TLS1_2_VERSION);
3473     SSL_set_connect_state(clientssl);
3474     if (!TEST_false(SSL_write_ex(clientssl, MSG1, strlen(MSG1), &written)))
3475         goto end;
3476
3477     /*
3478      * Server should do TLSv1.2 handshake. First it will block waiting for more
3479      * messages from client after ServerDone. Then SSL_read_early_data should
3480      * finish and detect that early data has not been sent
3481      */
3482     if (!TEST_int_eq(SSL_read_early_data(serverssl, buf, sizeof(buf),
3483                                          &readbytes),
3484                      SSL_READ_EARLY_DATA_ERROR))
3485         goto end;
3486
3487     /*
3488      * Continue writing the message we started earlier. Will still block waiting
3489      * for the CCS/Finished from server
3490      */
3491     if (!TEST_false(SSL_write_ex(clientssl, MSG1, strlen(MSG1), &written))
3492             || !TEST_int_eq(SSL_read_early_data(serverssl, buf, sizeof(buf),
3493                                                 &readbytes),
3494                             SSL_READ_EARLY_DATA_FINISH)
3495             || !TEST_size_t_eq(readbytes, 0)
3496             || !TEST_int_eq(SSL_get_early_data_status(serverssl),
3497                             SSL_EARLY_DATA_NOT_SENT))
3498         goto end;
3499
3500     /* Continue writing the message we started earlier */
3501     if (!TEST_true(SSL_write_ex(clientssl, MSG1, strlen(MSG1), &written))
3502             || !TEST_size_t_eq(written, strlen(MSG1))
3503             || !TEST_int_eq(SSL_get_early_data_status(clientssl),
3504                             SSL_EARLY_DATA_NOT_SENT)
3505             || !TEST_true(SSL_read_ex(serverssl, buf, sizeof(buf), &readbytes))
3506             || !TEST_mem_eq(buf, readbytes, MSG1, strlen(MSG1))
3507             || !TEST_true(SSL_write_ex(serverssl, MSG2, strlen(MSG2), &written))
3508             || !TEST_size_t_eq(written, strlen(MSG2))
3509             || !SSL_read_ex(clientssl, buf, sizeof(buf), &readbytes)
3510             || !TEST_mem_eq(buf, readbytes, MSG2, strlen(MSG2)))
3511         goto end;
3512
3513     testresult = 1;
3514
3515  end:
3516     SSL_SESSION_free(clientpsk);
3517     SSL_SESSION_free(serverpsk);
3518     clientpsk = serverpsk = NULL;
3519     SSL_free(serverssl);
3520     SSL_free(clientssl);
3521     SSL_CTX_free(sctx);
3522     SSL_CTX_free(cctx);
3523
3524     return testresult;
3525 }
3526 # endif /* OPENSSL_NO_TLS1_2 */
3527
3528 /*
3529  * Test configuring the TLSv1.3 ciphersuites
3530  *
3531  * Test 0: Set a default ciphersuite in the SSL_CTX (no explicit cipher_list)
3532  * Test 1: Set a non-default ciphersuite in the SSL_CTX (no explicit cipher_list)
3533  * Test 2: Set a default ciphersuite in the SSL (no explicit cipher_list)
3534  * Test 3: Set a non-default ciphersuite in the SSL (no explicit cipher_list)
3535  * Test 4: Set a default ciphersuite in the SSL_CTX (SSL_CTX cipher_list)
3536  * Test 5: Set a non-default ciphersuite in the SSL_CTX (SSL_CTX cipher_list)
3537  * Test 6: Set a default ciphersuite in the SSL (SSL_CTX cipher_list)
3538  * Test 7: Set a non-default ciphersuite in the SSL (SSL_CTX cipher_list)
3539  * Test 8: Set a default ciphersuite in the SSL (SSL cipher_list)
3540  * Test 9: Set a non-default ciphersuite in the SSL (SSL cipher_list)
3541  */
3542 static int test_set_ciphersuite(int idx)
3543 {
3544     SSL_CTX *cctx = NULL, *sctx = NULL;
3545     SSL *clientssl = NULL, *serverssl = NULL;
3546     int testresult = 0;
3547
3548     if (!TEST_true(create_ssl_ctx_pair(TLS_server_method(), TLS_client_method(),
3549                                        TLS1_VERSION, 0,
3550                                        &sctx, &cctx, cert, privkey))
3551             || !TEST_true(SSL_CTX_set_ciphersuites(sctx,
3552                            "TLS_AES_128_GCM_SHA256:TLS_AES_128_CCM_SHA256")))
3553         goto end;
3554
3555     if (idx >=4 && idx <= 7) {
3556         /* SSL_CTX explicit cipher list */
3557         if (!TEST_true(SSL_CTX_set_cipher_list(cctx, "AES256-GCM-SHA384")))
3558             goto end;
3559     }
3560
3561     if (idx == 0 || idx == 4) {
3562         /* Default ciphersuite */
3563         if (!TEST_true(SSL_CTX_set_ciphersuites(cctx,
3564                                                 "TLS_AES_128_GCM_SHA256")))
3565             goto end;
3566     } else if (idx == 1 || idx == 5) {
3567         /* Non default ciphersuite */
3568         if (!TEST_true(SSL_CTX_set_ciphersuites(cctx,
3569                                                 "TLS_AES_128_CCM_SHA256")))
3570             goto end;
3571     }
3572
3573     if (!TEST_true(create_ssl_objects(sctx, cctx, &serverssl,
3574                                           &clientssl, NULL, NULL)))
3575         goto end;
3576
3577     if (idx == 8 || idx == 9) {
3578         /* SSL explicit cipher list */
3579         if (!TEST_true(SSL_set_cipher_list(clientssl, "AES256-GCM-SHA384")))
3580             goto end;
3581     }
3582
3583     if (idx == 2 || idx == 6 || idx == 8) {
3584         /* Default ciphersuite */
3585         if (!TEST_true(SSL_set_ciphersuites(clientssl,
3586                                             "TLS_AES_128_GCM_SHA256")))
3587             goto end;
3588     } else if (idx == 3 || idx == 7 || idx == 9) {
3589         /* Non default ciphersuite */
3590         if (!TEST_true(SSL_set_ciphersuites(clientssl,
3591                                             "TLS_AES_128_CCM_SHA256")))
3592             goto end;
3593     }
3594
3595     if (!TEST_true(create_ssl_connection(serverssl, clientssl, SSL_ERROR_NONE)))
3596         goto end;
3597
3598     testresult = 1;
3599
3600  end:
3601     SSL_free(serverssl);
3602     SSL_free(clientssl);
3603     SSL_CTX_free(sctx);
3604     SSL_CTX_free(cctx);
3605
3606     return testresult;
3607 }
3608
3609 static int test_ciphersuite_change(void)
3610 {
3611     SSL_CTX *cctx = NULL, *sctx = NULL;
3612     SSL *clientssl = NULL, *serverssl = NULL;
3613     SSL_SESSION *clntsess = NULL;
3614     int testresult = 0;
3615     const SSL_CIPHER *aes_128_gcm_sha256 = NULL;
3616
3617     /* Create a session based on SHA-256 */
3618     if (!TEST_true(create_ssl_ctx_pair(TLS_server_method(), TLS_client_method(),
3619                                        TLS1_VERSION, 0,
3620                                        &sctx, &cctx, cert, privkey))
3621             || !TEST_true(SSL_CTX_set_ciphersuites(cctx,
3622                                                    "TLS_AES_128_GCM_SHA256"))
3623             || !TEST_true(create_ssl_objects(sctx, cctx, &serverssl,
3624                                           &clientssl, NULL, NULL))
3625             || !TEST_true(create_ssl_connection(serverssl, clientssl,
3626                                                 SSL_ERROR_NONE)))
3627         goto end;
3628
3629     clntsess = SSL_get1_session(clientssl);
3630     /* Save for later */
3631     aes_128_gcm_sha256 = SSL_SESSION_get0_cipher(clntsess);
3632     SSL_shutdown(clientssl);
3633     SSL_shutdown(serverssl);
3634     SSL_free(serverssl);
3635     SSL_free(clientssl);
3636     serverssl = clientssl = NULL;
3637
3638 # if !defined(OPENSSL_NO_CHACHA) && !defined(OPENSSL_NO_POLY1305)
3639     /* Check we can resume a session with a different SHA-256 ciphersuite */
3640     if (!TEST_true(SSL_CTX_set_ciphersuites(cctx,
3641                                             "TLS_CHACHA20_POLY1305_SHA256"))
3642             || !TEST_true(create_ssl_objects(sctx, cctx, &serverssl, &clientssl,
3643                                              NULL, NULL))
3644             || !TEST_true(SSL_set_session(clientssl, clntsess))
3645             || !TEST_true(create_ssl_connection(serverssl, clientssl,
3646                                                 SSL_ERROR_NONE))
3647             || !TEST_true(SSL_session_reused(clientssl)))
3648         goto end;
3649
3650     SSL_SESSION_free(clntsess);
3651     clntsess = SSL_get1_session(clientssl);
3652     SSL_shutdown(clientssl);
3653     SSL_shutdown(serverssl);
3654     SSL_free(serverssl);
3655     SSL_free(clientssl);
3656     serverssl = clientssl = NULL;
3657 # endif
3658
3659     /*
3660      * Check attempting to resume a SHA-256 session with no SHA-256 ciphersuites
3661      * succeeds but does not resume.
3662      */
3663     if (!TEST_true(SSL_CTX_set_ciphersuites(cctx, "TLS_AES_256_GCM_SHA384"))
3664             || !TEST_true(create_ssl_objects(sctx, cctx, &serverssl, &clientssl,
3665                                              NULL, NULL))
3666             || !TEST_true(SSL_set_session(clientssl, clntsess))
3667             || !TEST_true(create_ssl_connection(serverssl, clientssl,
3668                                                 SSL_ERROR_SSL))
3669             || !TEST_false(SSL_session_reused(clientssl)))
3670         goto end;
3671
3672     SSL_SESSION_free(clntsess);
3673     clntsess = NULL;
3674     SSL_shutdown(clientssl);
3675     SSL_shutdown(serverssl);
3676     SSL_free(serverssl);
3677     SSL_free(clientssl);
3678     serverssl = clientssl = NULL;
3679
3680     /* Create a session based on SHA384 */
3681     if (!TEST_true(SSL_CTX_set_ciphersuites(cctx, "TLS_AES_256_GCM_SHA384"))
3682             || !TEST_true(create_ssl_objects(sctx, cctx, &serverssl,
3683                                           &clientssl, NULL, NULL))
3684             || !TEST_true(create_ssl_connection(serverssl, clientssl,
3685                                                 SSL_ERROR_NONE)))
3686         goto end;
3687
3688     clntsess = SSL_get1_session(clientssl);
3689     SSL_shutdown(clientssl);
3690     SSL_shutdown(serverssl);
3691     SSL_free(serverssl);
3692     SSL_free(clientssl);
3693     serverssl = clientssl = NULL;
3694
3695     if (!TEST_true(SSL_CTX_set_ciphersuites(cctx,
3696                    "TLS_AES_128_GCM_SHA256:TLS_AES_256_GCM_SHA384"))
3697             || !TEST_true(SSL_CTX_set_ciphersuites(sctx,
3698                                                    "TLS_AES_256_GCM_SHA384"))
3699             || !TEST_true(create_ssl_objects(sctx, cctx, &serverssl, &clientssl,
3700                                              NULL, NULL))
3701             || !TEST_true(SSL_set_session(clientssl, clntsess))
3702                /*
3703                 * We use SSL_ERROR_WANT_READ below so that we can pause the
3704                 * connection after the initial ClientHello has been sent to
3705                 * enable us to make some session changes.
3706                 */
3707             || !TEST_false(create_ssl_connection(serverssl, clientssl,
3708                                                 SSL_ERROR_WANT_READ)))
3709         goto end;
3710
3711     /* Trick the client into thinking this session is for a different digest */
3712     clntsess->cipher = aes_128_gcm_sha256;
3713     clntsess->cipher_id = clntsess->cipher->id;
3714
3715     /*
3716      * Continue the previously started connection. Server has selected a SHA-384
3717      * ciphersuite, but client thinks the session is for SHA-256, so it should
3718      * bail out.
3719      */
3720     if (!TEST_false(create_ssl_connection(serverssl, clientssl,
3721                                                 SSL_ERROR_SSL))
3722             || !TEST_int_eq(ERR_GET_REASON(ERR_get_error()),
3723                             SSL_R_CIPHERSUITE_DIGEST_HAS_CHANGED))
3724         goto end;
3725
3726     testresult = 1;
3727
3728  end:
3729     SSL_SESSION_free(clntsess);
3730     SSL_free(serverssl);
3731     SSL_free(clientssl);
3732     SSL_CTX_free(sctx);
3733     SSL_CTX_free(cctx);
3734
3735     return testresult;
3736 }
3737
3738 /*
3739  * Test TLSv1.3 Key exchange
3740  * Test 0 = Test ECDHE Key exchange
3741  * Test 1 = Test FFDHE Key exchange
3742  * Test 2 = Test ECDHE with TLSv1.2 client and TLSv1.2 server
3743  * Test 3 = Test FFDHE with TLSv1.2 client and TLSv1.2 server
3744  */
3745 static int test_tls13_key_exchange(int idx)
3746 {
3747     SSL_CTX *sctx = NULL, *cctx = NULL;
3748     SSL *serverssl = NULL, *clientssl = NULL;
3749     int testresult = 0;
3750     int ecdhe_kexch_groups[] = {NID_X9_62_prime256v1, NID_secp384r1, NID_secp521r1,
3751                                 NID_X25519, NID_X448};
3752     int ffdhe_kexch_groups[] = {NID_ffdhe2048, NID_ffdhe3072, NID_ffdhe4096,
3753                                 NID_ffdhe6144, NID_ffdhe8192};
3754     int *kexch_groups = NULL;
3755     int kexch_groups_size = 0;
3756     int max_version = TLS1_3_VERSION;
3757     int want_err = SSL_ERROR_NONE;
3758     int expected_err_func = 0;
3759     int expected_err_reason = 0;
3760
3761     switch (idx) {
3762         case 0:
3763             kexch_groups = ecdhe_kexch_groups;
3764             kexch_groups_size = OSSL_NELEM(ecdhe_kexch_groups);
3765             break;
3766         case 1:
3767             kexch_groups = ffdhe_kexch_groups;
3768             kexch_groups_size = OSSL_NELEM(ffdhe_kexch_groups);
3769             break;
3770         case 2:
3771             kexch_groups = ecdhe_kexch_groups;
3772             kexch_groups_size = OSSL_NELEM(ecdhe_kexch_groups);
3773             max_version = TLS1_2_VERSION;
3774             expected_err_func = SSL_F_TLS_POST_PROCESS_CLIENT_HELLO;
3775             expected_err_reason = SSL_R_NO_SHARED_CIPHER;
3776             want_err = SSL_ERROR_SSL;
3777             break;
3778         case 3:
3779             kexch_groups = ffdhe_kexch_groups;
3780             kexch_groups_size = OSSL_NELEM(ffdhe_kexch_groups);
3781             max_version = TLS1_2_VERSION;
3782             want_err = SSL_ERROR_SSL;
3783             expected_err_func = SSL_F_TLS_CONSTRUCT_CTOS_SUPPORTED_GROUPS;
3784             expected_err_reason = ERR_R_INTERNAL_ERROR;
3785             break;
3786     }
3787
3788     if (!TEST_true(create_ssl_ctx_pair(TLS_server_method(), TLS_client_method(),
3789                                        TLS1_VERSION, max_version,
3790                                        &sctx, &cctx, cert, privkey)))
3791         goto end;
3792
3793     if (!TEST_true(SSL_CTX_set_ciphersuites(sctx, TLS1_3_RFC_AES_128_GCM_SHA256)))
3794         goto end;
3795
3796     if (!TEST_true(SSL_CTX_set_ciphersuites(cctx, TLS1_3_RFC_AES_128_GCM_SHA256)))
3797         goto end;
3798
3799     if (!TEST_true(SSL_CTX_set_cipher_list(sctx, TLS1_TXT_ECDHE_ECDSA_WITH_AES_128_CCM)))
3800         goto end;
3801
3802     if (!TEST_true(SSL_CTX_set_cipher_list(cctx, TLS1_TXT_ECDHE_ECDSA_WITH_AES_128_CCM)))
3803         goto end;
3804
3805     if (!TEST_true(create_ssl_objects(sctx, cctx, &serverssl, &clientssl,
3806                                              NULL, NULL)))
3807         goto end;
3808
3809     if (!TEST_true(SSL_set1_groups(serverssl, kexch_groups, kexch_groups_size))
3810         || !TEST_true(SSL_set1_groups(clientssl, kexch_groups, kexch_groups_size)))
3811         goto end;
3812
3813     if (!TEST_true(create_ssl_connection(serverssl, clientssl, want_err))) {
3814         /* Fail only if no error is expected in handshake */
3815         if (expected_err_func == 0)
3816             goto end;
3817     }
3818
3819     /* Fail if expected error is not happening for failure testcases */
3820     if (expected_err_func) {
3821         unsigned long err_code = ERR_get_error();
3822         if (TEST_int_eq(ERR_GET_FUNC(err_code), expected_err_func)
3823                 && TEST_int_eq(ERR_GET_REASON(err_code), expected_err_reason))
3824             testresult = 1;
3825         goto end;
3826     }
3827
3828     /* If Handshake succeeds the negotiated kexch alg should the first one in configured */
3829     if (!TEST_int_eq(SSL_get_shared_group(serverssl, 0), kexch_groups[0]))
3830         goto end;
3831
3832     testresult = 1;
3833  end:
3834     SSL_free(serverssl);
3835     SSL_free(clientssl);
3836     SSL_CTX_free(sctx);
3837     SSL_CTX_free(cctx);
3838     return testresult;
3839 }
3840
3841 /*
3842  * Test TLSv1.3 PSKs
3843  * Test 0 = Test new style callbacks
3844  * Test 1 = Test both new and old style callbacks
3845  * Test 2 = Test old style callbacks
3846  * Test 3 = Test old style callbacks with no certificate
3847  */
3848 static int test_tls13_psk(int idx)
3849 {
3850     SSL_CTX *sctx = NULL, *cctx = NULL;
3851     SSL *serverssl = NULL, *clientssl = NULL;
3852     const SSL_CIPHER *cipher = NULL;
3853     const unsigned char key[] = {
3854         0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b,
3855         0x0c, 0x0d, 0x0e, 0x0f, 0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17,
3856         0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f, 0x20, 0x21, 0x22, 0x23,
3857         0x24, 0x25, 0x26, 0x27, 0x28, 0x29, 0x2a, 0x2b, 0x2c, 0x2d, 0x2e, 0x2f
3858     };
3859     int testresult = 0;
3860
3861     if (!TEST_true(create_ssl_ctx_pair(TLS_server_method(), TLS_client_method(),
3862                                        TLS1_VERSION, 0,
3863                                        &sctx, &cctx, idx == 3 ? NULL : cert,
3864                                        idx == 3 ? NULL : privkey)))
3865         goto end;
3866
3867     if (idx != 3) {
3868         /*
3869          * We use a ciphersuite with SHA256 to ease testing old style PSK
3870          * callbacks which will always default to SHA256. This should not be
3871          * necessary if we have no cert/priv key. In that case the server should
3872          * prefer SHA256 automatically.
3873          */
3874         if (!TEST_true(SSL_CTX_set_ciphersuites(cctx,
3875                                                 "TLS_AES_128_GCM_SHA256")))
3876             goto end;
3877     }
3878
3879     /*
3880      * Test 0: New style callbacks only
3881      * Test 1: New and old style callbacks (only the new ones should be used)
3882      * Test 2: Old style callbacks only
3883      */
3884     if (idx == 0 || idx == 1) {
3885         SSL_CTX_set_psk_use_session_callback(cctx, use_session_cb);
3886         SSL_CTX_set_psk_find_session_callback(sctx, find_session_cb);
3887     }
3888 #ifndef OPENSSL_NO_PSK
3889     if (idx >= 1) {
3890         SSL_CTX_set_psk_client_callback(cctx, psk_client_cb);
3891         SSL_CTX_set_psk_server_callback(sctx, psk_server_cb);
3892     }
3893 #endif
3894     srvid = pskid;
3895     use_session_cb_cnt = 0;
3896     find_session_cb_cnt = 0;
3897     psk_client_cb_cnt = 0;
3898     psk_server_cb_cnt = 0;
3899
3900     if (idx != 3) {
3901         /*
3902          * Check we can create a connection if callback decides not to send a
3903          * PSK
3904          */
3905         if (!TEST_true(create_ssl_objects(sctx, cctx, &serverssl, &clientssl,
3906                                                  NULL, NULL))
3907                 || !TEST_true(create_ssl_connection(serverssl, clientssl,
3908                                                     SSL_ERROR_NONE))
3909                 || !TEST_false(SSL_session_reused(clientssl))
3910                 || !TEST_false(SSL_session_reused(serverssl)))
3911             goto end;
3912
3913         if (idx == 0 || idx == 1) {
3914             if (!TEST_true(use_session_cb_cnt == 1)
3915                     || !TEST_true(find_session_cb_cnt == 0)
3916                        /*
3917                         * If no old style callback then below should be 0
3918                         * otherwise 1
3919                         */
3920                     || !TEST_true(psk_client_cb_cnt == idx)
3921                     || !TEST_true(psk_server_cb_cnt == 0))
3922                 goto end;
3923         } else {
3924             if (!TEST_true(use_session_cb_cnt == 0)
3925                     || !TEST_true(find_session_cb_cnt == 0)
3926                     || !TEST_true(psk_client_cb_cnt == 1)
3927                     || !TEST_true(psk_server_cb_cnt == 0))
3928                 goto end;
3929         }
3930
3931         shutdown_ssl_connection(serverssl, clientssl);
3932         serverssl = clientssl = NULL;
3933         use_session_cb_cnt = psk_client_cb_cnt = 0;
3934     }
3935
3936     if (!TEST_true(create_ssl_objects(sctx, cctx, &serverssl, &clientssl,
3937                                              NULL, NULL)))
3938         goto end;
3939
3940     /* Create the PSK */
3941     cipher = SSL_CIPHER_find(clientssl, TLS13_AES_128_GCM_SHA256_BYTES);
3942     clientpsk = SSL_SESSION_new();
3943     if (!TEST_ptr(clientpsk)
3944             || !TEST_ptr(cipher)
3945             || !TEST_true(SSL_SESSION_set1_master_key(clientpsk, key,
3946                                                       sizeof(key)))
3947             || !TEST_true(SSL_SESSION_set_cipher(clientpsk, cipher))
3948             || !TEST_true(SSL_SESSION_set_protocol_version(clientpsk,
3949                                                            TLS1_3_VERSION))
3950             || !TEST_true(SSL_SESSION_up_ref(clientpsk)))
3951         goto end;
3952     serverpsk = clientpsk;
3953
3954     /* Check we can create a connection and the PSK is used */
3955     if (!TEST_true(create_ssl_connection(serverssl, clientssl, SSL_ERROR_NONE))
3956             || !TEST_true(SSL_session_reused(clientssl))
3957             || !TEST_true(SSL_session_reused(serverssl)))
3958         goto end;
3959
3960     if (idx == 0 || idx == 1) {
3961         if (!TEST_true(use_session_cb_cnt == 1)
3962                 || !TEST_true(find_session_cb_cnt == 1)
3963                 || !TEST_true(psk_client_cb_cnt == 0)
3964                 || !TEST_true(psk_server_cb_cnt == 0))
3965             goto end;
3966     } else {
3967         if (!TEST_true(use_session_cb_cnt == 0)
3968                 || !TEST_true(find_session_cb_cnt == 0)
3969                 || !TEST_true(psk_client_cb_cnt == 1)
3970                 || !TEST_true(psk_server_cb_cnt == 1))
3971             goto end;
3972     }
3973
3974     shutdown_ssl_connection(serverssl, clientssl);
3975     serverssl = clientssl = NULL;
3976     use_session_cb_cnt = find_session_cb_cnt = 0;
3977     psk_client_cb_cnt = psk_server_cb_cnt = 0;
3978
3979     if (!TEST_true(create_ssl_objects(sctx, cctx, &serverssl, &clientssl,
3980                                              NULL, NULL)))
3981         goto end;
3982
3983     /* Force an HRR */
3984     if (!TEST_true(SSL_set1_groups_list(serverssl, "P-256")))
3985         goto end;
3986
3987     /*
3988      * Check we can create a connection, the PSK is used and the callbacks are
3989      * called twice.
3990      */
3991     if (!TEST_true(create_ssl_connection(serverssl, clientssl, SSL_ERROR_NONE))
3992             || !TEST_true(SSL_session_reused(clientssl))
3993             || !TEST_true(SSL_session_reused(serverssl)))
3994         goto end;
3995
3996     if (idx == 0 || idx == 1) {
3997         if (!TEST_true(use_session_cb_cnt == 2)
3998                 || !TEST_true(find_session_cb_cnt == 2)
3999                 || !TEST_true(psk_client_cb_cnt == 0)
4000                 || !TEST_true(psk_server_cb_cnt == 0))
4001             goto end;
4002     } else {
4003         if (!TEST_true(use_session_cb_cnt == 0)
4004                 || !TEST_true(find_session_cb_cnt == 0)
4005                 || !TEST_true(psk_client_cb_cnt == 2)
4006                 || !TEST_true(psk_server_cb_cnt == 2))
4007             goto end;
4008     }
4009
4010     shutdown_ssl_connection(serverssl, clientssl);
4011     serverssl = clientssl = NULL;
4012     use_session_cb_cnt = find_session_cb_cnt = 0;
4013     psk_client_cb_cnt = psk_server_cb_cnt = 0;
4014
4015     if (idx != 3) {
4016         /*
4017          * Check that if the server rejects the PSK we can still connect, but with
4018          * a full handshake
4019          */
4020         srvid = "Dummy Identity";
4021         if (!TEST_true(create_ssl_objects(sctx, cctx, &serverssl, &clientssl,
4022                                                  NULL, NULL))
4023                 || !TEST_true(create_ssl_connection(serverssl, clientssl,
4024                                                     SSL_ERROR_NONE))
4025                 || !TEST_false(SSL_session_reused(clientssl))
4026                 || !TEST_false(SSL_session_reused(serverssl)))
4027             goto end;
4028
4029         if (idx == 0 || idx == 1) {
4030             if (!TEST_true(use_session_cb_cnt == 1)
4031                     || !TEST_true(find_session_cb_cnt == 1)
4032                     || !TEST_true(psk_client_cb_cnt == 0)
4033                        /*
4034                         * If no old style callback then below should be 0
4035                         * otherwise 1
4036                         */
4037                     || !TEST_true(psk_server_cb_cnt == idx))
4038                 goto end;
4039         } else {
4040             if (!TEST_true(use_session_cb_cnt == 0)
4041                     || !TEST_true(find_session_cb_cnt == 0)
4042                     || !TEST_true(psk_client_cb_cnt == 1)
4043                     || !TEST_true(psk_server_cb_cnt == 1))
4044                 goto end;
4045         }
4046
4047         shutdown_ssl_connection(serverssl, clientssl);
4048         serverssl = clientssl = NULL;
4049     }
4050     testresult = 1;
4051
4052  end:
4053     SSL_SESSION_free(clientpsk);
4054     SSL_SESSION_free(serverpsk);
4055     clientpsk = serverpsk = NULL;
4056     SSL_free(serverssl);
4057     SSL_free(clientssl);
4058     SSL_CTX_free(sctx);
4059     SSL_CTX_free(cctx);
4060     return testresult;
4061 }
4062
4063 static unsigned char cookie_magic_value[] = "cookie magic";
4064
4065 static int generate_cookie_callback(SSL *ssl, unsigned char *cookie,
4066                                     unsigned int *cookie_len)
4067 {
4068     /*
4069      * Not suitable as a real cookie generation function but good enough for
4070      * testing!
4071      */
4072     memcpy(cookie, cookie_magic_value, sizeof(cookie_magic_value) - 1);
4073     *cookie_len = sizeof(cookie_magic_value) - 1;
4074
4075     return 1;
4076 }
4077
4078 static int verify_cookie_callback(SSL *ssl, const unsigned char *cookie,
4079                                   unsigned int cookie_len)
4080 {
4081     if (cookie_len == sizeof(cookie_magic_value) - 1
4082         && memcmp(cookie, cookie_magic_value, cookie_len) == 0)
4083         return 1;
4084
4085     return 0;
4086 }
4087
4088 static int generate_stateless_cookie_callback(SSL *ssl, unsigned char *cookie,
4089                                         size_t *cookie_len)
4090 {
4091     unsigned int temp;
4092     int res = generate_cookie_callback(ssl, cookie, &temp);
4093     *cookie_len = temp;
4094     return res;
4095 }
4096
4097 static int verify_stateless_cookie_callback(SSL *ssl, const unsigned char *cookie,
4098                                       size_t cookie_len)
4099 {
4100     return verify_cookie_callback(ssl, cookie, cookie_len);
4101 }
4102
4103 static int test_stateless(void)
4104 {
4105     SSL_CTX *sctx = NULL, *cctx = NULL;
4106     SSL *serverssl = NULL, *clientssl = NULL;
4107     int testresult = 0;
4108
4109     if (!TEST_true(create_ssl_ctx_pair(TLS_server_method(), TLS_client_method(),
4110                                        TLS1_VERSION, 0,
4111                                        &sctx, &cctx, cert, privkey)))
4112         goto end;
4113
4114     /* The arrival of CCS messages can confuse the test */
4115     SSL_CTX_clear_options(cctx, SSL_OP_ENABLE_MIDDLEBOX_COMPAT);
4116
4117     if (!TEST_true(create_ssl_objects(sctx, cctx, &serverssl, &clientssl,
4118                                       NULL, NULL))
4119                /* Send the first ClientHello */
4120             || !TEST_false(create_ssl_connection(serverssl, clientssl,
4121                                                  SSL_ERROR_WANT_READ))
4122                /*
4123                 * This should fail with a -1 return because we have no callbacks
4124                 * set up
4125                 */
4126             || !TEST_int_eq(SSL_stateless(serverssl), -1))
4127         goto end;
4128
4129     /* Fatal error so abandon the connection from this client */
4130     SSL_free(clientssl);
4131     clientssl = NULL;
4132
4133     /* Set up the cookie generation and verification callbacks */
4134     SSL_CTX_set_stateless_cookie_generate_cb(sctx, generate_stateless_cookie_callback);
4135     SSL_CTX_set_stateless_cookie_verify_cb(sctx, verify_stateless_cookie_callback);
4136
4137     /*
4138      * Create a new connection from the client (we can reuse the server SSL
4139      * object).
4140      */
4141     if (!TEST_true(create_ssl_objects(sctx, cctx, &serverssl, &clientssl,
4142                                              NULL, NULL))
4143                /* Send the first ClientHello */
4144             || !TEST_false(create_ssl_connection(serverssl, clientssl,
4145                                                 SSL_ERROR_WANT_READ))
4146                /* This should fail because there is no cookie */
4147             || !TEST_int_eq(SSL_stateless(serverssl), 0))
4148         goto end;
4149
4150     /* Abandon the connection from this client */
4151     SSL_free(clientssl);
4152     clientssl = NULL;
4153
4154     /*
4155      * Now create a connection from a new client but with the same server SSL
4156      * object
4157      */
4158     if (!TEST_true(create_ssl_objects(sctx, cctx, &serverssl, &clientssl,
4159                                              NULL, NULL))
4160                /* Send the first ClientHello */
4161             || !TEST_false(create_ssl_connection(serverssl, clientssl,
4162                                                 SSL_ERROR_WANT_READ))
4163                /* This should fail because there is no cookie */
4164             || !TEST_int_eq(SSL_stateless(serverssl), 0)
4165                /* Send the second ClientHello */
4166             || !TEST_false(create_ssl_connection(serverssl, clientssl,
4167                                                 SSL_ERROR_WANT_READ))
4168                /* This should succeed because a cookie is now present */
4169             || !TEST_int_eq(SSL_stateless(serverssl), 1)
4170                /* Complete the connection */
4171             || !TEST_true(create_ssl_connection(serverssl, clientssl,
4172                                                 SSL_ERROR_NONE)))
4173         goto end;
4174
4175     shutdown_ssl_connection(serverssl, clientssl);
4176     serverssl = clientssl = NULL;
4177     testresult = 1;
4178
4179  end:
4180     SSL_free(serverssl);
4181     SSL_free(clientssl);
4182     SSL_CTX_free(sctx);
4183     SSL_CTX_free(cctx);
4184     return testresult;
4185
4186 }
4187 #endif /* OPENSSL_NO_TLS1_3 */
4188
4189 static int clntaddoldcb = 0;
4190 static int clntparseoldcb = 0;
4191 static int srvaddoldcb = 0;
4192 static int srvparseoldcb = 0;
4193 static int clntaddnewcb = 0;
4194 static int clntparsenewcb = 0;
4195 static int srvaddnewcb = 0;
4196 static int srvparsenewcb = 0;
4197 static int snicb = 0;
4198
4199 #define TEST_EXT_TYPE1  0xff00
4200
4201 static int old_add_cb(SSL *s, unsigned int ext_type, const unsigned char **out,
4202                       size_t *outlen, int *al, void *add_arg)
4203 {
4204     int *server = (int *)add_arg;
4205     unsigned char *data;
4206
4207     if (SSL_is_server(s))
4208         srvaddoldcb++;
4209     else
4210         clntaddoldcb++;
4211
4212     if (*server != SSL_is_server(s)
4213             || (data = OPENSSL_malloc(sizeof(*data))) == NULL)
4214         return -1;
4215
4216     *data = 1;
4217     *out = data;
4218     *outlen = sizeof(char);
4219     return 1;
4220 }
4221
4222 static void old_free_cb(SSL *s, unsigned int ext_type, const unsigned char *out,
4223                         void *add_arg)
4224 {
4225     OPENSSL_free((unsigned char *)out);
4226 }
4227
4228 static int old_parse_cb(SSL *s, unsigned int ext_type, const unsigned char *in,
4229                         size_t inlen, int *al, void *parse_arg)
4230 {
4231     int *server = (int *)parse_arg;
4232
4233     if (SSL_is_server(s))
4234         srvparseoldcb++;
4235     else
4236         clntparseoldcb++;
4237
4238     if (*server != SSL_is_server(s)
4239             || inlen != sizeof(char)
4240             || *in != 1)
4241         return -1;
4242
4243     return 1;
4244 }
4245
4246 static int new_add_cb(SSL *s, unsigned int ext_type, unsigned int context,
4247                       const unsigned char **out, size_t *outlen, X509 *x,
4248                       size_t chainidx, int *al, void *add_arg)
4249 {
4250     int *server = (int *)add_arg;
4251     unsigned char *data;
4252
4253     if (SSL_is_server(s))
4254         srvaddnewcb++;
4255     else
4256         clntaddnewcb++;
4257
4258     if (*server != SSL_is_server(s)
4259             || (data = OPENSSL_malloc(sizeof(*data))) == NULL)
4260         return -1;
4261
4262     *data = 1;
4263     *out = data;
4264     *outlen = sizeof(*data);
4265     return 1;
4266 }
4267
4268 static void new_free_cb(SSL *s, unsigned int ext_type, unsigned int context,
4269                         const unsigned char *out, void *add_arg)
4270 {
4271     OPENSSL_free((unsigned char *)out);
4272 }
4273
4274 static int new_parse_cb(SSL *s, unsigned int ext_type, unsigned int context,
4275                         const unsigned char *in, size_t inlen, X509 *x,
4276                         size_t chainidx, int *al, void *parse_arg)
4277 {
4278     int *server = (int *)parse_arg;
4279
4280     if (SSL_is_server(s))
4281         srvparsenewcb++;
4282     else
4283         clntparsenewcb++;
4284
4285     if (*server != SSL_is_server(s)
4286             || inlen != sizeof(char) || *in != 1)
4287         return -1;
4288
4289     return 1;
4290 }
4291
4292 static int sni_cb(SSL *s, int *al, void *arg)
4293 {
4294     SSL_CTX *ctx = (SSL_CTX *)arg;
4295
4296     if (SSL_set_SSL_CTX(s, ctx) == NULL) {
4297         *al = SSL_AD_INTERNAL_ERROR;
4298         return SSL_TLSEXT_ERR_ALERT_FATAL;
4299     }
4300     snicb++;
4301     return SSL_TLSEXT_ERR_OK;
4302 }
4303
4304 /*
4305  * Custom call back tests.
4306  * Test 0: Old style callbacks in TLSv1.2
4307  * Test 1: New style callbacks in TLSv1.2
4308  * Test 2: New style callbacks in TLSv1.2 with SNI
4309  * Test 3: New style callbacks in TLSv1.3. Extensions in CH and EE
4310  * Test 4: New style callbacks in TLSv1.3. Extensions in CH, SH, EE, Cert + NST
4311  */
4312 static int test_custom_exts(int tst)
4313 {
4314     SSL_CTX *cctx = NULL, *sctx = NULL, *sctx2 = NULL;
4315     SSL *clientssl = NULL, *serverssl = NULL;
4316     int testresult = 0;
4317     static int server = 1;
4318     static int client = 0;
4319     SSL_SESSION *sess = NULL;
4320     unsigned int context;
4321
4322 #if defined(OPENSSL_NO_TLS1_2) && !defined(OPENSSL_NO_TLS1_3)
4323     /* Skip tests for TLSv1.2 and below in this case */
4324     if (tst < 3)
4325         return 1;
4326 #endif
4327
4328     /* Reset callback counters */
4329     clntaddoldcb = clntparseoldcb = srvaddoldcb = srvparseoldcb = 0;
4330     clntaddnewcb = clntparsenewcb = srvaddnewcb = srvparsenewcb = 0;
4331     snicb = 0;
4332
4333     if (!TEST_true(create_ssl_ctx_pair(TLS_server_method(), TLS_client_method(),
4334                                        TLS1_VERSION, 0,
4335                                        &sctx, &cctx, cert, privkey)))
4336         goto end;
4337
4338     if (tst == 2
4339             && !TEST_true(create_ssl_ctx_pair(TLS_server_method(), NULL,
4340                                               TLS1_VERSION, 0,
4341                                               &sctx2, NULL, cert, privkey)))
4342         goto end;
4343
4344
4345     if (tst < 3) {
4346         SSL_CTX_set_options(cctx, SSL_OP_NO_TLSv1_3);
4347         SSL_CTX_set_options(sctx, SSL_OP_NO_TLSv1_3);
4348         if (sctx2 != NULL)
4349             SSL_CTX_set_options(sctx2, SSL_OP_NO_TLSv1_3);
4350     }
4351
4352     if (tst == 4) {
4353         context = SSL_EXT_CLIENT_HELLO
4354                   | SSL_EXT_TLS1_2_SERVER_HELLO
4355                   | SSL_EXT_TLS1_3_SERVER_HELLO
4356                   | SSL_EXT_TLS1_3_ENCRYPTED_EXTENSIONS
4357                   | SSL_EXT_TLS1_3_CERTIFICATE
4358                   | SSL_EXT_TLS1_3_NEW_SESSION_TICKET;
4359     } else {
4360         context = SSL_EXT_CLIENT_HELLO
4361                   | SSL_EXT_TLS1_2_SERVER_HELLO
4362                   | SSL_EXT_TLS1_3_ENCRYPTED_EXTENSIONS;
4363     }
4364
4365     /* Create a client side custom extension */
4366     if (tst == 0) {
4367         if (!TEST_true(SSL_CTX_add_client_custom_ext(cctx, TEST_EXT_TYPE1,
4368                                                      old_add_cb, old_free_cb,
4369                                                      &client, old_parse_cb,
4370                                                      &client)))
4371             goto end;
4372     } else {
4373         if (!TEST_true(SSL_CTX_add_custom_ext(cctx, TEST_EXT_TYPE1, context,
4374                                               new_add_cb, new_free_cb,
4375                                               &client, new_parse_cb, &client)))
4376             goto end;
4377     }
4378
4379     /* Should not be able to add duplicates */
4380     if (!TEST_false(SSL_CTX_add_client_custom_ext(cctx, TEST_EXT_TYPE1,
4381                                                   old_add_cb, old_free_cb,
4382                                                   &client, old_parse_cb,
4383                                                   &client))
4384             || !TEST_false(SSL_CTX_add_custom_ext(cctx, TEST_EXT_TYPE1,
4385                                                   context, new_add_cb,
4386                                                   new_free_cb, &client,
4387                                                   new_parse_cb, &client)))
4388         goto end;
4389
4390     /* Create a server side custom extension */
4391     if (tst == 0) {
4392         if (!TEST_true(SSL_CTX_add_server_custom_ext(sctx, TEST_EXT_TYPE1,
4393                                                      old_add_cb, old_free_cb,
4394                                                      &server, old_parse_cb,
4395                                                      &server)))
4396             goto end;
4397     } else {
4398         if (!TEST_true(SSL_CTX_add_custom_ext(sctx, TEST_EXT_TYPE1, context,
4399                                               new_add_cb, new_free_cb,
4400                                               &server, new_parse_cb, &server)))
4401             goto end;
4402         if (sctx2 != NULL
4403                 && !TEST_true(SSL_CTX_add_custom_ext(sctx2, TEST_EXT_TYPE1,
4404                                                      context, new_add_cb,
4405                                                      new_free_cb, &server,
4406                                                      new_parse_cb, &server)))
4407             goto end;
4408     }
4409
4410     /* Should not be able to add duplicates */
4411     if (!TEST_false(SSL_CTX_add_server_custom_ext(sctx, TEST_EXT_TYPE1,
4412                                                   old_add_cb, old_free_cb,
4413                                                   &server, old_parse_cb,
4414                                                   &server))
4415             || !TEST_false(SSL_CTX_add_custom_ext(sctx, TEST_EXT_TYPE1,
4416                                                   context, new_add_cb,
4417                                                   new_free_cb, &server,
4418                                                   new_parse_cb, &server)))
4419         goto end;
4420
4421     if (tst == 2) {
4422         /* Set up SNI */
4423         if (!TEST_true(SSL_CTX_set_tlsext_servername_callback(sctx, sni_cb))
4424                 || !TEST_true(SSL_CTX_set_tlsext_servername_arg(sctx, sctx2)))
4425             goto end;
4426     }
4427
4428     if (!TEST_true(create_ssl_objects(sctx, cctx, &serverssl,
4429                                       &clientssl, NULL, NULL))
4430             || !TEST_true(create_ssl_connection(serverssl, clientssl,
4431                                                 SSL_ERROR_NONE)))
4432         goto end;
4433
4434     if (tst == 0) {
4435         if (clntaddoldcb != 1
4436                 || clntparseoldcb != 1
4437                 || srvaddoldcb != 1
4438                 || srvparseoldcb != 1)
4439             goto end;
4440     } else if (tst == 1 || tst == 2 || tst == 3) {
4441         if (clntaddnewcb != 1
4442                 || clntparsenewcb != 1
4443                 || srvaddnewcb != 1
4444                 || srvparsenewcb != 1
4445                 || (tst != 2 && snicb != 0)
4446                 || (tst == 2 && snicb != 1))
4447             goto end;
4448     } else {
4449         /* In this case there 2 NewSessionTicket messages created */
4450         if (clntaddnewcb != 1
4451                 || clntparsenewcb != 5
4452                 || srvaddnewcb != 5
4453                 || srvparsenewcb != 1)
4454             goto end;
4455     }
4456
4457     sess = SSL_get1_session(clientssl);
4458     SSL_shutdown(clientssl);
4459     SSL_shutdown(serverssl);
4460     SSL_free(serverssl);
4461     SSL_free(clientssl);
4462     serverssl = clientssl = NULL;
4463
4464     if (tst == 3) {
4465         /* We don't bother with the resumption aspects for this test */
4466         testresult = 1;
4467         goto end;
4468     }
4469
4470     if (!TEST_true(create_ssl_objects(sctx, cctx, &serverssl, &clientssl,
4471                                       NULL, NULL))
4472             || !TEST_true(SSL_set_session(clientssl, sess))
4473             || !TEST_true(create_ssl_connection(serverssl, clientssl,
4474                                                SSL_ERROR_NONE)))
4475         goto end;
4476
4477     /*
4478      * For a resumed session we expect to add the ClientHello extension. For the
4479      * old style callbacks we ignore it on the server side because they set
4480      * SSL_EXT_IGNORE_ON_RESUMPTION. The new style callbacks do not ignore
4481      * them.
4482      */
4483     if (tst == 0) {
4484         if (clntaddoldcb != 2
4485                 || clntparseoldcb != 1
4486                 || srvaddoldcb != 1
4487                 || srvparseoldcb != 1)
4488             goto end;
4489     } else if (tst == 1 || tst == 2 || tst == 3) {
4490         if (clntaddnewcb != 2
4491                 || clntparsenewcb != 2
4492                 || srvaddnewcb != 2
4493                 || srvparsenewcb != 2)
4494             goto end;
4495     } else {
4496         /*
4497          * No Certificate message extensions in the resumption handshake,
4498          * 2 NewSessionTickets in the initial handshake, 1 in the resumption
4499          */
4500         if (clntaddnewcb != 2
4501                 || clntparsenewcb != 8
4502                 || srvaddnewcb != 8
4503                 || srvparsenewcb != 2)
4504             goto end;
4505     }
4506
4507     testresult = 1;
4508
4509 end:
4510     SSL_SESSION_free(sess);
4511     SSL_free(serverssl);
4512     SSL_free(clientssl);
4513     SSL_CTX_free(sctx2);
4514     SSL_CTX_free(sctx);
4515     SSL_CTX_free(cctx);
4516     return testresult;
4517 }
4518
4519 /*
4520  * Test loading of serverinfo data in various formats. test_sslmessages actually
4521  * tests to make sure the extensions appear in the handshake
4522  */
4523 static int test_serverinfo(int tst)
4524 {
4525     unsigned int version;
4526     unsigned char *sibuf;
4527     size_t sibuflen;
4528     int ret, expected, testresult = 0;
4529     SSL_CTX *ctx;
4530
4531     ctx = SSL_CTX_new(TLS_method());
4532     if (!TEST_ptr(ctx))
4533         goto end;
4534
4535     if ((tst & 0x01) == 0x01)
4536         version = SSL_SERVERINFOV2;
4537     else
4538         version = SSL_SERVERINFOV1;
4539
4540     if ((tst & 0x02) == 0x02) {
4541         sibuf = serverinfov2;
4542         sibuflen = sizeof(serverinfov2);
4543         expected = (version == SSL_SERVERINFOV2);
4544     } else {
4545         sibuf = serverinfov1;
4546         sibuflen = sizeof(serverinfov1);
4547         expected = (version == SSL_SERVERINFOV1);
4548     }
4549
4550     if ((tst & 0x04) == 0x04) {
4551         ret = SSL_CTX_use_serverinfo_ex(ctx, version, sibuf, sibuflen);
4552     } else {
4553         ret = SSL_CTX_use_serverinfo(ctx, sibuf, sibuflen);
4554
4555         /*
4556          * The version variable is irrelevant in this case - it's what is in the
4557          * buffer that matters
4558          */
4559         if ((tst & 0x02) == 0x02)
4560             expected = 0;
4561         else
4562             expected = 1;
4563     }
4564
4565     if (!TEST_true(ret == expected))
4566         goto end;
4567
4568     testresult = 1;
4569
4570  end:
4571     SSL_CTX_free(ctx);
4572
4573     return testresult;
4574 }
4575
4576 /*
4577  * Test that SSL_export_keying_material() produces expected results. There are
4578  * no test vectors so all we do is test that both sides of the communication
4579  * produce the same results for different protocol versions.
4580  */
4581 #define SMALL_LABEL_LEN 10
4582 #define LONG_LABEL_LEN  249
4583 static int test_export_key_mat(int tst)
4584 {
4585     int testresult = 0;
4586     SSL_CTX *cctx = NULL, *sctx = NULL, *sctx2 = NULL;
4587     SSL *clientssl = NULL, *serverssl = NULL;
4588     const char label[LONG_LABEL_LEN + 1] = "test label";
4589     const unsigned char context[] = "context";
4590     const unsigned char *emptycontext = NULL;
4591     unsigned char ckeymat1[80], ckeymat2[80], ckeymat3[80];
4592     unsigned char skeymat1[80], skeymat2[80], skeymat3[80];
4593     size_t labellen;
4594     const int protocols[] = {
4595         TLS1_VERSION,
4596         TLS1_1_VERSION,
4597         TLS1_2_VERSION,
4598         TLS1_3_VERSION,
4599         TLS1_3_VERSION,
4600         TLS1_3_VERSION
4601     };
4602
4603 #ifdef OPENSSL_NO_TLS1
4604     if (tst == 0)
4605         return 1;
4606 #endif
4607 #ifdef OPENSSL_NO_TLS1_1
4608     if (tst == 1)
4609         return 1;
4610 #endif
4611 #ifdef OPENSSL_NO_TLS1_2
4612     if (tst == 2)
4613         return 1;
4614 #endif
4615 #ifdef OPENSSL_NO_TLS1_3
4616     if (tst >= 3)
4617         return 1;
4618 #endif
4619     if (!TEST_true(create_ssl_ctx_pair(TLS_server_method(), TLS_client_method(),
4620                                        TLS1_VERSION, 0,
4621                                        &sctx, &cctx, cert, privkey)))
4622         goto end;
4623
4624     OPENSSL_assert(tst >= 0 && (size_t)tst < OSSL_NELEM(protocols));
4625     SSL_CTX_set_max_proto_version(cctx, protocols[tst]);
4626     SSL_CTX_set_min_proto_version(cctx, protocols[tst]);
4627
4628     if (!TEST_true(create_ssl_objects(sctx, cctx, &serverssl, &clientssl, NULL,
4629                                       NULL))
4630             || !TEST_true(create_ssl_connection(serverssl, clientssl,
4631                                                 SSL_ERROR_NONE)))
4632         goto end;
4633
4634     if (tst == 5) {
4635         /*
4636          * TLSv1.3 imposes a maximum label len of 249 bytes. Check we fail if we
4637          * go over that.
4638          */
4639         if (!TEST_int_le(SSL_export_keying_material(clientssl, ckeymat1,
4640                                                     sizeof(ckeymat1), label,
4641                                                     LONG_LABEL_LEN + 1, context,
4642                                                     sizeof(context) - 1, 1), 0))
4643             goto end;
4644
4645         testresult = 1;
4646         goto end;
4647     } else if (tst == 4) {
4648         labellen = LONG_LABEL_LEN;
4649     } else {
4650         labellen = SMALL_LABEL_LEN;
4651     }
4652
4653     if (!TEST_int_eq(SSL_export_keying_material(clientssl, ckeymat1,
4654                                                 sizeof(ckeymat1), label,
4655                                                 labellen, context,
4656                                                 sizeof(context) - 1, 1), 1)
4657             || !TEST_int_eq(SSL_export_keying_material(clientssl, ckeymat2,
4658                                                        sizeof(ckeymat2), label,
4659                                                        labellen,
4660                                                        emptycontext,
4661                                                        0, 1), 1)
4662             || !TEST_int_eq(SSL_export_keying_material(clientssl, ckeymat3,
4663                                                        sizeof(ckeymat3), label,
4664                                                        labellen,
4665                                                        NULL, 0, 0), 1)
4666             || !TEST_int_eq(SSL_export_keying_material(serverssl, skeymat1,
4667                                                        sizeof(skeymat1), label,
4668                                                        labellen,
4669                                                        context,
4670                                                        sizeof(context) -1, 1),
4671                             1)
4672             || !TEST_int_eq(SSL_export_keying_material(serverssl, skeymat2,
4673                                                        sizeof(skeymat2), label,
4674                                                        labellen,
4675                                                        emptycontext,
4676                                                        0, 1), 1)
4677             || !TEST_int_eq(SSL_export_keying_material(serverssl, skeymat3,
4678                                                        sizeof(skeymat3), label,
4679                                                        labellen,
4680                                                        NULL, 0, 0), 1)
4681                /*
4682                 * Check that both sides created the same key material with the
4683                 * same context.
4684                 */
4685             || !TEST_mem_eq(ckeymat1, sizeof(ckeymat1), skeymat1,
4686                             sizeof(skeymat1))
4687                /*
4688                 * Check that both sides created the same key material with an
4689                 * empty context.
4690                 */
4691             || !TEST_mem_eq(ckeymat2, sizeof(ckeymat2), skeymat2,
4692                             sizeof(skeymat2))
4693                /*
4694                 * Check that both sides created the same key material without a
4695                 * context.
4696                 */
4697             || !TEST_mem_eq(ckeymat3, sizeof(ckeymat3), skeymat3,
4698                             sizeof(skeymat3))
4699                /* Different contexts should produce different results */
4700             || !TEST_mem_ne(ckeymat1, sizeof(ckeymat1), ckeymat2,
4701                             sizeof(ckeymat2)))
4702         goto end;
4703
4704     /*
4705      * Check that an empty context and no context produce different results in
4706      * protocols less than TLSv1.3. In TLSv1.3 they should be the same.
4707      */
4708     if ((tst < 3 && !TEST_mem_ne(ckeymat2, sizeof(ckeymat2), ckeymat3,
4709                                   sizeof(ckeymat3)))
4710             || (tst >= 3 && !TEST_mem_eq(ckeymat2, sizeof(ckeymat2), ckeymat3,
4711                                          sizeof(ckeymat3))))
4712         goto end;
4713
4714     testresult = 1;
4715
4716  end:
4717     SSL_free(serverssl);
4718     SSL_free(clientssl);
4719     SSL_CTX_free(sctx2);
4720     SSL_CTX_free(sctx);
4721     SSL_CTX_free(cctx);
4722
4723     return testresult;
4724 }
4725
4726 #ifndef OPENSSL_NO_TLS1_3
4727 /*
4728  * Test that SSL_export_keying_material_early() produces expected
4729  * results. There are no test vectors so all we do is test that both
4730  * sides of the communication produce the same results for different
4731  * protocol versions.
4732  */
4733 static int test_export_key_mat_early(int idx)
4734 {
4735     static const char label[] = "test label";
4736     static const unsigned char context[] = "context";
4737     int testresult = 0;
4738     SSL_CTX *cctx = NULL, *sctx = NULL;
4739     SSL *clientssl = NULL, *serverssl = NULL;
4740     SSL_SESSION *sess = NULL;
4741     const unsigned char *emptycontext = NULL;
4742     unsigned char ckeymat1[80], ckeymat2[80];
4743     unsigned char skeymat1[80], skeymat2[80];
4744     unsigned char buf[1];
4745     size_t readbytes, written;
4746
4747     if (!TEST_true(setupearly_data_test(&cctx, &sctx, &clientssl, &serverssl,
4748                                         &sess, idx)))
4749         goto end;
4750
4751     /* Here writing 0 length early data is enough. */
4752     if (!TEST_true(SSL_write_early_data(clientssl, NULL, 0, &written))
4753             || !TEST_int_eq(SSL_read_early_data(serverssl, buf, sizeof(buf),
4754                                                 &readbytes),
4755                             SSL_READ_EARLY_DATA_ERROR)
4756             || !TEST_int_eq(SSL_get_early_data_status(serverssl),
4757                             SSL_EARLY_DATA_ACCEPTED))
4758         goto end;
4759
4760     if (!TEST_int_eq(SSL_export_keying_material_early(
4761                      clientssl, ckeymat1, sizeof(ckeymat1), label,
4762                      sizeof(label) - 1, context, sizeof(context) - 1), 1)
4763             || !TEST_int_eq(SSL_export_keying_material_early(
4764                             clientssl, ckeymat2, sizeof(ckeymat2), label,
4765                             sizeof(label) - 1, emptycontext, 0), 1)
4766             || !TEST_int_eq(SSL_export_keying_material_early(
4767                             serverssl, skeymat1, sizeof(skeymat1), label,
4768                             sizeof(label) - 1, context, sizeof(context) - 1), 1)
4769             || !TEST_int_eq(SSL_export_keying_material_early(
4770                             serverssl, skeymat2, sizeof(skeymat2), label,
4771                             sizeof(label) - 1, emptycontext, 0), 1)
4772                /*
4773                 * Check that both sides created the same key material with the
4774                 * same context.
4775                 */
4776             || !TEST_mem_eq(ckeymat1, sizeof(ckeymat1), skeymat1,
4777                             sizeof(skeymat1))
4778                /*
4779                 * Check that both sides created the same key material with an
4780                 * empty context.
4781                 */
4782             || !TEST_mem_eq(ckeymat2, sizeof(ckeymat2), skeymat2,
4783                             sizeof(skeymat2))
4784                /* Different contexts should produce different results */
4785             || !TEST_mem_ne(ckeymat1, sizeof(ckeymat1), ckeymat2,
4786                             sizeof(ckeymat2)))
4787         goto end;
4788
4789     testresult = 1;
4790
4791  end:
4792     SSL_SESSION_free(sess);
4793     SSL_SESSION_free(clientpsk);
4794     SSL_SESSION_free(serverpsk);
4795     clientpsk = serverpsk = NULL;
4796     SSL_free(serverssl);
4797     SSL_free(clientssl);
4798     SSL_CTX_free(sctx);
4799     SSL_CTX_free(cctx);
4800
4801     return testresult;
4802 }
4803
4804 #define NUM_KEY_UPDATE_MESSAGES 40
4805 /*
4806  * Test KeyUpdate.
4807  */
4808 static int test_key_update(void)
4809 {
4810     SSL_CTX *cctx = NULL, *sctx = NULL;
4811     SSL *clientssl = NULL, *serverssl = NULL;
4812     int testresult = 0, i, j;
4813     char buf[20];
4814     static char *mess = "A test message";
4815
4816     if (!TEST_true(create_ssl_ctx_pair(TLS_server_method(),
4817                                        TLS_client_method(),
4818                                        TLS1_3_VERSION,
4819                                        0,
4820                                        &sctx, &cctx, cert, privkey))
4821             || !TEST_true(create_ssl_objects(sctx, cctx, &serverssl, &clientssl,
4822                                              NULL, NULL))
4823             || !TEST_true(create_ssl_connection(serverssl, clientssl,
4824                                                 SSL_ERROR_NONE)))
4825         goto end;
4826
4827     for (j = 0; j < 2; j++) {
4828         /* Send lots of KeyUpdate messages */
4829         for (i = 0; i < NUM_KEY_UPDATE_MESSAGES; i++) {
4830             if (!TEST_true(SSL_key_update(clientssl,
4831                                           (j == 0)
4832                                           ? SSL_KEY_UPDATE_NOT_REQUESTED
4833                                           : SSL_KEY_UPDATE_REQUESTED))
4834                     || !TEST_true(SSL_do_handshake(clientssl)))
4835                 goto end;
4836         }
4837
4838         /* Check that sending and receiving app data is ok */
4839         if (!TEST_int_eq(SSL_write(clientssl, mess, strlen(mess)), strlen(mess))
4840                 || !TEST_int_eq(SSL_read(serverssl, buf, sizeof(buf)),
4841                                          strlen(mess)))
4842             goto end;
4843
4844         if (!TEST_int_eq(SSL_write(serverssl, mess, strlen(mess)), strlen(mess))
4845                 || !TEST_int_eq(SSL_read(clientssl, buf, sizeof(buf)),
4846                                          strlen(mess)))
4847             goto end;
4848     }
4849
4850     testresult = 1;
4851
4852  end:
4853     SSL_free(serverssl);
4854     SSL_free(clientssl);
4855     SSL_CTX_free(sctx);
4856     SSL_CTX_free(cctx);
4857
4858     return testresult;
4859 }
4860
4861 /*
4862  * Test we can handle a KeyUpdate (update requested) message while write data
4863  * is pending.
4864  * Test 0: Client sends KeyUpdate while Server is writing
4865  * Test 1: Server sends KeyUpdate while Client is writing
4866  */
4867 static int test_key_update_in_write(int tst)
4868 {
4869     SSL_CTX *cctx = NULL, *sctx = NULL;
4870     SSL *clientssl = NULL, *serverssl = NULL;
4871     int testresult = 0;
4872     char buf[20];
4873     static char *mess = "A test message";
4874     BIO *bretry = BIO_new(bio_s_always_retry());
4875     BIO *tmp = NULL;
4876     SSL *peerupdate = NULL, *peerwrite = NULL;
4877
4878     if (!TEST_ptr(bretry)
4879             || !TEST_true(create_ssl_ctx_pair(TLS_server_method(),
4880                                               TLS_client_method(),
4881                                               TLS1_3_VERSION,
4882                                               0,
4883                                               &sctx, &cctx, cert, privkey))
4884             || !TEST_true(create_ssl_objects(sctx, cctx, &serverssl, &clientssl,
4885                                              NULL, NULL))
4886             || !TEST_true(create_ssl_connection(serverssl, clientssl,
4887                                                 SSL_ERROR_NONE)))
4888         goto end;
4889
4890     peerupdate = tst == 0 ? clientssl : serverssl;
4891     peerwrite = tst == 0 ? serverssl : clientssl;
4892
4893     if (!TEST_true(SSL_key_update(peerupdate, SSL_KEY_UPDATE_REQUESTED))
4894             || !TEST_true(SSL_do_handshake(peerupdate)))
4895         goto end;
4896
4897     /* Swap the writing endpoint's write BIO to force a retry */
4898     tmp = SSL_get_wbio(peerwrite);
4899     if (!TEST_ptr(tmp) || !TEST_true(BIO_up_ref(tmp))) {
4900         tmp = NULL;
4901         goto end;
4902     }
4903     SSL_set0_wbio(peerwrite, bretry);
4904     bretry = NULL;
4905
4906     /* Write data that we know will fail with SSL_ERROR_WANT_WRITE */
4907     if (!TEST_int_eq(SSL_write(peerwrite, mess, strlen(mess)), -1)
4908             || !TEST_int_eq(SSL_get_error(peerwrite, 0), SSL_ERROR_WANT_WRITE))
4909         goto end;
4910
4911     /* Reinstate the original writing endpoint's write BIO */
4912     SSL_set0_wbio(peerwrite, tmp);
4913     tmp = NULL;
4914
4915     /* Now read some data - we will read the key update */
4916     if (!TEST_int_eq(SSL_read(peerwrite, buf, sizeof(buf)), -1)
4917             || !TEST_int_eq(SSL_get_error(peerwrite, 0), SSL_ERROR_WANT_READ))
4918         goto end;
4919
4920     /*
4921      * Complete the write we started previously and read it from the other
4922      * endpoint
4923      */
4924     if (!TEST_int_eq(SSL_write(peerwrite, mess, strlen(mess)), strlen(mess))
4925             || !TEST_int_eq(SSL_read(peerupdate, buf, sizeof(buf)), strlen(mess)))
4926         goto end;
4927
4928     /* Write more data to ensure we send the KeyUpdate message back */
4929     if (!TEST_int_eq(SSL_write(peerwrite, mess, strlen(mess)), strlen(mess))
4930             || !TEST_int_eq(SSL_read(peerupdate, buf, sizeof(buf)), strlen(mess)))
4931         goto end;
4932
4933     testresult = 1;
4934
4935  end:
4936     SSL_free(serverssl);
4937     SSL_free(clientssl);
4938     SSL_CTX_free(sctx);
4939     SSL_CTX_free(cctx);
4940     BIO_free(bretry);
4941     BIO_free(tmp);
4942
4943     return testresult;
4944 }
4945 #endif /* OPENSSL_NO_TLS1_3 */
4946
4947 static int test_ssl_clear(int idx)
4948 {
4949     SSL_CTX *cctx = NULL, *sctx = NULL;
4950     SSL *clientssl = NULL, *serverssl = NULL;
4951     int testresult = 0;
4952
4953 #ifdef OPENSSL_NO_TLS1_2
4954     if (idx == 1)
4955         return 1;
4956 #endif
4957
4958     /* Create an initial connection */
4959     if (!TEST_true(create_ssl_ctx_pair(TLS_server_method(), TLS_client_method(),
4960                                        TLS1_VERSION, 0,
4961                                        &sctx, &cctx, cert, privkey))
4962             || (idx == 1
4963                 && !TEST_true(SSL_CTX_set_max_proto_version(cctx,
4964                                                             TLS1_2_VERSION)))
4965             || !TEST_true(create_ssl_objects(sctx, cctx, &serverssl,
4966                                           &clientssl, NULL, NULL))
4967             || !TEST_true(create_ssl_connection(serverssl, clientssl,
4968                                                 SSL_ERROR_NONE)))
4969         goto end;
4970
4971     SSL_shutdown(clientssl);
4972     SSL_shutdown(serverssl);
4973     SSL_free(serverssl);
4974     serverssl = NULL;
4975
4976     /* Clear clientssl - we're going to reuse the object */
4977     if (!TEST_true(SSL_clear(clientssl)))
4978         goto end;
4979
4980     if (!TEST_true(create_ssl_objects(sctx, cctx, &serverssl, &clientssl,
4981                                              NULL, NULL))
4982             || !TEST_true(create_ssl_connection(serverssl, clientssl,
4983                                                 SSL_ERROR_NONE))
4984             || !TEST_true(SSL_session_reused(clientssl)))
4985         goto end;
4986
4987     SSL_shutdown(clientssl);
4988     SSL_shutdown(serverssl);
4989
4990     testresult = 1;
4991
4992  end:
4993     SSL_free(serverssl);
4994     SSL_free(clientssl);
4995     SSL_CTX_free(sctx);
4996     SSL_CTX_free(cctx);
4997
4998     return testresult;
4999 }
5000
5001 /* Parse CH and retrieve any MFL extension value if present */
5002 static int get_MFL_from_client_hello(BIO *bio, int *mfl_codemfl_code)
5003 {
5004     long len;
5005     unsigned char *data;
5006     PACKET pkt, pkt2, pkt3;
5007     unsigned int MFL_code = 0, type = 0;
5008
5009     if (!TEST_uint_gt( len = BIO_get_mem_data( bio, (char **) &data ), 0 ) )
5010         goto end;
5011
5012     memset(&pkt, 0, sizeof(pkt));
5013     memset(&pkt2, 0, sizeof(pkt2));
5014     memset(&pkt3, 0, sizeof(pkt3));
5015
5016     if (!TEST_true( PACKET_buf_init( &pkt, data, len ) )
5017                /* Skip the record header */
5018             || !PACKET_forward(&pkt, SSL3_RT_HEADER_LENGTH)
5019                /* Skip the handshake message header */
5020             || !TEST_true(PACKET_forward(&pkt, SSL3_HM_HEADER_LENGTH))
5021                /* Skip client version and random */
5022             || !TEST_true(PACKET_forward(&pkt, CLIENT_VERSION_LEN
5023                                                + SSL3_RANDOM_SIZE))
5024                /* Skip session id */
5025             || !TEST_true(PACKET_get_length_prefixed_1(&pkt, &pkt2))
5026                /* Skip ciphers */
5027             || !TEST_true(PACKET_get_length_prefixed_2(&pkt, &pkt2))
5028                /* Skip compression */
5029             || !TEST_true(PACKET_get_length_prefixed_1(&pkt, &pkt2))
5030                /* Extensions len */
5031             || !TEST_true(PACKET_as_length_prefixed_2(&pkt, &pkt2)))
5032         goto end;
5033
5034     /* Loop through all extensions */
5035     while (PACKET_remaining(&pkt2)) {
5036         if (!TEST_true(PACKET_get_net_2(&pkt2, &type))
5037                 || !TEST_true(PACKET_get_length_prefixed_2(&pkt2, &pkt3)))
5038             goto end;
5039
5040         if (type == TLSEXT_TYPE_max_fragment_length) {
5041             if (!TEST_uint_ne(PACKET_remaining(&pkt3), 0)
5042                     || !TEST_true(PACKET_get_1(&pkt3, &MFL_code)))
5043                 goto end;
5044
5045             *mfl_codemfl_code = MFL_code;
5046             return 1;
5047         }
5048     }
5049
5050  end:
5051     return 0;
5052 }
5053
5054 /* Maximum-Fragment-Length TLS extension mode to test */
5055 static const unsigned char max_fragment_len_test[] = {
5056     TLSEXT_max_fragment_length_512,
5057     TLSEXT_max_fragment_length_1024,
5058     TLSEXT_max_fragment_length_2048,
5059     TLSEXT_max_fragment_length_4096
5060 };
5061
5062 static int test_max_fragment_len_ext(int idx_tst)
5063 {
5064     SSL_CTX *ctx;
5065     SSL *con = NULL;
5066     int testresult = 0, MFL_mode = 0;
5067     BIO *rbio, *wbio;
5068
5069     ctx = SSL_CTX_new(TLS_method());
5070     if (!TEST_ptr(ctx))
5071         goto end;
5072
5073     if (!TEST_true(SSL_CTX_set_tlsext_max_fragment_length(
5074                    ctx, max_fragment_len_test[idx_tst])))
5075         goto end;
5076
5077     con = SSL_new(ctx);
5078     if (!TEST_ptr(con))
5079         goto end;
5080
5081     rbio = BIO_new(BIO_s_mem());
5082     wbio = BIO_new(BIO_s_mem());
5083     if (!TEST_ptr(rbio)|| !TEST_ptr(wbio)) {
5084         BIO_free(rbio);
5085         BIO_free(wbio);
5086         goto end;
5087     }
5088
5089     SSL_set_bio(con, rbio, wbio);
5090     SSL_set_connect_state(con);
5091
5092     if (!TEST_int_le(SSL_connect(con), 0)) {
5093         /* This shouldn't succeed because we don't have a server! */
5094         goto end;
5095     }
5096
5097     if (!TEST_true(get_MFL_from_client_hello(wbio, &MFL_mode)))
5098         /* no MFL in client hello */
5099         goto end;
5100     if (!TEST_true(max_fragment_len_test[idx_tst] == MFL_mode))
5101         goto end;
5102
5103     testresult = 1;
5104
5105 end:
5106     SSL_free(con);
5107     SSL_CTX_free(ctx);
5108
5109     return testresult;
5110 }
5111
5112 #ifndef OPENSSL_NO_TLS1_3
5113 static int test_pha_key_update(void)
5114 {
5115     SSL_CTX *cctx = NULL, *sctx = NULL;
5116     SSL *clientssl = NULL, *serverssl = NULL;
5117     int testresult = 0;
5118
5119     if (!TEST_true(create_ssl_ctx_pair(TLS_server_method(), TLS_client_method(),
5120                                        TLS1_VERSION, 0,
5121                                        &sctx, &cctx, cert, privkey)))
5122         return 0;
5123
5124     if (!TEST_true(SSL_CTX_set_min_proto_version(sctx, TLS1_3_VERSION))
5125         || !TEST_true(SSL_CTX_set_max_proto_version(sctx, TLS1_3_VERSION))
5126         || !TEST_true(SSL_CTX_set_min_proto_version(cctx, TLS1_3_VERSION))
5127         || !TEST_true(SSL_CTX_set_max_proto_version(cctx, TLS1_3_VERSION)))
5128         goto end;
5129
5130     SSL_CTX_set_post_handshake_auth(cctx, 1);
5131
5132     if (!TEST_true(create_ssl_objects(sctx, cctx, &serverssl, &clientssl,
5133                                       NULL, NULL)))
5134         goto end;
5135
5136     if (!TEST_true(create_ssl_connection(serverssl, clientssl,
5137                                          SSL_ERROR_NONE)))
5138         goto end;
5139
5140     SSL_set_verify(serverssl, SSL_VERIFY_PEER, NULL);
5141     if (!TEST_true(SSL_verify_client_post_handshake(serverssl)))
5142         goto end;
5143
5144     if (!TEST_true(SSL_key_update(clientssl, SSL_KEY_UPDATE_NOT_REQUESTED)))
5145         goto end;
5146
5147     /* Start handshake on the server */
5148     if (!TEST_int_eq(SSL_do_handshake(serverssl), 1))
5149         goto end;
5150
5151     /* Starts with SSL_connect(), but it's really just SSL_do_handshake() */
5152     if (!TEST_true(create_ssl_connection(serverssl, clientssl,
5153                                          SSL_ERROR_NONE)))
5154         goto end;
5155
5156     SSL_shutdown(clientssl);
5157     SSL_shutdown(serverssl);
5158
5159     testresult = 1;
5160
5161  end:
5162     SSL_free(serverssl);
5163     SSL_free(clientssl);
5164     SSL_CTX_free(sctx);
5165     SSL_CTX_free(cctx);
5166     return testresult;
5167 }
5168 #endif
5169
5170 #if !defined(OPENSSL_NO_SRP) && !defined(OPENSSL_NO_TLS1_2)
5171
5172 static SRP_VBASE *vbase = NULL;
5173
5174 static int ssl_srp_cb(SSL *s, int *ad, void *arg)
5175 {
5176     int ret = SSL3_AL_FATAL;
5177     char *username;
5178     SRP_user_pwd *user = NULL;
5179
5180     username = SSL_get_srp_username(s);
5181     if (username == NULL) {
5182         *ad = SSL_AD_INTERNAL_ERROR;
5183         goto err;
5184     }
5185
5186     user = SRP_VBASE_get1_by_user(vbase, username);
5187     if (user == NULL) {
5188         *ad = SSL_AD_INTERNAL_ERROR;
5189         goto err;
5190     }
5191
5192     if (SSL_set_srp_server_param(s, user->N, user->g, user->s, user->v,
5193                                  user->info) <= 0) {
5194         *ad = SSL_AD_INTERNAL_ERROR;
5195         goto err;
5196     }
5197
5198     ret = 0;
5199
5200  err:
5201     SRP_user_pwd_free(user);
5202     return ret;
5203 }
5204
5205 static int create_new_vfile(char *userid, char *password, const char *filename)
5206 {
5207     char *gNid = NULL;
5208     OPENSSL_STRING *row = OPENSSL_zalloc(sizeof(row) * (DB_NUMBER + 1));
5209     TXT_DB *db = NULL;
5210     int ret = 0;
5211     BIO *out = NULL, *dummy = BIO_new_mem_buf("", 0);
5212     size_t i;
5213
5214     if (!TEST_ptr(dummy) || !TEST_ptr(row))
5215         goto end;
5216
5217     gNid = SRP_create_verifier(userid, password, &row[DB_srpsalt],
5218                                &row[DB_srpverifier], NULL, NULL);
5219     if (!TEST_ptr(gNid))
5220         goto end;
5221
5222     /*
5223      * The only way to create an empty TXT_DB is to provide a BIO with no data
5224      * in it!
5225      */
5226     db = TXT_DB_read(dummy, DB_NUMBER);
5227     if (!TEST_ptr(db))
5228         goto end;
5229
5230     out = BIO_new_file(filename, "w");
5231     if (!TEST_ptr(out))
5232         goto end;
5233
5234     row[DB_srpid] = OPENSSL_strdup(userid);
5235     row[DB_srptype] = OPENSSL_strdup("V");
5236     row[DB_srpgN] = OPENSSL_strdup(gNid);
5237
5238     if (!TEST_ptr(row[DB_srpid])
5239             || !TEST_ptr(row[DB_srptype])
5240             || !TEST_ptr(row[DB_srpgN])
5241             || !TEST_true(TXT_DB_insert(db, row)))
5242         goto end;
5243
5244     row = NULL;
5245
5246     if (!TXT_DB_write(out, db))
5247         goto end;
5248
5249     ret = 1;
5250  end:
5251     if (row != NULL) {
5252         for (i = 0; i < DB_NUMBER; i++)
5253             OPENSSL_free(row[i]);
5254     }
5255     OPENSSL_free(row);
5256     BIO_free(dummy);
5257     BIO_free(out);
5258     TXT_DB_free(db);
5259
5260     return ret;
5261 }
5262
5263 static int create_new_vbase(char *userid, char *password)
5264 {
5265     BIGNUM *verifier = NULL, *salt = NULL;
5266     const SRP_gN *lgN = NULL;
5267     SRP_user_pwd *user_pwd = NULL;
5268     int ret = 0;
5269
5270     lgN = SRP_get_default_gN(NULL);
5271     if (!TEST_ptr(lgN))
5272         goto end;
5273
5274     if (!TEST_true(SRP_create_verifier_BN(userid, password, &salt, &verifier,
5275                                           lgN->N, lgN->g)))
5276         goto end;
5277
5278     user_pwd = OPENSSL_zalloc(sizeof(*user_pwd));
5279     if (!TEST_ptr(user_pwd))
5280         goto end;
5281
5282     user_pwd->N = lgN->N;
5283     user_pwd->g = lgN->g;
5284     user_pwd->id = OPENSSL_strdup(userid);
5285     if (!TEST_ptr(user_pwd->id))
5286         goto end;
5287
5288     user_pwd->v = verifier;
5289     user_pwd->s = salt;
5290     verifier = salt = NULL;
5291
5292     if (sk_SRP_user_pwd_insert(vbase->users_pwd, user_pwd, 0) == 0)
5293         goto end;
5294     user_pwd = NULL;
5295
5296     ret = 1;
5297 end:
5298     SRP_user_pwd_free(user_pwd);
5299     BN_free(salt);
5300     BN_free(verifier);
5301
5302     return ret;
5303 }
5304
5305 /*
5306  * SRP tests
5307  *
5308  * Test 0: Simple successful SRP connection, new vbase
5309  * Test 1: Connection failure due to bad password, new vbase
5310  * Test 2: Simple successful SRP connection, vbase loaded from existing file
5311  * Test 3: Connection failure due to bad password, vbase loaded from existing
5312  *         file
5313  * Test 4: Simple successful SRP connection, vbase loaded from new file
5314  * Test 5: Connection failure due to bad password, vbase loaded from new file
5315  */
5316 static int test_srp(int tst)
5317 {
5318     char *userid = "test", *password = "password", *tstsrpfile;
5319     SSL_CTX *cctx = NULL, *sctx = NULL;
5320     SSL *clientssl = NULL, *serverssl = NULL;
5321     int ret, testresult = 0;
5322
5323     vbase = SRP_VBASE_new(NULL);
5324     if (!TEST_ptr(vbase))
5325         goto end;
5326
5327     if (tst == 0 || tst == 1) {
5328         if (!TEST_true(create_new_vbase(userid, password)))
5329             goto end;
5330     } else {
5331         if (tst == 4 || tst == 5) {
5332             if (!TEST_true(create_new_vfile(userid, password, tmpfilename)))
5333                 goto end;
5334             tstsrpfile = tmpfilename;
5335         } else {
5336             tstsrpfile = srpvfile;
5337         }
5338         if (!TEST_int_eq(SRP_VBASE_init(vbase, tstsrpfile), SRP_NO_ERROR))
5339             goto end;
5340     }
5341
5342     if (!TEST_true(create_ssl_ctx_pair(TLS_server_method(), TLS_client_method(),
5343                                        TLS1_VERSION, 0,
5344                                        &sctx, &cctx, cert, privkey)))
5345         goto end;
5346
5347     if (!TEST_int_gt(SSL_CTX_set_srp_username_callback(sctx, ssl_srp_cb), 0)
5348             || !TEST_true(SSL_CTX_set_cipher_list(cctx, "SRP-AES-128-CBC-SHA"))
5349             || !TEST_true(SSL_CTX_set_max_proto_version(sctx, TLS1_2_VERSION))
5350             || !TEST_true(SSL_CTX_set_max_proto_version(cctx, TLS1_2_VERSION))
5351             || !TEST_int_gt(SSL_CTX_set_srp_username(cctx, userid), 0))
5352         goto end;
5353
5354     if (tst % 2 == 1) {
5355         if (!TEST_int_gt(SSL_CTX_set_srp_password(cctx, "badpass"), 0))
5356             goto end;
5357     } else {
5358         if (!TEST_int_gt(SSL_CTX_set_srp_password(cctx, password), 0))
5359             goto end;
5360     }
5361
5362     if (!TEST_true(create_ssl_objects(sctx, cctx, &serverssl, &clientssl,
5363                                       NULL, NULL)))
5364         goto end;
5365
5366     ret = create_ssl_connection(serverssl, clientssl, SSL_ERROR_NONE);
5367     if (ret) {
5368         if (!TEST_true(tst % 2 == 0))
5369             goto end;
5370     } else {
5371         if (!TEST_true(tst % 2 == 1))
5372             goto end;
5373     }
5374
5375     testresult = 1;
5376
5377  end:
5378     SRP_VBASE_free(vbase);
5379     vbase = NULL;
5380     SSL_free(serverssl);
5381     SSL_free(clientssl);
5382     SSL_CTX_free(sctx);
5383     SSL_CTX_free(cctx);
5384
5385     return testresult;
5386 }
5387 #endif
5388
5389 static int info_cb_failed = 0;
5390 static int info_cb_offset = 0;
5391 static int info_cb_this_state = -1;
5392
5393 static struct info_cb_states_st {
5394     int where;
5395     const char *statestr;
5396 } info_cb_states[][60] = {
5397     {
5398         /* TLSv1.2 server followed by resumption */
5399         {SSL_CB_HANDSHAKE_START, NULL}, {SSL_CB_LOOP, "PINIT "},
5400         {SSL_CB_LOOP, "PINIT "}, {SSL_CB_LOOP, "TRCH"}, {SSL_CB_LOOP, "TWSH"},
5401         {SSL_CB_LOOP, "TWSC"}, {SSL_CB_LOOP, "TWSKE"}, {SSL_CB_LOOP, "TWSD"},
5402         {SSL_CB_EXIT, NULL}, {SSL_CB_LOOP, "TWSD"}, {SSL_CB_LOOP, "TRCKE"},
5403         {SSL_CB_LOOP, "TRCCS"}, {SSL_CB_LOOP, "TRFIN"}, {SSL_CB_LOOP, "TWST"},
5404         {SSL_CB_LOOP, "TWCCS"}, {SSL_CB_LOOP, "TWFIN"},
5405         {SSL_CB_HANDSHAKE_DONE, NULL}, {SSL_CB_EXIT, NULL},
5406         {SSL_CB_ALERT, NULL}, {SSL_CB_HANDSHAKE_START, NULL},
5407         {SSL_CB_LOOP, "PINIT "}, {SSL_CB_LOOP, "PINIT "}, {SSL_CB_LOOP, "TRCH"},
5408         {SSL_CB_LOOP, "TWSH"}, {SSL_CB_LOOP, "TWCCS"}, {SSL_CB_LOOP, "TWFIN"},
5409         {SSL_CB_EXIT, NULL}, {SSL_CB_LOOP, "TWFIN"}, {SSL_CB_LOOP, "TRCCS"},
5410         {SSL_CB_LOOP, "TRFIN"}, {SSL_CB_HANDSHAKE_DONE, NULL},
5411         {SSL_CB_EXIT, NULL}, {0, NULL},
5412     }, {
5413         /* TLSv1.2 client followed by resumption */
5414         {SSL_CB_HANDSHAKE_START, NULL}, {SSL_CB_LOOP, "PINIT "},
5415         {SSL_CB_LOOP, "TWCH"}, {SSL_CB_EXIT, NULL}, {SSL_CB_LOOP, "TWCH"},
5416         {SSL_CB_LOOP, "TRSH"}, {SSL_CB_LOOP, "TRSC"}, {SSL_CB_LOOP, "TRSKE"},
5417         {SSL_CB_LOOP, "TRSD"}, {SSL_CB_LOOP, "TWCKE"}, {SSL_CB_LOOP, "TWCCS"},
5418         {SSL_CB_LOOP, "TWFIN"}, {SSL_CB_EXIT, NULL}, {SSL_CB_LOOP, "TWFIN"},
5419         {SSL_CB_LOOP, "TRST"}, {SSL_CB_LOOP, "TRCCS"}, {SSL_CB_LOOP, "TRFIN"},
5420         {SSL_CB_HANDSHAKE_DONE, NULL}, {SSL_CB_EXIT, NULL}, {SSL_CB_ALERT, NULL},
5421         {SSL_CB_HANDSHAKE_START, NULL}, {SSL_CB_LOOP, "PINIT "},
5422         {SSL_CB_LOOP, "TWCH"}, {SSL_CB_EXIT, NULL}, {SSL_CB_LOOP, "TWCH"},
5423         {SSL_CB_LOOP, "TRSH"}, {SSL_CB_LOOP, "TRCCS"}, {SSL_CB_LOOP, "TRFIN"},
5424         {SSL_CB_LOOP, "TWCCS"},  {SSL_CB_LOOP, "TWFIN"},
5425         {SSL_CB_HANDSHAKE_DONE, NULL}, {SSL_CB_EXIT, NULL}, {0, NULL},
5426     }, {
5427         /* TLSv1.3 server followed by resumption */
5428         {SSL_CB_HANDSHAKE_START, NULL}, {SSL_CB_LOOP, "PINIT "},
5429         {SSL_CB_LOOP, "PINIT "}, {SSL_CB_LOOP, "TRCH"}, {SSL_CB_LOOP, "TWSH"},
5430         {SSL_CB_LOOP, "TWCCS"}, {SSL_CB_LOOP, "TWEE"}, {SSL_CB_LOOP, "TWSC"},
5431         {SSL_CB_LOOP, "TRSCV"}, {SSL_CB_LOOP, "TWFIN"}, {SSL_CB_LOOP, "TED"},
5432         {SSL_CB_EXIT, NULL}, {SSL_CB_LOOP, "TED"}, {SSL_CB_LOOP, "TRFIN"},
5433         {SSL_CB_HANDSHAKE_DONE, NULL}, {SSL_CB_LOOP, "TWST"},
5434         {SSL_CB_LOOP, "TWST"}, {SSL_CB_EXIT, NULL}, {SSL_CB_ALERT, NULL},
5435         {SSL_CB_HANDSHAKE_START, NULL}, {SSL_CB_LOOP, "PINIT "},
5436         {SSL_CB_LOOP, "PINIT "}, {SSL_CB_LOOP, "TRCH"}, {SSL_CB_LOOP, "TWSH"},
5437         {SSL_CB_LOOP, "TWCCS"}, {SSL_CB_LOOP, "TWEE"}, {SSL_CB_LOOP, "TWFIN"},
5438         {SSL_CB_LOOP, "TED"}, {SSL_CB_EXIT, NULL}, {SSL_CB_LOOP, "TED"},
5439         {SSL_CB_LOOP, "TRFIN"}, {SSL_CB_HANDSHAKE_DONE, NULL},
5440         {SSL_CB_LOOP, "TWST"}, {SSL_CB_EXIT, NULL}, {0, NULL},
5441     }, {
5442         /* TLSv1.3 client followed by resumption */
5443         {SSL_CB_HANDSHAKE_START, NULL}, {SSL_CB_LOOP, "PINIT "},
5444         {SSL_CB_LOOP, "TWCH"}, {SSL_CB_EXIT, NULL}, {SSL_CB_LOOP, "TWCH"},
5445         {SSL_CB_LOOP, "TRSH"}, {SSL_CB_LOOP, "TREE"}, {SSL_CB_LOOP, "TRSC"},
5446         {SSL_CB_LOOP, "TRSCV"}, {SSL_CB_LOOP, "TRFIN"}, {SSL_CB_LOOP, "TWCCS"},
5447         {SSL_CB_LOOP, "TWFIN"},  {SSL_CB_HANDSHAKE_DONE, NULL},
5448         {SSL_CB_EXIT, NULL}, {SSL_CB_LOOP, "SSLOK "}, {SSL_CB_LOOP, "SSLOK "},
5449         {SSL_CB_LOOP, "TRST"}, {SSL_CB_EXIT, NULL}, {SSL_CB_LOOP, "SSLOK "},
5450         {SSL_CB_LOOP, "SSLOK "}, {SSL_CB_LOOP, "TRST"}, {SSL_CB_EXIT, NULL},
5451         {SSL_CB_ALERT, NULL}, {SSL_CB_HANDSHAKE_START, NULL},
5452         {SSL_CB_LOOP, "PINIT "}, {SSL_CB_LOOP, "TWCH"}, {SSL_CB_EXIT, NULL},
5453         {SSL_CB_LOOP, "TWCH"}, {SSL_CB_LOOP, "TRSH"},  {SSL_CB_LOOP, "TREE"},
5454         {SSL_CB_LOOP, "TRFIN"}, {SSL_CB_LOOP, "TWCCS"}, {SSL_CB_LOOP, "TWFIN"},
5455         {SSL_CB_HANDSHAKE_DONE, NULL}, {SSL_CB_EXIT, NULL},
5456         {SSL_CB_LOOP, "SSLOK "}, {SSL_CB_LOOP, "SSLOK "}, {SSL_CB_LOOP, "TRST"},
5457         {SSL_CB_EXIT, NULL}, {0, NULL},
5458     }, {
5459         /* TLSv1.3 server, early_data */
5460         {SSL_CB_HANDSHAKE_START, NULL}, {SSL_CB_LOOP, "PINIT "},
5461         {SSL_CB_LOOP, "PINIT "}, {SSL_CB_LOOP, "TRCH"}, {SSL_CB_LOOP, "TWSH"},
5462         {SSL_CB_LOOP, "TWCCS"}, {SSL_CB_LOOP, "TWEE"}, {SSL_CB_LOOP, "TWFIN"},
5463         {SSL_CB_HANDSHAKE_DONE, NULL}, {SSL_CB_EXIT, NULL},
5464         {SSL_CB_HANDSHAKE_START, NULL}, {SSL_CB_LOOP, "TED"},
5465         {SSL_CB_LOOP, "TED"}, {SSL_CB_LOOP, "TWEOED"}, {SSL_CB_LOOP, "TRFIN"},
5466         {SSL_CB_HANDSHAKE_DONE, NULL}, {SSL_CB_LOOP, "TWST"},
5467         {SSL_CB_EXIT, NULL}, {0, NULL},
5468     }, {
5469         /* TLSv1.3 client, early_data */
5470         {SSL_CB_HANDSHAKE_START, NULL}, {SSL_CB_LOOP, "PINIT "},
5471         {SSL_CB_LOOP, "TWCH"}, {SSL_CB_LOOP, "TWCCS"},
5472         {SSL_CB_HANDSHAKE_DONE, NULL}, {SSL_CB_EXIT, NULL},
5473         {SSL_CB_HANDSHAKE_START, NULL}, {SSL_CB_LOOP, "TED"},
5474         {SSL_CB_LOOP, "TED"}, {SSL_CB_LOOP, "TRSH"}, {SSL_CB_LOOP, "TREE"},
5475         {SSL_CB_LOOP, "TRFIN"}, {SSL_CB_LOOP, "TPEDE"}, {SSL_CB_LOOP, "TWEOED"},
5476         {SSL_CB_LOOP, "TWFIN"}, {SSL_CB_HANDSHAKE_DONE, NULL},
5477         {SSL_CB_EXIT, NULL}, {SSL_CB_LOOP, "SSLOK "}, {SSL_CB_LOOP, "SSLOK "},
5478         {SSL_CB_LOOP, "TRST"}, {SSL_CB_EXIT, NULL}, {0, NULL},
5479     }, {
5480         {0, NULL},
5481     }
5482 };
5483
5484 static void sslapi_info_callback(const SSL *s, int where, int ret)
5485 {
5486     struct info_cb_states_st *state = info_cb_states[info_cb_offset];
5487
5488     /* We do not ever expect a connection to fail in this test */
5489     if (!TEST_false(ret == 0)) {
5490         info_cb_failed = 1;
5491         return;
5492     }
5493
5494     /*
5495      * Do some sanity checks. We never expect these things to happen in this
5496      * test
5497      */
5498     if (!TEST_false((SSL_is_server(s) && (where & SSL_ST_CONNECT) != 0))
5499             || !TEST_false(!SSL_is_server(s) && (where & SSL_ST_ACCEPT) != 0)
5500             || !TEST_int_ne(state[++info_cb_this_state].where, 0)) {
5501         info_cb_failed = 1;
5502         return;
5503     }
5504
5505     /* Now check we're in the right state */
5506     if (!TEST_true((where & state[info_cb_this_state].where) != 0)) {
5507         info_cb_failed = 1;
5508         return;
5509     }
5510     if ((where & SSL_CB_LOOP) != 0
5511             && !TEST_int_eq(strcmp(SSL_state_string(s),
5512                             state[info_cb_this_state].statestr), 0)) {
5513         info_cb_failed = 1;
5514         return;
5515     }
5516
5517     /*
5518      * Check that, if we've got SSL_CB_HANDSHAKE_DONE we are not in init
5519      */
5520     if ((where & SSL_CB_HANDSHAKE_DONE)
5521             && SSL_in_init((SSL *)s) != 0) {
5522         info_cb_failed = 1;
5523         return;
5524     }
5525 }
5526
5527 /*
5528  * Test the info callback gets called when we expect it to.
5529  *
5530  * Test 0: TLSv1.2, server
5531  * Test 1: TLSv1.2, client
5532  * Test 2: TLSv1.3, server
5533  * Test 3: TLSv1.3, client
5534  * Test 4: TLSv1.3, server, early_data
5535  * Test 5: TLSv1.3, client, early_data
5536  */
5537 static int test_info_callback(int tst)
5538 {
5539     SSL_CTX *cctx = NULL, *sctx = NULL;
5540     SSL *clientssl = NULL, *serverssl = NULL;
5541     SSL_SESSION *clntsess = NULL;
5542     int testresult = 0;
5543     int tlsvers;
5544
5545     if (tst < 2) {
5546 /* We need either ECDHE or DHE for the TLSv1.2 test to work */
5547 #if !defined(OPENSSL_NO_TLS1_2) && (!defined(OPENSSL_NO_EC) \
5548                                     || !defined(OPENSSL_NO_DH))
5549         tlsvers = TLS1_2_VERSION;
5550 #else
5551         return 1;
5552 #endif
5553     } else {
5554 #ifndef OPENSSL_NO_TLS1_3
5555         tlsvers = TLS1_3_VERSION;
5556 #else
5557         return 1;
5558 #endif
5559     }
5560
5561     /* Reset globals */
5562     info_cb_failed = 0;
5563     info_cb_this_state = -1;
5564     info_cb_offset = tst;
5565
5566 #ifndef OPENSSL_NO_TLS1_3
5567     if (tst >= 4) {
5568         SSL_SESSION *sess = NULL;
5569         size_t written, readbytes;
5570         unsigned char buf[80];
5571
5572         /* early_data tests */
5573         if (!TEST_true(setupearly_data_test(&cctx, &sctx, &clientssl,
5574                                             &serverssl, &sess, 0)))
5575             goto end;
5576
5577         /* We don't actually need this reference */
5578         SSL_SESSION_free(sess);
5579
5580         SSL_set_info_callback((tst % 2) == 0 ? serverssl : clientssl,
5581                               sslapi_info_callback);
5582
5583         /* Write and read some early data and then complete the connection */
5584         if (!TEST_true(SSL_write_early_data(clientssl, MSG1, strlen(MSG1),
5585                                             &written))
5586                 || !TEST_size_t_eq(written, strlen(MSG1))
5587                 || !TEST_int_eq(SSL_read_early_data(serverssl, buf,
5588                                                     sizeof(buf), &readbytes),
5589                                 SSL_READ_EARLY_DATA_SUCCESS)
5590                 || !TEST_mem_eq(MSG1, readbytes, buf, strlen(MSG1))
5591                 || !TEST_int_eq(SSL_get_early_data_status(serverssl),
5592                                 SSL_EARLY_DATA_ACCEPTED)
5593                 || !TEST_true(create_ssl_connection(serverssl, clientssl,
5594                                                     SSL_ERROR_NONE))
5595                 || !TEST_false(info_cb_failed))
5596             goto end;
5597
5598         testresult = 1;
5599         goto end;
5600     }
5601 #endif
5602
5603     if (!TEST_true(create_ssl_ctx_pair(TLS_server_method(),
5604                                        TLS_client_method(),
5605                                        tlsvers, tlsvers, &sctx, &cctx, cert,
5606                                        privkey)))
5607         goto end;
5608
5609     /*
5610      * For even numbered tests we check the server callbacks. For odd numbers we
5611      * check the client.
5612      */
5613     SSL_CTX_set_info_callback((tst % 2) == 0 ? sctx : cctx,
5614                               sslapi_info_callback);
5615
5616     if (!TEST_true(create_ssl_objects(sctx, cctx, &serverssl,
5617                                           &clientssl, NULL, NULL))
5618         || !TEST_true(create_ssl_connection(serverssl, clientssl,
5619                                             SSL_ERROR_NONE))
5620         || !TEST_false(info_cb_failed))
5621     goto end;
5622
5623
5624
5625     clntsess = SSL_get1_session(clientssl);
5626     SSL_shutdown(clientssl);
5627     SSL_shutdown(serverssl);
5628     SSL_free(serverssl);
5629     SSL_free(clientssl);
5630     serverssl = clientssl = NULL;
5631
5632     /* Now do a resumption */
5633     if (!TEST_true(create_ssl_objects(sctx, cctx, &serverssl, &clientssl, NULL,
5634                                       NULL))
5635             || !TEST_true(SSL_set_session(clientssl, clntsess))
5636             || !TEST_true(create_ssl_connection(serverssl, clientssl,
5637                                                 SSL_ERROR_NONE))
5638             || !TEST_true(SSL_session_reused(clientssl))
5639             || !TEST_false(info_cb_failed))
5640         goto end;
5641
5642     testresult = 1;
5643
5644  end:
5645     SSL_free(serverssl);
5646     SSL_free(clientssl);
5647     SSL_SESSION_free(clntsess);
5648     SSL_CTX_free(sctx);
5649     SSL_CTX_free(cctx);
5650     return testresult;
5651 }
5652
5653 static int test_ssl_pending(int tst)
5654 {
5655     SSL_CTX *cctx = NULL, *sctx = NULL;
5656     SSL *clientssl = NULL, *serverssl = NULL;
5657     int testresult = 0;
5658     char msg[] = "A test message";
5659     char buf[5];
5660     size_t written, readbytes;
5661
5662     if (tst == 0) {
5663         if (!TEST_true(create_ssl_ctx_pair(TLS_server_method(),
5664                                            TLS_client_method(),
5665                                            TLS1_VERSION, 0,
5666                                            &sctx, &cctx, cert, privkey)))
5667             goto end;
5668     } else {
5669 #ifndef OPENSSL_NO_DTLS
5670         if (!TEST_true(create_ssl_ctx_pair(DTLS_server_method(),
5671                                            DTLS_client_method(),
5672                                            DTLS1_VERSION, 0,
5673                                            &sctx, &cctx, cert, privkey)))
5674             goto end;
5675 #else
5676         return 1;
5677 #endif
5678     }
5679
5680     if (!TEST_true(create_ssl_objects(sctx, cctx, &serverssl, &clientssl,
5681                                              NULL, NULL))
5682             || !TEST_true(create_ssl_connection(serverssl, clientssl,
5683                                                 SSL_ERROR_NONE)))
5684         goto end;
5685
5686     if (!TEST_int_eq(SSL_pending(clientssl), 0)
5687             || !TEST_false(SSL_has_pending(clientssl))
5688             || !TEST_int_eq(SSL_pending(serverssl), 0)
5689             || !TEST_false(SSL_has_pending(serverssl))
5690             || !TEST_true(SSL_write_ex(serverssl, msg, sizeof(msg), &written))
5691             || !TEST_size_t_eq(written, sizeof(msg))
5692             || !TEST_true(SSL_read_ex(clientssl, buf, sizeof(buf), &readbytes))
5693             || !TEST_size_t_eq(readbytes, sizeof(buf))
5694             || !TEST_int_eq(SSL_pending(clientssl), (int)(written - readbytes))
5695             || !TEST_true(SSL_has_pending(clientssl)))
5696         goto end;
5697
5698     testresult = 1;
5699
5700  end:
5701     SSL_free(serverssl);
5702     SSL_free(clientssl);
5703     SSL_CTX_free(sctx);
5704     SSL_CTX_free(cctx);
5705
5706     return testresult;
5707 }
5708
5709 static struct {
5710     unsigned int maxprot;
5711     const char *clntciphers;
5712     const char *clnttls13ciphers;
5713     const char *srvrciphers;
5714     const char *srvrtls13ciphers;
5715     const char *shared;
5716 } shared_ciphers_data[] = {
5717 /*
5718  * We can't establish a connection (even in TLSv1.1) with these ciphersuites if
5719  * TLSv1.3 is enabled but TLSv1.2 is disabled.
5720  */
5721 #if defined(OPENSSL_NO_TLS1_3) || !defined(OPENSSL_NO_TLS1_2)
5722     {
5723         TLS1_2_VERSION,
5724         "AES128-SHA:AES256-SHA",
5725         NULL,
5726         "AES256-SHA:DHE-RSA-AES128-SHA",
5727         NULL,
5728         "AES256-SHA"
5729     },
5730     {
5731         TLS1_2_VERSION,
5732         "AES128-SHA:DHE-RSA-AES128-SHA:AES256-SHA",
5733         NULL,
5734         "AES128-SHA:DHE-RSA-AES256-SHA:AES256-SHA",
5735         NULL,
5736         "AES128-SHA:AES256-SHA"
5737     },
5738     {
5739         TLS1_2_VERSION,
5740         "AES128-SHA:AES256-SHA",
5741         NULL,
5742         "AES128-SHA:DHE-RSA-AES128-SHA",
5743         NULL,
5744         "AES128-SHA"
5745     },
5746 #endif
5747 /*
5748  * This test combines TLSv1.3 and TLSv1.2 ciphersuites so they must both be
5749  * enabled.
5750  */
5751 #if !defined(OPENSSL_NO_TLS1_3) && !defined(OPENSSL_NO_TLS1_2) \
5752     && !defined(OPENSSL_NO_CHACHA) && !defined(OPENSSL_NO_POLY1305)
5753     {
5754         TLS1_3_VERSION,
5755         "AES128-SHA:AES256-SHA",
5756         NULL,
5757         "AES256-SHA:AES128-SHA256",
5758         NULL,
5759         "TLS_AES_256_GCM_SHA384:TLS_CHACHA20_POLY1305_SHA256:"
5760         "TLS_AES_128_GCM_SHA256:AES256-SHA"
5761     },
5762 #endif
5763 #ifndef OPENSSL_NO_TLS1_3
5764     {
5765         TLS1_3_VERSION,
5766         "AES128-SHA",
5767         "TLS_AES_256_GCM_SHA384",
5768         "AES256-SHA",
5769         "TLS_AES_256_GCM_SHA384",
5770         "TLS_AES_256_GCM_SHA384"
5771     },
5772 #endif
5773 };
5774
5775 static int test_ssl_get_shared_ciphers(int tst)
5776 {
5777     SSL_CTX *cctx = NULL, *sctx = NULL;
5778     SSL *clientssl = NULL, *serverssl = NULL;
5779     int testresult = 0;
5780     char buf[1024];
5781
5782     if (!TEST_true(create_ssl_ctx_pair(TLS_server_method(),
5783                                        TLS_client_method(),
5784                                        TLS1_VERSION,
5785                                        shared_ciphers_data[tst].maxprot,
5786                                        &sctx, &cctx, cert, privkey)))
5787         goto end;
5788
5789     if (!TEST_true(SSL_CTX_set_cipher_list(cctx,
5790                                         shared_ciphers_data[tst].clntciphers))
5791             || (shared_ciphers_data[tst].clnttls13ciphers != NULL
5792                 && !TEST_true(SSL_CTX_set_ciphersuites(cctx,
5793                                     shared_ciphers_data[tst].clnttls13ciphers)))
5794             || !TEST_true(SSL_CTX_set_cipher_list(sctx,
5795                                         shared_ciphers_data[tst].srvrciphers))
5796             || (shared_ciphers_data[tst].srvrtls13ciphers != NULL
5797                 && !TEST_true(SSL_CTX_set_ciphersuites(sctx,
5798                                     shared_ciphers_data[tst].srvrtls13ciphers))))
5799         goto end;
5800
5801
5802     if (!TEST_true(create_ssl_objects(sctx, cctx, &serverssl, &clientssl,
5803                                              NULL, NULL))
5804             || !TEST_true(create_ssl_connection(serverssl, clientssl,
5805                                                 SSL_ERROR_NONE)))
5806         goto end;
5807
5808     if (!TEST_ptr(SSL_get_shared_ciphers(serverssl, buf, sizeof(buf)))
5809             || !TEST_int_eq(strcmp(buf, shared_ciphers_data[tst].shared), 0)) {
5810         TEST_info("Shared ciphers are: %s\n", buf);
5811         goto end;
5812     }
5813
5814     testresult = 1;
5815
5816  end:
5817     SSL_free(serverssl);
5818     SSL_free(clientssl);
5819     SSL_CTX_free(sctx);
5820     SSL_CTX_free(cctx);
5821
5822     return testresult;
5823 }
5824
5825 static const char *appdata = "Hello World";
5826 static int gen_tick_called, dec_tick_called, tick_key_cb_called;
5827 static int tick_key_renew = 0;
5828 static SSL_TICKET_RETURN tick_dec_ret = SSL_TICKET_RETURN_ABORT;
5829
5830 static int gen_tick_cb(SSL *s, void *arg)
5831 {
5832     gen_tick_called = 1;
5833
5834     return SSL_SESSION_set1_ticket_appdata(SSL_get_session(s), appdata,
5835                                            strlen(appdata));
5836 }
5837
5838 static SSL_TICKET_RETURN dec_tick_cb(SSL *s, SSL_SESSION *ss,
5839                                      const unsigned char *keyname,
5840                                      size_t keyname_length,
5841                                      SSL_TICKET_STATUS status,
5842                                      void *arg)
5843 {
5844     void *tickdata;
5845     size_t tickdlen;
5846
5847     dec_tick_called = 1;
5848
5849     if (status == SSL_TICKET_EMPTY)
5850         return SSL_TICKET_RETURN_IGNORE_RENEW;
5851
5852     if (!TEST_true(status == SSL_TICKET_SUCCESS
5853                    || status == SSL_TICKET_SUCCESS_RENEW))
5854         return SSL_TICKET_RETURN_ABORT;
5855
5856     if (!TEST_true(SSL_SESSION_get0_ticket_appdata(ss, &tickdata,
5857                                                    &tickdlen))
5858             || !TEST_size_t_eq(tickdlen, strlen(appdata))
5859             || !TEST_int_eq(memcmp(tickdata, appdata, tickdlen), 0))
5860         return SSL_TICKET_RETURN_ABORT;
5861
5862     if (tick_key_cb_called)  {
5863         /* Don't change what the ticket key callback wanted to do */
5864         switch (status) {
5865         case SSL_TICKET_NO_DECRYPT:
5866             return SSL_TICKET_RETURN_IGNORE_RENEW;
5867
5868         case SSL_TICKET_SUCCESS:
5869             return SSL_TICKET_RETURN_USE;
5870
5871         case SSL_TICKET_SUCCESS_RENEW:
5872             return SSL_TICKET_RETURN_USE_RENEW;
5873
5874         default:
5875             return SSL_TICKET_RETURN_ABORT;
5876         }
5877     }
5878     return tick_dec_ret;
5879
5880 }
5881
5882 static int tick_key_cb(SSL *s, unsigned char key_name[16],
5883                        unsigned char iv[EVP_MAX_IV_LENGTH], EVP_CIPHER_CTX *ctx,
5884                        HMAC_CTX *hctx, int enc)
5885 {
5886     const unsigned char tick_aes_key[16] = "0123456789abcdef";
5887     const unsigned char tick_hmac_key[16] = "0123456789abcdef";
5888
5889     tick_key_cb_called = 1;
5890     memset(iv, 0, AES_BLOCK_SIZE);
5891     memset(key_name, 0, 16);
5892     if (!EVP_CipherInit_ex(ctx, EVP_aes_128_cbc(), NULL, tick_aes_key, iv, enc)
5893             || !HMAC_Init_ex(hctx, tick_hmac_key, sizeof(tick_hmac_key),
5894                              EVP_sha256(), NULL))
5895         return -1;
5896
5897     return tick_key_renew ? 2 : 1;
5898 }
5899
5900 /*
5901  * Test the various ticket callbacks
5902  * Test 0: TLSv1.2, no ticket key callback, no ticket, no renewal
5903  * Test 1: TLSv1.3, no ticket key callback, no ticket, no renewal
5904  * Test 2: TLSv1.2, no ticket key callback, no ticket, renewal
5905  * Test 3: TLSv1.3, no ticket key callback, no ticket, renewal
5906  * Test 4: TLSv1.2, no ticket key callback, ticket, no renewal
5907  * Test 5: TLSv1.3, no ticket key callback, ticket, no renewal
5908  * Test 6: TLSv1.2, no ticket key callback, ticket, renewal
5909  * Test 7: TLSv1.3, no ticket key callback, ticket, renewal
5910  * Test 8: TLSv1.2, ticket key callback, ticket, no renewal
5911  * Test 9: TLSv1.3, ticket key callback, ticket, no renewal
5912  * Test 10: TLSv1.2, ticket key callback, ticket, renewal
5913  * Test 11: TLSv1.3, ticket key callback, ticket, renewal
5914  */
5915 static int test_ticket_callbacks(int tst)
5916 {
5917     SSL_CTX *cctx = NULL, *sctx = NULL;
5918     SSL *clientssl = NULL, *serverssl = NULL;
5919     SSL_SESSION *clntsess = NULL;
5920     int testresult = 0;
5921
5922 #ifdef OPENSSL_NO_TLS1_2
5923     if (tst % 2 == 0)
5924         return 1;
5925 #endif
5926 #ifdef OPENSSL_NO_TLS1_3
5927     if (tst % 2 == 1)
5928         return 1;
5929 #endif
5930
5931     gen_tick_called = dec_tick_called = tick_key_cb_called = 0;
5932
5933     /* Which tests the ticket key callback should request renewal for */
5934     if (tst == 10 || tst == 11)
5935         tick_key_renew = 1;
5936     else
5937         tick_key_renew = 0;
5938
5939     /* Which tests the decrypt ticket callback should request renewal for */
5940     switch (tst) {
5941     case 0:
5942     case 1:
5943         tick_dec_ret = SSL_TICKET_RETURN_IGNORE;
5944         break;
5945
5946     case 2:
5947     case 3:
5948         tick_dec_ret = SSL_TICKET_RETURN_IGNORE_RENEW;
5949         break;
5950
5951     case 4:
5952     case 5:
5953         tick_dec_ret = SSL_TICKET_RETURN_USE;
5954         break;
5955
5956     case 6:
5957     case 7:
5958         tick_dec_ret = SSL_TICKET_RETURN_USE_RENEW;
5959         break;
5960
5961     default:
5962         tick_dec_ret = SSL_TICKET_RETURN_ABORT;
5963     }
5964
5965     if (!TEST_true(create_ssl_ctx_pair(TLS_server_method(),
5966                                        TLS_client_method(),
5967                                        TLS1_VERSION,
5968                                        ((tst % 2) == 0) ? TLS1_2_VERSION
5969                                                         : TLS1_3_VERSION,
5970                                        &sctx, &cctx, cert, privkey)))
5971         goto end;
5972
5973     /*
5974      * We only want sessions to resume from tickets - not the session cache. So
5975      * switch the cache off.
5976      */
5977     if (!TEST_true(SSL_CTX_set_session_cache_mode(sctx, SSL_SESS_CACHE_OFF)))
5978         goto end;
5979
5980     if (!TEST_true(SSL_CTX_set_session_ticket_cb(sctx, gen_tick_cb, dec_tick_cb,
5981                                                  NULL)))
5982         goto end;
5983
5984     if (tst >= 8
5985             && !TEST_true(SSL_CTX_set_tlsext_ticket_key_cb(sctx, tick_key_cb)))
5986         goto end;
5987
5988     if (!TEST_true(create_ssl_objects(sctx, cctx, &serverssl, &clientssl,
5989                                              NULL, NULL))
5990             || !TEST_true(create_ssl_connection(serverssl, clientssl,
5991                                                 SSL_ERROR_NONE)))
5992         goto end;
5993
5994     /*
5995      * The decrypt ticket key callback in TLSv1.2 should be called even though
5996      * we have no ticket yet, because it gets called with a status of
5997      * SSL_TICKET_EMPTY (the client indicates support for tickets but does not
5998      * actually send any ticket data). This does not happen in TLSv1.3 because
5999      * it is not valid to send empty ticket data in TLSv1.3.
6000      */
6001     if (!TEST_int_eq(gen_tick_called, 1)
6002             || !TEST_int_eq(dec_tick_called, ((tst % 2) == 0) ? 1 : 0))
6003         goto end;
6004
6005     gen_tick_called = dec_tick_called = 0;
6006
6007     clntsess = SSL_get1_session(clientssl);
6008     SSL_shutdown(clientssl);
6009     SSL_shutdown(serverssl);
6010     SSL_free(serverssl);
6011     SSL_free(clientssl);
6012     serverssl = clientssl = NULL;
6013
6014     /* Now do a resumption */
6015     if (!TEST_true(create_ssl_objects(sctx, cctx, &serverssl, &clientssl, NULL,
6016                                       NULL))
6017             || !TEST_true(SSL_set_session(clientssl, clntsess))
6018             || !TEST_true(create_ssl_connection(serverssl, clientssl,
6019                                                 SSL_ERROR_NONE)))
6020         goto end;
6021
6022     if (tick_dec_ret == SSL_TICKET_RETURN_IGNORE
6023             || tick_dec_ret == SSL_TICKET_RETURN_IGNORE_RENEW) {
6024         if (!TEST_false(SSL_session_reused(clientssl)))
6025             goto end;
6026     } else {
6027         if (!TEST_true(SSL_session_reused(clientssl)))
6028             goto end;
6029     }
6030
6031     if (!TEST_int_eq(gen_tick_called,
6032                      (tick_key_renew
6033                       || tick_dec_ret == SSL_TICKET_RETURN_IGNORE_RENEW
6034                       || tick_dec_ret == SSL_TICKET_RETURN_USE_RENEW)
6035                      ? 1 : 0)
6036             || !TEST_int_eq(dec_tick_called, 1))
6037         goto end;
6038
6039     testresult = 1;
6040
6041  end:
6042     SSL_SESSION_free(clntsess);
6043     SSL_free(serverssl);
6044     SSL_free(clientssl);
6045     SSL_CTX_free(sctx);
6046     SSL_CTX_free(cctx);
6047
6048     return testresult;
6049 }
6050
6051 /*
6052  * Test bi-directional shutdown.
6053  * Test 0: TLSv1.2
6054  * Test 1: TLSv1.2, server continues to read/write after client shutdown
6055  * Test 2: TLSv1.3, no pending NewSessionTicket messages
6056  * Test 3: TLSv1.3, pending NewSessionTicket messages
6057  * Test 4: TLSv1.3, server continues to read/write after client shutdown, server
6058  *                  sends key update, client reads it
6059  * Test 5: TLSv1.3, server continues to read/write after client shutdown, server
6060  *                  sends CertificateRequest, client reads and ignores it
6061  * Test 6: TLSv1.3, server continues to read/write after client shutdown, client
6062  *                  doesn't read it
6063  */
6064 static int test_shutdown(int tst)
6065 {
6066     SSL_CTX *cctx = NULL, *sctx = NULL;
6067     SSL *clientssl = NULL, *serverssl = NULL;
6068     int testresult = 0;
6069     char msg[] = "A test message";
6070     char buf[80];
6071     size_t written, readbytes;
6072     SSL_SESSION *sess;
6073
6074 #ifdef OPENSSL_NO_TLS1_2
6075     if (tst <= 1)
6076         return 1;
6077 #endif
6078 #ifdef OPENSSL_NO_TLS1_3
6079     if (tst >= 2)
6080         return 1;
6081 #endif
6082
6083     if (!TEST_true(create_ssl_ctx_pair(TLS_server_method(),
6084                                        TLS_client_method(),
6085                                        TLS1_VERSION,
6086                                        (tst <= 1) ? TLS1_2_VERSION
6087                                                   : TLS1_3_VERSION,
6088                                        &sctx, &cctx, cert, privkey)))
6089         goto end;
6090
6091     if (tst == 5)
6092         SSL_CTX_set_post_handshake_auth(cctx, 1);
6093
6094     if (!TEST_true(create_ssl_objects(sctx, cctx, &serverssl, &clientssl,
6095                                              NULL, NULL)))
6096         goto end;
6097
6098     if (tst == 3) {
6099         if (!TEST_true(create_bare_ssl_connection(serverssl, clientssl,
6100                                                   SSL_ERROR_NONE, 1))
6101                 || !TEST_ptr_ne(sess = SSL_get_session(clientssl), NULL)
6102                 || !TEST_false(SSL_SESSION_is_resumable(sess)))
6103             goto end;
6104     } else if (!TEST_true(create_ssl_connection(serverssl, clientssl,
6105                                               SSL_ERROR_NONE))
6106             || !TEST_ptr_ne(sess = SSL_get_session(clientssl), NULL)
6107             || !TEST_true(SSL_SESSION_is_resumable(sess))) {
6108         goto end;
6109     }
6110
6111     if (!TEST_int_eq(SSL_shutdown(clientssl), 0))
6112         goto end;
6113
6114     if (tst >= 4) {
6115         /*
6116          * Reading on the server after the client has sent close_notify should
6117          * fail and provide SSL_ERROR_ZERO_RETURN
6118          */
6119         if (!TEST_false(SSL_read_ex(serverssl, buf, sizeof(buf), &readbytes))
6120                 || !TEST_int_eq(SSL_get_error(serverssl, 0),
6121                                 SSL_ERROR_ZERO_RETURN)
6122                 || !TEST_int_eq(SSL_get_shutdown(serverssl),
6123                                 SSL_RECEIVED_SHUTDOWN)
6124                    /*
6125                     * Even though we're shutdown on receive we should still be
6126                     * able to write.
6127                     */
6128                 || !TEST_true(SSL_write(serverssl, msg, sizeof(msg))))
6129             goto end;
6130         if (tst == 4
6131                 && !TEST_true(SSL_key_update(serverssl,
6132                                              SSL_KEY_UPDATE_REQUESTED)))
6133             goto end;
6134         if (tst == 5) {
6135             SSL_set_verify(serverssl, SSL_VERIFY_PEER, NULL);
6136             if (!TEST_true(SSL_verify_client_post_handshake(serverssl)))
6137                 goto end;
6138         }
6139         if ((tst == 4 || tst == 5)
6140                 && !TEST_true(SSL_write(serverssl, msg, sizeof(msg))))
6141             goto end;
6142         if (!TEST_int_eq(SSL_shutdown(serverssl), 1))
6143             goto end;
6144         if (tst == 4 || tst == 5) {
6145             /* Should still be able to read data from server */
6146             if (!TEST_true(SSL_read_ex(clientssl, buf, sizeof(buf),
6147                                        &readbytes))
6148                     || !TEST_size_t_eq(readbytes, sizeof(msg))
6149                     || !TEST_int_eq(memcmp(msg, buf, readbytes), 0)
6150                     || !TEST_true(SSL_read_ex(clientssl, buf, sizeof(buf),
6151                                               &readbytes))
6152                     || !TEST_size_t_eq(readbytes, sizeof(msg))
6153                     || !TEST_int_eq(memcmp(msg, buf, readbytes), 0))
6154                 goto end;
6155         }
6156     }
6157
6158     /* Writing on the client after sending close_notify shouldn't be possible */
6159     if (!TEST_false(SSL_write_ex(clientssl, msg, sizeof(msg), &written)))
6160         goto end;
6161
6162     if (tst < 4) {
6163         /*
6164          * For these tests the client has sent close_notify but it has not yet
6165          * been received by the server. The server has not sent close_notify
6166          * yet.
6167          */
6168         if (!TEST_int_eq(SSL_shutdown(serverssl), 0)
6169                    /*
6170                     * Writing on the server after sending close_notify shouldn't
6171                     * be possible.
6172                     */
6173                 || !TEST_false(SSL_write_ex(serverssl, msg, sizeof(msg), &written))
6174                 || !TEST_int_eq(SSL_shutdown(clientssl), 1)
6175                 || !TEST_ptr_ne(sess = SSL_get_session(clientssl), NULL)
6176                 || !TEST_true(SSL_SESSION_is_resumable(sess))
6177                 || !TEST_int_eq(SSL_shutdown(serverssl), 1))
6178             goto end;
6179     } else if (tst == 4 || tst == 5) {
6180         /*
6181          * In this test the client has sent close_notify and it has been
6182          * received by the server which has responded with a close_notify. The
6183          * client needs to read the close_notify sent by the server.
6184          */
6185         if (!TEST_int_eq(SSL_shutdown(clientssl), 1)
6186                 || !TEST_ptr_ne(sess = SSL_get_session(clientssl), NULL)
6187                 || !TEST_true(SSL_SESSION_is_resumable(sess)))
6188             goto end;
6189     } else {
6190         /*
6191          * tst == 6
6192          *
6193          * The client has sent close_notify and is expecting a close_notify
6194          * back, but instead there is application data first. The shutdown
6195          * should fail with a fatal error.
6196          */
6197         if (!TEST_int_eq(SSL_shutdown(clientssl), -1)
6198                 || !TEST_int_eq(SSL_get_error(clientssl, -1), SSL_ERROR_SSL))
6199             goto end;
6200     }
6201
6202     testresult = 1;
6203
6204  end:
6205     SSL_free(serverssl);
6206     SSL_free(clientssl);
6207     SSL_CTX_free(sctx);
6208     SSL_CTX_free(cctx);
6209
6210     return testresult;
6211 }
6212
6213 #if !defined(OPENSSL_NO_TLS1_2) || !defined(OPENSSL_NO_TLS1_3)
6214 static int cert_cb_cnt;
6215
6216 static int cert_cb(SSL *s, void *arg)
6217 {
6218     SSL_CTX *ctx = (SSL_CTX *)arg;
6219
6220     if (cert_cb_cnt == 0) {
6221         /* Suspend the handshake */
6222         cert_cb_cnt++;
6223         return -1;
6224     } else if (cert_cb_cnt == 1) {
6225         /*
6226          * Update the SSL_CTX, set the certificate and private key and then
6227          * continue the handshake normally.
6228          */
6229         if (ctx != NULL && !TEST_ptr(SSL_set_SSL_CTX(s, ctx)))
6230             return 0;
6231
6232         if (!TEST_true(SSL_use_certificate_file(s, cert, SSL_FILETYPE_PEM))
6233                 || !TEST_true(SSL_use_PrivateKey_file(s, privkey,
6234                                                       SSL_FILETYPE_PEM))
6235                 || !TEST_true(SSL_check_private_key(s)))
6236             return 0;
6237         cert_cb_cnt++;
6238         return 1;
6239     }
6240
6241     /* Abort the handshake */
6242     return 0;
6243 }
6244
6245 /*
6246  * Test the certificate callback.
6247  * Test 0: Callback fails
6248  * Test 1: Success - no SSL_set_SSL_CTX() in the callback
6249  * Test 2: Success - SSL_set_SSL_CTX() in the callback
6250  */
6251 static int test_cert_cb_int(int prot, int tst)
6252 {
6253     SSL_CTX *cctx = NULL, *sctx = NULL, *snictx = NULL;
6254     SSL *clientssl = NULL, *serverssl = NULL;
6255     int testresult = 0, ret;
6256
6257     if (!TEST_true(create_ssl_ctx_pair(TLS_server_method(),
6258                                        TLS_client_method(),
6259                                        TLS1_VERSION,
6260                                        prot,
6261                                        &sctx, &cctx, NULL, NULL)))
6262         goto end;
6263
6264     if (tst == 0)
6265         cert_cb_cnt = -1;
6266     else
6267         cert_cb_cnt = 0;
6268     if (tst == 2)
6269         snictx = SSL_CTX_new(TLS_server_method());
6270     SSL_CTX_set_cert_cb(sctx, cert_cb, snictx);
6271
6272     if (!TEST_true(create_ssl_objects(sctx, cctx, &serverssl, &clientssl,
6273                                       NULL, NULL)))
6274         goto end;
6275
6276     ret = create_ssl_connection(serverssl, clientssl, SSL_ERROR_NONE);
6277     if (!TEST_true(tst == 0 ? !ret : ret)
6278             || (tst > 0 && !TEST_int_eq(cert_cb_cnt, 2))) {
6279         goto end;
6280     }
6281
6282     testresult = 1;
6283
6284  end:
6285     SSL_free(serverssl);
6286     SSL_free(clientssl);
6287     SSL_CTX_free(sctx);
6288     SSL_CTX_free(cctx);
6289     SSL_CTX_free(snictx);
6290
6291     return testresult;
6292 }
6293 #endif
6294
6295 static int test_cert_cb(int tst)
6296 {
6297     int testresult = 1;
6298
6299 #ifndef OPENSSL_NO_TLS1_2
6300     testresult &= test_cert_cb_int(TLS1_2_VERSION, tst);
6301 #endif
6302 #ifndef OPENSSL_NO_TLS1_3
6303     testresult &= test_cert_cb_int(TLS1_3_VERSION, tst);
6304 #endif
6305
6306     return testresult;
6307 }
6308
6309 static int client_cert_cb(SSL *ssl, X509 **x509, EVP_PKEY **pkey)
6310 {
6311     X509 *xcert, *peer;
6312     EVP_PKEY *privpkey;
6313     BIO *in = NULL;
6314
6315     /* Check that SSL_get_peer_certificate() returns something sensible */
6316     peer = SSL_get_peer_certificate(ssl);
6317     if (!TEST_ptr(peer))
6318         return 0;
6319     X509_free(peer);
6320
6321     in = BIO_new_file(cert, "r");
6322     if (!TEST_ptr(in))
6323         return 0;
6324
6325     xcert = PEM_read_bio_X509(in, NULL, NULL, NULL);
6326     BIO_free(in);
6327     if (!TEST_ptr(xcert))
6328         return 0;
6329
6330     in = BIO_new_file(privkey, "r");
6331     if (!TEST_ptr(in)) {
6332         X509_free(xcert);
6333         return 0;
6334     }
6335
6336     privpkey = PEM_read_bio_PrivateKey(in, NULL, NULL, NULL);
6337     BIO_free(in);
6338     if (!TEST_ptr(privpkey)) {
6339         X509_free(xcert);
6340         return 0;
6341     }
6342
6343     *x509 = xcert;
6344     *pkey = privpkey;
6345
6346     return 1;
6347 }
6348
6349 static int verify_cb(int preverify_ok, X509_STORE_CTX *x509_ctx)
6350 {
6351     return 1;
6352 }
6353
6354 static int test_client_cert_cb(int tst)
6355 {
6356     SSL_CTX *cctx = NULL, *sctx = NULL;
6357     SSL *clientssl = NULL, *serverssl = NULL;
6358     int testresult = 0;
6359
6360 #ifdef OPENSSL_NO_TLS1_2
6361     if (tst == 0)
6362         return 1;
6363 #endif
6364 #ifdef OPENSSL_NO_TLS1_3
6365     if (tst == 1)
6366         return 1;
6367 #endif
6368
6369     if (!TEST_true(create_ssl_ctx_pair(TLS_server_method(),
6370                                        TLS_client_method(),
6371                                        TLS1_VERSION,
6372                                        tst == 0 ? TLS1_2_VERSION
6373                                                 : TLS1_3_VERSION,
6374                                        &sctx, &cctx, cert, privkey)))
6375         goto end;
6376
6377     /*
6378      * Test that setting a client_cert_cb results in a client certificate being
6379      * sent.
6380      */
6381     SSL_CTX_set_client_cert_cb(cctx, client_cert_cb);
6382     SSL_CTX_set_verify(sctx,
6383                        SSL_VERIFY_PEER | SSL_VERIFY_FAIL_IF_NO_PEER_CERT,
6384                        verify_cb);
6385
6386     if (!TEST_true(create_ssl_objects(sctx, cctx, &serverssl, &clientssl,
6387                                       NULL, NULL))
6388             || !TEST_true(create_ssl_connection(serverssl, clientssl,
6389                                                 SSL_ERROR_NONE)))
6390         goto end;
6391
6392     testresult = 1;
6393
6394  end:
6395     SSL_free(serverssl);
6396     SSL_free(clientssl);
6397     SSL_CTX_free(sctx);
6398     SSL_CTX_free(cctx);
6399
6400     return testresult;
6401 }
6402
6403 #if !defined(OPENSSL_NO_TLS1_2) || !defined(OPENSSL_NO_TLS1_3)
6404 /*
6405  * Test setting certificate authorities on both client and server.
6406  *
6407  * Test 0: SSL_CTX_set0_CA_list() only
6408  * Test 1: Both SSL_CTX_set0_CA_list() and SSL_CTX_set_client_CA_list()
6409  * Test 2: Only SSL_CTX_set_client_CA_list()
6410  */
6411 static int test_ca_names_int(int prot, int tst)
6412 {
6413     SSL_CTX *cctx = NULL, *sctx = NULL;
6414     SSL *clientssl = NULL, *serverssl = NULL;
6415     int testresult = 0;
6416     size_t i;
6417     X509_NAME *name[] = { NULL, NULL, NULL, NULL };
6418     char *strnames[] = { "Jack", "Jill", "John", "Joanne" };
6419     STACK_OF(X509_NAME) *sk1 = NULL, *sk2 = NULL;
6420     const STACK_OF(X509_NAME) *sktmp = NULL;
6421
6422     for (i = 0; i < OSSL_NELEM(name); i++) {
6423         name[i] = X509_NAME_new();
6424         if (!TEST_ptr(name[i])
6425                 || !TEST_true(X509_NAME_add_entry_by_txt(name[i], "CN",
6426                                                          MBSTRING_ASC,
6427                                                          (unsigned char *)
6428                                                          strnames[i],
6429                                                          -1, -1, 0)))
6430             goto end;
6431     }
6432
6433     if (!TEST_true(create_ssl_ctx_pair(TLS_server_method(),
6434                                        TLS_client_method(),
6435                                        TLS1_VERSION,
6436                                        prot,
6437                                        &sctx, &cctx, cert, privkey)))
6438         goto end;
6439
6440     SSL_CTX_set_verify(sctx, SSL_VERIFY_PEER, NULL);
6441
6442     if (tst == 0 || tst == 1) {
6443         if (!TEST_ptr(sk1 = sk_X509_NAME_new_null())
6444                 || !TEST_true(sk_X509_NAME_push(sk1, X509_NAME_dup(name[0])))
6445                 || !TEST_true(sk_X509_NAME_push(sk1, X509_NAME_dup(name[1])))
6446                 || !TEST_ptr(sk2 = sk_X509_NAME_new_null())
6447                 || !TEST_true(sk_X509_NAME_push(sk2, X509_NAME_dup(name[0])))
6448                 || !TEST_true(sk_X509_NAME_push(sk2, X509_NAME_dup(name[1]))))
6449             goto end;
6450
6451         SSL_CTX_set0_CA_list(sctx, sk1);
6452         SSL_CTX_set0_CA_list(cctx, sk2);
6453         sk1 = sk2 = NULL;
6454     }
6455     if (tst == 1 || tst == 2) {
6456         if (!TEST_ptr(sk1 = sk_X509_NAME_new_null())
6457                 || !TEST_true(sk_X509_NAME_push(sk1, X509_NAME_dup(name[2])))
6458                 || !TEST_true(sk_X509_NAME_push(sk1, X509_NAME_dup(name[3])))
6459                 || !TEST_ptr(sk2 = sk_X509_NAME_new_null())
6460                 || !TEST_true(sk_X509_NAME_push(sk2, X509_NAME_dup(name[2])))
6461                 || !TEST_true(sk_X509_NAME_push(sk2, X509_NAME_dup(name[3]))))
6462             goto end;
6463
6464         SSL_CTX_set_client_CA_list(sctx, sk1);
6465         SSL_CTX_set_client_CA_list(cctx, sk2);
6466         sk1 = sk2 = NULL;
6467     }
6468
6469     if (!TEST_true(create_ssl_objects(sctx, cctx, &serverssl, &clientssl,
6470                                       NULL, NULL))
6471             || !TEST_true(create_ssl_connection(serverssl, clientssl,
6472                                                 SSL_ERROR_NONE)))
6473         goto end;
6474
6475     /*
6476      * We only expect certificate authorities to have been sent to the server
6477      * if we are using TLSv1.3 and SSL_set0_CA_list() was used
6478      */
6479     sktmp = SSL_get0_peer_CA_list(serverssl);
6480     if (prot == TLS1_3_VERSION
6481             && (tst == 0 || tst == 1)) {
6482         if (!TEST_ptr(sktmp)
6483                 || !TEST_int_eq(sk_X509_NAME_num(sktmp), 2)
6484                 || !TEST_int_eq(X509_NAME_cmp(sk_X509_NAME_value(sktmp, 0),
6485                                               name[0]), 0)
6486                 || !TEST_int_eq(X509_NAME_cmp(sk_X509_NAME_value(sktmp, 1),
6487                                               name[1]), 0))
6488             goto end;
6489     } else if (!TEST_ptr_null(sktmp)) {
6490         goto end;
6491     }
6492
6493     /*
6494      * In all tests we expect certificate authorities to have been sent to the
6495      * client. However, SSL_set_client_CA_list() should override
6496      * SSL_set0_CA_list()
6497      */
6498     sktmp = SSL_get0_peer_CA_list(clientssl);
6499     if (!TEST_ptr(sktmp)
6500             || !TEST_int_eq(sk_X509_NAME_num(sktmp), 2)
6501             || !TEST_int_eq(X509_NAME_cmp(sk_X509_NAME_value(sktmp, 0),
6502                                           name[tst == 0 ? 0 : 2]), 0)
6503             || !TEST_int_eq(X509_NAME_cmp(sk_X509_NAME_value(sktmp, 1),
6504                                           name[tst == 0 ? 1 : 3]), 0))
6505         goto end;
6506
6507     testresult = 1;
6508
6509  end:
6510     SSL_free(serverssl);
6511     SSL_free(clientssl);
6512     SSL_CTX_free(sctx);
6513     SSL_CTX_free(cctx);
6514     for (i = 0; i < OSSL_NELEM(name); i++)
6515         X509_NAME_free(name[i]);
6516     sk_X509_NAME_pop_free(sk1, X509_NAME_free);
6517     sk_X509_NAME_pop_free(sk2, X509_NAME_free);
6518
6519     return testresult;
6520 }
6521 #endif
6522
6523 static int test_ca_names(int tst)
6524 {
6525     int testresult = 1;
6526
6527 #ifndef OPENSSL_NO_TLS1_2
6528     testresult &= test_ca_names_int(TLS1_2_VERSION, tst);
6529 #endif
6530 #ifndef OPENSSL_NO_TLS1_3
6531     testresult &= test_ca_names_int(TLS1_3_VERSION, tst);
6532 #endif
6533
6534     return testresult;
6535 }
6536
6537
6538 OPT_TEST_DECLARE_USAGE("certfile privkeyfile srpvfile tmpfile\n")
6539
6540 int setup_tests(void)
6541 {
6542     if (!TEST_ptr(cert = test_get_argument(0))
6543             || !TEST_ptr(privkey = test_get_argument(1))
6544             || !TEST_ptr(srpvfile = test_get_argument(2))
6545             || !TEST_ptr(tmpfilename = test_get_argument(3)))
6546         return 0;
6547
6548     if (getenv("OPENSSL_TEST_GETCOUNTS") != NULL) {
6549 #ifdef OPENSSL_NO_CRYPTO_MDEBUG
6550         TEST_error("not supported in this build");
6551         return 0;
6552 #else
6553         int i, mcount, rcount, fcount;
6554
6555         for (i = 0; i < 4; i++)
6556             test_export_key_mat(i);
6557         CRYPTO_get_alloc_counts(&mcount, &rcount, &fcount);
6558         test_printf_stdout("malloc %d realloc %d free %d\n",
6559                 mcount, rcount, fcount);
6560         return 1;
6561 #endif
6562     }
6563
6564 #if !defined(OPENSSL_NO_TLS1_2) && !defined(OPENSSL_NO_KTLS) \
6565     && !defined(OPENSSL_NO_SOCK)
6566     ADD_TEST(test_ktls_no_txrx_client_no_txrx_server);
6567     ADD_TEST(test_ktls_no_rx_client_no_txrx_server);
6568     ADD_TEST(test_ktls_no_tx_client_no_txrx_server);
6569     ADD_TEST(test_ktls_client_no_txrx_server);
6570     ADD_TEST(test_ktls_no_txrx_client_no_rx_server);
6571     ADD_TEST(test_ktls_no_rx_client_no_rx_server);
6572     ADD_TEST(test_ktls_no_tx_client_no_rx_server);
6573     ADD_TEST(test_ktls_client_no_rx_server);
6574     ADD_TEST(test_ktls_no_txrx_client_no_tx_server);
6575     ADD_TEST(test_ktls_no_rx_client_no_tx_server);
6576     ADD_TEST(test_ktls_no_tx_client_no_tx_server);
6577     ADD_TEST(test_ktls_client_no_tx_server);
6578     ADD_TEST(test_ktls_no_txrx_client_server);
6579     ADD_TEST(test_ktls_no_rx_client_server);
6580     ADD_TEST(test_ktls_no_tx_client_server);
6581     ADD_TEST(test_ktls_client_server);
6582     ADD_TEST(test_ktls_sendfile);
6583 #endif
6584     ADD_TEST(test_large_message_tls);
6585     ADD_TEST(test_large_message_tls_read_ahead);
6586 #ifndef OPENSSL_NO_DTLS
6587     ADD_TEST(test_large_message_dtls);
6588 #endif
6589 #ifndef OPENSSL_NO_OCSP
6590     ADD_TEST(test_tlsext_status_type);
6591 #endif
6592     ADD_TEST(test_session_with_only_int_cache);
6593     ADD_TEST(test_session_with_only_ext_cache);
6594     ADD_TEST(test_session_with_both_cache);
6595 #ifndef OPENSSL_NO_TLS1_3
6596     ADD_ALL_TESTS(test_stateful_tickets, 3);
6597     ADD_ALL_TESTS(test_stateless_tickets, 3);
6598     ADD_TEST(test_psk_tickets);
6599 #endif
6600     ADD_ALL_TESTS(test_ssl_set_bio, TOTAL_SSL_SET_BIO_TESTS);
6601     ADD_TEST(test_ssl_bio_pop_next_bio);
6602     ADD_TEST(test_ssl_bio_pop_ssl_bio);
6603     ADD_TEST(test_ssl_bio_change_rbio);
6604     ADD_TEST(test_ssl_bio_change_wbio);
6605 #if !defined(OPENSSL_NO_TLS1_2) || defined(OPENSSL_NO_TLS1_3)
6606     ADD_ALL_TESTS(test_set_sigalgs, OSSL_NELEM(testsigalgs) * 2);
6607     ADD_TEST(test_keylog);
6608 #endif
6609 #ifndef OPENSSL_NO_TLS1_3
6610     ADD_TEST(test_keylog_no_master_key);
6611 #endif
6612 #ifndef OPENSSL_NO_TLS1_2
6613     ADD_TEST(test_client_hello_cb);
6614     ADD_TEST(test_no_ems);
6615 #endif
6616 #ifndef OPENSSL_NO_TLS1_3
6617     ADD_ALL_TESTS(test_early_data_read_write, 3);
6618     /*
6619      * We don't do replay tests for external PSK. Replay protection isn't used
6620      * in that scenario.
6621      */
6622     ADD_ALL_TESTS(test_early_data_replay, 2);
6623     ADD_ALL_TESTS(test_early_data_skip, 3);
6624     ADD_ALL_TESTS(test_early_data_skip_hrr, 3);
6625     ADD_ALL_TESTS(test_early_data_skip_hrr_fail, 3);
6626     ADD_ALL_TESTS(test_early_data_skip_abort, 3);
6627     ADD_ALL_TESTS(test_early_data_not_sent, 3);
6628     ADD_ALL_TESTS(test_early_data_psk, 8);
6629     ADD_ALL_TESTS(test_early_data_not_expected, 3);
6630 # ifndef OPENSSL_NO_TLS1_2
6631     ADD_ALL_TESTS(test_early_data_tls1_2, 3);
6632 # endif
6633 #endif
6634 #ifndef OPENSSL_NO_TLS1_3
6635     ADD_ALL_TESTS(test_set_ciphersuite, 10);
6636     ADD_TEST(test_ciphersuite_change);
6637 #ifdef OPENSSL_NO_PSK
6638     ADD_ALL_TESTS(test_tls13_psk, 1);
6639 #else
6640     ADD_ALL_TESTS(test_tls13_psk, 4);
6641 #endif  /* OPENSSL_NO_PSK */
6642     ADD_ALL_TESTS(test_tls13_key_exchange, 4);
6643     ADD_ALL_TESTS(test_custom_exts, 5);
6644     ADD_TEST(test_stateless);
6645     ADD_TEST(test_pha_key_update);
6646 #else
6647     ADD_ALL_TESTS(test_custom_exts, 3);
6648 #endif
6649     ADD_ALL_TESTS(test_serverinfo, 8);
6650     ADD_ALL_TESTS(test_export_key_mat, 6);
6651 #ifndef OPENSSL_NO_TLS1_3
6652     ADD_ALL_TESTS(test_export_key_mat_early, 3);
6653     ADD_TEST(test_key_update);
6654     ADD_ALL_TESTS(test_key_update_in_write, 2);
6655 #endif
6656     ADD_ALL_TESTS(test_ssl_clear, 2);
6657     ADD_ALL_TESTS(test_max_fragment_len_ext, OSSL_NELEM(max_fragment_len_test));
6658 #if !defined(OPENSSL_NO_SRP) && !defined(OPENSSL_NO_TLS1_2)
6659     ADD_ALL_TESTS(test_srp, 6);
6660 #endif
6661     ADD_ALL_TESTS(test_info_callback, 6);
6662     ADD_ALL_TESTS(test_ssl_pending, 2);
6663     ADD_ALL_TESTS(test_ssl_get_shared_ciphers, OSSL_NELEM(shared_ciphers_data));
6664     ADD_ALL_TESTS(test_ticket_callbacks, 12);
6665     ADD_ALL_TESTS(test_shutdown, 7);
6666     ADD_ALL_TESTS(test_cert_cb, 3);
6667     ADD_ALL_TESTS(test_client_cert_cb, 2);
6668     ADD_ALL_TESTS(test_ca_names, 3);
6669     return 1;
6670 }
6671
6672 void cleanup_tests(void)
6673 {
6674     bio_s_mempacket_test_free();
6675     bio_s_always_retry_free();
6676 }