Do not set a nonzero default max_early_data
[openssl.git] / test / sslapitest.c
1 /*
2  * Copyright 2016-2018 The OpenSSL Project Authors. All Rights Reserved.
3  *
4  * Licensed under the OpenSSL license (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 <string.h>
11
12 #include <openssl/opensslconf.h>
13 #include <openssl/bio.h>
14 #include <openssl/crypto.h>
15 #include <openssl/ssl.h>
16 #include <openssl/ocsp.h>
17
18 #include "ssltestlib.h"
19 #include "testutil.h"
20 #include "internal/nelem.h"
21 #include "../ssl/ssl_locl.h"
22
23 static char *cert = NULL;
24 static char *privkey = NULL;
25
26 #define LOG_BUFFER_SIZE 1024
27 static char server_log_buffer[LOG_BUFFER_SIZE + 1] = {0};
28 static size_t server_log_buffer_index = 0;
29 static char client_log_buffer[LOG_BUFFER_SIZE + 1] = {0};
30 static size_t client_log_buffer_index = 0;
31 static int error_writing_log = 0;
32
33 #ifndef OPENSSL_NO_OCSP
34 static const unsigned char orespder[] = "Dummy OCSP Response";
35 static int ocsp_server_called = 0;
36 static int ocsp_client_called = 0;
37
38 static int cdummyarg = 1;
39 static X509 *ocspcert = NULL;
40 #endif
41
42 #define NUM_EXTRA_CERTS 40
43 #define CLIENT_VERSION_LEN      2
44
45 /*
46  * This structure is used to validate that the correct number of log messages
47  * of various types are emitted when emitting secret logs.
48  */
49 struct sslapitest_log_counts {
50     unsigned int rsa_key_exchange_count;
51     unsigned int master_secret_count;
52     unsigned int client_handshake_secret_count;
53     unsigned int server_handshake_secret_count;
54     unsigned int client_application_secret_count;
55     unsigned int server_application_secret_count;
56 };
57
58
59 static unsigned char serverinfov1[] = {
60     0xff, 0xff, /* Dummy extension type */
61     0x00, 0x01, /* Extension length is 1 byte */
62     0xff        /* Dummy extension data */
63 };
64
65 static unsigned char serverinfov2[] = {
66     0x00, 0x00, 0x00,
67     (unsigned char)(SSL_EXT_CLIENT_HELLO & 0xff), /* Dummy context - 4 bytes */
68     0xff, 0xff, /* Dummy extension type */
69     0x00, 0x01, /* Extension length is 1 byte */
70     0xff        /* Dummy extension data */
71 };
72
73 static void client_keylog_callback(const SSL *ssl, const char *line)
74 {
75     int line_length = strlen(line);
76
77     /* If the log doesn't fit, error out. */
78     if (client_log_buffer_index + line_length > sizeof(client_log_buffer) - 1) {
79         TEST_info("Client log too full");
80         error_writing_log = 1;
81         return;
82     }
83
84     strcat(client_log_buffer, line);
85     client_log_buffer_index += line_length;
86     client_log_buffer[client_log_buffer_index++] = '\n';
87 }
88
89 static void server_keylog_callback(const SSL *ssl, const char *line)
90 {
91     int line_length = strlen(line);
92
93     /* If the log doesn't fit, error out. */
94     if (server_log_buffer_index + line_length > sizeof(server_log_buffer) - 1) {
95         TEST_info("Server log too full");
96         error_writing_log = 1;
97         return;
98     }
99
100     strcat(server_log_buffer, line);
101     server_log_buffer_index += line_length;
102     server_log_buffer[server_log_buffer_index++] = '\n';
103 }
104
105 static int compare_hex_encoded_buffer(const char *hex_encoded,
106                                       size_t hex_length,
107                                       const uint8_t *raw,
108                                       size_t raw_length)
109 {
110     size_t i, j;
111     char hexed[3];
112
113     if (!TEST_size_t_eq(raw_length * 2, hex_length))
114         return 1;
115
116     for (i = j = 0; i < raw_length && j + 1 < hex_length; i++, j += 2) {
117         sprintf(hexed, "%02x", raw[i]);
118         if (!TEST_int_eq(hexed[0], hex_encoded[j])
119                 || !TEST_int_eq(hexed[1], hex_encoded[j + 1]))
120             return 1;
121     }
122
123     return 0;
124 }
125
126 static int test_keylog_output(char *buffer, const SSL *ssl,
127                               const SSL_SESSION *session,
128                               struct sslapitest_log_counts *expected)
129 {
130     char *token = NULL;
131     unsigned char actual_client_random[SSL3_RANDOM_SIZE] = {0};
132     size_t client_random_size = SSL3_RANDOM_SIZE;
133     unsigned char actual_master_key[SSL_MAX_MASTER_KEY_LENGTH] = {0};
134     size_t master_key_size = SSL_MAX_MASTER_KEY_LENGTH;
135     unsigned int rsa_key_exchange_count = 0;
136     unsigned int master_secret_count = 0;
137     unsigned int client_handshake_secret_count = 0;
138     unsigned int server_handshake_secret_count = 0;
139     unsigned int client_application_secret_count = 0;
140     unsigned int server_application_secret_count = 0;
141
142     for (token = strtok(buffer, " \n"); token != NULL;
143          token = strtok(NULL, " \n")) {
144         if (strcmp(token, "RSA") == 0) {
145             /*
146              * Premaster secret. Tokens should be: 16 ASCII bytes of
147              * hex-encoded encrypted secret, then the hex-encoded pre-master
148              * secret.
149              */
150             if (!TEST_ptr(token = strtok(NULL, " \n")))
151                 return 0;
152             if (!TEST_size_t_eq(strlen(token), 16))
153                 return 0;
154             if (!TEST_ptr(token = strtok(NULL, " \n")))
155                 return 0;
156             /*
157              * We can't sensibly check the log because the premaster secret is
158              * transient, and OpenSSL doesn't keep hold of it once the master
159              * secret is generated.
160              */
161             rsa_key_exchange_count++;
162         } else if (strcmp(token, "CLIENT_RANDOM") == 0) {
163             /*
164              * Master secret. Tokens should be: 64 ASCII bytes of hex-encoded
165              * client random, then the hex-encoded master secret.
166              */
167             client_random_size = SSL_get_client_random(ssl,
168                                                        actual_client_random,
169                                                        SSL3_RANDOM_SIZE);
170             if (!TEST_size_t_eq(client_random_size, SSL3_RANDOM_SIZE))
171                 return 0;
172
173             if (!TEST_ptr(token = strtok(NULL, " \n")))
174                 return 0;
175             if (!TEST_size_t_eq(strlen(token), 64))
176                 return 0;
177             if (!TEST_false(compare_hex_encoded_buffer(token, 64,
178                                                        actual_client_random,
179                                                        client_random_size)))
180                 return 0;
181
182             if (!TEST_ptr(token = strtok(NULL, " \n")))
183                 return 0;
184             master_key_size = SSL_SESSION_get_master_key(session,
185                                                          actual_master_key,
186                                                          master_key_size);
187             if (!TEST_size_t_ne(master_key_size, 0))
188                 return 0;
189             if (!TEST_false(compare_hex_encoded_buffer(token, strlen(token),
190                                                        actual_master_key,
191                                                        master_key_size)))
192                 return 0;
193             master_secret_count++;
194         } else if (strcmp(token, "CLIENT_HANDSHAKE_TRAFFIC_SECRET") == 0
195                     || strcmp(token, "SERVER_HANDSHAKE_TRAFFIC_SECRET") == 0
196                     || strcmp(token, "CLIENT_TRAFFIC_SECRET_0") == 0
197                     || strcmp(token, "SERVER_TRAFFIC_SECRET_0") == 0) {
198             /*
199              * TLSv1.3 secret. Tokens should be: 64 ASCII bytes of hex-encoded
200              * client random, and then the hex-encoded secret. In this case,
201              * we treat all of these secrets identically and then just
202              * distinguish between them when counting what we saw.
203              */
204             if (strcmp(token, "CLIENT_HANDSHAKE_TRAFFIC_SECRET") == 0)
205                 client_handshake_secret_count++;
206             else if (strcmp(token, "SERVER_HANDSHAKE_TRAFFIC_SECRET") == 0)
207                 server_handshake_secret_count++;
208             else if (strcmp(token, "CLIENT_TRAFFIC_SECRET_0") == 0)
209                 client_application_secret_count++;
210             else if (strcmp(token, "SERVER_TRAFFIC_SECRET_0") == 0)
211                 server_application_secret_count++;
212
213             client_random_size = SSL_get_client_random(ssl,
214                                                        actual_client_random,
215                                                        SSL3_RANDOM_SIZE);
216             if (!TEST_size_t_eq(client_random_size, SSL3_RANDOM_SIZE))
217                 return 0;
218
219             if (!TEST_ptr(token = strtok(NULL, " \n")))
220                 return 0;
221             if (!TEST_size_t_eq(strlen(token), 64))
222                 return 0;
223             if (!TEST_false(compare_hex_encoded_buffer(token, 64,
224                                                        actual_client_random,
225                                                        client_random_size)))
226                 return 0;
227
228             if (!TEST_ptr(token = strtok(NULL, " \n")))
229                 return 0;
230
231             /*
232              * TODO(TLS1.3): test that application traffic secrets are what
233              * we expect */
234         } else {
235             TEST_info("Unexpected token %s\n", token);
236             return 0;
237         }
238     }
239
240     /* Got what we expected? */
241     if (!TEST_size_t_eq(rsa_key_exchange_count,
242                         expected->rsa_key_exchange_count)
243             || !TEST_size_t_eq(master_secret_count,
244                                expected->master_secret_count)
245             || !TEST_size_t_eq(client_handshake_secret_count,
246                                expected->client_handshake_secret_count)
247             || !TEST_size_t_eq(server_handshake_secret_count,
248                                expected->server_handshake_secret_count)
249             || !TEST_size_t_eq(client_application_secret_count,
250                                expected->client_application_secret_count)
251             || !TEST_size_t_eq(server_application_secret_count,
252                                expected->server_application_secret_count))
253         return 0;
254     return 1;
255 }
256
257 #if !defined(OPENSSL_NO_TLS1_2) || defined(OPENSSL_NO_TLS1_3)
258 static int test_keylog(void)
259 {
260     SSL_CTX *cctx = NULL, *sctx = NULL;
261     SSL *clientssl = NULL, *serverssl = NULL;
262     int testresult = 0;
263     struct sslapitest_log_counts expected = {0};
264
265     /* Clean up logging space */
266     memset(client_log_buffer, 0, sizeof(client_log_buffer));
267     memset(server_log_buffer, 0, sizeof(server_log_buffer));
268     client_log_buffer_index = 0;
269     server_log_buffer_index = 0;
270     error_writing_log = 0;
271
272     if (!TEST_true(create_ssl_ctx_pair(TLS_server_method(),
273                                        TLS_client_method(),
274                                        &sctx, &cctx, cert, privkey)))
275         return 0;
276
277     /* We cannot log the master secret for TLSv1.3, so we should forbid it. */
278     SSL_CTX_set_options(cctx, SSL_OP_NO_TLSv1_3);
279     SSL_CTX_set_options(sctx, SSL_OP_NO_TLSv1_3);
280
281     /* We also want to ensure that we use RSA-based key exchange. */
282     if (!TEST_true(SSL_CTX_set_cipher_list(cctx, "RSA")))
283         goto end;
284
285     if (!TEST_true(SSL_CTX_get_keylog_callback(cctx) == NULL)
286             || !TEST_true(SSL_CTX_get_keylog_callback(sctx) == NULL))
287         goto end;
288     SSL_CTX_set_keylog_callback(cctx, client_keylog_callback);
289     if (!TEST_true(SSL_CTX_get_keylog_callback(cctx)
290                    == client_keylog_callback))
291         goto end;
292     SSL_CTX_set_keylog_callback(sctx, server_keylog_callback);
293     if (!TEST_true(SSL_CTX_get_keylog_callback(sctx)
294                    == server_keylog_callback))
295         goto end;
296
297     /* Now do a handshake and check that the logs have been written to. */
298     if (!TEST_true(create_ssl_objects(sctx, cctx, &serverssl,
299                                       &clientssl, NULL, NULL))
300             || !TEST_true(create_ssl_connection(serverssl, clientssl,
301                                                 SSL_ERROR_NONE))
302             || !TEST_false(error_writing_log)
303             || !TEST_int_gt(client_log_buffer_index, 0)
304             || !TEST_int_gt(server_log_buffer_index, 0))
305         goto end;
306
307     /*
308      * Now we want to test that our output data was vaguely sensible. We
309      * do that by using strtok and confirming that we have more or less the
310      * data we expect. For both client and server, we expect to see one master
311      * secret. The client should also see a RSA key exchange.
312      */
313     expected.rsa_key_exchange_count = 1;
314     expected.master_secret_count = 1;
315     if (!TEST_true(test_keylog_output(client_log_buffer, clientssl,
316                                       SSL_get_session(clientssl), &expected)))
317         goto end;
318
319     expected.rsa_key_exchange_count = 0;
320     if (!TEST_true(test_keylog_output(server_log_buffer, serverssl,
321                                       SSL_get_session(serverssl), &expected)))
322         goto end;
323
324     testresult = 1;
325
326 end:
327     SSL_free(serverssl);
328     SSL_free(clientssl);
329     SSL_CTX_free(sctx);
330     SSL_CTX_free(cctx);
331
332     return testresult;
333 }
334 #endif
335
336 #ifndef OPENSSL_NO_TLS1_3
337 static int test_keylog_no_master_key(void)
338 {
339     SSL_CTX *cctx = NULL, *sctx = NULL;
340     SSL *clientssl = NULL, *serverssl = NULL;
341     int testresult = 0;
342     struct sslapitest_log_counts expected = {0};
343
344     /* Clean up logging space */
345     memset(client_log_buffer, 0, sizeof(client_log_buffer));
346     memset(server_log_buffer, 0, sizeof(server_log_buffer));
347     client_log_buffer_index = 0;
348     server_log_buffer_index = 0;
349     error_writing_log = 0;
350
351     if (!TEST_true(create_ssl_ctx_pair(TLS_server_method(),
352                              TLS_client_method(), &sctx,
353                              &cctx, cert, privkey)))
354         return 0;
355
356     if (!TEST_true(SSL_CTX_get_keylog_callback(cctx) == NULL)
357             || !TEST_true(SSL_CTX_get_keylog_callback(sctx) == NULL))
358         goto end;
359
360     SSL_CTX_set_keylog_callback(cctx, client_keylog_callback);
361     if (!TEST_true(SSL_CTX_get_keylog_callback(cctx)
362                    == client_keylog_callback))
363         goto end;
364
365     SSL_CTX_set_keylog_callback(sctx, server_keylog_callback);
366     if (!TEST_true(SSL_CTX_get_keylog_callback(sctx)
367                    == server_keylog_callback))
368         goto end;
369
370     /* Now do a handshake and check that the logs have been written to. */
371     if (!TEST_true(create_ssl_objects(sctx, cctx, &serverssl,
372                                       &clientssl, NULL, NULL))
373             || !TEST_true(create_ssl_connection(serverssl, clientssl,
374                                                 SSL_ERROR_NONE))
375             || !TEST_false(error_writing_log))
376         goto end;
377
378     /*
379      * Now we want to test that our output data was vaguely sensible. For this
380      * test, we expect no CLIENT_RANDOM entry because it doesn't make sense for
381      * TLSv1.3, but we do expect both client and server to emit keys.
382      */
383     expected.client_handshake_secret_count = 1;
384     expected.server_handshake_secret_count = 1;
385     expected.client_application_secret_count = 1;
386     expected.server_application_secret_count = 1;
387     if (!TEST_true(test_keylog_output(client_log_buffer, clientssl,
388                                       SSL_get_session(clientssl), &expected))
389             || !TEST_true(test_keylog_output(server_log_buffer, serverssl,
390                                              SSL_get_session(serverssl),
391                                              &expected)))
392         goto end;
393
394     testresult = 1;
395
396 end:
397     SSL_free(serverssl);
398     SSL_free(clientssl);
399     SSL_CTX_free(sctx);
400     SSL_CTX_free(cctx);
401
402     return testresult;
403 }
404 #endif
405
406 #ifndef OPENSSL_NO_TLS1_2
407 static int full_client_hello_callback(SSL *s, int *al, void *arg)
408 {
409     int *ctr = arg;
410     const unsigned char *p;
411     int *exts;
412     /* We only configure two ciphers, but the SCSV is added automatically. */
413 #ifdef OPENSSL_NO_EC
414     const unsigned char expected_ciphers[] = {0x00, 0x9d, 0x00, 0xff};
415 #else
416     const unsigned char expected_ciphers[] = {0x00, 0x9d, 0xc0,
417                                               0x2c, 0x00, 0xff};
418 #endif
419     const int expected_extensions[] = {
420 #ifndef OPENSSL_NO_EC
421                                        11, 10,
422 #endif
423                                        35, 22, 23, 13};
424     size_t len;
425
426     /* Make sure we can defer processing and get called back. */
427     if ((*ctr)++ == 0)
428         return SSL_CLIENT_HELLO_RETRY;
429
430     len = SSL_client_hello_get0_ciphers(s, &p);
431     if (!TEST_mem_eq(p, len, expected_ciphers, sizeof(expected_ciphers))
432             || !TEST_size_t_eq(
433                        SSL_client_hello_get0_compression_methods(s, &p), 1)
434             || !TEST_int_eq(*p, 0))
435         return SSL_CLIENT_HELLO_ERROR;
436     if (!SSL_client_hello_get1_extensions_present(s, &exts, &len))
437         return SSL_CLIENT_HELLO_ERROR;
438     if (len != OSSL_NELEM(expected_extensions) ||
439         memcmp(exts, expected_extensions, len * sizeof(*exts)) != 0) {
440         printf("ClientHello callback expected extensions mismatch\n");
441         OPENSSL_free(exts);
442         return SSL_CLIENT_HELLO_ERROR;
443     }
444     OPENSSL_free(exts);
445     return SSL_CLIENT_HELLO_SUCCESS;
446 }
447
448 static int test_client_hello_cb(void)
449 {
450     SSL_CTX *cctx = NULL, *sctx = NULL;
451     SSL *clientssl = NULL, *serverssl = NULL;
452     int testctr = 0, testresult = 0;
453
454     if (!TEST_true(create_ssl_ctx_pair(TLS_server_method(),
455                                        TLS_client_method(), &sctx,
456                                        &cctx, cert, privkey)))
457         goto end;
458     SSL_CTX_set_client_hello_cb(sctx, full_client_hello_callback, &testctr);
459
460     /* The gimpy cipher list we configure can't do TLS 1.3. */
461     SSL_CTX_set_max_proto_version(cctx, TLS1_2_VERSION);
462
463     if (!TEST_true(SSL_CTX_set_cipher_list(cctx,
464                         "AES256-GCM-SHA384:ECDHE-ECDSA-AES256-GCM-SHA384"))
465             || !TEST_true(create_ssl_objects(sctx, cctx, &serverssl,
466                                              &clientssl, NULL, NULL))
467             || !TEST_false(create_ssl_connection(serverssl, clientssl,
468                         SSL_ERROR_WANT_CLIENT_HELLO_CB))
469                 /*
470                  * Passing a -1 literal is a hack since
471                  * the real value was lost.
472                  * */
473             || !TEST_int_eq(SSL_get_error(serverssl, -1),
474                             SSL_ERROR_WANT_CLIENT_HELLO_CB)
475             || !TEST_true(create_ssl_connection(serverssl, clientssl,
476                                                 SSL_ERROR_NONE)))
477         goto end;
478
479     testresult = 1;
480
481 end:
482     SSL_free(serverssl);
483     SSL_free(clientssl);
484     SSL_CTX_free(sctx);
485     SSL_CTX_free(cctx);
486
487     return testresult;
488 }
489 #endif
490
491 static int execute_test_large_message(const SSL_METHOD *smeth,
492                                       const SSL_METHOD *cmeth, int read_ahead)
493 {
494     SSL_CTX *cctx = NULL, *sctx = NULL;
495     SSL *clientssl = NULL, *serverssl = NULL;
496     int testresult = 0;
497     int i;
498     BIO *certbio = NULL;
499     X509 *chaincert = NULL;
500     int certlen;
501
502     if (!TEST_ptr(certbio = BIO_new_file(cert, "r")))
503         goto end;
504     chaincert = PEM_read_bio_X509(certbio, NULL, NULL, NULL);
505     BIO_free(certbio);
506     certbio = NULL;
507     if (!TEST_ptr(chaincert))
508         goto end;
509
510     if (!TEST_true(create_ssl_ctx_pair(smeth, cmeth, &sctx,
511                                        &cctx, cert, privkey)))
512         goto end;
513
514     if (read_ahead) {
515         /*
516          * Test that read_ahead works correctly when dealing with large
517          * records
518          */
519         SSL_CTX_set_read_ahead(cctx, 1);
520     }
521
522     /*
523      * We assume the supplied certificate is big enough so that if we add
524      * NUM_EXTRA_CERTS it will make the overall message large enough. The
525      * default buffer size is requested to be 16k, but due to the way BUF_MEM
526      * works, it ends up allocating a little over 21k (16 * 4/3). So, in this
527      * test we need to have a message larger than that.
528      */
529     certlen = i2d_X509(chaincert, NULL);
530     OPENSSL_assert(certlen * NUM_EXTRA_CERTS >
531                    (SSL3_RT_MAX_PLAIN_LENGTH * 4) / 3);
532     for (i = 0; i < NUM_EXTRA_CERTS; i++) {
533         if (!X509_up_ref(chaincert))
534             goto end;
535         if (!SSL_CTX_add_extra_chain_cert(sctx, chaincert)) {
536             X509_free(chaincert);
537             goto end;
538         }
539     }
540
541     if (!TEST_true(create_ssl_objects(sctx, cctx, &serverssl, &clientssl,
542                                       NULL, NULL))
543             || !TEST_true(create_ssl_connection(serverssl, clientssl,
544                                                 SSL_ERROR_NONE)))
545         goto end;
546
547     /*
548      * Calling SSL_clear() first is not required but this tests that SSL_clear()
549      * doesn't leak (when using enable-crypto-mdebug).
550      */
551     if (!TEST_true(SSL_clear(serverssl)))
552         goto end;
553
554     testresult = 1;
555  end:
556     X509_free(chaincert);
557     SSL_free(serverssl);
558     SSL_free(clientssl);
559     SSL_CTX_free(sctx);
560     SSL_CTX_free(cctx);
561
562     return testresult;
563 }
564
565 static int test_large_message_tls(void)
566 {
567     return execute_test_large_message(TLS_server_method(), TLS_client_method(),
568                                       0);
569 }
570
571 static int test_large_message_tls_read_ahead(void)
572 {
573     return execute_test_large_message(TLS_server_method(), TLS_client_method(),
574                                       1);
575 }
576
577 #ifndef OPENSSL_NO_DTLS
578 static int test_large_message_dtls(void)
579 {
580     /*
581      * read_ahead is not relevant to DTLS because DTLS always acts as if
582      * read_ahead is set.
583      */
584     return execute_test_large_message(DTLS_server_method(),
585                                       DTLS_client_method(), 0);
586 }
587 #endif
588
589 #ifndef OPENSSL_NO_OCSP
590 static int ocsp_server_cb(SSL *s, void *arg)
591 {
592     int *argi = (int *)arg;
593     unsigned char *copy = NULL;
594     STACK_OF(OCSP_RESPID) *ids = NULL;
595     OCSP_RESPID *id = NULL;
596
597     if (*argi == 2) {
598         /* In this test we are expecting exactly 1 OCSP_RESPID */
599         SSL_get_tlsext_status_ids(s, &ids);
600         if (ids == NULL || sk_OCSP_RESPID_num(ids) != 1)
601             return SSL_TLSEXT_ERR_ALERT_FATAL;
602
603         id = sk_OCSP_RESPID_value(ids, 0);
604         if (id == NULL || !OCSP_RESPID_match(id, ocspcert))
605             return SSL_TLSEXT_ERR_ALERT_FATAL;
606     } else if (*argi != 1) {
607         return SSL_TLSEXT_ERR_ALERT_FATAL;
608     }
609
610     if (!TEST_ptr(copy = OPENSSL_memdup(orespder, sizeof(orespder))))
611         return SSL_TLSEXT_ERR_ALERT_FATAL;
612
613     SSL_set_tlsext_status_ocsp_resp(s, copy, sizeof(orespder));
614     ocsp_server_called = 1;
615     return SSL_TLSEXT_ERR_OK;
616 }
617
618 static int ocsp_client_cb(SSL *s, void *arg)
619 {
620     int *argi = (int *)arg;
621     const unsigned char *respderin;
622     size_t len;
623
624     if (*argi != 1 && *argi != 2)
625         return 0;
626
627     len = SSL_get_tlsext_status_ocsp_resp(s, &respderin);
628     if (!TEST_mem_eq(orespder, len, respderin, len))
629         return 0;
630
631     ocsp_client_called = 1;
632     return 1;
633 }
634
635 static int test_tlsext_status_type(void)
636 {
637     SSL_CTX *cctx = NULL, *sctx = NULL;
638     SSL *clientssl = NULL, *serverssl = NULL;
639     int testresult = 0;
640     STACK_OF(OCSP_RESPID) *ids = NULL;
641     OCSP_RESPID *id = NULL;
642     BIO *certbio = NULL;
643
644     if (!create_ssl_ctx_pair(TLS_server_method(), TLS_client_method(), &sctx,
645                              &cctx, cert, privkey))
646         return 0;
647
648     if (SSL_CTX_get_tlsext_status_type(cctx) != -1)
649         goto end;
650
651     /* First just do various checks getting and setting tlsext_status_type */
652
653     clientssl = SSL_new(cctx);
654     if (!TEST_int_eq(SSL_get_tlsext_status_type(clientssl), -1)
655             || !TEST_true(SSL_set_tlsext_status_type(clientssl,
656                                                       TLSEXT_STATUSTYPE_ocsp))
657             || !TEST_int_eq(SSL_get_tlsext_status_type(clientssl),
658                             TLSEXT_STATUSTYPE_ocsp))
659         goto end;
660
661     SSL_free(clientssl);
662     clientssl = NULL;
663
664     if (!SSL_CTX_set_tlsext_status_type(cctx, TLSEXT_STATUSTYPE_ocsp)
665      || SSL_CTX_get_tlsext_status_type(cctx) != TLSEXT_STATUSTYPE_ocsp)
666         goto end;
667
668     clientssl = SSL_new(cctx);
669     if (SSL_get_tlsext_status_type(clientssl) != TLSEXT_STATUSTYPE_ocsp)
670         goto end;
671     SSL_free(clientssl);
672     clientssl = NULL;
673
674     /*
675      * Now actually do a handshake and check OCSP information is exchanged and
676      * the callbacks get called
677      */
678     SSL_CTX_set_tlsext_status_cb(cctx, ocsp_client_cb);
679     SSL_CTX_set_tlsext_status_arg(cctx, &cdummyarg);
680     SSL_CTX_set_tlsext_status_cb(sctx, ocsp_server_cb);
681     SSL_CTX_set_tlsext_status_arg(sctx, &cdummyarg);
682     if (!TEST_true(create_ssl_objects(sctx, cctx, &serverssl,
683                                       &clientssl, NULL, NULL))
684             || !TEST_true(create_ssl_connection(serverssl, clientssl,
685                                                 SSL_ERROR_NONE))
686             || !TEST_true(ocsp_client_called)
687             || !TEST_true(ocsp_server_called))
688         goto end;
689     SSL_free(serverssl);
690     SSL_free(clientssl);
691     serverssl = NULL;
692     clientssl = NULL;
693
694     /* Try again but this time force the server side callback to fail */
695     ocsp_client_called = 0;
696     ocsp_server_called = 0;
697     cdummyarg = 0;
698     if (!TEST_true(create_ssl_objects(sctx, cctx, &serverssl,
699                                       &clientssl, NULL, NULL))
700                 /* This should fail because the callback will fail */
701             || !TEST_false(create_ssl_connection(serverssl, clientssl,
702                                                  SSL_ERROR_NONE))
703             || !TEST_false(ocsp_client_called)
704             || !TEST_false(ocsp_server_called))
705         goto end;
706     SSL_free(serverssl);
707     SSL_free(clientssl);
708     serverssl = NULL;
709     clientssl = NULL;
710
711     /*
712      * This time we'll get the client to send an OCSP_RESPID that it will
713      * accept.
714      */
715     ocsp_client_called = 0;
716     ocsp_server_called = 0;
717     cdummyarg = 2;
718     if (!TEST_true(create_ssl_objects(sctx, cctx, &serverssl,
719                                       &clientssl, NULL, NULL)))
720         goto end;
721
722     /*
723      * We'll just use any old cert for this test - it doesn't have to be an OCSP
724      * specific one. We'll use the server cert.
725      */
726     if (!TEST_ptr(certbio = BIO_new_file(cert, "r"))
727             || !TEST_ptr(id = OCSP_RESPID_new())
728             || !TEST_ptr(ids = sk_OCSP_RESPID_new_null())
729             || !TEST_ptr(ocspcert = PEM_read_bio_X509(certbio,
730                                                       NULL, NULL, NULL))
731             || !TEST_true(OCSP_RESPID_set_by_key(id, ocspcert))
732             || !TEST_true(sk_OCSP_RESPID_push(ids, id)))
733         goto end;
734     id = NULL;
735     SSL_set_tlsext_status_ids(clientssl, ids);
736     /* Control has been transferred */
737     ids = NULL;
738
739     BIO_free(certbio);
740     certbio = NULL;
741
742     if (!TEST_true(create_ssl_connection(serverssl, clientssl,
743                                          SSL_ERROR_NONE))
744             || !TEST_true(ocsp_client_called)
745             || !TEST_true(ocsp_server_called))
746         goto end;
747
748     testresult = 1;
749
750  end:
751     SSL_free(serverssl);
752     SSL_free(clientssl);
753     SSL_CTX_free(sctx);
754     SSL_CTX_free(cctx);
755     sk_OCSP_RESPID_pop_free(ids, OCSP_RESPID_free);
756     OCSP_RESPID_free(id);
757     BIO_free(certbio);
758     X509_free(ocspcert);
759     ocspcert = NULL;
760
761     return testresult;
762 }
763 #endif
764
765 #if !defined(OPENSSL_NO_TLS1_3) || !defined(OPENSSL_NO_TLS1_2)
766 static int new_called, remove_called, get_called;
767
768 static int new_session_cb(SSL *ssl, SSL_SESSION *sess)
769 {
770     new_called++;
771     /*
772      * sess has been up-refed for us, but we don't actually need it so free it
773      * immediately.
774      */
775     SSL_SESSION_free(sess);
776     return 1;
777 }
778
779 static void remove_session_cb(SSL_CTX *ctx, SSL_SESSION *sess)
780 {
781     remove_called++;
782 }
783
784 static SSL_SESSION *get_sess_val = NULL;
785
786 static SSL_SESSION *get_session_cb(SSL *ssl, const unsigned char *id, int len,
787                                    int *copy)
788 {
789     get_called++;
790     *copy = 1;
791     return get_sess_val;
792 }
793
794 static int execute_test_session(int maxprot, int use_int_cache,
795                                 int use_ext_cache)
796 {
797     SSL_CTX *sctx = NULL, *cctx = NULL;
798     SSL *serverssl1 = NULL, *clientssl1 = NULL;
799     SSL *serverssl2 = NULL, *clientssl2 = NULL;
800 # ifndef OPENSSL_NO_TLS1_1
801     SSL *serverssl3 = NULL, *clientssl3 = NULL;
802 # endif
803     SSL_SESSION *sess1 = NULL, *sess2 = NULL;
804     int testresult = 0;
805
806     new_called = remove_called = 0;
807
808     if (!TEST_true(create_ssl_ctx_pair(TLS_server_method(),
809                                        TLS_client_method(), &sctx,
810                                        &cctx, cert, privkey)))
811         return 0;
812
813     /*
814      * Only allow the max protocol version so we can force a connection failure
815      * later
816      */
817     SSL_CTX_set_min_proto_version(cctx, maxprot);
818     SSL_CTX_set_max_proto_version(cctx, maxprot);
819
820     /* Set up session cache */
821     if (use_ext_cache) {
822         SSL_CTX_sess_set_new_cb(cctx, new_session_cb);
823         SSL_CTX_sess_set_remove_cb(cctx, remove_session_cb);
824     }
825     if (use_int_cache) {
826         /* Also covers instance where both are set */
827         SSL_CTX_set_session_cache_mode(cctx, SSL_SESS_CACHE_CLIENT);
828     } else {
829         SSL_CTX_set_session_cache_mode(cctx,
830                                        SSL_SESS_CACHE_CLIENT
831                                        | SSL_SESS_CACHE_NO_INTERNAL_STORE);
832     }
833
834     if (!TEST_true(create_ssl_objects(sctx, cctx, &serverssl1, &clientssl1,
835                                       NULL, NULL))
836             || !TEST_true(create_ssl_connection(serverssl1, clientssl1,
837                                                 SSL_ERROR_NONE))
838             || !TEST_ptr(sess1 = SSL_get1_session(clientssl1)))
839         goto end;
840
841     /* Should fail because it should already be in the cache */
842     if (use_int_cache && !TEST_false(SSL_CTX_add_session(cctx, sess1)))
843         goto end;
844     if (use_ext_cache
845             && (!TEST_int_eq(new_called, 1) || !TEST_int_eq(remove_called, 0)))
846         goto end;
847
848     new_called = remove_called = 0;
849     if (!TEST_true(create_ssl_objects(sctx, cctx, &serverssl2,
850                                       &clientssl2, NULL, NULL))
851             || !TEST_true(SSL_set_session(clientssl2, sess1))
852             || !TEST_true(create_ssl_connection(serverssl2, clientssl2,
853                                                 SSL_ERROR_NONE))
854             || !TEST_true(SSL_session_reused(clientssl2)))
855         goto end;
856
857     if (maxprot == TLS1_3_VERSION) {
858         /*
859          * In TLSv1.3 we should have created a new session even though we have
860          * resumed. The original session should also have been removed.
861          */
862         if (use_ext_cache
863                 && (!TEST_int_eq(new_called, 1)
864                     || !TEST_int_eq(remove_called, 1)))
865             goto end;
866     } else {
867         /*
868          * In TLSv1.2 we expect to have resumed so no sessions added or
869          * removed.
870          */
871         if (use_ext_cache
872                 && (!TEST_int_eq(new_called, 0)
873                     || !TEST_int_eq(remove_called, 0)))
874             goto end;
875     }
876
877     SSL_SESSION_free(sess1);
878     if (!TEST_ptr(sess1 = SSL_get1_session(clientssl2)))
879         goto end;
880     shutdown_ssl_connection(serverssl2, clientssl2);
881     serverssl2 = clientssl2 = NULL;
882
883     new_called = remove_called = 0;
884     if (!TEST_true(create_ssl_objects(sctx, cctx, &serverssl2,
885                                       &clientssl2, NULL, NULL))
886             || !TEST_true(create_ssl_connection(serverssl2, clientssl2,
887                                                 SSL_ERROR_NONE)))
888         goto end;
889
890     if (!TEST_ptr(sess2 = SSL_get1_session(clientssl2)))
891         goto end;
892
893     if (use_ext_cache
894             && (!TEST_int_eq(new_called, 1) || !TEST_int_eq(remove_called, 0)))
895         goto end;
896
897     new_called = remove_called = 0;
898     /*
899      * This should clear sess2 from the cache because it is a "bad" session.
900      * See SSL_set_session() documentation.
901      */
902     if (!TEST_true(SSL_set_session(clientssl2, sess1)))
903         goto end;
904     if (use_ext_cache
905             && (!TEST_int_eq(new_called, 0) || !TEST_int_eq(remove_called, 1)))
906         goto end;
907     if (!TEST_ptr_eq(SSL_get_session(clientssl2), sess1))
908         goto end;
909
910     if (use_int_cache) {
911         /* Should succeeded because it should not already be in the cache */
912         if (!TEST_true(SSL_CTX_add_session(cctx, sess2))
913                 || !TEST_true(SSL_CTX_remove_session(cctx, sess2)))
914             goto end;
915     }
916
917     new_called = remove_called = 0;
918     /* This shouldn't be in the cache so should fail */
919     if (!TEST_false(SSL_CTX_remove_session(cctx, sess2)))
920         goto end;
921
922     if (use_ext_cache
923             && (!TEST_int_eq(new_called, 0) || !TEST_int_eq(remove_called, 1)))
924         goto end;
925
926 # if !defined(OPENSSL_NO_TLS1_1)
927     new_called = remove_called = 0;
928     /* Force a connection failure */
929     SSL_CTX_set_max_proto_version(sctx, TLS1_1_VERSION);
930     if (!TEST_true(create_ssl_objects(sctx, cctx, &serverssl3,
931                                       &clientssl3, NULL, NULL))
932             || !TEST_true(SSL_set_session(clientssl3, sess1))
933             /* This should fail because of the mismatched protocol versions */
934             || !TEST_false(create_ssl_connection(serverssl3, clientssl3,
935                                                  SSL_ERROR_NONE)))
936         goto end;
937
938     /* We should have automatically removed the session from the cache */
939     if (use_ext_cache
940             && (!TEST_int_eq(new_called, 0) || !TEST_int_eq(remove_called, 1)))
941         goto end;
942
943     /* Should succeed because it should not already be in the cache */
944     if (use_int_cache && !TEST_true(SSL_CTX_add_session(cctx, sess2)))
945         goto end;
946 # endif
947
948     /* Now do some tests for server side caching */
949     if (use_ext_cache) {
950         SSL_CTX_sess_set_new_cb(cctx, NULL);
951         SSL_CTX_sess_set_remove_cb(cctx, NULL);
952         SSL_CTX_sess_set_new_cb(sctx, new_session_cb);
953         SSL_CTX_sess_set_remove_cb(sctx, remove_session_cb);
954         SSL_CTX_sess_set_get_cb(sctx, get_session_cb);
955         get_sess_val = NULL;
956     }
957
958     SSL_CTX_set_session_cache_mode(cctx, 0);
959     /* Internal caching is the default on the server side */
960     if (!use_int_cache)
961         SSL_CTX_set_session_cache_mode(sctx,
962                                        SSL_SESS_CACHE_SERVER
963                                        | SSL_SESS_CACHE_NO_INTERNAL_STORE);
964
965     SSL_free(serverssl1);
966     SSL_free(clientssl1);
967     serverssl1 = clientssl1 = NULL;
968     SSL_free(serverssl2);
969     SSL_free(clientssl2);
970     serverssl2 = clientssl2 = NULL;
971     SSL_SESSION_free(sess1);
972     sess1 = NULL;
973     SSL_SESSION_free(sess2);
974     sess2 = NULL;
975
976     SSL_CTX_set_max_proto_version(sctx, maxprot);
977     SSL_CTX_set_options(sctx, SSL_OP_NO_TICKET);
978     new_called = remove_called = get_called = 0;
979     if (!TEST_true(create_ssl_objects(sctx, cctx, &serverssl1, &clientssl1,
980                                       NULL, NULL))
981             || !TEST_true(create_ssl_connection(serverssl1, clientssl1,
982                                                 SSL_ERROR_NONE))
983             || !TEST_ptr(sess1 = SSL_get1_session(clientssl1))
984             || !TEST_ptr(sess2 = SSL_get1_session(serverssl1)))
985         goto end;
986
987     /* Should fail because it should already be in the cache */
988     if (use_int_cache && !TEST_false(SSL_CTX_add_session(sctx, sess2)))
989         goto end;
990
991     if (use_ext_cache) {
992         SSL_SESSION *tmp = sess2;
993
994         if (!TEST_int_eq(new_called, 1)
995                 || !TEST_int_eq(remove_called, 0)
996                 || !TEST_int_eq(get_called, 0))
997             goto end;
998         /*
999          * Delete the session from the internal cache to force a lookup from
1000          * the external cache. We take a copy first because
1001          * SSL_CTX_remove_session() also marks the session as non-resumable.
1002          */
1003         if (use_int_cache) {
1004             if (!TEST_ptr(tmp = SSL_SESSION_dup(sess2))
1005                     || !TEST_true(SSL_CTX_remove_session(sctx, sess2)))
1006                 goto end;
1007             SSL_SESSION_free(sess2);
1008         }
1009         sess2 = tmp;
1010     }
1011
1012     new_called = remove_called = get_called = 0;
1013     get_sess_val = sess2;
1014     if (!TEST_true(create_ssl_objects(sctx, cctx, &serverssl2,
1015                                       &clientssl2, NULL, NULL))
1016             || !TEST_true(SSL_set_session(clientssl2, sess1))
1017             || !TEST_true(create_ssl_connection(serverssl2, clientssl2,
1018                                                 SSL_ERROR_NONE))
1019             || !TEST_true(SSL_session_reused(clientssl2)))
1020         goto end;
1021
1022     if (use_ext_cache) {
1023         if (!TEST_int_eq(new_called, 0)
1024                 || !TEST_int_eq(remove_called, 0))
1025             goto end;
1026
1027         if (maxprot == TLS1_3_VERSION) {
1028             if (!TEST_int_eq(get_called, 0))
1029                 goto end;
1030         } else {
1031             if (!TEST_int_eq(get_called, 1))
1032                 goto end;
1033         }
1034     }
1035
1036     testresult = 1;
1037
1038  end:
1039     SSL_free(serverssl1);
1040     SSL_free(clientssl1);
1041     SSL_free(serverssl2);
1042     SSL_free(clientssl2);
1043 # ifndef OPENSSL_NO_TLS1_1
1044     SSL_free(serverssl3);
1045     SSL_free(clientssl3);
1046 # endif
1047     SSL_SESSION_free(sess1);
1048     SSL_SESSION_free(sess2);
1049     SSL_CTX_free(sctx);
1050     SSL_CTX_free(cctx);
1051
1052     return testresult;
1053 }
1054 #endif /* !defined(OPENSSL_NO_TLS1_3) || !defined(OPENSSL_NO_TLS1_2) */
1055
1056 static int test_session_with_only_int_cache(void)
1057 {
1058 #ifndef OPENSSL_NO_TLS1_3
1059     if (!execute_test_session(TLS1_3_VERSION, 1, 0))
1060         return 0;
1061 #endif
1062
1063 #ifndef OPENSSL_NO_TLS1_2
1064     return execute_test_session(TLS1_2_VERSION, 1, 0);
1065 #else
1066     return 1;
1067 #endif
1068 }
1069
1070 static int test_session_with_only_ext_cache(void)
1071 {
1072 #ifndef OPENSSL_NO_TLS1_3
1073     if (!execute_test_session(TLS1_3_VERSION, 0, 1))
1074         return 0;
1075 #endif
1076
1077 #ifndef OPENSSL_NO_TLS1_2
1078     return execute_test_session(TLS1_2_VERSION, 0, 1);
1079 #else
1080     return 1;
1081 #endif
1082 }
1083
1084 static int test_session_with_both_cache(void)
1085 {
1086 #ifndef OPENSSL_NO_TLS1_3
1087     if (!execute_test_session(TLS1_3_VERSION, 1, 1))
1088         return 0;
1089 #endif
1090
1091 #ifndef OPENSSL_NO_TLS1_2
1092     return execute_test_session(TLS1_2_VERSION, 1, 1);
1093 #else
1094     return 1;
1095 #endif
1096 }
1097
1098 #define USE_NULL    0
1099 #define USE_BIO_1   1
1100 #define USE_BIO_2   2
1101
1102 #define TOTAL_SSL_SET_BIO_TESTS (3 * 3 * 3 * 3)
1103
1104 static void setupbio(BIO **res, BIO *bio1, BIO *bio2, int type)
1105 {
1106     switch (type) {
1107     case USE_NULL:
1108         *res = NULL;
1109         break;
1110     case USE_BIO_1:
1111         *res = bio1;
1112         break;
1113     case USE_BIO_2:
1114         *res = bio2;
1115         break;
1116     }
1117 }
1118
1119 static int test_ssl_set_bio(int idx)
1120 {
1121     SSL_CTX *ctx;
1122     BIO *bio1 = NULL;
1123     BIO *bio2 = NULL;
1124     BIO *irbio = NULL, *iwbio = NULL, *nrbio = NULL, *nwbio = NULL;
1125     SSL *ssl = NULL;
1126     int initrbio, initwbio, newrbio, newwbio;
1127     int testresult = 0;
1128
1129     initrbio = idx % 3;
1130     idx /= 3;
1131     initwbio = idx % 3;
1132     idx /= 3;
1133     newrbio = idx % 3;
1134     idx /= 3;
1135     newwbio = idx;
1136     if (!TEST_int_le(newwbio, 2))
1137         return 0;
1138
1139     if (!TEST_ptr(ctx = SSL_CTX_new(TLS_method()))
1140                 || !TEST_ptr(ssl = SSL_new(ctx)))
1141         goto end;
1142
1143     if (initrbio == USE_BIO_1
1144             || initwbio == USE_BIO_1
1145             || newrbio == USE_BIO_1
1146             || newwbio == USE_BIO_1) {
1147         if (!TEST_ptr(bio1 = BIO_new(BIO_s_mem())))
1148             goto end;
1149     }
1150
1151     if (initrbio == USE_BIO_2
1152             || initwbio == USE_BIO_2
1153             || newrbio == USE_BIO_2
1154             || newwbio == USE_BIO_2) {
1155         if (!TEST_ptr(bio2 = BIO_new(BIO_s_mem())))
1156             goto end;
1157     }
1158
1159     setupbio(&irbio, bio1, bio2, initrbio);
1160     setupbio(&iwbio, bio1, bio2, initwbio);
1161
1162     /*
1163      * We want to maintain our own refs to these BIO, so do an up ref for each
1164      * BIO that will have ownership transferred in the SSL_set_bio() call
1165      */
1166     if (irbio != NULL)
1167         BIO_up_ref(irbio);
1168     if (iwbio != NULL && iwbio != irbio)
1169         BIO_up_ref(iwbio);
1170
1171     SSL_set_bio(ssl, irbio, iwbio);
1172
1173     setupbio(&nrbio, bio1, bio2, newrbio);
1174     setupbio(&nwbio, bio1, bio2, newwbio);
1175
1176     /*
1177      * We will (maybe) transfer ownership again so do more up refs.
1178      * SSL_set_bio() has some really complicated ownership rules where BIOs have
1179      * already been set!
1180      */
1181     if (nrbio != NULL
1182             && nrbio != irbio
1183             && (nwbio != iwbio || nrbio != nwbio))
1184         BIO_up_ref(nrbio);
1185     if (nwbio != NULL
1186             && nwbio != nrbio
1187             && (nwbio != iwbio || (nwbio == iwbio && irbio == iwbio)))
1188         BIO_up_ref(nwbio);
1189
1190     SSL_set_bio(ssl, nrbio, nwbio);
1191
1192     testresult = 1;
1193
1194  end:
1195     SSL_free(ssl);
1196     BIO_free(bio1);
1197     BIO_free(bio2);
1198
1199     /*
1200      * This test is checking that the ref counting for SSL_set_bio is correct.
1201      * If we get here and we did too many frees then we will fail in the above
1202      * functions. If we haven't done enough then this will only be detected in
1203      * a crypto-mdebug build
1204      */
1205     SSL_CTX_free(ctx);
1206     return testresult;
1207 }
1208
1209 typedef enum { NO_BIO_CHANGE, CHANGE_RBIO, CHANGE_WBIO } bio_change_t;
1210
1211 static int execute_test_ssl_bio(int pop_ssl, bio_change_t change_bio)
1212 {
1213     BIO *sslbio = NULL, *membio1 = NULL, *membio2 = NULL;
1214     SSL_CTX *ctx;
1215     SSL *ssl = NULL;
1216     int testresult = 0;
1217
1218     if (!TEST_ptr(ctx = SSL_CTX_new(TLS_method()))
1219             || !TEST_ptr(ssl = SSL_new(ctx))
1220             || !TEST_ptr(sslbio = BIO_new(BIO_f_ssl()))
1221             || !TEST_ptr(membio1 = BIO_new(BIO_s_mem())))
1222         goto end;
1223
1224     BIO_set_ssl(sslbio, ssl, BIO_CLOSE);
1225
1226     /*
1227      * If anything goes wrong here then we could leak memory, so this will
1228      * be caught in a crypto-mdebug build
1229      */
1230     BIO_push(sslbio, membio1);
1231
1232     /* Verify changing the rbio/wbio directly does not cause leaks */
1233     if (change_bio != NO_BIO_CHANGE) {
1234         if (!TEST_ptr(membio2 = BIO_new(BIO_s_mem())))
1235             goto end;
1236         if (change_bio == CHANGE_RBIO)
1237             SSL_set0_rbio(ssl, membio2);
1238         else
1239             SSL_set0_wbio(ssl, membio2);
1240     }
1241     ssl = NULL;
1242
1243     if (pop_ssl)
1244         BIO_pop(sslbio);
1245     else
1246         BIO_pop(membio1);
1247
1248     testresult = 1;
1249  end:
1250     BIO_free(membio1);
1251     BIO_free(sslbio);
1252     SSL_free(ssl);
1253     SSL_CTX_free(ctx);
1254
1255     return testresult;
1256 }
1257
1258 static int test_ssl_bio_pop_next_bio(void)
1259 {
1260     return execute_test_ssl_bio(0, NO_BIO_CHANGE);
1261 }
1262
1263 static int test_ssl_bio_pop_ssl_bio(void)
1264 {
1265     return execute_test_ssl_bio(1, NO_BIO_CHANGE);
1266 }
1267
1268 static int test_ssl_bio_change_rbio(void)
1269 {
1270     return execute_test_ssl_bio(0, CHANGE_RBIO);
1271 }
1272
1273 static int test_ssl_bio_change_wbio(void)
1274 {
1275     return execute_test_ssl_bio(0, CHANGE_WBIO);
1276 }
1277
1278 #if !defined(OPENSSL_NO_TLS1_2) || defined(OPENSSL_NO_TLS1_3)
1279 typedef struct {
1280     /* The list of sig algs */
1281     const int *list;
1282     /* The length of the list */
1283     size_t listlen;
1284     /* A sigalgs list in string format */
1285     const char *liststr;
1286     /* Whether setting the list should succeed */
1287     int valid;
1288     /* Whether creating a connection with the list should succeed */
1289     int connsuccess;
1290 } sigalgs_list;
1291
1292 static const int validlist1[] = {NID_sha256, EVP_PKEY_RSA};
1293 # ifndef OPENSSL_NO_EC
1294 static const int validlist2[] = {NID_sha256, EVP_PKEY_RSA, NID_sha512, EVP_PKEY_EC};
1295 static const int validlist3[] = {NID_sha512, EVP_PKEY_EC};
1296 # endif
1297 static const int invalidlist1[] = {NID_undef, EVP_PKEY_RSA};
1298 static const int invalidlist2[] = {NID_sha256, NID_undef};
1299 static const int invalidlist3[] = {NID_sha256, EVP_PKEY_RSA, NID_sha256};
1300 static const int invalidlist4[] = {NID_sha256};
1301 static const sigalgs_list testsigalgs[] = {
1302     {validlist1, OSSL_NELEM(validlist1), NULL, 1, 1},
1303 # ifndef OPENSSL_NO_EC
1304     {validlist2, OSSL_NELEM(validlist2), NULL, 1, 1},
1305     {validlist3, OSSL_NELEM(validlist3), NULL, 1, 0},
1306 # endif
1307     {NULL, 0, "RSA+SHA256", 1, 1},
1308 # ifndef OPENSSL_NO_EC
1309     {NULL, 0, "RSA+SHA256:ECDSA+SHA512", 1, 1},
1310     {NULL, 0, "ECDSA+SHA512", 1, 0},
1311 # endif
1312     {invalidlist1, OSSL_NELEM(invalidlist1), NULL, 0, 0},
1313     {invalidlist2, OSSL_NELEM(invalidlist2), NULL, 0, 0},
1314     {invalidlist3, OSSL_NELEM(invalidlist3), NULL, 0, 0},
1315     {invalidlist4, OSSL_NELEM(invalidlist4), NULL, 0, 0},
1316     {NULL, 0, "RSA", 0, 0},
1317     {NULL, 0, "SHA256", 0, 0},
1318     {NULL, 0, "RSA+SHA256:SHA256", 0, 0},
1319     {NULL, 0, "Invalid", 0, 0}
1320 };
1321
1322 static int test_set_sigalgs(int idx)
1323 {
1324     SSL_CTX *cctx = NULL, *sctx = NULL;
1325     SSL *clientssl = NULL, *serverssl = NULL;
1326     int testresult = 0;
1327     const sigalgs_list *curr;
1328     int testctx;
1329
1330     /* Should never happen */
1331     if (!TEST_size_t_le((size_t)idx, OSSL_NELEM(testsigalgs) * 2))
1332         return 0;
1333
1334     testctx = ((size_t)idx < OSSL_NELEM(testsigalgs));
1335     curr = testctx ? &testsigalgs[idx]
1336                    : &testsigalgs[idx - OSSL_NELEM(testsigalgs)];
1337
1338     if (!TEST_true(create_ssl_ctx_pair(TLS_server_method(),
1339                                        TLS_client_method(), &sctx,
1340                                        &cctx, cert, privkey)))
1341         return 0;
1342
1343     /*
1344      * TODO(TLS1.3): These APIs cannot set TLSv1.3 sig algs so we just test it
1345      * for TLSv1.2 for now until we add a new API.
1346      */
1347     SSL_CTX_set_max_proto_version(cctx, TLS1_2_VERSION);
1348
1349     if (testctx) {
1350         int ret;
1351
1352         if (curr->list != NULL)
1353             ret = SSL_CTX_set1_sigalgs(cctx, curr->list, curr->listlen);
1354         else
1355             ret = SSL_CTX_set1_sigalgs_list(cctx, curr->liststr);
1356
1357         if (!ret) {
1358             if (curr->valid)
1359                 TEST_info("Failure setting sigalgs in SSL_CTX (%d)\n", idx);
1360             else
1361                 testresult = 1;
1362             goto end;
1363         }
1364         if (!curr->valid) {
1365             TEST_info("Not-failed setting sigalgs in SSL_CTX (%d)\n", idx);
1366             goto end;
1367         }
1368     }
1369
1370     if (!TEST_true(create_ssl_objects(sctx, cctx, &serverssl,
1371                                       &clientssl, NULL, NULL)))
1372         goto end;
1373
1374     if (!testctx) {
1375         int ret;
1376
1377         if (curr->list != NULL)
1378             ret = SSL_set1_sigalgs(clientssl, curr->list, curr->listlen);
1379         else
1380             ret = SSL_set1_sigalgs_list(clientssl, curr->liststr);
1381         if (!ret) {
1382             if (curr->valid)
1383                 TEST_info("Failure setting sigalgs in SSL (%d)\n", idx);
1384             else
1385                 testresult = 1;
1386             goto end;
1387         }
1388         if (!curr->valid)
1389             goto end;
1390     }
1391
1392     if (!TEST_int_eq(create_ssl_connection(serverssl, clientssl,
1393                                            SSL_ERROR_NONE),
1394                 curr->connsuccess))
1395         goto end;
1396
1397     testresult = 1;
1398
1399  end:
1400     SSL_free(serverssl);
1401     SSL_free(clientssl);
1402     SSL_CTX_free(sctx);
1403     SSL_CTX_free(cctx);
1404
1405     return testresult;
1406 }
1407 #endif
1408
1409 #ifndef OPENSSL_NO_TLS1_3
1410
1411 static SSL_SESSION *clientpsk = NULL;
1412 static SSL_SESSION *serverpsk = NULL;
1413 static const char *pskid = "Identity";
1414 static const char *srvid;
1415
1416 static int use_session_cb_cnt = 0;
1417 static int find_session_cb_cnt = 0;
1418
1419 static int use_session_cb(SSL *ssl, const EVP_MD *md, const unsigned char **id,
1420                           size_t *idlen, SSL_SESSION **sess)
1421 {
1422     switch (++use_session_cb_cnt) {
1423     case 1:
1424         /* The first call should always have a NULL md */
1425         if (md != NULL)
1426             return 0;
1427         break;
1428
1429     case 2:
1430         /* The second call should always have an md */
1431         if (md == NULL)
1432             return 0;
1433         break;
1434
1435     default:
1436         /* We should only be called a maximum of twice */
1437         return 0;
1438     }
1439
1440     if (clientpsk != NULL)
1441         SSL_SESSION_up_ref(clientpsk);
1442
1443     *sess = clientpsk;
1444     *id = (const unsigned char *)pskid;
1445     *idlen = strlen(pskid);
1446
1447     return 1;
1448 }
1449
1450 static int find_session_cb(SSL *ssl, const unsigned char *identity,
1451                            size_t identity_len, SSL_SESSION **sess)
1452 {
1453     find_session_cb_cnt++;
1454
1455     /* We should only ever be called a maximum of twice per connection */
1456     if (find_session_cb_cnt > 2)
1457         return 0;
1458
1459     if (serverpsk == NULL)
1460         return 0;
1461
1462     /* Identity should match that set by the client */
1463     if (strlen(srvid) != identity_len
1464             || strncmp(srvid, (const char *)identity, identity_len) != 0) {
1465         /* No PSK found, continue but without a PSK */
1466         *sess = NULL;
1467         return 1;
1468     }
1469
1470     SSL_SESSION_up_ref(serverpsk);
1471     *sess = serverpsk;
1472
1473     return 1;
1474 }
1475
1476 #define MSG1    "Hello"
1477 #define MSG2    "World."
1478 #define MSG3    "This"
1479 #define MSG4    "is"
1480 #define MSG5    "a"
1481 #define MSG6    "test"
1482 #define MSG7    "message."
1483
1484 #define TLS13_AES_256_GCM_SHA384_BYTES  ((const unsigned char *)"\x13\x02")
1485
1486 /*
1487  * Helper method to setup objects for early data test. Caller frees objects on
1488  * error.
1489  */
1490 static int setupearly_data_test(SSL_CTX **cctx, SSL_CTX **sctx, SSL **clientssl,
1491                                 SSL **serverssl, SSL_SESSION **sess, int idx)
1492 {
1493     if (!TEST_true(create_ssl_ctx_pair(TLS_server_method(),
1494                                        TLS_client_method(), sctx,
1495                                        cctx, cert, privkey))
1496         || !TEST_true(SSL_CTX_set_max_early_data(*sctx,
1497                                                  SSL3_RT_MAX_PLAIN_LENGTH))
1498         || !TEST_true(SSL_CTX_set_max_early_data(*cctx,
1499                                                  SSL3_RT_MAX_PLAIN_LENGTH)))
1500         return 0;
1501
1502     if (idx == 1) {
1503         /* When idx == 1 we repeat the tests with read_ahead set */
1504         SSL_CTX_set_read_ahead(*cctx, 1);
1505         SSL_CTX_set_read_ahead(*sctx, 1);
1506     } else if (idx == 2) {
1507         /* When idx == 2 we are doing early_data with a PSK. Set up callbacks */
1508         SSL_CTX_set_psk_use_session_callback(*cctx, use_session_cb);
1509         SSL_CTX_set_psk_find_session_callback(*sctx, find_session_cb);
1510         use_session_cb_cnt = 0;
1511         find_session_cb_cnt = 0;
1512         srvid = pskid;
1513     }
1514
1515     if (!TEST_true(create_ssl_objects(*sctx, *cctx, serverssl, clientssl,
1516                                       NULL, NULL)))
1517         return 0;
1518
1519     /*
1520      * For one of the run throughs (doesn't matter which one), we'll try sending
1521      * some SNI data in the initial ClientHello. This will be ignored (because
1522      * there is no SNI cb set up by the server), so it should not impact
1523      * early_data.
1524      */
1525     if (idx == 1
1526             && !TEST_true(SSL_set_tlsext_host_name(*clientssl, "localhost")))
1527         return 0;
1528
1529     if (idx == 2) {
1530         /* Create the PSK */
1531         const SSL_CIPHER *cipher = NULL;
1532         const unsigned char key[] = {
1533             0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a,
1534             0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0x10, 0x11, 0x12, 0x13, 0x14, 0x15,
1535             0x16, 0x17, 0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f, 0x20,
1536             0x21, 0x22, 0x23, 0x24, 0x25, 0x26, 0x27, 0x28, 0x29, 0x2a, 0x2b,
1537             0x2c, 0x2d, 0x2e, 0x2f
1538         };
1539
1540         cipher = SSL_CIPHER_find(*clientssl, TLS13_AES_256_GCM_SHA384_BYTES);
1541         clientpsk = SSL_SESSION_new();
1542         if (!TEST_ptr(clientpsk)
1543                 || !TEST_ptr(cipher)
1544                 || !TEST_true(SSL_SESSION_set1_master_key(clientpsk, key,
1545                                                           sizeof(key)))
1546                 || !TEST_true(SSL_SESSION_set_cipher(clientpsk, cipher))
1547                 || !TEST_true(
1548                         SSL_SESSION_set_protocol_version(clientpsk,
1549                                                          TLS1_3_VERSION))
1550                    /*
1551                     * We just choose an arbitrary value for max_early_data which
1552                     * should be big enough for testing purposes.
1553                     */
1554                 || !TEST_true(SSL_SESSION_set_max_early_data(clientpsk,
1555                                                              0x100))
1556                 || !TEST_true(SSL_SESSION_up_ref(clientpsk))) {
1557             SSL_SESSION_free(clientpsk);
1558             clientpsk = NULL;
1559             return 0;
1560         }
1561         serverpsk = clientpsk;
1562
1563         if (sess != NULL)
1564             *sess = clientpsk;
1565         return 1;
1566     }
1567
1568     if (sess == NULL)
1569         return 1;
1570
1571     if (!TEST_true(create_ssl_connection(*serverssl, *clientssl,
1572                                          SSL_ERROR_NONE)))
1573         return 0;
1574
1575     *sess = SSL_get1_session(*clientssl);
1576     SSL_shutdown(*clientssl);
1577     SSL_shutdown(*serverssl);
1578     SSL_free(*serverssl);
1579     SSL_free(*clientssl);
1580     *serverssl = *clientssl = NULL;
1581
1582     if (!TEST_true(create_ssl_objects(*sctx, *cctx, serverssl,
1583                                       clientssl, NULL, NULL))
1584             || !TEST_true(SSL_set_session(*clientssl, *sess)))
1585         return 0;
1586
1587     return 1;
1588 }
1589
1590 static int test_early_data_read_write(int idx)
1591 {
1592     SSL_CTX *cctx = NULL, *sctx = NULL;
1593     SSL *clientssl = NULL, *serverssl = NULL;
1594     int testresult = 0;
1595     SSL_SESSION *sess = NULL;
1596     unsigned char buf[20], data[1024];
1597     size_t readbytes, written, eoedlen, rawread, rawwritten;
1598     BIO *rbio;
1599
1600     if (!TEST_true(setupearly_data_test(&cctx, &sctx, &clientssl,
1601                                         &serverssl, &sess, idx)))
1602         goto end;
1603
1604     /* Write and read some early data */
1605     if (!TEST_true(SSL_write_early_data(clientssl, MSG1, strlen(MSG1),
1606                                         &written))
1607             || !TEST_size_t_eq(written, strlen(MSG1))
1608             || !TEST_int_eq(SSL_read_early_data(serverssl, buf,
1609                                                 sizeof(buf), &readbytes),
1610                             SSL_READ_EARLY_DATA_SUCCESS)
1611             || !TEST_mem_eq(MSG1, readbytes, buf, strlen(MSG1))
1612             || !TEST_int_eq(SSL_get_early_data_status(serverssl),
1613                             SSL_EARLY_DATA_ACCEPTED))
1614         goto end;
1615
1616     /*
1617      * Server should be able to write data, and client should be able to
1618      * read it.
1619      */
1620     if (!TEST_true(SSL_write_early_data(serverssl, MSG2, strlen(MSG2),
1621                                         &written))
1622             || !TEST_size_t_eq(written, strlen(MSG2))
1623             || !TEST_true(SSL_read_ex(clientssl, buf, sizeof(buf), &readbytes))
1624             || !TEST_mem_eq(buf, readbytes, MSG2, strlen(MSG2)))
1625         goto end;
1626
1627     /* Even after reading normal data, client should be able write early data */
1628     if (!TEST_true(SSL_write_early_data(clientssl, MSG3, strlen(MSG3),
1629                                         &written))
1630             || !TEST_size_t_eq(written, strlen(MSG3)))
1631         goto end;
1632
1633     /* Server should still be able read early data after writing data */
1634     if (!TEST_int_eq(SSL_read_early_data(serverssl, buf, sizeof(buf),
1635                                          &readbytes),
1636                      SSL_READ_EARLY_DATA_SUCCESS)
1637             || !TEST_mem_eq(buf, readbytes, MSG3, strlen(MSG3)))
1638         goto end;
1639
1640     /* Write more data from server and read it from client */
1641     if (!TEST_true(SSL_write_early_data(serverssl, MSG4, strlen(MSG4),
1642                                         &written))
1643             || !TEST_size_t_eq(written, strlen(MSG4))
1644             || !TEST_true(SSL_read_ex(clientssl, buf, sizeof(buf), &readbytes))
1645             || !TEST_mem_eq(buf, readbytes, MSG4, strlen(MSG4)))
1646         goto end;
1647
1648     /*
1649      * If client writes normal data it should mean writing early data is no
1650      * longer possible.
1651      */
1652     if (!TEST_true(SSL_write_ex(clientssl, MSG5, strlen(MSG5), &written))
1653             || !TEST_size_t_eq(written, strlen(MSG5))
1654             || !TEST_int_eq(SSL_get_early_data_status(clientssl),
1655                             SSL_EARLY_DATA_ACCEPTED))
1656         goto end;
1657
1658     /*
1659      * At this point the client has written EndOfEarlyData, ClientFinished and
1660      * normal (fully protected) data. We are going to cause a delay between the
1661      * arrival of EndOfEarlyData and ClientFinished. We read out all the data
1662      * in the read BIO, and then just put back the EndOfEarlyData message.
1663      */
1664     rbio = SSL_get_rbio(serverssl);
1665     if (!TEST_true(BIO_read_ex(rbio, data, sizeof(data), &rawread))
1666             || !TEST_size_t_lt(rawread, sizeof(data))
1667             || !TEST_size_t_gt(rawread, SSL3_RT_HEADER_LENGTH))
1668         goto end;
1669
1670     /* Record length is in the 4th and 5th bytes of the record header */
1671     eoedlen = SSL3_RT_HEADER_LENGTH + (data[3] << 8 | data[4]);
1672     if (!TEST_true(BIO_write_ex(rbio, data, eoedlen, &rawwritten))
1673             || !TEST_size_t_eq(rawwritten, eoedlen))
1674         goto end;
1675
1676     /* Server should be told that there is no more early data */
1677     if (!TEST_int_eq(SSL_read_early_data(serverssl, buf, sizeof(buf),
1678                                          &readbytes),
1679                      SSL_READ_EARLY_DATA_FINISH)
1680             || !TEST_size_t_eq(readbytes, 0))
1681         goto end;
1682
1683     /*
1684      * Server has not finished init yet, so should still be able to write early
1685      * data.
1686      */
1687     if (!TEST_true(SSL_write_early_data(serverssl, MSG6, strlen(MSG6),
1688                                         &written))
1689             || !TEST_size_t_eq(written, strlen(MSG6)))
1690         goto end;
1691
1692     /* Push the ClientFinished and the normal data back into the server rbio */
1693     if (!TEST_true(BIO_write_ex(rbio, data + eoedlen, rawread - eoedlen,
1694                                 &rawwritten))
1695             || !TEST_size_t_eq(rawwritten, rawread - eoedlen))
1696         goto end;
1697
1698     /* Server should be able to read normal data */
1699     if (!TEST_true(SSL_read_ex(serverssl, buf, sizeof(buf), &readbytes))
1700             || !TEST_size_t_eq(readbytes, strlen(MSG5)))
1701         goto end;
1702
1703     /* Client and server should not be able to write/read early data now */
1704     if (!TEST_false(SSL_write_early_data(clientssl, MSG6, strlen(MSG6),
1705                                          &written)))
1706         goto end;
1707     ERR_clear_error();
1708     if (!TEST_int_eq(SSL_read_early_data(serverssl, buf, sizeof(buf),
1709                                          &readbytes),
1710                      SSL_READ_EARLY_DATA_ERROR))
1711         goto end;
1712     ERR_clear_error();
1713
1714     /* Client should be able to read the data sent by the server */
1715     if (!TEST_true(SSL_read_ex(clientssl, buf, sizeof(buf), &readbytes))
1716             || !TEST_mem_eq(buf, readbytes, MSG6, strlen(MSG6)))
1717         goto end;
1718
1719     /*
1720      * Make sure we process the NewSessionTicket. This arrives post-handshake.
1721      * We attempt a read which we do not expect to return any data.
1722      */
1723     if (!TEST_false(SSL_read_ex(clientssl, buf, sizeof(buf), &readbytes)))
1724         goto end;
1725
1726     /* Server should be able to write normal data */
1727     if (!TEST_true(SSL_write_ex(serverssl, MSG7, strlen(MSG7), &written))
1728             || !TEST_size_t_eq(written, strlen(MSG7))
1729             || !TEST_true(SSL_read_ex(clientssl, buf, sizeof(buf), &readbytes))
1730             || !TEST_mem_eq(buf, readbytes, MSG7, strlen(MSG7)))
1731         goto end;
1732
1733     /* We keep the PSK session around if using PSK */
1734     if (idx != 2)
1735         SSL_SESSION_free(sess);
1736     sess = SSL_get1_session(clientssl);
1737     use_session_cb_cnt = 0;
1738     find_session_cb_cnt = 0;
1739
1740     SSL_shutdown(clientssl);
1741     SSL_shutdown(serverssl);
1742     SSL_free(serverssl);
1743     SSL_free(clientssl);
1744     serverssl = clientssl = NULL;
1745     if (!TEST_true(create_ssl_objects(sctx, cctx, &serverssl,
1746                                       &clientssl, NULL, NULL))
1747             || !TEST_true(SSL_set_session(clientssl, sess)))
1748         goto end;
1749
1750     /* Write and read some early data */
1751     if (!TEST_true(SSL_write_early_data(clientssl, MSG1, strlen(MSG1),
1752                                         &written))
1753             || !TEST_size_t_eq(written, strlen(MSG1))
1754             || !TEST_int_eq(SSL_read_early_data(serverssl, buf, sizeof(buf),
1755                                                 &readbytes),
1756                             SSL_READ_EARLY_DATA_SUCCESS)
1757             || !TEST_mem_eq(buf, readbytes, MSG1, strlen(MSG1)))
1758         goto end;
1759
1760     if (!TEST_int_gt(SSL_connect(clientssl), 0)
1761             || !TEST_int_gt(SSL_accept(serverssl), 0))
1762         goto end;
1763
1764     /* Client and server should not be able to write/read early data now */
1765     if (!TEST_false(SSL_write_early_data(clientssl, MSG6, strlen(MSG6),
1766                                          &written)))
1767         goto end;
1768     ERR_clear_error();
1769     if (!TEST_int_eq(SSL_read_early_data(serverssl, buf, sizeof(buf),
1770                                          &readbytes),
1771                      SSL_READ_EARLY_DATA_ERROR))
1772         goto end;
1773     ERR_clear_error();
1774
1775     /* Client and server should be able to write/read normal data */
1776     if (!TEST_true(SSL_write_ex(clientssl, MSG5, strlen(MSG5), &written))
1777             || !TEST_size_t_eq(written, strlen(MSG5))
1778             || !TEST_true(SSL_read_ex(serverssl, buf, sizeof(buf), &readbytes))
1779             || !TEST_size_t_eq(readbytes, strlen(MSG5)))
1780         goto end;
1781
1782     testresult = 1;
1783
1784  end:
1785     if (sess != clientpsk)
1786         SSL_SESSION_free(sess);
1787     SSL_SESSION_free(clientpsk);
1788     SSL_SESSION_free(serverpsk);
1789     clientpsk = serverpsk = NULL;
1790     SSL_free(serverssl);
1791     SSL_free(clientssl);
1792     SSL_CTX_free(sctx);
1793     SSL_CTX_free(cctx);
1794     return testresult;
1795 }
1796
1797 /*
1798  * Helper function to test that a server attempting to read early data can
1799  * handle a connection from a client where the early data should be skipped.
1800  */
1801 static int early_data_skip_helper(int hrr, int idx)
1802 {
1803     SSL_CTX *cctx = NULL, *sctx = NULL;
1804     SSL *clientssl = NULL, *serverssl = NULL;
1805     int testresult = 0;
1806     SSL_SESSION *sess = NULL;
1807     unsigned char buf[20];
1808     size_t readbytes, written;
1809
1810     if (!TEST_true(setupearly_data_test(&cctx, &sctx, &clientssl,
1811                                         &serverssl, &sess, idx)))
1812         goto end;
1813
1814     if (hrr) {
1815         /* Force an HRR to occur */
1816         if (!TEST_true(SSL_set1_groups_list(serverssl, "P-256")))
1817             goto end;
1818     } else if (idx == 2) {
1819         /*
1820          * We force early_data rejection by ensuring the PSK identity is
1821          * unrecognised
1822          */
1823         srvid = "Dummy Identity";
1824     } else {
1825         /*
1826          * Deliberately corrupt the creation time. We take 20 seconds off the
1827          * time. It could be any value as long as it is not within tolerance.
1828          * This should mean the ticket is rejected.
1829          */
1830         if (!TEST_true(SSL_SESSION_set_time(sess, (long)(time(NULL) - 20))))
1831             goto end;
1832     }
1833
1834     /* Write some early data */
1835     if (!TEST_true(SSL_write_early_data(clientssl, MSG1, strlen(MSG1),
1836                                         &written))
1837             || !TEST_size_t_eq(written, strlen(MSG1)))
1838         goto end;
1839
1840     /* Server should reject the early data and skip over it */
1841     if (!TEST_int_eq(SSL_read_early_data(serverssl, buf, sizeof(buf),
1842                                          &readbytes),
1843                      SSL_READ_EARLY_DATA_FINISH)
1844             || !TEST_size_t_eq(readbytes, 0)
1845             || !TEST_int_eq(SSL_get_early_data_status(serverssl),
1846                             SSL_EARLY_DATA_REJECTED))
1847         goto end;
1848
1849     if (hrr) {
1850         /*
1851          * Finish off the handshake. We perform the same writes and reads as
1852          * further down but we expect them to fail due to the incomplete
1853          * handshake.
1854          */
1855         if (!TEST_false(SSL_write_ex(clientssl, MSG2, strlen(MSG2), &written))
1856                 || !TEST_false(SSL_read_ex(serverssl, buf, sizeof(buf),
1857                                &readbytes)))
1858             goto end;
1859     }
1860
1861     /* Should be able to send normal data despite rejection of early data */
1862     if (!TEST_true(SSL_write_ex(clientssl, MSG2, strlen(MSG2), &written))
1863             || !TEST_size_t_eq(written, strlen(MSG2))
1864             || !TEST_int_eq(SSL_get_early_data_status(clientssl),
1865                             SSL_EARLY_DATA_REJECTED)
1866             || !TEST_true(SSL_read_ex(serverssl, buf, sizeof(buf), &readbytes))
1867             || !TEST_mem_eq(buf, readbytes, MSG2, strlen(MSG2)))
1868         goto end;
1869
1870     testresult = 1;
1871
1872  end:
1873     if (sess != clientpsk)
1874         SSL_SESSION_free(clientpsk);
1875     SSL_SESSION_free(serverpsk);
1876     clientpsk = serverpsk = NULL;
1877     SSL_SESSION_free(sess);
1878     SSL_free(serverssl);
1879     SSL_free(clientssl);
1880     SSL_CTX_free(sctx);
1881     SSL_CTX_free(cctx);
1882     return testresult;
1883 }
1884
1885 /*
1886  * Test that a server attempting to read early data can handle a connection
1887  * from a client where the early data is not acceptable.
1888  */
1889 static int test_early_data_skip(int idx)
1890 {
1891     return early_data_skip_helper(0, idx);
1892 }
1893
1894 /*
1895  * Test that a server attempting to read early data can handle a connection
1896  * from a client where an HRR occurs.
1897  */
1898 static int test_early_data_skip_hrr(int idx)
1899 {
1900     return early_data_skip_helper(1, idx);
1901 }
1902
1903 /*
1904  * Test that a server attempting to read early data can handle a connection
1905  * from a client that doesn't send any.
1906  */
1907 static int test_early_data_not_sent(int idx)
1908 {
1909     SSL_CTX *cctx = NULL, *sctx = NULL;
1910     SSL *clientssl = NULL, *serverssl = NULL;
1911     int testresult = 0;
1912     SSL_SESSION *sess = NULL;
1913     unsigned char buf[20];
1914     size_t readbytes, written;
1915
1916     if (!TEST_true(setupearly_data_test(&cctx, &sctx, &clientssl,
1917                                         &serverssl, &sess, idx)))
1918         goto end;
1919
1920     /* Write some data - should block due to handshake with server */
1921     SSL_set_connect_state(clientssl);
1922     if (!TEST_false(SSL_write_ex(clientssl, MSG1, strlen(MSG1), &written)))
1923         goto end;
1924
1925     /* Server should detect that early data has not been sent */
1926     if (!TEST_int_eq(SSL_read_early_data(serverssl, buf, sizeof(buf),
1927                                          &readbytes),
1928                      SSL_READ_EARLY_DATA_FINISH)
1929             || !TEST_size_t_eq(readbytes, 0)
1930             || !TEST_int_eq(SSL_get_early_data_status(serverssl),
1931                             SSL_EARLY_DATA_NOT_SENT)
1932             || !TEST_int_eq(SSL_get_early_data_status(clientssl),
1933                             SSL_EARLY_DATA_NOT_SENT))
1934         goto end;
1935
1936     /* Continue writing the message we started earlier */
1937     if (!TEST_true(SSL_write_ex(clientssl, MSG1, strlen(MSG1), &written))
1938             || !TEST_size_t_eq(written, strlen(MSG1))
1939             || !TEST_true(SSL_read_ex(serverssl, buf, sizeof(buf), &readbytes))
1940             || !TEST_mem_eq(buf, readbytes, MSG1, strlen(MSG1))
1941             || !SSL_write_ex(serverssl, MSG2, strlen(MSG2), &written)
1942             || !TEST_size_t_eq(written, strlen(MSG2)))
1943         goto end;
1944
1945     /*
1946      * Should block due to the NewSessionTicket arrival unless we're using
1947      * read_ahead
1948      */
1949     if (idx != 1) {
1950         if (!TEST_false(SSL_read_ex(clientssl, buf, sizeof(buf), &readbytes)))
1951             goto end;
1952     }
1953
1954     if (!TEST_true(SSL_read_ex(clientssl, buf, sizeof(buf), &readbytes))
1955             || !TEST_mem_eq(buf, readbytes, MSG2, strlen(MSG2)))
1956         goto end;
1957
1958     testresult = 1;
1959
1960  end:
1961     /* If using PSK then clientpsk and sess are the same */
1962     SSL_SESSION_free(sess);
1963     SSL_SESSION_free(serverpsk);
1964     clientpsk = serverpsk = NULL;
1965     SSL_free(serverssl);
1966     SSL_free(clientssl);
1967     SSL_CTX_free(sctx);
1968     SSL_CTX_free(cctx);
1969     return testresult;
1970 }
1971
1972 static int hostname_cb(SSL *s, int *al, void *arg)
1973 {
1974     const char *hostname = SSL_get_servername(s, TLSEXT_NAMETYPE_host_name);
1975
1976     if (hostname != NULL && strcmp(hostname, "goodhost") == 0)
1977         return  SSL_TLSEXT_ERR_OK;
1978
1979     return SSL_TLSEXT_ERR_NOACK;
1980 }
1981
1982 static const char *servalpn;
1983
1984 static int alpn_select_cb(SSL *ssl, const unsigned char **out,
1985                           unsigned char *outlen, const unsigned char *in,
1986                           unsigned int inlen, void *arg)
1987 {
1988     unsigned int protlen = 0;
1989     const unsigned char *prot;
1990
1991     for (prot = in; prot < in + inlen; prot += protlen) {
1992         protlen = *prot++;
1993         if (in + inlen < prot + protlen)
1994             return SSL_TLSEXT_ERR_NOACK;
1995
1996         if (protlen == strlen(servalpn)
1997                 && memcmp(prot, servalpn, protlen) == 0) {
1998             *out = prot;
1999             *outlen = protlen;
2000             return SSL_TLSEXT_ERR_OK;
2001         }
2002     }
2003
2004     return SSL_TLSEXT_ERR_NOACK;
2005 }
2006
2007 /* Test that a PSK can be used to send early_data */
2008 static int test_early_data_psk(int idx)
2009 {
2010     SSL_CTX *cctx = NULL, *sctx = NULL;
2011     SSL *clientssl = NULL, *serverssl = NULL;
2012     int testresult = 0;
2013     SSL_SESSION *sess = NULL;
2014     unsigned char alpnlist[] = {
2015         0x08, 'g', 'o', 'o', 'd', 'a', 'l', 'p', 'n', 0x07, 'b', 'a', 'd', 'a',
2016         'l', 'p', 'n'
2017     };
2018 #define GOODALPNLEN     9
2019 #define BADALPNLEN      8
2020 #define GOODALPN        (alpnlist)
2021 #define BADALPN         (alpnlist + GOODALPNLEN)
2022     int err = 0;
2023     unsigned char buf[20];
2024     size_t readbytes, written;
2025     int readearlyres = SSL_READ_EARLY_DATA_SUCCESS, connectres = 1;
2026     int edstatus = SSL_EARLY_DATA_ACCEPTED;
2027
2028     /* We always set this up with a final parameter of "2" for PSK */
2029     if (!TEST_true(setupearly_data_test(&cctx, &sctx, &clientssl,
2030                                         &serverssl, &sess, 2)))
2031         goto end;
2032
2033     servalpn = "goodalpn";
2034
2035     /*
2036      * Note: There is no test for inconsistent SNI with late client detection.
2037      * This is because servers do not acknowledge SNI even if they are using
2038      * it in a resumption handshake - so it is not actually possible for a
2039      * client to detect a problem.
2040      */
2041     switch (idx) {
2042     case 0:
2043         /* Set inconsistent SNI (early client detection) */
2044         err = SSL_R_INCONSISTENT_EARLY_DATA_SNI;
2045         if (!TEST_true(SSL_SESSION_set1_hostname(sess, "goodhost"))
2046                 || !TEST_true(SSL_set_tlsext_host_name(clientssl, "badhost")))
2047             goto end;
2048         break;
2049
2050     case 1:
2051         /* Set inconsistent ALPN (early client detection) */
2052         err = SSL_R_INCONSISTENT_EARLY_DATA_ALPN;
2053         /* SSL_set_alpn_protos returns 0 for success and 1 for failure */
2054         if (!TEST_true(SSL_SESSION_set1_alpn_selected(sess, GOODALPN,
2055                                                       GOODALPNLEN))
2056                 || !TEST_false(SSL_set_alpn_protos(clientssl, BADALPN,
2057                                                    BADALPNLEN)))
2058             goto end;
2059         break;
2060
2061     case 2:
2062         /*
2063          * Set invalid protocol version. Technically this affects PSKs without
2064          * early_data too, but we test it here because it is similar to the
2065          * SNI/ALPN consistency tests.
2066          */
2067         err = SSL_R_BAD_PSK;
2068         if (!TEST_true(SSL_SESSION_set_protocol_version(sess, TLS1_2_VERSION)))
2069             goto end;
2070         break;
2071
2072     case 3:
2073         /*
2074          * Set inconsistent SNI (server detected). In this case the connection
2075          * will succeed but reject early_data.
2076          */
2077         SSL_SESSION_free(serverpsk);
2078         serverpsk = SSL_SESSION_dup(clientpsk);
2079         if (!TEST_ptr(serverpsk)
2080                 || !TEST_true(SSL_SESSION_set1_hostname(serverpsk, "badhost")))
2081             goto end;
2082         edstatus = SSL_EARLY_DATA_REJECTED;
2083         readearlyres = SSL_READ_EARLY_DATA_FINISH;
2084         /* Fall through */
2085     case 4:
2086         /* Set consistent SNI */
2087         if (!TEST_true(SSL_SESSION_set1_hostname(sess, "goodhost"))
2088                 || !TEST_true(SSL_set_tlsext_host_name(clientssl, "goodhost"))
2089                 || !TEST_true(SSL_CTX_set_tlsext_servername_callback(sctx,
2090                                 hostname_cb)))
2091             goto end;
2092         break;
2093
2094     case 5:
2095         /*
2096          * Set inconsistent ALPN (server detected). In this case the connection
2097          * will succeed but reject early_data.
2098          */
2099         servalpn = "badalpn";
2100         edstatus = SSL_EARLY_DATA_REJECTED;
2101         readearlyres = SSL_READ_EARLY_DATA_FINISH;
2102         /* Fall through */
2103     case 6:
2104         /*
2105          * Set consistent ALPN.
2106          * SSL_set_alpn_protos returns 0 for success and 1 for failure. It
2107          * accepts a list of protos (each one length prefixed).
2108          * SSL_set1_alpn_selected accepts a single protocol (not length
2109          * prefixed)
2110          */
2111         if (!TEST_true(SSL_SESSION_set1_alpn_selected(sess, GOODALPN + 1,
2112                                                       GOODALPNLEN - 1))
2113                 || !TEST_false(SSL_set_alpn_protos(clientssl, GOODALPN,
2114                                                    GOODALPNLEN)))
2115             goto end;
2116
2117         SSL_CTX_set_alpn_select_cb(sctx, alpn_select_cb, NULL);
2118         break;
2119
2120     case 7:
2121         /* Set inconsistent ALPN (late client detection) */
2122         SSL_SESSION_free(serverpsk);
2123         serverpsk = SSL_SESSION_dup(clientpsk);
2124         if (!TEST_ptr(serverpsk)
2125                 || !TEST_true(SSL_SESSION_set1_alpn_selected(clientpsk,
2126                                                              BADALPN + 1,
2127                                                              BADALPNLEN - 1))
2128                 || !TEST_true(SSL_SESSION_set1_alpn_selected(serverpsk,
2129                                                              GOODALPN + 1,
2130                                                              GOODALPNLEN - 1))
2131                 || !TEST_false(SSL_set_alpn_protos(clientssl, alpnlist,
2132                                                    sizeof(alpnlist))))
2133             goto end;
2134         SSL_CTX_set_alpn_select_cb(sctx, alpn_select_cb, NULL);
2135         edstatus = SSL_EARLY_DATA_ACCEPTED;
2136         readearlyres = SSL_READ_EARLY_DATA_SUCCESS;
2137         /* SSL_connect() call should fail */
2138         connectres = -1;
2139         break;
2140
2141     default:
2142         TEST_error("Bad test index");
2143         goto end;
2144     }
2145
2146     SSL_set_connect_state(clientssl);
2147     if (err != 0) {
2148         if (!TEST_false(SSL_write_early_data(clientssl, MSG1, strlen(MSG1),
2149                                             &written))
2150                 || !TEST_int_eq(SSL_get_error(clientssl, 0), SSL_ERROR_SSL)
2151                 || !TEST_int_eq(ERR_GET_REASON(ERR_get_error()), err))
2152             goto end;
2153     } else {
2154         if (!TEST_true(SSL_write_early_data(clientssl, MSG1, strlen(MSG1),
2155                                             &written)))
2156             goto end;
2157
2158         if (!TEST_int_eq(SSL_read_early_data(serverssl, buf, sizeof(buf),
2159                                              &readbytes), readearlyres)
2160                 || (readearlyres == SSL_READ_EARLY_DATA_SUCCESS
2161                     && !TEST_mem_eq(buf, readbytes, MSG1, strlen(MSG1)))
2162                 || !TEST_int_eq(SSL_get_early_data_status(serverssl), edstatus)
2163                 || !TEST_int_eq(SSL_connect(clientssl), connectres))
2164             goto end;
2165     }
2166
2167     testresult = 1;
2168
2169  end:
2170     SSL_SESSION_free(clientpsk);
2171     SSL_SESSION_free(serverpsk);
2172     clientpsk = serverpsk = NULL;
2173     SSL_free(serverssl);
2174     SSL_free(clientssl);
2175     SSL_CTX_free(sctx);
2176     SSL_CTX_free(cctx);
2177     return testresult;
2178 }
2179
2180 /*
2181  * Test that a server that doesn't try to read early data can handle a
2182  * client sending some.
2183  */
2184 static int test_early_data_not_expected(int idx)
2185 {
2186     SSL_CTX *cctx = NULL, *sctx = NULL;
2187     SSL *clientssl = NULL, *serverssl = NULL;
2188     int testresult = 0;
2189     SSL_SESSION *sess = NULL;
2190     unsigned char buf[20];
2191     size_t readbytes, written;
2192
2193     if (!TEST_true(setupearly_data_test(&cctx, &sctx, &clientssl,
2194                                         &serverssl, &sess, idx)))
2195         goto end;
2196
2197     /* Write some early data */
2198     if (!TEST_true(SSL_write_early_data(clientssl, MSG1, strlen(MSG1),
2199                                         &written)))
2200         goto end;
2201
2202     /*
2203      * Server should skip over early data and then block waiting for client to
2204      * continue handshake
2205      */
2206     if (!TEST_int_le(SSL_accept(serverssl), 0)
2207      || !TEST_int_gt(SSL_connect(clientssl), 0)
2208      || !TEST_int_eq(SSL_get_early_data_status(serverssl),
2209                      SSL_EARLY_DATA_REJECTED)
2210      || !TEST_int_gt(SSL_accept(serverssl), 0)
2211      || !TEST_int_eq(SSL_get_early_data_status(clientssl),
2212                      SSL_EARLY_DATA_REJECTED))
2213         goto end;
2214
2215     /* Send some normal data from client to server */
2216     if (!TEST_true(SSL_write_ex(clientssl, MSG2, strlen(MSG2), &written))
2217             || !TEST_size_t_eq(written, strlen(MSG2)))
2218         goto end;
2219
2220     if (!TEST_true(SSL_read_ex(serverssl, buf, sizeof(buf), &readbytes))
2221             || !TEST_mem_eq(buf, readbytes, MSG2, strlen(MSG2)))
2222         goto end;
2223
2224     testresult = 1;
2225
2226  end:
2227     /* If using PSK then clientpsk and sess are the same */
2228     SSL_SESSION_free(sess);
2229     SSL_SESSION_free(serverpsk);
2230     clientpsk = serverpsk = NULL;
2231     SSL_free(serverssl);
2232     SSL_free(clientssl);
2233     SSL_CTX_free(sctx);
2234     SSL_CTX_free(cctx);
2235     return testresult;
2236 }
2237
2238
2239 # ifndef OPENSSL_NO_TLS1_2
2240 /*
2241  * Test that a server attempting to read early data can handle a connection
2242  * from a TLSv1.2 client.
2243  */
2244 static int test_early_data_tls1_2(int idx)
2245 {
2246     SSL_CTX *cctx = NULL, *sctx = NULL;
2247     SSL *clientssl = NULL, *serverssl = NULL;
2248     int testresult = 0;
2249     unsigned char buf[20];
2250     size_t readbytes, written;
2251
2252     if (!TEST_true(setupearly_data_test(&cctx, &sctx, &clientssl,
2253                                         &serverssl, NULL, idx)))
2254         goto end;
2255
2256     /* Write some data - should block due to handshake with server */
2257     SSL_set_max_proto_version(clientssl, TLS1_2_VERSION);
2258     SSL_set_connect_state(clientssl);
2259     if (!TEST_false(SSL_write_ex(clientssl, MSG1, strlen(MSG1), &written)))
2260         goto end;
2261
2262     /*
2263      * Server should do TLSv1.2 handshake. First it will block waiting for more
2264      * messages from client after ServerDone. Then SSL_read_early_data should
2265      * finish and detect that early data has not been sent
2266      */
2267     if (!TEST_int_eq(SSL_read_early_data(serverssl, buf, sizeof(buf),
2268                                          &readbytes),
2269                      SSL_READ_EARLY_DATA_ERROR))
2270         goto end;
2271
2272     /*
2273      * Continue writing the message we started earlier. Will still block waiting
2274      * for the CCS/Finished from server
2275      */
2276     if (!TEST_false(SSL_write_ex(clientssl, MSG1, strlen(MSG1), &written))
2277             || !TEST_int_eq(SSL_read_early_data(serverssl, buf, sizeof(buf),
2278                                                 &readbytes),
2279                             SSL_READ_EARLY_DATA_FINISH)
2280             || !TEST_size_t_eq(readbytes, 0)
2281             || !TEST_int_eq(SSL_get_early_data_status(serverssl),
2282                             SSL_EARLY_DATA_NOT_SENT))
2283         goto end;
2284
2285     /* Continue writing the message we started earlier */
2286     if (!TEST_true(SSL_write_ex(clientssl, MSG1, strlen(MSG1), &written))
2287             || !TEST_size_t_eq(written, strlen(MSG1))
2288             || !TEST_int_eq(SSL_get_early_data_status(clientssl),
2289                             SSL_EARLY_DATA_NOT_SENT)
2290             || !TEST_true(SSL_read_ex(serverssl, buf, sizeof(buf), &readbytes))
2291             || !TEST_mem_eq(buf, readbytes, MSG1, strlen(MSG1))
2292             || !TEST_true(SSL_write_ex(serverssl, MSG2, strlen(MSG2), &written))
2293             || !TEST_size_t_eq(written, strlen(MSG2))
2294             || !SSL_read_ex(clientssl, buf, sizeof(buf), &readbytes)
2295             || !TEST_mem_eq(buf, readbytes, MSG2, strlen(MSG2)))
2296         goto end;
2297
2298     testresult = 1;
2299
2300  end:
2301     /* If using PSK then clientpsk and sess are the same */
2302     SSL_SESSION_free(clientpsk);
2303     SSL_SESSION_free(serverpsk);
2304     clientpsk = serverpsk = NULL;
2305     SSL_free(serverssl);
2306     SSL_free(clientssl);
2307     SSL_CTX_free(sctx);
2308     SSL_CTX_free(cctx);
2309
2310     return testresult;
2311 }
2312 # endif /* OPENSSL_NO_TLS1_2 */
2313
2314 static int test_ciphersuite_change(void)
2315 {
2316     SSL_CTX *cctx = NULL, *sctx = NULL;
2317     SSL *clientssl = NULL, *serverssl = NULL;
2318     SSL_SESSION *clntsess = NULL;
2319     int testresult = 0;
2320     const SSL_CIPHER *aes_128_gcm_sha256 = NULL;
2321
2322     /* Create a session based on SHA-256 */
2323     if (!TEST_true(create_ssl_ctx_pair(TLS_server_method(),
2324                                        TLS_client_method(), &sctx,
2325                                        &cctx, cert, privkey))
2326             || !TEST_true(SSL_CTX_set_cipher_list(cctx,
2327                                                   "TLS13-AES-128-GCM-SHA256"))
2328             || !TEST_true(create_ssl_objects(sctx, cctx, &serverssl,
2329                                           &clientssl, NULL, NULL))
2330             || !TEST_true(create_ssl_connection(serverssl, clientssl,
2331                                                 SSL_ERROR_NONE)))
2332         goto end;
2333
2334     clntsess = SSL_get1_session(clientssl);
2335     /* Save for later */
2336     aes_128_gcm_sha256 = SSL_SESSION_get0_cipher(clntsess);
2337     SSL_shutdown(clientssl);
2338     SSL_shutdown(serverssl);
2339     SSL_free(serverssl);
2340     SSL_free(clientssl);
2341     serverssl = clientssl = NULL;
2342
2343 # if !defined(OPENSSL_NO_CHACHA) && !defined(OPENSSL_NO_POLY1305)
2344     /* Check we can resume a session with a different SHA-256 ciphersuite */
2345     if (!TEST_true(SSL_CTX_set_cipher_list(cctx,
2346                                            "TLS13-CHACHA20-POLY1305-SHA256"))
2347             || !TEST_true(create_ssl_objects(sctx, cctx, &serverssl, &clientssl,
2348                                              NULL, NULL))
2349             || !TEST_true(SSL_set_session(clientssl, clntsess))
2350             || !TEST_true(create_ssl_connection(serverssl, clientssl,
2351                                                 SSL_ERROR_NONE))
2352             || !TEST_true(SSL_session_reused(clientssl)))
2353         goto end;
2354
2355     SSL_SESSION_free(clntsess);
2356     clntsess = SSL_get1_session(clientssl);
2357     SSL_shutdown(clientssl);
2358     SSL_shutdown(serverssl);
2359     SSL_free(serverssl);
2360     SSL_free(clientssl);
2361     serverssl = clientssl = NULL;
2362 # endif
2363
2364     /*
2365      * Check attempting to resume a SHA-256 session with no SHA-256 ciphersuites
2366      * succeeds but does not resume.
2367      */
2368     if (!TEST_true(SSL_CTX_set_cipher_list(cctx, "TLS13-AES-256-GCM-SHA384"))
2369             || !TEST_true(create_ssl_objects(sctx, cctx, &serverssl, &clientssl,
2370                                              NULL, NULL))
2371             || !TEST_true(SSL_set_session(clientssl, clntsess))
2372             || !TEST_true(create_ssl_connection(serverssl, clientssl,
2373                                                 SSL_ERROR_SSL))
2374             || !TEST_false(SSL_session_reused(clientssl)))
2375         goto end;
2376
2377     SSL_SESSION_free(clntsess);
2378     clntsess = NULL;
2379     SSL_shutdown(clientssl);
2380     SSL_shutdown(serverssl);
2381     SSL_free(serverssl);
2382     SSL_free(clientssl);
2383     serverssl = clientssl = NULL;
2384
2385     /* Create a session based on SHA384 */
2386     if (!TEST_true(SSL_CTX_set_cipher_list(cctx, "TLS13-AES-256-GCM-SHA384"))
2387             || !TEST_true(create_ssl_objects(sctx, cctx, &serverssl,
2388                                           &clientssl, NULL, NULL))
2389             || !TEST_true(create_ssl_connection(serverssl, clientssl,
2390                                                 SSL_ERROR_NONE)))
2391         goto end;
2392
2393     clntsess = SSL_get1_session(clientssl);
2394     SSL_shutdown(clientssl);
2395     SSL_shutdown(serverssl);
2396     SSL_free(serverssl);
2397     SSL_free(clientssl);
2398     serverssl = clientssl = NULL;
2399
2400     if (!TEST_true(SSL_CTX_set_cipher_list(cctx,
2401                    "TLS13-AES-128-GCM-SHA256:TLS13-AES-256-GCM-SHA384"))
2402             || !TEST_true(SSL_CTX_set_cipher_list(sctx,
2403                                                   "TLS13-AES-256-GCM-SHA384"))
2404             || !TEST_true(create_ssl_objects(sctx, cctx, &serverssl, &clientssl,
2405                                              NULL, NULL))
2406             || !TEST_true(SSL_set_session(clientssl, clntsess))
2407                /*
2408                 * We use SSL_ERROR_WANT_READ below so that we can pause the
2409                 * connection after the initial ClientHello has been sent to
2410                 * enable us to make some session changes.
2411                 */
2412             || !TEST_false(create_ssl_connection(serverssl, clientssl,
2413                                                 SSL_ERROR_WANT_READ)))
2414         goto end;
2415
2416     /* Trick the client into thinking this session is for a different digest */
2417     clntsess->cipher = aes_128_gcm_sha256;
2418     clntsess->cipher_id = clntsess->cipher->id;
2419
2420     /*
2421      * Continue the previously started connection. Server has selected a SHA-384
2422      * ciphersuite, but client thinks the session is for SHA-256, so it should
2423      * bail out.
2424      */
2425     if (!TEST_false(create_ssl_connection(serverssl, clientssl,
2426                                                 SSL_ERROR_SSL))
2427             || !TEST_int_eq(ERR_GET_REASON(ERR_get_error()),
2428                             SSL_R_CIPHERSUITE_DIGEST_HAS_CHANGED))
2429         goto end;
2430
2431     testresult = 1;
2432
2433  end:
2434     SSL_SESSION_free(clntsess);
2435     SSL_free(serverssl);
2436     SSL_free(clientssl);
2437     SSL_CTX_free(sctx);
2438     SSL_CTX_free(cctx);
2439
2440     return testresult;
2441 }
2442
2443 static int test_tls13_psk(void)
2444 {
2445     SSL_CTX *sctx = NULL, *cctx = NULL;
2446     SSL *serverssl = NULL, *clientssl = NULL;
2447     const SSL_CIPHER *cipher = NULL;
2448     const unsigned char key[] = {
2449         0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b,
2450         0x0c, 0x0d, 0x0e, 0x0f, 0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17,
2451         0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f, 0x20, 0x21, 0x22, 0x23,
2452         0x24, 0x25, 0x26, 0x27, 0x28, 0x29, 0x2a, 0x2b, 0x2c, 0x2d, 0x2e, 0x2f
2453     };
2454     int testresult = 0;
2455
2456     if (!TEST_true(create_ssl_ctx_pair(TLS_server_method(),
2457                                        TLS_client_method(), &sctx,
2458                                        &cctx, cert, privkey)))
2459         goto end;
2460
2461     SSL_CTX_set_psk_use_session_callback(cctx, use_session_cb);
2462     SSL_CTX_set_psk_find_session_callback(sctx, find_session_cb);
2463     srvid = pskid;
2464     use_session_cb_cnt = 0;
2465     find_session_cb_cnt = 0;
2466
2467     /* Check we can create a connection if callback decides not to send a PSK */
2468     if (!TEST_true(create_ssl_objects(sctx, cctx, &serverssl, &clientssl,
2469                                              NULL, NULL))
2470             || !TEST_true(create_ssl_connection(serverssl, clientssl,
2471                                                 SSL_ERROR_NONE))
2472             || !TEST_false(SSL_session_reused(clientssl))
2473             || !TEST_false(SSL_session_reused(serverssl))
2474             || !TEST_true(use_session_cb_cnt == 1)
2475             || !TEST_true(find_session_cb_cnt == 0))
2476         goto end;
2477
2478     shutdown_ssl_connection(serverssl, clientssl);
2479     serverssl = clientssl = NULL;
2480     use_session_cb_cnt = 0;
2481
2482     if (!TEST_true(create_ssl_objects(sctx, cctx, &serverssl, &clientssl,
2483                                              NULL, NULL)))
2484         goto end;
2485
2486     /* Create the PSK */
2487     cipher = SSL_CIPHER_find(clientssl, TLS13_AES_256_GCM_SHA384_BYTES);
2488     clientpsk = SSL_SESSION_new();
2489     if (!TEST_ptr(clientpsk)
2490             || !TEST_ptr(cipher)
2491             || !TEST_true(SSL_SESSION_set1_master_key(clientpsk, key,
2492                                                       sizeof(key)))
2493             || !TEST_true(SSL_SESSION_set_cipher(clientpsk, cipher))
2494             || !TEST_true(SSL_SESSION_set_protocol_version(clientpsk,
2495                                                            TLS1_3_VERSION))
2496             || !TEST_true(SSL_SESSION_up_ref(clientpsk)))
2497         goto end;
2498     serverpsk = clientpsk;
2499
2500     /* Check we can create a connection and the PSK is used */
2501     if (!TEST_true(create_ssl_connection(serverssl, clientssl, SSL_ERROR_NONE))
2502             || !TEST_true(SSL_session_reused(clientssl))
2503             || !TEST_true(SSL_session_reused(serverssl))
2504             || !TEST_true(use_session_cb_cnt == 1)
2505             || !TEST_true(find_session_cb_cnt == 1))
2506         goto end;
2507
2508     shutdown_ssl_connection(serverssl, clientssl);
2509     serverssl = clientssl = NULL;
2510     use_session_cb_cnt = find_session_cb_cnt = 0;
2511
2512     if (!TEST_true(create_ssl_objects(sctx, cctx, &serverssl, &clientssl,
2513                                              NULL, NULL)))
2514         goto end;
2515
2516     /* Force an HRR */
2517     if (!TEST_true(SSL_set1_groups_list(serverssl, "P-256")))
2518         goto end;
2519
2520     /*
2521      * Check we can create a connection, the PSK is used and the callbacks are
2522      * called twice.
2523      */
2524     if (!TEST_true(create_ssl_connection(serverssl, clientssl, SSL_ERROR_NONE))
2525             || !TEST_true(SSL_session_reused(clientssl))
2526             || !TEST_true(SSL_session_reused(serverssl))
2527             || !TEST_true(use_session_cb_cnt == 2)
2528             || !TEST_true(find_session_cb_cnt == 2))
2529         goto end;
2530
2531     shutdown_ssl_connection(serverssl, clientssl);
2532     serverssl = clientssl = NULL;
2533     use_session_cb_cnt = find_session_cb_cnt = 0;
2534
2535     /*
2536      * Check that if the server rejects the PSK we can still connect, but with
2537      * a full handshake
2538      */
2539     srvid = "Dummy Identity";
2540     if (!TEST_true(create_ssl_objects(sctx, cctx, &serverssl, &clientssl,
2541                                              NULL, NULL))
2542             || !TEST_true(create_ssl_connection(serverssl, clientssl,
2543                                                 SSL_ERROR_NONE))
2544             || !TEST_false(SSL_session_reused(clientssl))
2545             || !TEST_false(SSL_session_reused(serverssl))
2546             || !TEST_true(use_session_cb_cnt == 1)
2547             || !TEST_true(find_session_cb_cnt == 1))
2548         goto end;
2549
2550     shutdown_ssl_connection(serverssl, clientssl);
2551     serverssl = clientssl = NULL;
2552     testresult = 1;
2553
2554  end:
2555     SSL_SESSION_free(clientpsk);
2556     SSL_SESSION_free(serverpsk);
2557     clientpsk = serverpsk = NULL;
2558     SSL_free(serverssl);
2559     SSL_free(clientssl);
2560     SSL_CTX_free(sctx);
2561     SSL_CTX_free(cctx);
2562     return testresult;
2563 }
2564
2565 static unsigned char cookie_magic_value[] = "cookie magic";
2566
2567 static int generate_cookie_callback(SSL *ssl, unsigned char *cookie,
2568                                     unsigned int *cookie_len)
2569 {
2570     /*
2571      * Not suitable as a real cookie generation function but good enough for
2572      * testing!
2573      */
2574     memcpy(cookie, cookie_magic_value, sizeof(cookie_magic_value) - 1);
2575     *cookie_len = sizeof(cookie_magic_value) - 1;
2576
2577     return 1;
2578 }
2579
2580 static int verify_cookie_callback(SSL *ssl, const unsigned char *cookie,
2581                                   unsigned int cookie_len)
2582 {
2583     if (cookie_len == sizeof(cookie_magic_value) - 1
2584         && memcmp(cookie, cookie_magic_value, cookie_len) == 0)
2585         return 1;
2586
2587     return 0;
2588 }
2589
2590 static int test_stateless(void)
2591 {
2592     SSL_CTX *sctx = NULL, *cctx = NULL;
2593     SSL *serverssl = NULL, *clientssl = NULL;
2594     int testresult = 0;
2595
2596     if (!TEST_true(create_ssl_ctx_pair(TLS_server_method(),
2597                                        TLS_client_method(), &sctx,
2598                                        &cctx, cert, privkey)))
2599         goto end;
2600
2601     /* Set up the cookie generation and verification callbacks */
2602     SSL_CTX_set_cookie_generate_cb(sctx, generate_cookie_callback);
2603     SSL_CTX_set_cookie_verify_cb(sctx, verify_cookie_callback);
2604
2605     /* The arrival of CCS messages can confuse the test */
2606     SSL_CTX_clear_options(cctx, SSL_OP_ENABLE_MIDDLEBOX_COMPAT);
2607
2608     if (!TEST_true(create_ssl_objects(sctx, cctx, &serverssl, &clientssl,
2609                                              NULL, NULL))
2610                /* Send the first ClientHello */
2611             || !TEST_false(create_ssl_connection(serverssl, clientssl,
2612                                                 SSL_ERROR_WANT_READ))
2613                /* This should fail because there is no cookie */
2614             || !TEST_false(SSL_stateless(serverssl)))
2615         goto end;
2616
2617     /* Abandon the connection from this client */
2618     SSL_free(clientssl);
2619     clientssl = NULL;
2620
2621     /*
2622      * Now create a connection from a new client but with the same server SSL
2623      * object
2624      */
2625     if (!TEST_true(create_ssl_objects(sctx, cctx, &serverssl, &clientssl,
2626                                              NULL, NULL))
2627                /* Send the first ClientHello */
2628             || !TEST_false(create_ssl_connection(serverssl, clientssl,
2629                                                 SSL_ERROR_WANT_READ))
2630                /* This should fail because there is no cookie */
2631             || !TEST_false(SSL_stateless(serverssl))
2632                /* Send the second ClientHello */
2633             || !TEST_false(create_ssl_connection(serverssl, clientssl,
2634                                                 SSL_ERROR_WANT_READ))
2635                /* This should succeed because a cookie is now present */
2636             || !TEST_true(SSL_stateless(serverssl))
2637                /* Complete the connection */
2638             || !TEST_true(create_ssl_connection(serverssl, clientssl,
2639                                                 SSL_ERROR_NONE)))
2640         goto end;
2641
2642     shutdown_ssl_connection(serverssl, clientssl);
2643     serverssl = clientssl = NULL;
2644     testresult = 1;
2645
2646  end:
2647     SSL_free(serverssl);
2648     SSL_free(clientssl);
2649     SSL_CTX_free(sctx);
2650     SSL_CTX_free(cctx);
2651     return testresult;
2652
2653 }
2654 #endif /* OPENSSL_NO_TLS1_3 */
2655
2656 static int clntaddoldcb = 0;
2657 static int clntparseoldcb = 0;
2658 static int srvaddoldcb = 0;
2659 static int srvparseoldcb = 0;
2660 static int clntaddnewcb = 0;
2661 static int clntparsenewcb = 0;
2662 static int srvaddnewcb = 0;
2663 static int srvparsenewcb = 0;
2664 static int snicb = 0;
2665
2666 #define TEST_EXT_TYPE1  0xff00
2667
2668 static int old_add_cb(SSL *s, unsigned int ext_type, const unsigned char **out,
2669                       size_t *outlen, int *al, void *add_arg)
2670 {
2671     int *server = (int *)add_arg;
2672     unsigned char *data;
2673
2674     if (SSL_is_server(s))
2675         srvaddoldcb++;
2676     else
2677         clntaddoldcb++;
2678
2679     if (*server != SSL_is_server(s)
2680             || (data = OPENSSL_malloc(sizeof(*data))) == NULL)
2681         return -1;
2682
2683     *data = 1;
2684     *out = data;
2685     *outlen = sizeof(char);
2686     return 1;
2687 }
2688
2689 static void old_free_cb(SSL *s, unsigned int ext_type, const unsigned char *out,
2690                         void *add_arg)
2691 {
2692     OPENSSL_free((unsigned char *)out);
2693 }
2694
2695 static int old_parse_cb(SSL *s, unsigned int ext_type, const unsigned char *in,
2696                         size_t inlen, int *al, void *parse_arg)
2697 {
2698     int *server = (int *)parse_arg;
2699
2700     if (SSL_is_server(s))
2701         srvparseoldcb++;
2702     else
2703         clntparseoldcb++;
2704
2705     if (*server != SSL_is_server(s)
2706             || inlen != sizeof(char)
2707             || *in != 1)
2708         return -1;
2709
2710     return 1;
2711 }
2712
2713 static int new_add_cb(SSL *s, unsigned int ext_type, unsigned int context,
2714                       const unsigned char **out, size_t *outlen, X509 *x,
2715                       size_t chainidx, int *al, void *add_arg)
2716 {
2717     int *server = (int *)add_arg;
2718     unsigned char *data;
2719
2720     if (SSL_is_server(s))
2721         srvaddnewcb++;
2722     else
2723         clntaddnewcb++;
2724
2725     if (*server != SSL_is_server(s)
2726             || (data = OPENSSL_malloc(sizeof(*data))) == NULL)
2727         return -1;
2728
2729     *data = 1;
2730     *out = data;
2731     *outlen = sizeof(*data);
2732     return 1;
2733 }
2734
2735 static void new_free_cb(SSL *s, unsigned int ext_type, unsigned int context,
2736                         const unsigned char *out, void *add_arg)
2737 {
2738     OPENSSL_free((unsigned char *)out);
2739 }
2740
2741 static int new_parse_cb(SSL *s, unsigned int ext_type, unsigned int context,
2742                         const unsigned char *in, size_t inlen, X509 *x,
2743                         size_t chainidx, int *al, void *parse_arg)
2744 {
2745     int *server = (int *)parse_arg;
2746
2747     if (SSL_is_server(s))
2748         srvparsenewcb++;
2749     else
2750         clntparsenewcb++;
2751
2752     if (*server != SSL_is_server(s)
2753             || inlen != sizeof(char) || *in != 1)
2754         return -1;
2755
2756     return 1;
2757 }
2758
2759 static int sni_cb(SSL *s, int *al, void *arg)
2760 {
2761     SSL_CTX *ctx = (SSL_CTX *)arg;
2762
2763     if (SSL_set_SSL_CTX(s, ctx) == NULL) {
2764         *al = SSL_AD_INTERNAL_ERROR;
2765         return SSL_TLSEXT_ERR_ALERT_FATAL;
2766     }
2767     snicb++;
2768     return SSL_TLSEXT_ERR_OK;
2769 }
2770
2771 /*
2772  * Custom call back tests.
2773  * Test 0: Old style callbacks in TLSv1.2
2774  * Test 1: New style callbacks in TLSv1.2
2775  * Test 2: New style callbacks in TLSv1.2 with SNI
2776  * Test 3: New style callbacks in TLSv1.3. Extensions in CH and EE
2777  * Test 4: New style callbacks in TLSv1.3. Extensions in CH, SH, EE, Cert + NST
2778  */
2779 static int test_custom_exts(int tst)
2780 {
2781     SSL_CTX *cctx = NULL, *sctx = NULL, *sctx2 = NULL;
2782     SSL *clientssl = NULL, *serverssl = NULL;
2783     int testresult = 0;
2784     static int server = 1;
2785     static int client = 0;
2786     SSL_SESSION *sess = NULL;
2787     unsigned int context;
2788
2789 #if defined(OPENSSL_NO_TLS1_2) && !defined(OPENSSL_NO_TLS1_3)
2790     /* Skip tests for TLSv1.2 and below in this case */
2791     if (tst < 3)
2792         return 1;
2793 #endif
2794
2795     /* Reset callback counters */
2796     clntaddoldcb = clntparseoldcb = srvaddoldcb = srvparseoldcb = 0;
2797     clntaddnewcb = clntparsenewcb = srvaddnewcb = srvparsenewcb = 0;
2798     snicb = 0;
2799
2800     if (!TEST_true(create_ssl_ctx_pair(TLS_server_method(),
2801                                        TLS_client_method(), &sctx,
2802                                        &cctx, cert, privkey)))
2803         goto end;
2804
2805     if (tst == 2
2806             && !TEST_true(create_ssl_ctx_pair(TLS_server_method(), NULL, &sctx2,
2807                                               NULL, cert, privkey)))
2808         goto end;
2809
2810
2811     if (tst < 3) {
2812         SSL_CTX_set_options(cctx, SSL_OP_NO_TLSv1_3);
2813         SSL_CTX_set_options(sctx, SSL_OP_NO_TLSv1_3);
2814         if (sctx2 != NULL)
2815             SSL_CTX_set_options(sctx2, SSL_OP_NO_TLSv1_3);
2816     }
2817
2818     if (tst == 4) {
2819         context = SSL_EXT_CLIENT_HELLO
2820                   | SSL_EXT_TLS1_2_SERVER_HELLO
2821                   | SSL_EXT_TLS1_3_SERVER_HELLO
2822                   | SSL_EXT_TLS1_3_ENCRYPTED_EXTENSIONS
2823                   | SSL_EXT_TLS1_3_CERTIFICATE
2824                   | SSL_EXT_TLS1_3_NEW_SESSION_TICKET;
2825     } else {
2826         context = SSL_EXT_CLIENT_HELLO
2827                   | SSL_EXT_TLS1_2_SERVER_HELLO
2828                   | SSL_EXT_TLS1_3_ENCRYPTED_EXTENSIONS;
2829     }
2830
2831     /* Create a client side custom extension */
2832     if (tst == 0) {
2833         if (!TEST_true(SSL_CTX_add_client_custom_ext(cctx, TEST_EXT_TYPE1,
2834                                                      old_add_cb, old_free_cb,
2835                                                      &client, old_parse_cb,
2836                                                      &client)))
2837             goto end;
2838     } else {
2839         if (!TEST_true(SSL_CTX_add_custom_ext(cctx, TEST_EXT_TYPE1, context,
2840                                               new_add_cb, new_free_cb,
2841                                               &client, new_parse_cb, &client)))
2842             goto end;
2843     }
2844
2845     /* Should not be able to add duplicates */
2846     if (!TEST_false(SSL_CTX_add_client_custom_ext(cctx, TEST_EXT_TYPE1,
2847                                                   old_add_cb, old_free_cb,
2848                                                   &client, old_parse_cb,
2849                                                   &client))
2850             || !TEST_false(SSL_CTX_add_custom_ext(cctx, TEST_EXT_TYPE1,
2851                                                   context, new_add_cb,
2852                                                   new_free_cb, &client,
2853                                                   new_parse_cb, &client)))
2854         goto end;
2855
2856     /* Create a server side custom extension */
2857     if (tst == 0) {
2858         if (!TEST_true(SSL_CTX_add_server_custom_ext(sctx, TEST_EXT_TYPE1,
2859                                                      old_add_cb, old_free_cb,
2860                                                      &server, old_parse_cb,
2861                                                      &server)))
2862             goto end;
2863     } else {
2864         if (!TEST_true(SSL_CTX_add_custom_ext(sctx, TEST_EXT_TYPE1, context,
2865                                               new_add_cb, new_free_cb,
2866                                               &server, new_parse_cb, &server)))
2867             goto end;
2868         if (sctx2 != NULL
2869                 && !TEST_true(SSL_CTX_add_custom_ext(sctx2, TEST_EXT_TYPE1,
2870                                                      context, new_add_cb,
2871                                                      new_free_cb, &server,
2872                                                      new_parse_cb, &server)))
2873             goto end;
2874     }
2875
2876     /* Should not be able to add duplicates */
2877     if (!TEST_false(SSL_CTX_add_server_custom_ext(sctx, TEST_EXT_TYPE1,
2878                                                   old_add_cb, old_free_cb,
2879                                                   &server, old_parse_cb,
2880                                                   &server))
2881             || !TEST_false(SSL_CTX_add_custom_ext(sctx, TEST_EXT_TYPE1,
2882                                                   context, new_add_cb,
2883                                                   new_free_cb, &server,
2884                                                   new_parse_cb, &server)))
2885         goto end;
2886
2887     if (tst == 2) {
2888         /* Set up SNI */
2889         if (!TEST_true(SSL_CTX_set_tlsext_servername_callback(sctx, sni_cb))
2890                 || !TEST_true(SSL_CTX_set_tlsext_servername_arg(sctx, sctx2)))
2891             goto end;
2892     }
2893
2894     if (!TEST_true(create_ssl_objects(sctx, cctx, &serverssl,
2895                                       &clientssl, NULL, NULL))
2896             || !TEST_true(create_ssl_connection(serverssl, clientssl,
2897                                                 SSL_ERROR_NONE)))
2898         goto end;
2899
2900     if (tst == 0) {
2901         if (clntaddoldcb != 1
2902                 || clntparseoldcb != 1
2903                 || srvaddoldcb != 1
2904                 || srvparseoldcb != 1)
2905             goto end;
2906     } else if (tst == 1 || tst == 2 || tst == 3) {
2907         if (clntaddnewcb != 1
2908                 || clntparsenewcb != 1
2909                 || srvaddnewcb != 1
2910                 || srvparsenewcb != 1
2911                 || (tst != 2 && snicb != 0)
2912                 || (tst == 2 && snicb != 1))
2913             goto end;
2914     } else {
2915         if (clntaddnewcb != 1
2916                 || clntparsenewcb != 4
2917                 || srvaddnewcb != 4
2918                 || srvparsenewcb != 1)
2919             goto end;
2920     }
2921
2922     sess = SSL_get1_session(clientssl);
2923     SSL_shutdown(clientssl);
2924     SSL_shutdown(serverssl);
2925     SSL_free(serverssl);
2926     SSL_free(clientssl);
2927     serverssl = clientssl = NULL;
2928
2929     if (tst == 3) {
2930         /* We don't bother with the resumption aspects for this test */
2931         testresult = 1;
2932         goto end;
2933     }
2934
2935     if (!TEST_true(create_ssl_objects(sctx, cctx, &serverssl, &clientssl,
2936                                       NULL, NULL))
2937             || !TEST_true(SSL_set_session(clientssl, sess))
2938             || !TEST_true(create_ssl_connection(serverssl, clientssl,
2939                                                SSL_ERROR_NONE)))
2940         goto end;
2941
2942     /*
2943      * For a resumed session we expect to add the ClientHello extension. For the
2944      * old style callbacks we ignore it on the server side because they set
2945      * SSL_EXT_IGNORE_ON_RESUMPTION. The new style callbacks do not ignore
2946      * them.
2947      */
2948     if (tst == 0) {
2949         if (clntaddoldcb != 2
2950                 || clntparseoldcb != 1
2951                 || srvaddoldcb != 1
2952                 || srvparseoldcb != 1)
2953             goto end;
2954     } else if (tst == 1 || tst == 2 || tst == 3) {
2955         if (clntaddnewcb != 2
2956                 || clntparsenewcb != 2
2957                 || srvaddnewcb != 2
2958                 || srvparsenewcb != 2)
2959             goto end;
2960     } else {
2961         /* No Certificate message extensions in the resumption handshake */
2962         if (clntaddnewcb != 2
2963                 || clntparsenewcb != 7
2964                 || srvaddnewcb != 7
2965                 || srvparsenewcb != 2)
2966             goto end;
2967     }
2968
2969     testresult = 1;
2970
2971 end:
2972     SSL_SESSION_free(sess);
2973     SSL_free(serverssl);
2974     SSL_free(clientssl);
2975     SSL_CTX_free(sctx2);
2976     SSL_CTX_free(sctx);
2977     SSL_CTX_free(cctx);
2978     return testresult;
2979 }
2980
2981 /*
2982  * Test loading of serverinfo data in various formats. test_sslmessages actually
2983  * tests to make sure the extensions appear in the handshake
2984  */
2985 static int test_serverinfo(int tst)
2986 {
2987     unsigned int version;
2988     unsigned char *sibuf;
2989     size_t sibuflen;
2990     int ret, expected, testresult = 0;
2991     SSL_CTX *ctx;
2992
2993     ctx = SSL_CTX_new(TLS_method());
2994     if (!TEST_ptr(ctx))
2995         goto end;
2996
2997     if ((tst & 0x01) == 0x01)
2998         version = SSL_SERVERINFOV2;
2999     else
3000         version = SSL_SERVERINFOV1;
3001
3002     if ((tst & 0x02) == 0x02) {
3003         sibuf = serverinfov2;
3004         sibuflen = sizeof(serverinfov2);
3005         expected = (version == SSL_SERVERINFOV2);
3006     } else {
3007         sibuf = serverinfov1;
3008         sibuflen = sizeof(serverinfov1);
3009         expected = (version == SSL_SERVERINFOV1);
3010     }
3011
3012     if ((tst & 0x04) == 0x04) {
3013         ret = SSL_CTX_use_serverinfo_ex(ctx, version, sibuf, sibuflen);
3014     } else {
3015         ret = SSL_CTX_use_serverinfo(ctx, sibuf, sibuflen);
3016
3017         /*
3018          * The version variable is irrelevant in this case - it's what is in the
3019          * buffer that matters
3020          */
3021         if ((tst & 0x02) == 0x02)
3022             expected = 0;
3023         else
3024             expected = 1;
3025     }
3026
3027     if (!TEST_true(ret == expected))
3028         goto end;
3029
3030     testresult = 1;
3031
3032  end:
3033     SSL_CTX_free(ctx);
3034
3035     return testresult;
3036 }
3037
3038 /*
3039  * Test that SSL_export_keying_material() produces expected results. There are
3040  * no test vectors so all we do is test that both sides of the communication
3041  * produce the same results for different protocol versions.
3042  */
3043 static int test_export_key_mat(int tst)
3044 {
3045     int testresult = 0;
3046     SSL_CTX *cctx = NULL, *sctx = NULL, *sctx2 = NULL;
3047     SSL *clientssl = NULL, *serverssl = NULL;
3048     const char label[] = "test label";
3049     const unsigned char context[] = "context";
3050     const unsigned char *emptycontext = NULL;
3051     unsigned char ckeymat1[80], ckeymat2[80], ckeymat3[80];
3052     unsigned char skeymat1[80], skeymat2[80], skeymat3[80];
3053     const int protocols[] = {
3054         TLS1_VERSION,
3055         TLS1_1_VERSION,
3056         TLS1_2_VERSION,
3057         TLS1_3_VERSION
3058     };
3059
3060 #ifdef OPENSSL_NO_TLS1
3061     if (tst == 0)
3062         return 1;
3063 #endif
3064 #ifdef OPENSSL_NO_TLS1_1
3065     if (tst == 1)
3066         return 1;
3067 #endif
3068 #ifdef OPENSSL_NO_TLS1_2
3069     if (tst == 2)
3070         return 1;
3071 #endif
3072 #ifdef OPENSSL_NO_TLS1_3
3073     if (tst == 3)
3074         return 1;
3075 #endif
3076     if (!TEST_true(create_ssl_ctx_pair(TLS_server_method(),
3077                                        TLS_client_method(), &sctx,
3078                                        &cctx, cert, privkey)))
3079         goto end;
3080
3081     OPENSSL_assert(tst >= 0 && (size_t)tst < OSSL_NELEM(protocols));
3082     SSL_CTX_set_max_proto_version(cctx, protocols[tst]);
3083     SSL_CTX_set_min_proto_version(cctx, protocols[tst]);
3084
3085     if (!TEST_true(create_ssl_objects(sctx, cctx, &serverssl, &clientssl, NULL,
3086                                       NULL))
3087             || !TEST_true(create_ssl_connection(serverssl, clientssl,
3088                                                 SSL_ERROR_NONE)))
3089         goto end;
3090
3091     if (!TEST_int_eq(SSL_export_keying_material(clientssl, ckeymat1,
3092                                                 sizeof(ckeymat1), label,
3093                                                 sizeof(label) - 1, context,
3094                                                 sizeof(context) - 1, 1), 1)
3095             || !TEST_int_eq(SSL_export_keying_material(clientssl, ckeymat2,
3096                                                        sizeof(ckeymat2), label,
3097                                                        sizeof(label) - 1,
3098                                                        emptycontext,
3099                                                        0, 1), 1)
3100             || !TEST_int_eq(SSL_export_keying_material(clientssl, ckeymat3,
3101                                                        sizeof(ckeymat3), label,
3102                                                        sizeof(label) - 1,
3103                                                        NULL, 0, 0), 1)
3104             || !TEST_int_eq(SSL_export_keying_material(serverssl, skeymat1,
3105                                                        sizeof(skeymat1), label,
3106                                                        sizeof(label) - 1,
3107                                                        context,
3108                                                        sizeof(context) -1, 1),
3109                             1)
3110             || !TEST_int_eq(SSL_export_keying_material(serverssl, skeymat2,
3111                                                        sizeof(skeymat2), label,
3112                                                        sizeof(label) - 1,
3113                                                        emptycontext,
3114                                                        0, 1), 1)
3115             || !TEST_int_eq(SSL_export_keying_material(serverssl, skeymat3,
3116                                                        sizeof(skeymat3), label,
3117                                                        sizeof(label) - 1,
3118                                                        NULL, 0, 0), 1)
3119                /*
3120                 * Check that both sides created the same key material with the
3121                 * same context.
3122                 */
3123             || !TEST_mem_eq(ckeymat1, sizeof(ckeymat1), skeymat1,
3124                             sizeof(skeymat1))
3125                /*
3126                 * Check that both sides created the same key material with an
3127                 * empty context.
3128                 */
3129             || !TEST_mem_eq(ckeymat2, sizeof(ckeymat2), skeymat2,
3130                             sizeof(skeymat2))
3131                /*
3132                 * Check that both sides created the same key material without a
3133                 * context.
3134                 */
3135             || !TEST_mem_eq(ckeymat3, sizeof(ckeymat3), skeymat3,
3136                             sizeof(skeymat3))
3137                /* Different contexts should produce different results */
3138             || !TEST_mem_ne(ckeymat1, sizeof(ckeymat1), ckeymat2,
3139                             sizeof(ckeymat2)))
3140         goto end;
3141
3142     /*
3143      * Check that an empty context and no context produce different results in
3144      * protocols less than TLSv1.3. In TLSv1.3 they should be the same.
3145      */
3146     if ((tst != 3 && !TEST_mem_ne(ckeymat2, sizeof(ckeymat2), ckeymat3,
3147                                   sizeof(ckeymat3)))
3148             || (tst ==3 && !TEST_mem_eq(ckeymat2, sizeof(ckeymat2), ckeymat3,
3149                                         sizeof(ckeymat3))))
3150         goto end;
3151
3152     testresult = 1;
3153
3154  end:
3155     SSL_free(serverssl);
3156     SSL_free(clientssl);
3157     SSL_CTX_free(sctx2);
3158     SSL_CTX_free(sctx);
3159     SSL_CTX_free(cctx);
3160
3161     return testresult;
3162 }
3163
3164 #ifndef OPENSSL_NO_TLS1_3
3165 /*
3166  * Test that SSL_export_keying_material_early() produces expected
3167  * results. There are no test vectors so all we do is test that both
3168  * sides of the communication produce the same results for different
3169  * protocol versions.
3170  */
3171 static int test_export_key_mat_early(int idx)
3172 {
3173     static const char label[] = "test label";
3174     static const unsigned char context[] = "context";
3175     int testresult = 0;
3176     SSL_CTX *cctx = NULL, *sctx = NULL;
3177     SSL *clientssl = NULL, *serverssl = NULL;
3178     SSL_SESSION *sess = NULL;
3179     const unsigned char *emptycontext = NULL;
3180     unsigned char ckeymat1[80], ckeymat2[80];
3181     unsigned char skeymat1[80], skeymat2[80];
3182     unsigned char buf[1];
3183     size_t readbytes, written;
3184
3185     if (!TEST_true(setupearly_data_test(&cctx, &sctx, &clientssl, &serverssl,
3186                                         &sess, idx)))
3187         goto end;
3188
3189     /* Here writing 0 length early data is enough. */
3190     if (!TEST_true(SSL_write_early_data(clientssl, NULL, 0, &written))
3191             || !TEST_int_eq(SSL_read_early_data(serverssl, buf, sizeof(buf),
3192                                                 &readbytes),
3193                             SSL_READ_EARLY_DATA_ERROR)
3194             || !TEST_int_eq(SSL_get_early_data_status(serverssl),
3195                             SSL_EARLY_DATA_ACCEPTED))
3196         goto end;
3197
3198     if (!TEST_int_eq(SSL_export_keying_material_early(
3199                      clientssl, ckeymat1, sizeof(ckeymat1), label,
3200                      sizeof(label) - 1, context, sizeof(context) - 1), 1)
3201             || !TEST_int_eq(SSL_export_keying_material_early(
3202                             clientssl, ckeymat2, sizeof(ckeymat2), label,
3203                             sizeof(label) - 1, emptycontext, 0), 1)
3204             || !TEST_int_eq(SSL_export_keying_material_early(
3205                             serverssl, skeymat1, sizeof(skeymat1), label,
3206                             sizeof(label) - 1, context, sizeof(context) - 1), 1)
3207             || !TEST_int_eq(SSL_export_keying_material_early(
3208                             serverssl, skeymat2, sizeof(skeymat2), label,
3209                             sizeof(label) - 1, emptycontext, 0), 1)
3210                /*
3211                 * Check that both sides created the same key material with the
3212                 * same context.
3213                 */
3214             || !TEST_mem_eq(ckeymat1, sizeof(ckeymat1), skeymat1,
3215                             sizeof(skeymat1))
3216                /*
3217                 * Check that both sides created the same key material with an
3218                 * empty context.
3219                 */
3220             || !TEST_mem_eq(ckeymat2, sizeof(ckeymat2), skeymat2,
3221                             sizeof(skeymat2))
3222                /* Different contexts should produce different results */
3223             || !TEST_mem_ne(ckeymat1, sizeof(ckeymat1), ckeymat2,
3224                             sizeof(ckeymat2)))
3225         goto end;
3226
3227     testresult = 1;
3228
3229  end:
3230     if (sess != clientpsk)
3231         SSL_SESSION_free(sess);
3232     SSL_SESSION_free(clientpsk);
3233     SSL_SESSION_free(serverpsk);
3234     clientpsk = serverpsk = NULL;
3235     SSL_free(serverssl);
3236     SSL_free(clientssl);
3237     SSL_CTX_free(sctx);
3238     SSL_CTX_free(cctx);
3239
3240     return testresult;
3241 }
3242 #endif /* OPENSSL_NO_TLS1_3 */
3243
3244 static int test_ssl_clear(int idx)
3245 {
3246     SSL_CTX *cctx = NULL, *sctx = NULL;
3247     SSL *clientssl = NULL, *serverssl = NULL;
3248     int testresult = 0;
3249
3250 #ifdef OPENSSL_NO_TLS1_2
3251     if (idx == 1)
3252         return 1;
3253 #endif
3254
3255     /* Create an initial connection */
3256     if (!TEST_true(create_ssl_ctx_pair(TLS_server_method(),
3257                                        TLS_client_method(), &sctx,
3258                                        &cctx, cert, privkey))
3259             || (idx == 1
3260                 && !TEST_true(SSL_CTX_set_max_proto_version(cctx,
3261                                                             TLS1_2_VERSION)))
3262             || !TEST_true(create_ssl_objects(sctx, cctx, &serverssl,
3263                                           &clientssl, NULL, NULL))
3264             || !TEST_true(create_ssl_connection(serverssl, clientssl,
3265                                                 SSL_ERROR_NONE)))
3266         goto end;
3267
3268     SSL_shutdown(clientssl);
3269     SSL_shutdown(serverssl);
3270     SSL_free(serverssl);
3271     serverssl = NULL;
3272
3273     /* Clear clientssl - we're going to reuse the object */
3274     if (!TEST_true(SSL_clear(clientssl)))
3275         goto end;
3276
3277     if (!TEST_true(create_ssl_objects(sctx, cctx, &serverssl, &clientssl,
3278                                              NULL, NULL))
3279             || !TEST_true(create_ssl_connection(serverssl, clientssl,
3280                                                 SSL_ERROR_NONE))
3281             || !TEST_true(SSL_session_reused(clientssl)))
3282         goto end;
3283
3284     SSL_shutdown(clientssl);
3285     SSL_shutdown(serverssl);
3286
3287     testresult = 1;
3288
3289  end:
3290     SSL_free(serverssl);
3291     SSL_free(clientssl);
3292     SSL_CTX_free(sctx);
3293     SSL_CTX_free(cctx);
3294
3295     return testresult;
3296 }
3297
3298 /* Parse CH and retrieve any MFL extension value if present */
3299 static int get_MFL_from_client_hello(BIO *bio, int *mfl_codemfl_code)
3300 {
3301     long len;
3302     unsigned char *data;
3303     PACKET pkt = {0}, pkt2 = {0}, pkt3 = {0};
3304     unsigned int MFL_code = 0, type = 0;
3305
3306     if (!TEST_uint_gt( len = BIO_get_mem_data( bio, (char **) &data ), 0 ) )
3307         goto end;
3308
3309     if (!TEST_true( PACKET_buf_init( &pkt, data, len ) )
3310                /* Skip the record header */
3311             || !PACKET_forward(&pkt, SSL3_RT_HEADER_LENGTH)
3312                /* Skip the handshake message header */
3313             || !TEST_true(PACKET_forward(&pkt, SSL3_HM_HEADER_LENGTH))
3314                /* Skip client version and random */
3315             || !TEST_true(PACKET_forward(&pkt, CLIENT_VERSION_LEN
3316                                                + SSL3_RANDOM_SIZE))
3317                /* Skip session id */
3318             || !TEST_true(PACKET_get_length_prefixed_1(&pkt, &pkt2))
3319                /* Skip ciphers */
3320             || !TEST_true(PACKET_get_length_prefixed_2(&pkt, &pkt2))
3321                /* Skip compression */
3322             || !TEST_true(PACKET_get_length_prefixed_1(&pkt, &pkt2))
3323                /* Extensions len */
3324             || !TEST_true(PACKET_as_length_prefixed_2(&pkt, &pkt2)))
3325         goto end;
3326
3327     /* Loop through all extensions */
3328     while (PACKET_remaining(&pkt2)) {
3329         if (!TEST_true(PACKET_get_net_2(&pkt2, &type))
3330                 || !TEST_true(PACKET_get_length_prefixed_2(&pkt2, &pkt3)))
3331             goto end;
3332
3333         if (type == TLSEXT_TYPE_max_fragment_length) {
3334             if (!TEST_uint_ne(PACKET_remaining(&pkt3), 0)
3335                     || !TEST_true(PACKET_get_1(&pkt3, &MFL_code)))
3336                 goto end;
3337
3338             *mfl_codemfl_code = MFL_code;
3339             return 1;
3340         }
3341     }
3342
3343  end:
3344     return 0;
3345 }
3346
3347 /* Maximum-Fragment-Length TLS extension mode to test */
3348 static const unsigned char max_fragment_len_test[] = {
3349     TLSEXT_max_fragment_length_512,
3350     TLSEXT_max_fragment_length_1024,
3351     TLSEXT_max_fragment_length_2048,
3352     TLSEXT_max_fragment_length_4096
3353 };
3354
3355 static int test_max_fragment_len_ext(int idx_tst)
3356 {
3357     SSL_CTX *ctx;
3358     SSL *con = NULL;
3359     int testresult = 0, MFL_mode = 0;
3360     BIO *rbio, *wbio;
3361
3362     ctx = SSL_CTX_new(TLS_method());
3363     if (!TEST_ptr(ctx))
3364         goto end;
3365
3366     if (!TEST_true(SSL_CTX_set_tlsext_max_fragment_length(
3367                    ctx, max_fragment_len_test[idx_tst])))
3368         goto end;
3369
3370     con = SSL_new(ctx);
3371     if (!TEST_ptr(con))
3372         goto end;
3373
3374     rbio = BIO_new(BIO_s_mem());
3375     wbio = BIO_new(BIO_s_mem());
3376     if (!TEST_ptr(rbio)|| !TEST_ptr(wbio)) {
3377         BIO_free(rbio);
3378         BIO_free(wbio);
3379         goto end;
3380     }
3381
3382     SSL_set_bio(con, rbio, wbio);
3383     SSL_set_connect_state(con);
3384
3385     if (!TEST_int_le(SSL_connect(con), 0)) {
3386         /* This shouldn't succeed because we don't have a server! */
3387         goto end;
3388     }
3389
3390     if (!TEST_true(get_MFL_from_client_hello(wbio, &MFL_mode)))
3391         /* no MFL in client hello */
3392         goto end;
3393     if (!TEST_true(max_fragment_len_test[idx_tst] == MFL_mode))
3394         goto end;
3395
3396     testresult = 1;
3397
3398 end:
3399     SSL_free(con);
3400     SSL_CTX_free(ctx);
3401
3402     return testresult;
3403 }
3404
3405 #ifndef OPENSSL_NO_TLS1_3
3406 static int test_pha_key_update(void)
3407 {
3408     SSL_CTX *cctx = NULL, *sctx = NULL;
3409     SSL *clientssl = NULL, *serverssl = NULL;
3410     int testresult = 0;
3411
3412     if (!TEST_true(create_ssl_ctx_pair(TLS_server_method(),
3413                                        TLS_client_method(),
3414                                        &sctx, &cctx, cert, privkey)))
3415         return 0;
3416
3417     if (!TEST_true(SSL_CTX_set_min_proto_version(sctx, TLS1_3_VERSION))
3418         || !TEST_true(SSL_CTX_set_max_proto_version(sctx, TLS1_3_VERSION))
3419         || !TEST_true(SSL_CTX_set_min_proto_version(cctx, TLS1_3_VERSION))
3420         || !TEST_true(SSL_CTX_set_max_proto_version(cctx, TLS1_3_VERSION)))
3421         goto end;
3422
3423
3424     if (!TEST_true(create_ssl_objects(sctx, cctx, &serverssl, &clientssl,
3425                                       NULL, NULL)))
3426         goto end;
3427
3428     SSL_force_post_handshake_auth(clientssl);
3429
3430     if (!TEST_true(create_ssl_connection(serverssl, clientssl,
3431                                          SSL_ERROR_NONE)))
3432         goto end;
3433
3434     SSL_set_verify(serverssl, SSL_VERIFY_PEER, NULL);
3435     if (!TEST_true(SSL_verify_client_post_handshake(serverssl)))
3436         goto end;
3437
3438     if (!TEST_true(SSL_key_update(clientssl, SSL_KEY_UPDATE_NOT_REQUESTED)))
3439         goto end;
3440
3441     /* Start handshake on the server */
3442     if (!TEST_int_eq(SSL_do_handshake(serverssl), 1))
3443         goto end;
3444
3445     /* Starts with SSL_connect(), but it's really just SSL_do_handshake() */
3446     if (!TEST_true(create_ssl_connection(serverssl, clientssl,
3447                                          SSL_ERROR_NONE)))
3448         goto end;
3449
3450     SSL_shutdown(clientssl);
3451     SSL_shutdown(serverssl);
3452
3453     testresult = 1;
3454
3455  end:
3456     SSL_free(serverssl);
3457     SSL_free(clientssl);
3458     SSL_CTX_free(sctx);
3459     SSL_CTX_free(cctx);
3460     return testresult;
3461 }
3462 #endif
3463
3464 int setup_tests(void)
3465 {
3466     if (!TEST_ptr(cert = test_get_argument(0))
3467             || !TEST_ptr(privkey = test_get_argument(1)))
3468         return 0;
3469
3470     ADD_TEST(test_large_message_tls);
3471     ADD_TEST(test_large_message_tls_read_ahead);
3472 #ifndef OPENSSL_NO_DTLS
3473     ADD_TEST(test_large_message_dtls);
3474 #endif
3475 #ifndef OPENSSL_NO_OCSP
3476     ADD_TEST(test_tlsext_status_type);
3477 #endif
3478     ADD_TEST(test_session_with_only_int_cache);
3479     ADD_TEST(test_session_with_only_ext_cache);
3480     ADD_TEST(test_session_with_both_cache);
3481     ADD_ALL_TESTS(test_ssl_set_bio, TOTAL_SSL_SET_BIO_TESTS);
3482     ADD_TEST(test_ssl_bio_pop_next_bio);
3483     ADD_TEST(test_ssl_bio_pop_ssl_bio);
3484     ADD_TEST(test_ssl_bio_change_rbio);
3485     ADD_TEST(test_ssl_bio_change_wbio);
3486 #if !defined(OPENSSL_NO_TLS1_2) || defined(OPENSSL_NO_TLS1_3)
3487     ADD_ALL_TESTS(test_set_sigalgs, OSSL_NELEM(testsigalgs) * 2);
3488     ADD_TEST(test_keylog);
3489 #endif
3490 #ifndef OPENSSL_NO_TLS1_3
3491     ADD_TEST(test_keylog_no_master_key);
3492 #endif
3493 #ifndef OPENSSL_NO_TLS1_2
3494     ADD_TEST(test_client_hello_cb);
3495 #endif
3496 #ifndef OPENSSL_NO_TLS1_3
3497     ADD_ALL_TESTS(test_early_data_read_write, 3);
3498     ADD_ALL_TESTS(test_early_data_skip, 3);
3499     ADD_ALL_TESTS(test_early_data_skip_hrr, 3);
3500     ADD_ALL_TESTS(test_early_data_not_sent, 3);
3501     ADD_ALL_TESTS(test_early_data_psk, 8);
3502     ADD_ALL_TESTS(test_early_data_not_expected, 3);
3503 # ifndef OPENSSL_NO_TLS1_2
3504     ADD_ALL_TESTS(test_early_data_tls1_2, 3);
3505 # endif
3506 #endif
3507 #ifndef OPENSSL_NO_TLS1_3
3508     ADD_TEST(test_ciphersuite_change);
3509     ADD_TEST(test_tls13_psk);
3510     ADD_ALL_TESTS(test_custom_exts, 5);
3511     ADD_TEST(test_stateless);
3512     ADD_TEST(test_pha_key_update);
3513 #else
3514     ADD_ALL_TESTS(test_custom_exts, 3);
3515 #endif
3516     ADD_ALL_TESTS(test_serverinfo, 8);
3517     ADD_ALL_TESTS(test_export_key_mat, 4);
3518 #ifndef OPENSSL_NO_TLS1_3
3519     ADD_ALL_TESTS(test_export_key_mat_early, 3);
3520 #endif
3521     ADD_ALL_TESTS(test_ssl_clear, 2);
3522     ADD_ALL_TESTS(test_max_fragment_len_ext, OSSL_NELEM(max_fragment_len_test));
3523     return 1;
3524 }
3525
3526 void cleanup_tests(void)
3527 {
3528     bio_s_mempacket_test_free();
3529 }