OpenSSL 1.1.1-pre2
This commit is contained in:
+710
-157
@@ -12,14 +12,21 @@
|
||||
#include <openssl/bio.h>
|
||||
#include <openssl/x509_vfy.h>
|
||||
#include <openssl/ssl.h>
|
||||
#ifndef OPENSSL_NO_SRP
|
||||
#include <openssl/srp.h>
|
||||
#endif
|
||||
|
||||
#include "../ssl/ssl_locl.h"
|
||||
#include "internal/sockets.h"
|
||||
#include "internal/nelem.h"
|
||||
#include "handshake_helper.h"
|
||||
#include "testutil.h"
|
||||
|
||||
HANDSHAKE_RESULT *HANDSHAKE_RESULT_new()
|
||||
{
|
||||
HANDSHAKE_RESULT *ret = OPENSSL_zalloc(sizeof(*ret));
|
||||
TEST_check(ret != NULL);
|
||||
HANDSHAKE_RESULT *ret;
|
||||
|
||||
TEST_ptr(ret = OPENSSL_zalloc(sizeof(*ret)));
|
||||
return ret;
|
||||
}
|
||||
|
||||
@@ -31,6 +38,9 @@ void HANDSHAKE_RESULT_free(HANDSHAKE_RESULT *result)
|
||||
OPENSSL_free(result->server_npn_negotiated);
|
||||
OPENSSL_free(result->client_alpn_negotiated);
|
||||
OPENSSL_free(result->server_alpn_negotiated);
|
||||
sk_X509_NAME_pop_free(result->server_ca_names, X509_NAME_free);
|
||||
sk_X509_NAME_pop_free(result->client_ca_names, X509_NAME_free);
|
||||
OPENSSL_free(result->cipher);
|
||||
OPENSSL_free(result);
|
||||
}
|
||||
|
||||
@@ -52,6 +62,8 @@ typedef struct ctx_data_st {
|
||||
size_t npn_protocols_len;
|
||||
unsigned char *alpn_protocols;
|
||||
size_t alpn_protocols_len;
|
||||
char *srp_user;
|
||||
char *srp_password;
|
||||
} CTX_DATA;
|
||||
|
||||
/* |ctx_data| itself is stack-allocated. */
|
||||
@@ -61,6 +73,10 @@ static void ctx_data_free_data(CTX_DATA *ctx_data)
|
||||
ctx_data->npn_protocols = NULL;
|
||||
OPENSSL_free(ctx_data->alpn_protocols);
|
||||
ctx_data->alpn_protocols = NULL;
|
||||
OPENSSL_free(ctx_data->srp_user);
|
||||
ctx_data->srp_user = NULL;
|
||||
OPENSSL_free(ctx_data->srp_password);
|
||||
ctx_data->srp_password = NULL;
|
||||
}
|
||||
|
||||
static int ex_data_idx;
|
||||
@@ -123,6 +139,68 @@ static int select_server_ctx(SSL *s, void *arg, int ignore)
|
||||
}
|
||||
}
|
||||
|
||||
static int client_hello_select_server_ctx(SSL *s, void *arg, int ignore)
|
||||
{
|
||||
const char *servername;
|
||||
const unsigned char *p;
|
||||
size_t len, remaining;
|
||||
HANDSHAKE_EX_DATA *ex_data =
|
||||
(HANDSHAKE_EX_DATA*)(SSL_get_ex_data(s, ex_data_idx));
|
||||
|
||||
/*
|
||||
* The server_name extension was given too much extensibility when it
|
||||
* was written, so parsing the normal case is a bit complex.
|
||||
*/
|
||||
if (!SSL_client_hello_get0_ext(s, TLSEXT_TYPE_server_name, &p,
|
||||
&remaining) ||
|
||||
remaining <= 2)
|
||||
return 0;
|
||||
/* Extract the length of the supplied list of names. */
|
||||
len = (*(p++) << 8);
|
||||
len += *(p++);
|
||||
if (len + 2 != remaining)
|
||||
return 0;
|
||||
remaining = len;
|
||||
/*
|
||||
* The list in practice only has a single element, so we only consider
|
||||
* the first one.
|
||||
*/
|
||||
if (remaining == 0 || *p++ != TLSEXT_NAMETYPE_host_name)
|
||||
return 0;
|
||||
remaining--;
|
||||
/* Now we can finally pull out the byte array with the actual hostname. */
|
||||
if (remaining <= 2)
|
||||
return 0;
|
||||
len = (*(p++) << 8);
|
||||
len += *(p++);
|
||||
if (len + 2 > remaining)
|
||||
return 0;
|
||||
remaining = len;
|
||||
servername = (const char *)p;
|
||||
|
||||
if (len == strlen("server2") && strncmp(servername, "server2", len) == 0) {
|
||||
SSL_CTX *new_ctx = arg;
|
||||
SSL_set_SSL_CTX(s, new_ctx);
|
||||
/*
|
||||
* Copy over all the SSL_CTX options - reasonable behavior
|
||||
* allows testing of cases where the options between two
|
||||
* contexts differ/conflict
|
||||
*/
|
||||
SSL_clear_options(s, 0xFFFFFFFFL);
|
||||
SSL_set_options(s, SSL_CTX_get_options(new_ctx));
|
||||
|
||||
ex_data->servername = SSL_TEST_SERVERNAME_SERVER2;
|
||||
return 1;
|
||||
} else if (len == strlen("server1") &&
|
||||
strncmp(servername, "server1", len) == 0) {
|
||||
ex_data->servername = SSL_TEST_SERVERNAME_SERVER1;
|
||||
return 1;
|
||||
} else if (ignore) {
|
||||
ex_data->servername = SSL_TEST_SERVERNAME_SERVER1;
|
||||
return 1;
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
/*
|
||||
* (RFC 6066):
|
||||
* If the server understood the ClientHello extension but
|
||||
@@ -144,6 +222,52 @@ static int servername_reject_cb(SSL *s, int *ad, void *arg)
|
||||
return select_server_ctx(s, arg, 0);
|
||||
}
|
||||
|
||||
static int client_hello_ignore_cb(SSL *s, int *al, void *arg)
|
||||
{
|
||||
if (!client_hello_select_server_ctx(s, arg, 1)) {
|
||||
*al = SSL_AD_UNRECOGNIZED_NAME;
|
||||
return SSL_CLIENT_HELLO_ERROR;
|
||||
}
|
||||
return SSL_CLIENT_HELLO_SUCCESS;
|
||||
}
|
||||
|
||||
static int client_hello_reject_cb(SSL *s, int *al, void *arg)
|
||||
{
|
||||
if (!client_hello_select_server_ctx(s, arg, 0)) {
|
||||
*al = SSL_AD_UNRECOGNIZED_NAME;
|
||||
return SSL_CLIENT_HELLO_ERROR;
|
||||
}
|
||||
return SSL_CLIENT_HELLO_SUCCESS;
|
||||
}
|
||||
|
||||
static int client_hello_nov12_cb(SSL *s, int *al, void *arg)
|
||||
{
|
||||
int ret;
|
||||
unsigned int v;
|
||||
const unsigned char *p;
|
||||
|
||||
v = SSL_client_hello_get0_legacy_version(s);
|
||||
if (v > TLS1_2_VERSION || v < SSL3_VERSION) {
|
||||
*al = SSL_AD_PROTOCOL_VERSION;
|
||||
return SSL_CLIENT_HELLO_ERROR;
|
||||
}
|
||||
(void)SSL_client_hello_get0_session_id(s, &p);
|
||||
if (p == NULL ||
|
||||
SSL_client_hello_get0_random(s, &p) == 0 ||
|
||||
SSL_client_hello_get0_ciphers(s, &p) == 0 ||
|
||||
SSL_client_hello_get0_compression_methods(s, &p) == 0) {
|
||||
*al = SSL_AD_INTERNAL_ERROR;
|
||||
return SSL_CLIENT_HELLO_ERROR;
|
||||
}
|
||||
ret = client_hello_select_server_ctx(s, arg, 0);
|
||||
SSL_set_max_proto_version(s, TLS1_1_VERSION);
|
||||
if (!ret) {
|
||||
*al = SSL_AD_UNRECOGNIZED_NAME;
|
||||
return SSL_CLIENT_HELLO_ERROR;
|
||||
}
|
||||
return SSL_CLIENT_HELLO_SUCCESS;
|
||||
}
|
||||
|
||||
static unsigned char dummy_ocsp_resp_good_val = 0xff;
|
||||
static unsigned char dummy_ocsp_resp_bad_val = 0xfe;
|
||||
|
||||
@@ -203,18 +327,17 @@ static int do_not_call_session_ticket_cb(SSL *s, unsigned char *key_name,
|
||||
}
|
||||
|
||||
/* Parse the comma-separated list into TLS format. */
|
||||
static void parse_protos(const char *protos, unsigned char **out, size_t *outlen)
|
||||
static int parse_protos(const char *protos, unsigned char **out, size_t *outlen)
|
||||
{
|
||||
size_t len, i, prefix;
|
||||
|
||||
len = strlen(protos);
|
||||
|
||||
/* Should never have reuse. */
|
||||
TEST_check(*out == NULL);
|
||||
|
||||
/* Test values are small, so we omit length limit checks. */
|
||||
*out = OPENSSL_malloc(len + 1);
|
||||
TEST_check(*out != NULL);
|
||||
if (!TEST_ptr_null(*out)
|
||||
/* Test values are small, so we omit length limit checks. */
|
||||
|| !TEST_ptr(*out = OPENSSL_malloc(len + 1)))
|
||||
return 0;
|
||||
*outlen = len + 1;
|
||||
|
||||
/*
|
||||
@@ -227,14 +350,22 @@ static void parse_protos(const char *protos, unsigned char **out, size_t *outlen
|
||||
i = prefix + 1;
|
||||
while (i <= len) {
|
||||
if ((*out)[i] == ',') {
|
||||
TEST_check(i - 1 - prefix > 0);
|
||||
(*out)[prefix] = i - 1 - prefix;
|
||||
if (!TEST_int_gt(i - 1, prefix))
|
||||
goto err;
|
||||
(*out)[prefix] = (unsigned char)(i - 1 - prefix);
|
||||
prefix = i;
|
||||
}
|
||||
i++;
|
||||
}
|
||||
TEST_check(len - prefix > 0);
|
||||
(*out)[prefix] = len - prefix;
|
||||
if (!TEST_int_gt(len, prefix))
|
||||
goto err;
|
||||
(*out)[prefix] = (unsigned char)(len - prefix);
|
||||
return 1;
|
||||
|
||||
err:
|
||||
OPENSSL_free(*out);
|
||||
*out = NULL;
|
||||
return 0;
|
||||
}
|
||||
|
||||
#ifndef OPENSSL_NO_NEXTPROTONEG
|
||||
@@ -255,8 +386,8 @@ static int client_npn_cb(SSL *s, unsigned char **out, unsigned char *outlen,
|
||||
ctx_data->npn_protocols,
|
||||
ctx_data->npn_protocols_len);
|
||||
/* Accept both OPENSSL_NPN_NEGOTIATED and OPENSSL_NPN_NO_OVERLAP. */
|
||||
TEST_check(ret == OPENSSL_NPN_NEGOTIATED || ret == OPENSSL_NPN_NO_OVERLAP);
|
||||
return SSL_TLSEXT_ERR_OK;
|
||||
return TEST_true(ret == OPENSSL_NPN_NEGOTIATED || ret == OPENSSL_NPN_NO_OVERLAP)
|
||||
? SSL_TLSEXT_ERR_OK : SSL_TLSEXT_ERR_ALERT_FATAL;
|
||||
}
|
||||
|
||||
static int server_npn_cb(SSL *s, const unsigned char **data,
|
||||
@@ -300,44 +431,83 @@ static int server_alpn_cb(SSL *s, const unsigned char **out,
|
||||
: SSL_TLSEXT_ERR_ALERT_FATAL;
|
||||
}
|
||||
|
||||
#ifndef OPENSSL_NO_SRP
|
||||
static char *client_srp_cb(SSL *s, void *arg)
|
||||
{
|
||||
CTX_DATA *ctx_data = (CTX_DATA*)(arg);
|
||||
return OPENSSL_strdup(ctx_data->srp_password);
|
||||
}
|
||||
|
||||
static int server_srp_cb(SSL *s, int *ad, void *arg)
|
||||
{
|
||||
CTX_DATA *ctx_data = (CTX_DATA*)(arg);
|
||||
if (strcmp(ctx_data->srp_user, SSL_get_srp_username(s)) != 0)
|
||||
return SSL3_AL_FATAL;
|
||||
if (SSL_set_srp_server_param_pw(s, ctx_data->srp_user,
|
||||
ctx_data->srp_password,
|
||||
"2048" /* known group */) < 0) {
|
||||
*ad = SSL_AD_INTERNAL_ERROR;
|
||||
return SSL3_AL_FATAL;
|
||||
}
|
||||
return SSL_ERROR_NONE;
|
||||
}
|
||||
#endif /* !OPENSSL_NO_SRP */
|
||||
|
||||
/*
|
||||
* Configure callbacks and other properties that can't be set directly
|
||||
* in the server/client CONF.
|
||||
*/
|
||||
static void configure_handshake_ctx(SSL_CTX *server_ctx, SSL_CTX *server2_ctx,
|
||||
SSL_CTX *client_ctx,
|
||||
const SSL_TEST_CTX *test,
|
||||
const SSL_TEST_EXTRA_CONF *extra,
|
||||
CTX_DATA *server_ctx_data,
|
||||
CTX_DATA *server2_ctx_data,
|
||||
CTX_DATA *client_ctx_data)
|
||||
static int configure_handshake_ctx(SSL_CTX *server_ctx, SSL_CTX *server2_ctx,
|
||||
SSL_CTX *client_ctx,
|
||||
const SSL_TEST_CTX *test,
|
||||
const SSL_TEST_EXTRA_CONF *extra,
|
||||
CTX_DATA *server_ctx_data,
|
||||
CTX_DATA *server2_ctx_data,
|
||||
CTX_DATA *client_ctx_data)
|
||||
{
|
||||
unsigned char *ticket_keys;
|
||||
size_t ticket_key_len;
|
||||
|
||||
TEST_check(SSL_CTX_set_max_send_fragment(server_ctx,
|
||||
test->max_fragment_size) == 1);
|
||||
if (!TEST_int_eq(SSL_CTX_set_max_send_fragment(server_ctx,
|
||||
test->max_fragment_size), 1))
|
||||
goto err;
|
||||
if (server2_ctx != NULL) {
|
||||
TEST_check(SSL_CTX_set_max_send_fragment(server2_ctx,
|
||||
test->max_fragment_size) == 1);
|
||||
if (!TEST_int_eq(SSL_CTX_set_max_send_fragment(server2_ctx,
|
||||
test->max_fragment_size),
|
||||
1))
|
||||
goto err;
|
||||
}
|
||||
TEST_check(SSL_CTX_set_max_send_fragment(client_ctx,
|
||||
test->max_fragment_size) == 1);
|
||||
if (!TEST_int_eq(SSL_CTX_set_max_send_fragment(client_ctx,
|
||||
test->max_fragment_size), 1))
|
||||
goto err;
|
||||
|
||||
switch (extra->client.verify_callback) {
|
||||
case SSL_TEST_VERIFY_ACCEPT_ALL:
|
||||
SSL_CTX_set_cert_verify_callback(client_ctx, &verify_accept_cb,
|
||||
NULL);
|
||||
SSL_CTX_set_cert_verify_callback(client_ctx, &verify_accept_cb, NULL);
|
||||
break;
|
||||
case SSL_TEST_VERIFY_REJECT_ALL:
|
||||
SSL_CTX_set_cert_verify_callback(client_ctx, &verify_reject_cb,
|
||||
NULL);
|
||||
SSL_CTX_set_cert_verify_callback(client_ctx, &verify_reject_cb, NULL);
|
||||
break;
|
||||
default:
|
||||
case SSL_TEST_VERIFY_NONE:
|
||||
break;
|
||||
}
|
||||
|
||||
/* link the two contexts for SNI purposes */
|
||||
switch (extra->client.max_fragment_len_mode) {
|
||||
case TLSEXT_max_fragment_length_512:
|
||||
case TLSEXT_max_fragment_length_1024:
|
||||
case TLSEXT_max_fragment_length_2048:
|
||||
case TLSEXT_max_fragment_length_4096:
|
||||
case TLSEXT_max_fragment_length_DISABLED:
|
||||
SSL_CTX_set_tlsext_max_fragment_length(
|
||||
client_ctx, extra->client.max_fragment_len_mode);
|
||||
break;
|
||||
}
|
||||
|
||||
/*
|
||||
* Link the two contexts for SNI purposes.
|
||||
* Also do ClientHello callbacks here, as setting both ClientHello and SNI
|
||||
* is bad.
|
||||
*/
|
||||
switch (extra->server.servername_callback) {
|
||||
case SSL_TEST_SERVERNAME_IGNORE_MISMATCH:
|
||||
SSL_CTX_set_tlsext_servername_callback(server_ctx, servername_ignore_cb);
|
||||
@@ -347,8 +517,16 @@ static void configure_handshake_ctx(SSL_CTX *server_ctx, SSL_CTX *server2_ctx,
|
||||
SSL_CTX_set_tlsext_servername_callback(server_ctx, servername_reject_cb);
|
||||
SSL_CTX_set_tlsext_servername_arg(server_ctx, server2_ctx);
|
||||
break;
|
||||
default:
|
||||
case SSL_TEST_SERVERNAME_CB_NONE:
|
||||
break;
|
||||
case SSL_TEST_SERVERNAME_CLIENT_HELLO_IGNORE_MISMATCH:
|
||||
SSL_CTX_set_client_hello_cb(server_ctx, client_hello_ignore_cb, server2_ctx);
|
||||
break;
|
||||
case SSL_TEST_SERVERNAME_CLIENT_HELLO_REJECT_MISMATCH:
|
||||
SSL_CTX_set_client_hello_cb(server_ctx, client_hello_reject_cb, server2_ctx);
|
||||
break;
|
||||
case SSL_TEST_SERVERNAME_CLIENT_HELLO_NO_V12:
|
||||
SSL_CTX_set_client_hello_cb(server_ctx, client_hello_nov12_cb, server2_ctx);
|
||||
}
|
||||
|
||||
if (extra->server.cert_status != SSL_TEST_CERT_STATUS_NONE) {
|
||||
@@ -375,49 +553,57 @@ static void configure_handshake_ctx(SSL_CTX *server_ctx, SSL_CTX *server2_ctx,
|
||||
}
|
||||
#ifndef OPENSSL_NO_NEXTPROTONEG
|
||||
if (extra->server.npn_protocols != NULL) {
|
||||
parse_protos(extra->server.npn_protocols,
|
||||
&server_ctx_data->npn_protocols,
|
||||
&server_ctx_data->npn_protocols_len);
|
||||
SSL_CTX_set_next_protos_advertised_cb(server_ctx, server_npn_cb,
|
||||
server_ctx_data);
|
||||
if (!TEST_true(parse_protos(extra->server.npn_protocols,
|
||||
&server_ctx_data->npn_protocols,
|
||||
&server_ctx_data->npn_protocols_len)))
|
||||
goto err;
|
||||
SSL_CTX_set_npn_advertised_cb(server_ctx, server_npn_cb,
|
||||
server_ctx_data);
|
||||
}
|
||||
if (extra->server2.npn_protocols != NULL) {
|
||||
parse_protos(extra->server2.npn_protocols,
|
||||
&server2_ctx_data->npn_protocols,
|
||||
&server2_ctx_data->npn_protocols_len);
|
||||
TEST_check(server2_ctx != NULL);
|
||||
SSL_CTX_set_next_protos_advertised_cb(server2_ctx, server_npn_cb,
|
||||
server2_ctx_data);
|
||||
if (!TEST_true(parse_protos(extra->server2.npn_protocols,
|
||||
&server2_ctx_data->npn_protocols,
|
||||
&server2_ctx_data->npn_protocols_len))
|
||||
|| !TEST_ptr(server2_ctx))
|
||||
goto err;
|
||||
SSL_CTX_set_npn_advertised_cb(server2_ctx, server_npn_cb,
|
||||
server2_ctx_data);
|
||||
}
|
||||
if (extra->client.npn_protocols != NULL) {
|
||||
parse_protos(extra->client.npn_protocols,
|
||||
&client_ctx_data->npn_protocols,
|
||||
&client_ctx_data->npn_protocols_len);
|
||||
if (!TEST_true(parse_protos(extra->client.npn_protocols,
|
||||
&client_ctx_data->npn_protocols,
|
||||
&client_ctx_data->npn_protocols_len)))
|
||||
goto err;
|
||||
SSL_CTX_set_next_proto_select_cb(client_ctx, client_npn_cb,
|
||||
client_ctx_data);
|
||||
}
|
||||
#endif
|
||||
if (extra->server.alpn_protocols != NULL) {
|
||||
parse_protos(extra->server.alpn_protocols,
|
||||
&server_ctx_data->alpn_protocols,
|
||||
&server_ctx_data->alpn_protocols_len);
|
||||
if (!TEST_true(parse_protos(extra->server.alpn_protocols,
|
||||
&server_ctx_data->alpn_protocols,
|
||||
&server_ctx_data->alpn_protocols_len)))
|
||||
goto err;
|
||||
SSL_CTX_set_alpn_select_cb(server_ctx, server_alpn_cb, server_ctx_data);
|
||||
}
|
||||
if (extra->server2.alpn_protocols != NULL) {
|
||||
TEST_check(server2_ctx != NULL);
|
||||
parse_protos(extra->server2.alpn_protocols,
|
||||
&server2_ctx_data->alpn_protocols,
|
||||
&server2_ctx_data->alpn_protocols_len);
|
||||
SSL_CTX_set_alpn_select_cb(server2_ctx, server_alpn_cb, server2_ctx_data);
|
||||
if (!TEST_ptr(server2_ctx)
|
||||
|| !TEST_true(parse_protos(extra->server2.alpn_protocols,
|
||||
&server2_ctx_data->alpn_protocols,
|
||||
&server2_ctx_data->alpn_protocols_len
|
||||
)))
|
||||
goto err;
|
||||
SSL_CTX_set_alpn_select_cb(server2_ctx, server_alpn_cb,
|
||||
server2_ctx_data);
|
||||
}
|
||||
if (extra->client.alpn_protocols != NULL) {
|
||||
unsigned char *alpn_protos = NULL;
|
||||
size_t alpn_protos_len;
|
||||
parse_protos(extra->client.alpn_protocols,
|
||||
&alpn_protos, &alpn_protos_len);
|
||||
/* Reversed return value convention... */
|
||||
TEST_check(SSL_CTX_set_alpn_protos(client_ctx, alpn_protos,
|
||||
alpn_protos_len) == 0);
|
||||
if (!TEST_true(parse_protos(extra->client.alpn_protocols,
|
||||
&alpn_protos, &alpn_protos_len))
|
||||
/* Reversed return value convention... */
|
||||
|| !TEST_int_eq(SSL_CTX_set_alpn_protos(client_ctx, alpn_protos,
|
||||
alpn_protos_len), 0))
|
||||
goto err;
|
||||
OPENSSL_free(alpn_protos);
|
||||
}
|
||||
|
||||
@@ -426,26 +612,60 @@ static void configure_handshake_ctx(SSL_CTX *server_ctx, SSL_CTX *server2_ctx,
|
||||
* one CTX in another CTX. Don't address server2 for the moment.
|
||||
*/
|
||||
ticket_key_len = SSL_CTX_set_tlsext_ticket_keys(server_ctx, NULL, 0);
|
||||
ticket_keys = OPENSSL_zalloc(ticket_key_len);
|
||||
TEST_check(ticket_keys != NULL);
|
||||
TEST_check(SSL_CTX_set_tlsext_ticket_keys(server_ctx, ticket_keys,
|
||||
ticket_key_len) == 1);
|
||||
if (!TEST_ptr(ticket_keys = OPENSSL_zalloc(ticket_key_len))
|
||||
|| !TEST_int_eq(SSL_CTX_set_tlsext_ticket_keys(server_ctx,
|
||||
ticket_keys,
|
||||
ticket_key_len), 1)) {
|
||||
OPENSSL_free(ticket_keys);
|
||||
goto err;
|
||||
}
|
||||
OPENSSL_free(ticket_keys);
|
||||
|
||||
/* The default log list includes EC keys, so CT can't work without EC. */
|
||||
#if !defined(OPENSSL_NO_CT) && !defined(OPENSSL_NO_EC)
|
||||
TEST_check(SSL_CTX_set_default_ctlog_list_file(client_ctx));
|
||||
if (!TEST_true(SSL_CTX_set_default_ctlog_list_file(client_ctx)))
|
||||
goto err;
|
||||
switch (extra->client.ct_validation) {
|
||||
case SSL_TEST_CT_VALIDATION_PERMISSIVE:
|
||||
TEST_check(SSL_CTX_enable_ct(client_ctx, SSL_CT_VALIDATION_PERMISSIVE));
|
||||
if (!TEST_true(SSL_CTX_enable_ct(client_ctx,
|
||||
SSL_CT_VALIDATION_PERMISSIVE)))
|
||||
goto err;
|
||||
break;
|
||||
case SSL_TEST_CT_VALIDATION_STRICT:
|
||||
TEST_check(SSL_CTX_enable_ct(client_ctx, SSL_CT_VALIDATION_STRICT));
|
||||
if (!TEST_true(SSL_CTX_enable_ct(client_ctx, SSL_CT_VALIDATION_STRICT)))
|
||||
goto err;
|
||||
break;
|
||||
case SSL_TEST_CT_VALIDATION_NONE:
|
||||
break;
|
||||
}
|
||||
#endif
|
||||
#ifndef OPENSSL_NO_SRP
|
||||
if (extra->server.srp_user != NULL) {
|
||||
SSL_CTX_set_srp_username_callback(server_ctx, server_srp_cb);
|
||||
server_ctx_data->srp_user = OPENSSL_strdup(extra->server.srp_user);
|
||||
server_ctx_data->srp_password = OPENSSL_strdup(extra->server.srp_password);
|
||||
SSL_CTX_set_srp_cb_arg(server_ctx, server_ctx_data);
|
||||
}
|
||||
if (extra->server2.srp_user != NULL) {
|
||||
if (!TEST_ptr(server2_ctx))
|
||||
goto err;
|
||||
SSL_CTX_set_srp_username_callback(server2_ctx, server_srp_cb);
|
||||
server2_ctx_data->srp_user = OPENSSL_strdup(extra->server2.srp_user);
|
||||
server2_ctx_data->srp_password = OPENSSL_strdup(extra->server2.srp_password);
|
||||
SSL_CTX_set_srp_cb_arg(server2_ctx, server2_ctx_data);
|
||||
}
|
||||
if (extra->client.srp_user != NULL) {
|
||||
if (!TEST_true(SSL_CTX_set_srp_username(client_ctx,
|
||||
extra->client.srp_user)))
|
||||
goto err;
|
||||
SSL_CTX_set_srp_client_pwd_callback(client_ctx, client_srp_cb);
|
||||
client_ctx_data->srp_password = OPENSSL_strdup(extra->client.srp_password);
|
||||
SSL_CTX_set_srp_cb_arg(client_ctx, client_ctx_data);
|
||||
}
|
||||
#endif /* !OPENSSL_NO_SRP */
|
||||
return 1;
|
||||
err:
|
||||
return 0;
|
||||
}
|
||||
|
||||
/* Configure per-SSL callbacks and other properties. */
|
||||
@@ -455,13 +675,17 @@ static void configure_handshake_ssl(SSL *server, SSL *client,
|
||||
if (extra->client.servername != SSL_TEST_SERVERNAME_NONE)
|
||||
SSL_set_tlsext_host_name(client,
|
||||
ssl_servername_name(extra->client.servername));
|
||||
if (extra->client.force_pha)
|
||||
SSL_force_post_handshake_auth(client);
|
||||
}
|
||||
|
||||
/* The status for each connection phase. */
|
||||
typedef enum {
|
||||
PEER_SUCCESS,
|
||||
PEER_RETRY,
|
||||
PEER_ERROR
|
||||
PEER_ERROR,
|
||||
PEER_WAITING,
|
||||
PEER_TEST_FAILURE
|
||||
} peer_status_t;
|
||||
|
||||
/* An SSL object and associated read-write buffers. */
|
||||
@@ -477,17 +701,27 @@ typedef struct peer_st {
|
||||
peer_status_t status;
|
||||
} PEER;
|
||||
|
||||
static void create_peer(PEER *peer, SSL_CTX *ctx)
|
||||
static int create_peer(PEER *peer, SSL_CTX *ctx)
|
||||
{
|
||||
static const int peer_buffer_size = 64 * 1024;
|
||||
SSL *ssl = NULL;
|
||||
unsigned char *read_buf = NULL, *write_buf = NULL;
|
||||
|
||||
peer->ssl = SSL_new(ctx);
|
||||
TEST_check(peer->ssl != NULL);
|
||||
peer->write_buf = OPENSSL_zalloc(peer_buffer_size);
|
||||
TEST_check(peer->write_buf != NULL);
|
||||
peer->read_buf = OPENSSL_zalloc(peer_buffer_size);
|
||||
TEST_check(peer->read_buf != NULL);
|
||||
if (!TEST_ptr(ssl = SSL_new(ctx))
|
||||
|| !TEST_ptr(write_buf = OPENSSL_zalloc(peer_buffer_size))
|
||||
|| !TEST_ptr(read_buf = OPENSSL_zalloc(peer_buffer_size)))
|
||||
goto err;
|
||||
|
||||
peer->ssl = ssl;
|
||||
peer->write_buf = write_buf;
|
||||
peer->read_buf = read_buf;
|
||||
peer->write_buf_len = peer->read_buf_len = peer_buffer_size;
|
||||
return 1;
|
||||
err:
|
||||
SSL_free(ssl);
|
||||
OPENSSL_free(write_buf);
|
||||
OPENSSL_free(read_buf);
|
||||
return 0;
|
||||
}
|
||||
|
||||
static void peer_free_data(PEER *peer)
|
||||
@@ -503,24 +737,21 @@ static void peer_free_data(PEER *peer)
|
||||
*/
|
||||
static void do_handshake_step(PEER *peer)
|
||||
{
|
||||
int ret;
|
||||
|
||||
if (peer->status != PEER_RETRY) {
|
||||
peer->status = PEER_ERROR;
|
||||
return;
|
||||
}
|
||||
|
||||
ret = SSL_do_handshake(peer->ssl);
|
||||
|
||||
if (ret == 1) {
|
||||
peer->status = PEER_SUCCESS;
|
||||
} else if (ret == 0) {
|
||||
peer->status = PEER_ERROR;
|
||||
if (!TEST_int_eq(peer->status, PEER_RETRY)) {
|
||||
peer->status = PEER_TEST_FAILURE;
|
||||
} else {
|
||||
int error = SSL_get_error(peer->ssl, ret);
|
||||
/* Memory bios should never block with SSL_ERROR_WANT_WRITE. */
|
||||
if (error != SSL_ERROR_WANT_READ)
|
||||
int ret = SSL_do_handshake(peer->ssl);
|
||||
|
||||
if (ret == 1) {
|
||||
peer->status = PEER_SUCCESS;
|
||||
} else if (ret == 0) {
|
||||
peer->status = PEER_ERROR;
|
||||
} else {
|
||||
int error = SSL_get_error(peer->ssl, ret);
|
||||
/* Memory bios should never block with SSL_ERROR_WANT_WRITE. */
|
||||
if (error != SSL_ERROR_WANT_READ)
|
||||
peer->status = PEER_ERROR;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -537,13 +768,19 @@ static void do_app_data_step(PEER *peer)
|
||||
{
|
||||
int ret = 1, write_bytes;
|
||||
|
||||
TEST_check(peer->status == PEER_RETRY);
|
||||
if (!TEST_int_eq(peer->status, PEER_RETRY)) {
|
||||
peer->status = PEER_TEST_FAILURE;
|
||||
return;
|
||||
}
|
||||
|
||||
/* We read everything available... */
|
||||
while (ret > 0 && peer->bytes_to_read) {
|
||||
ret = SSL_read(peer->ssl, peer->read_buf, peer->read_buf_len);
|
||||
if (ret > 0) {
|
||||
TEST_check(ret <= peer->bytes_to_read);
|
||||
if (!TEST_int_le(ret, peer->bytes_to_read)) {
|
||||
peer->status = PEER_TEST_FAILURE;
|
||||
return;
|
||||
}
|
||||
peer->bytes_to_read -= ret;
|
||||
} else if (ret == 0) {
|
||||
peer->status = PEER_ERROR;
|
||||
@@ -564,7 +801,10 @@ static void do_app_data_step(PEER *peer)
|
||||
ret = SSL_write(peer->ssl, peer->write_buf, write_bytes);
|
||||
if (ret > 0) {
|
||||
/* SSL_write will only succeed with a complete write. */
|
||||
TEST_check(ret == write_bytes);
|
||||
if (!TEST_int_eq(ret, write_bytes)) {
|
||||
peer->status = PEER_TEST_FAILURE;
|
||||
return;
|
||||
}
|
||||
peer->bytes_to_write -= ret;
|
||||
} else {
|
||||
/*
|
||||
@@ -603,9 +843,23 @@ static void do_reneg_setup_step(const SSL_TEST_CTX *test_ctx, PEER *peer)
|
||||
return;
|
||||
}
|
||||
|
||||
TEST_check(peer->status == PEER_RETRY);
|
||||
TEST_check(test_ctx->handshake_mode == SSL_TEST_HANDSHAKE_RENEG_SERVER
|
||||
|| test_ctx->handshake_mode == SSL_TEST_HANDSHAKE_RENEG_CLIENT);
|
||||
if (!TEST_int_eq(peer->status, PEER_RETRY)
|
||||
|| !TEST_true(test_ctx->handshake_mode
|
||||
== SSL_TEST_HANDSHAKE_RENEG_SERVER
|
||||
|| test_ctx->handshake_mode
|
||||
== SSL_TEST_HANDSHAKE_RENEG_CLIENT
|
||||
|| test_ctx->handshake_mode
|
||||
== SSL_TEST_HANDSHAKE_KEY_UPDATE_SERVER
|
||||
|| test_ctx->handshake_mode
|
||||
== SSL_TEST_HANDSHAKE_KEY_UPDATE_CLIENT
|
||||
|| test_ctx->handshake_mode
|
||||
== SSL_TEST_HANDSHAKE_POST_HANDSHAKE_AUTH)) {
|
||||
peer->status = PEER_TEST_FAILURE;
|
||||
return;
|
||||
}
|
||||
|
||||
/* Reset the count of the amount of app data we need to read/write */
|
||||
peer->bytes_to_write = peer->bytes_to_read = test_ctx->app_data_size;
|
||||
|
||||
/* Check if we are the peer that is going to initiate */
|
||||
if ((test_ctx->handshake_mode == SSL_TEST_HANDSHAKE_RENEG_SERVER
|
||||
@@ -619,7 +873,7 @@ static void do_reneg_setup_step(const SSL_TEST_CTX *test_ctx, PEER *peer)
|
||||
if (!SSL_renegotiate_pending(peer->ssl)) {
|
||||
/*
|
||||
* If we are the client we will always attempt to resume the
|
||||
* session. The server may or may not resume dependant on the
|
||||
* session. The server may or may not resume dependent on the
|
||||
* setting of SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION
|
||||
*/
|
||||
if (SSL_is_server(peer->ssl)) {
|
||||
@@ -657,6 +911,48 @@ static void do_reneg_setup_step(const SSL_TEST_CTX *test_ctx, PEER *peer)
|
||||
peer->status = PEER_RETRY;
|
||||
return;
|
||||
}
|
||||
} else if (test_ctx->handshake_mode == SSL_TEST_HANDSHAKE_KEY_UPDATE_SERVER
|
||||
|| test_ctx->handshake_mode
|
||||
== SSL_TEST_HANDSHAKE_KEY_UPDATE_CLIENT) {
|
||||
if (SSL_is_server(peer->ssl)
|
||||
!= (test_ctx->handshake_mode
|
||||
== SSL_TEST_HANDSHAKE_KEY_UPDATE_SERVER)) {
|
||||
peer->status = PEER_SUCCESS;
|
||||
return;
|
||||
}
|
||||
|
||||
ret = SSL_key_update(peer->ssl, test_ctx->key_update_type);
|
||||
if (!ret) {
|
||||
peer->status = PEER_ERROR;
|
||||
return;
|
||||
}
|
||||
do_handshake_step(peer);
|
||||
/*
|
||||
* This is a one step handshake. We shouldn't get anything other than
|
||||
* PEER_SUCCESS
|
||||
*/
|
||||
if (peer->status != PEER_SUCCESS)
|
||||
peer->status = PEER_ERROR;
|
||||
return;
|
||||
} else if (test_ctx->handshake_mode == SSL_TEST_HANDSHAKE_POST_HANDSHAKE_AUTH) {
|
||||
if (SSL_is_server(peer->ssl)) {
|
||||
/* Make the server believe it's received the extension */
|
||||
if (test_ctx->extra.server.force_pha)
|
||||
peer->ssl->post_handshake_auth = SSL_PHA_EXT_RECEIVED;
|
||||
ret = SSL_verify_client_post_handshake(peer->ssl);
|
||||
if (!ret) {
|
||||
peer->status = PEER_ERROR;
|
||||
return;
|
||||
}
|
||||
}
|
||||
do_handshake_step(peer);
|
||||
/*
|
||||
* This is a one step handshake. We shouldn't get anything other than
|
||||
* PEER_SUCCESS
|
||||
*/
|
||||
if (peer->status != PEER_SUCCESS)
|
||||
peer->status = PEER_ERROR;
|
||||
return;
|
||||
}
|
||||
|
||||
/*
|
||||
@@ -678,7 +974,7 @@ static void do_reneg_setup_step(const SSL_TEST_CTX *test_ctx, PEER *peer)
|
||||
peer->status = PEER_ERROR;
|
||||
return;
|
||||
}
|
||||
/* If we're no in init yet then we're not done with setup yet */
|
||||
/* If we're not in init yet then we're not done with setup yet */
|
||||
if (!SSL_in_init(peer->ssl))
|
||||
return;
|
||||
}
|
||||
@@ -706,15 +1002,18 @@ static void do_shutdown_step(PEER *peer)
|
||||
{
|
||||
int ret;
|
||||
|
||||
TEST_check(peer->status == PEER_RETRY);
|
||||
if (!TEST_int_eq(peer->status, PEER_RETRY)) {
|
||||
peer->status = PEER_TEST_FAILURE;
|
||||
return;
|
||||
}
|
||||
ret = SSL_shutdown(peer->ssl);
|
||||
|
||||
if (ret == 1) {
|
||||
peer->status = PEER_SUCCESS;
|
||||
} else if (ret < 0) { /* On 0, we retry. */
|
||||
int error = SSL_get_error(peer->ssl, ret);
|
||||
/* Memory bios should never block with SSL_ERROR_WANT_WRITE. */
|
||||
if (error != SSL_ERROR_WANT_READ)
|
||||
|
||||
if (error != SSL_ERROR_WANT_READ && error != SSL_ERROR_WANT_WRITE)
|
||||
peer->status = PEER_ERROR;
|
||||
}
|
||||
}
|
||||
@@ -729,18 +1028,42 @@ typedef enum {
|
||||
CONNECTION_DONE
|
||||
} connect_phase_t;
|
||||
|
||||
|
||||
static int renegotiate_op(const SSL_TEST_CTX *test_ctx)
|
||||
{
|
||||
switch (test_ctx->handshake_mode) {
|
||||
case SSL_TEST_HANDSHAKE_RENEG_SERVER:
|
||||
case SSL_TEST_HANDSHAKE_RENEG_CLIENT:
|
||||
return 1;
|
||||
default:
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
static int post_handshake_op(const SSL_TEST_CTX *test_ctx)
|
||||
{
|
||||
switch (test_ctx->handshake_mode) {
|
||||
case SSL_TEST_HANDSHAKE_KEY_UPDATE_CLIENT:
|
||||
case SSL_TEST_HANDSHAKE_KEY_UPDATE_SERVER:
|
||||
case SSL_TEST_HANDSHAKE_POST_HANDSHAKE_AUTH:
|
||||
return 1;
|
||||
default:
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
||||
static connect_phase_t next_phase(const SSL_TEST_CTX *test_ctx,
|
||||
connect_phase_t phase)
|
||||
{
|
||||
switch (phase) {
|
||||
case HANDSHAKE:
|
||||
if (test_ctx->handshake_mode == SSL_TEST_HANDSHAKE_RENEG_SERVER
|
||||
|| test_ctx->handshake_mode == SSL_TEST_HANDSHAKE_RENEG_CLIENT)
|
||||
if (renegotiate_op(test_ctx) || post_handshake_op(test_ctx))
|
||||
return RENEG_APPLICATION_DATA;
|
||||
return APPLICATION_DATA;
|
||||
case RENEG_APPLICATION_DATA:
|
||||
return RENEG_SETUP;
|
||||
case RENEG_SETUP:
|
||||
if (post_handshake_op(test_ctx))
|
||||
return APPLICATION_DATA;
|
||||
return RENEG_HANDSHAKE;
|
||||
case RENEG_HANDSHAKE:
|
||||
return APPLICATION_DATA;
|
||||
@@ -748,9 +1071,11 @@ static connect_phase_t next_phase(const SSL_TEST_CTX *test_ctx,
|
||||
return SHUTDOWN;
|
||||
case SHUTDOWN:
|
||||
return CONNECTION_DONE;
|
||||
default:
|
||||
TEST_check(0); /* Should never call next_phase when done. */
|
||||
case CONNECTION_DONE:
|
||||
TEST_error("Trying to progress after connection done");
|
||||
break;
|
||||
}
|
||||
return -1;
|
||||
}
|
||||
|
||||
static void do_connect_step(const SSL_TEST_CTX *test_ctx, PEER *peer,
|
||||
@@ -775,8 +1100,9 @@ static void do_connect_step(const SSL_TEST_CTX *test_ctx, PEER *peer,
|
||||
case SHUTDOWN:
|
||||
do_shutdown_step(peer);
|
||||
break;
|
||||
default:
|
||||
TEST_check(0);
|
||||
case CONNECTION_DONE:
|
||||
TEST_error("Action after connection done");
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -804,11 +1130,21 @@ static handshake_status_t handshake_status(peer_status_t last_status,
|
||||
int client_spoke_last)
|
||||
{
|
||||
switch (last_status) {
|
||||
case PEER_TEST_FAILURE:
|
||||
return INTERNAL_ERROR;
|
||||
|
||||
case PEER_WAITING:
|
||||
/* Shouldn't ever happen */
|
||||
return INTERNAL_ERROR;
|
||||
|
||||
case PEER_SUCCESS:
|
||||
switch (previous_status) {
|
||||
case PEER_TEST_FAILURE:
|
||||
return INTERNAL_ERROR;
|
||||
case PEER_SUCCESS:
|
||||
/* Both succeeded. */
|
||||
return HANDSHAKE_SUCCESS;
|
||||
case PEER_WAITING:
|
||||
case PEER_RETRY:
|
||||
/* Let the first peer finish. */
|
||||
return HANDSHAKE_RETRY;
|
||||
@@ -826,6 +1162,11 @@ static handshake_status_t handshake_status(peer_status_t last_status,
|
||||
|
||||
case PEER_ERROR:
|
||||
switch (previous_status) {
|
||||
case PEER_TEST_FAILURE:
|
||||
return INTERNAL_ERROR;
|
||||
case PEER_WAITING:
|
||||
/* The client failed immediately before sending the ClientHello */
|
||||
return client_spoke_last ? CLIENT_ERROR : INTERNAL_ERROR;
|
||||
case PEER_SUCCESS:
|
||||
/*
|
||||
* First peer succeeded but second peer errored.
|
||||
@@ -850,18 +1191,144 @@ static handshake_status_t handshake_status(peer_status_t last_status,
|
||||
/* Convert unsigned char buf's that shouldn't contain any NUL-bytes to char. */
|
||||
static char *dup_str(const unsigned char *in, size_t len)
|
||||
{
|
||||
char *ret;
|
||||
char *ret = NULL;
|
||||
|
||||
if(len == 0)
|
||||
if (len == 0)
|
||||
return NULL;
|
||||
|
||||
/* Assert that the string does not contain NUL-bytes. */
|
||||
TEST_check(OPENSSL_strnlen((const char*)(in), len) == len);
|
||||
ret = OPENSSL_strndup((const char*)(in), len);
|
||||
TEST_check(ret != NULL);
|
||||
if (TEST_size_t_eq(OPENSSL_strnlen((const char*)(in), len), len))
|
||||
TEST_ptr(ret = OPENSSL_strndup((const char*)(in), len));
|
||||
return ret;
|
||||
}
|
||||
|
||||
static int pkey_type(EVP_PKEY *pkey)
|
||||
{
|
||||
int nid = EVP_PKEY_id(pkey);
|
||||
|
||||
#ifndef OPENSSL_NO_EC
|
||||
if (nid == EVP_PKEY_EC) {
|
||||
const EC_KEY *ec = EVP_PKEY_get0_EC_KEY(pkey);
|
||||
return EC_GROUP_get_curve_name(EC_KEY_get0_group(ec));
|
||||
}
|
||||
#endif
|
||||
return nid;
|
||||
}
|
||||
|
||||
static int peer_pkey_type(SSL *s)
|
||||
{
|
||||
X509 *x = SSL_get_peer_certificate(s);
|
||||
|
||||
if (x != NULL) {
|
||||
int nid = pkey_type(X509_get0_pubkey(x));
|
||||
|
||||
X509_free(x);
|
||||
return nid;
|
||||
}
|
||||
return NID_undef;
|
||||
}
|
||||
|
||||
#if !defined(OPENSSL_NO_SCTP) && !defined(OPENSSL_NO_SOCK)
|
||||
static int set_sock_as_sctp(int sock)
|
||||
{
|
||||
/*
|
||||
* For SCTP we have to set various options on the socket prior to
|
||||
* connecting. This is done automatically by BIO_new_dgram_sctp().
|
||||
* We don't actually need the created BIO though so we free it again
|
||||
* immediately.
|
||||
*/
|
||||
BIO *tmpbio = BIO_new_dgram_sctp(sock, BIO_NOCLOSE);
|
||||
|
||||
if (tmpbio == NULL)
|
||||
return 0;
|
||||
BIO_free(tmpbio);
|
||||
|
||||
return 1;
|
||||
}
|
||||
|
||||
static int create_sctp_socks(int *ssock, int *csock)
|
||||
{
|
||||
BIO_ADDRINFO *res = NULL;
|
||||
const BIO_ADDRINFO *ai = NULL;
|
||||
int lsock = INVALID_SOCKET, asock = INVALID_SOCKET;
|
||||
int consock = INVALID_SOCKET;
|
||||
int ret = 0;
|
||||
int family = 0;
|
||||
|
||||
if (BIO_sock_init() != 1)
|
||||
return 0;
|
||||
|
||||
/*
|
||||
* Port is 4463. It could be anything. It will fail if it's already being
|
||||
* used for some other SCTP service. It seems unlikely though so we don't
|
||||
* worry about it here.
|
||||
*/
|
||||
if (!BIO_lookup_ex(NULL, "4463", BIO_LOOKUP_SERVER, family, SOCK_STREAM,
|
||||
IPPROTO_SCTP, &res))
|
||||
return 0;
|
||||
|
||||
for (ai = res; ai != NULL; ai = BIO_ADDRINFO_next(ai)) {
|
||||
family = BIO_ADDRINFO_family(ai);
|
||||
lsock = BIO_socket(family, SOCK_STREAM, IPPROTO_SCTP, 0);
|
||||
if (lsock == INVALID_SOCKET) {
|
||||
/* Maybe the kernel doesn't support the socket family, even if
|
||||
* BIO_lookup() added it in the returned result...
|
||||
*/
|
||||
continue;
|
||||
}
|
||||
|
||||
if (!set_sock_as_sctp(lsock)
|
||||
|| !BIO_listen(lsock, BIO_ADDRINFO_address(ai),
|
||||
BIO_SOCK_REUSEADDR)) {
|
||||
BIO_closesocket(lsock);
|
||||
lsock = INVALID_SOCKET;
|
||||
continue;
|
||||
}
|
||||
|
||||
/* Success, don't try any more addresses */
|
||||
break;
|
||||
}
|
||||
|
||||
if (lsock == INVALID_SOCKET)
|
||||
goto err;
|
||||
|
||||
BIO_ADDRINFO_free(res);
|
||||
res = NULL;
|
||||
|
||||
if (!BIO_lookup_ex(NULL, "4463", BIO_LOOKUP_CLIENT, family, SOCK_STREAM,
|
||||
IPPROTO_SCTP, &res))
|
||||
goto err;
|
||||
|
||||
consock = BIO_socket(family, SOCK_STREAM, IPPROTO_SCTP, 0);
|
||||
if (consock == INVALID_SOCKET)
|
||||
goto err;
|
||||
|
||||
if (!set_sock_as_sctp(consock)
|
||||
|| !BIO_connect(consock, BIO_ADDRINFO_address(res), 0)
|
||||
|| !BIO_socket_nbio(consock, 1))
|
||||
goto err;
|
||||
|
||||
asock = BIO_accept_ex(lsock, NULL, BIO_SOCK_NONBLOCK);
|
||||
if (asock == INVALID_SOCKET)
|
||||
goto err;
|
||||
|
||||
*csock = consock;
|
||||
*ssock = asock;
|
||||
consock = asock = INVALID_SOCKET;
|
||||
ret = 1;
|
||||
|
||||
err:
|
||||
BIO_ADDRINFO_free(res);
|
||||
if (consock != INVALID_SOCKET)
|
||||
BIO_closesocket(consock);
|
||||
if (lsock != INVALID_SOCKET)
|
||||
BIO_closesocket(lsock);
|
||||
if (asock != INVALID_SOCKET)
|
||||
BIO_closesocket(asock);
|
||||
return ret;
|
||||
}
|
||||
#endif
|
||||
|
||||
/*
|
||||
* Note that |extra| points to the correct client/server configuration
|
||||
* within |test_ctx|. When configuring the handshake, general mode settings
|
||||
@@ -881,7 +1348,7 @@ static HANDSHAKE_RESULT *do_handshake_internal(
|
||||
SSL_SESSION *session_in, SSL_SESSION **session_out)
|
||||
{
|
||||
PEER server, client;
|
||||
BIO *client_to_server, *server_to_client;
|
||||
BIO *client_to_server = NULL, *server_to_client = NULL;
|
||||
HANDSHAKE_EX_DATA server_ex_data, client_ex_data;
|
||||
CTX_DATA client_ctx_data, server_ctx_data, server2_ctx_data;
|
||||
HANDSHAKE_RESULT *ret = HANDSHAKE_RESULT_new();
|
||||
@@ -890,24 +1357,44 @@ static HANDSHAKE_RESULT *do_handshake_internal(
|
||||
handshake_status_t status = HANDSHAKE_RETRY;
|
||||
const unsigned char* tick = NULL;
|
||||
size_t tick_len = 0;
|
||||
const unsigned char* sess_id = NULL;
|
||||
unsigned int sess_id_len = 0;
|
||||
SSL_SESSION* sess = NULL;
|
||||
const unsigned char *proto = NULL;
|
||||
/* API dictates unsigned int rather than size_t. */
|
||||
unsigned int proto_len = 0;
|
||||
EVP_PKEY *tmp_key;
|
||||
const STACK_OF(X509_NAME) *names;
|
||||
time_t start;
|
||||
const char* cipher;
|
||||
|
||||
if (ret == NULL)
|
||||
return NULL;
|
||||
|
||||
memset(&server_ctx_data, 0, sizeof(server_ctx_data));
|
||||
memset(&server2_ctx_data, 0, sizeof(server2_ctx_data));
|
||||
memset(&client_ctx_data, 0, sizeof(client_ctx_data));
|
||||
memset(&server, 0, sizeof(server));
|
||||
memset(&client, 0, sizeof(client));
|
||||
memset(&server_ex_data, 0, sizeof(server_ex_data));
|
||||
memset(&client_ex_data, 0, sizeof(client_ex_data));
|
||||
|
||||
configure_handshake_ctx(server_ctx, server2_ctx, client_ctx, test_ctx, extra,
|
||||
&server_ctx_data, &server2_ctx_data, &client_ctx_data);
|
||||
if (!configure_handshake_ctx(server_ctx, server2_ctx, client_ctx,
|
||||
test_ctx, extra, &server_ctx_data,
|
||||
&server2_ctx_data, &client_ctx_data)) {
|
||||
TEST_note("configure_handshake_ctx");
|
||||
return NULL;
|
||||
}
|
||||
|
||||
/* Setup SSL and buffers; additional configuration happens below. */
|
||||
create_peer(&server, server_ctx);
|
||||
create_peer(&client, client_ctx);
|
||||
if (!create_peer(&server, server_ctx)) {
|
||||
TEST_note("creating server context");
|
||||
goto err;
|
||||
}
|
||||
if (!create_peer(&client, client_ctx)) {
|
||||
TEST_note("creating client context");
|
||||
goto err;
|
||||
}
|
||||
|
||||
server.bytes_to_write = client.bytes_to_read = test_ctx->app_data_size;
|
||||
client.bytes_to_write = server.bytes_to_read = test_ctx->app_data_size;
|
||||
@@ -915,20 +1402,30 @@ static HANDSHAKE_RESULT *do_handshake_internal(
|
||||
configure_handshake_ssl(server.ssl, client.ssl, extra);
|
||||
if (session_in != NULL) {
|
||||
/* In case we're testing resumption without tickets. */
|
||||
TEST_check(SSL_CTX_add_session(server_ctx, session_in));
|
||||
TEST_check(SSL_set_session(client.ssl, session_in));
|
||||
if (!TEST_true(SSL_CTX_add_session(server_ctx, session_in))
|
||||
|| !TEST_true(SSL_set_session(client.ssl, session_in)))
|
||||
goto err;
|
||||
}
|
||||
|
||||
memset(&server_ex_data, 0, sizeof(server_ex_data));
|
||||
memset(&client_ex_data, 0, sizeof(client_ex_data));
|
||||
|
||||
ret->result = SSL_TEST_INTERNAL_ERROR;
|
||||
|
||||
client_to_server = BIO_new(BIO_s_mem());
|
||||
server_to_client = BIO_new(BIO_s_mem());
|
||||
if (test_ctx->use_sctp) {
|
||||
#if !defined(OPENSSL_NO_SCTP) && !defined(OPENSSL_NO_SOCK)
|
||||
int csock, ssock;
|
||||
|
||||
TEST_check(client_to_server != NULL);
|
||||
TEST_check(server_to_client != NULL);
|
||||
if (create_sctp_socks(&ssock, &csock)) {
|
||||
client_to_server = BIO_new_dgram_sctp(csock, BIO_CLOSE);
|
||||
server_to_client = BIO_new_dgram_sctp(ssock, BIO_CLOSE);
|
||||
}
|
||||
#endif
|
||||
} else {
|
||||
client_to_server = BIO_new(BIO_s_mem());
|
||||
server_to_client = BIO_new(BIO_s_mem());
|
||||
}
|
||||
|
||||
if (!TEST_ptr(client_to_server)
|
||||
|| !TEST_ptr(server_to_client))
|
||||
goto err;
|
||||
|
||||
/* Non-blocking bio. */
|
||||
BIO_set_nbio(client_to_server, 1);
|
||||
@@ -938,21 +1435,30 @@ static HANDSHAKE_RESULT *do_handshake_internal(
|
||||
SSL_set_accept_state(server.ssl);
|
||||
|
||||
/* The bios are now owned by the SSL object. */
|
||||
SSL_set_bio(client.ssl, server_to_client, client_to_server);
|
||||
TEST_check(BIO_up_ref(server_to_client) > 0);
|
||||
TEST_check(BIO_up_ref(client_to_server) > 0);
|
||||
SSL_set_bio(server.ssl, client_to_server, server_to_client);
|
||||
if (test_ctx->use_sctp) {
|
||||
SSL_set_bio(client.ssl, client_to_server, client_to_server);
|
||||
SSL_set_bio(server.ssl, server_to_client, server_to_client);
|
||||
} else {
|
||||
SSL_set_bio(client.ssl, server_to_client, client_to_server);
|
||||
if (!TEST_int_gt(BIO_up_ref(server_to_client), 0)
|
||||
|| !TEST_int_gt(BIO_up_ref(client_to_server), 0))
|
||||
goto err;
|
||||
SSL_set_bio(server.ssl, client_to_server, server_to_client);
|
||||
}
|
||||
|
||||
ex_data_idx = SSL_get_ex_new_index(0, "ex data", NULL, NULL, NULL);
|
||||
TEST_check(ex_data_idx >= 0);
|
||||
|
||||
TEST_check(SSL_set_ex_data(server.ssl, ex_data_idx, &server_ex_data) == 1);
|
||||
TEST_check(SSL_set_ex_data(client.ssl, ex_data_idx, &client_ex_data) == 1);
|
||||
if (!TEST_int_ge(ex_data_idx, 0)
|
||||
|| !TEST_int_eq(SSL_set_ex_data(server.ssl, ex_data_idx, &server_ex_data), 1)
|
||||
|| !TEST_int_eq(SSL_set_ex_data(client.ssl, ex_data_idx, &client_ex_data), 1))
|
||||
goto err;
|
||||
|
||||
SSL_set_info_callback(server.ssl, &info_cb);
|
||||
SSL_set_info_callback(client.ssl, &info_cb);
|
||||
|
||||
client.status = server.status = PEER_RETRY;
|
||||
client.status = PEER_RETRY;
|
||||
server.status = PEER_WAITING;
|
||||
|
||||
start = time(NULL);
|
||||
|
||||
/*
|
||||
* Half-duplex handshake loop.
|
||||
@@ -967,6 +1473,8 @@ static HANDSHAKE_RESULT *do_handshake_internal(
|
||||
do_connect_step(test_ctx, &client, phase);
|
||||
status = handshake_status(client.status, server.status,
|
||||
1 /* client went last */);
|
||||
if (server.status == PEER_WAITING)
|
||||
server.status = PEER_RETRY;
|
||||
} else {
|
||||
do_connect_step(test_ctx, &server, phase);
|
||||
status = handshake_status(server.status, client.status,
|
||||
@@ -1001,18 +1509,36 @@ static HANDSHAKE_RESULT *do_handshake_internal(
|
||||
ret->result = SSL_TEST_INTERNAL_ERROR;
|
||||
goto err;
|
||||
case HANDSHAKE_RETRY:
|
||||
if (client_turn_count++ >= 2000) {
|
||||
if (test_ctx->use_sctp) {
|
||||
if (time(NULL) - start > 3) {
|
||||
/*
|
||||
* We've waited for too long. Give up.
|
||||
*/
|
||||
ret->result = SSL_TEST_INTERNAL_ERROR;
|
||||
goto err;
|
||||
}
|
||||
/*
|
||||
* At this point, there's been so many PEER_RETRY in a row
|
||||
* that it's likely both sides are stuck waiting for a read.
|
||||
* It's time to give up.
|
||||
* With "real" sockets we only swap to processing the peer
|
||||
* if they are expecting to retry. Otherwise we just retry the
|
||||
* same endpoint again.
|
||||
*/
|
||||
ret->result = SSL_TEST_INTERNAL_ERROR;
|
||||
goto err;
|
||||
}
|
||||
if ((client_turn && server.status == PEER_RETRY)
|
||||
|| (!client_turn && client.status == PEER_RETRY))
|
||||
client_turn ^= 1;
|
||||
} else {
|
||||
if (client_turn_count++ >= 2000) {
|
||||
/*
|
||||
* At this point, there's been so many PEER_RETRY in a row
|
||||
* that it's likely both sides are stuck waiting for a read.
|
||||
* It's time to give up.
|
||||
*/
|
||||
ret->result = SSL_TEST_INTERNAL_ERROR;
|
||||
goto err;
|
||||
}
|
||||
|
||||
/* Continue. */
|
||||
client_turn ^= 1;
|
||||
/* Continue. */
|
||||
client_turn ^= 1;
|
||||
}
|
||||
break;
|
||||
}
|
||||
}
|
||||
@@ -1026,12 +1552,21 @@ static HANDSHAKE_RESULT *do_handshake_internal(
|
||||
ret->server_protocol = SSL_version(server.ssl);
|
||||
ret->client_protocol = SSL_version(client.ssl);
|
||||
ret->servername = server_ex_data.servername;
|
||||
if ((sess = SSL_get0_session(client.ssl)) != NULL)
|
||||
if ((sess = SSL_get0_session(client.ssl)) != NULL) {
|
||||
SSL_SESSION_get0_ticket(sess, &tick, &tick_len);
|
||||
sess_id = SSL_SESSION_get_id(sess, &sess_id_len);
|
||||
}
|
||||
if (tick == NULL || tick_len == 0)
|
||||
ret->session_ticket = SSL_TEST_SESSION_TICKET_NO;
|
||||
else
|
||||
ret->session_ticket = SSL_TEST_SESSION_TICKET_YES;
|
||||
ret->compression = (SSL_get_current_compression(client.ssl) == NULL)
|
||||
? SSL_TEST_COMPRESSION_NO
|
||||
: SSL_TEST_COMPRESSION_YES;
|
||||
if (sess_id == NULL || sess_id_len == 0)
|
||||
ret->session_id = SSL_TEST_SESSION_ID_NO;
|
||||
else
|
||||
ret->session_id = SSL_TEST_SESSION_ID_YES;
|
||||
ret->session_ticket_do_not_call = server_ex_data.session_ticket_do_not_call;
|
||||
|
||||
#ifndef OPENSSL_NO_NEXTPROTONEG
|
||||
@@ -1051,22 +1586,38 @@ static HANDSHAKE_RESULT *do_handshake_internal(
|
||||
ret->client_resumed = SSL_session_reused(client.ssl);
|
||||
ret->server_resumed = SSL_session_reused(server.ssl);
|
||||
|
||||
cipher = SSL_CIPHER_get_name(SSL_get_current_cipher(client.ssl));
|
||||
ret->cipher = dup_str((const unsigned char*)cipher, strlen(cipher));
|
||||
|
||||
if (session_out != NULL)
|
||||
*session_out = SSL_get1_session(client.ssl);
|
||||
|
||||
if (SSL_get_server_tmp_key(client.ssl, &tmp_key)) {
|
||||
int nid = EVP_PKEY_id(tmp_key);
|
||||
|
||||
#ifndef OPENSSL_NO_EC
|
||||
if (nid == EVP_PKEY_EC) {
|
||||
EC_KEY *ec = EVP_PKEY_get0_EC_KEY(tmp_key);
|
||||
nid = EC_GROUP_get_curve_name(EC_KEY_get0_group(ec));
|
||||
}
|
||||
#endif
|
||||
ret->tmp_key_type = pkey_type(tmp_key);
|
||||
EVP_PKEY_free(tmp_key);
|
||||
ret->tmp_key_type = nid;
|
||||
}
|
||||
|
||||
SSL_get_peer_signature_nid(client.ssl, &ret->server_sign_hash);
|
||||
SSL_get_peer_signature_nid(server.ssl, &ret->client_sign_hash);
|
||||
|
||||
SSL_get_peer_signature_type_nid(client.ssl, &ret->server_sign_type);
|
||||
SSL_get_peer_signature_type_nid(server.ssl, &ret->client_sign_type);
|
||||
|
||||
names = SSL_get0_peer_CA_list(client.ssl);
|
||||
if (names == NULL)
|
||||
ret->client_ca_names = NULL;
|
||||
else
|
||||
ret->client_ca_names = SSL_dup_CA_list(names);
|
||||
|
||||
names = SSL_get0_peer_CA_list(server.ssl);
|
||||
if (names == NULL)
|
||||
ret->server_ca_names = NULL;
|
||||
else
|
||||
ret->server_ca_names = SSL_dup_CA_list(names);
|
||||
|
||||
ret->server_cert_type = peer_pkey_type(client.ssl);
|
||||
ret->client_cert_type = peer_pkey_type(server.ssl);
|
||||
|
||||
ctx_data_free_data(&server_ctx_data);
|
||||
ctx_data_free_data(&server2_ctx_data);
|
||||
ctx_data_free_data(&client_ctx_data);
|
||||
@@ -1087,7 +1638,9 @@ HANDSHAKE_RESULT *do_handshake(SSL_CTX *server_ctx, SSL_CTX *server2_ctx,
|
||||
result = do_handshake_internal(server_ctx, server2_ctx, client_ctx,
|
||||
test_ctx, &test_ctx->extra,
|
||||
NULL, &session);
|
||||
if (test_ctx->handshake_mode != SSL_TEST_HANDSHAKE_RESUME)
|
||||
if (result == NULL
|
||||
|| test_ctx->handshake_mode != SSL_TEST_HANDSHAKE_RESUME
|
||||
|| result->result == SSL_TEST_INTERNAL_ERROR)
|
||||
goto end;
|
||||
|
||||
if (result->result != SSL_TEST_SUCCESS) {
|
||||
|
||||
Reference in New Issue
Block a user