OpenSSL 1.1.1-pre2
This commit is contained in:
+262
-44
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright 2016 The OpenSSL Project Authors. All Rights Reserved.
|
||||
* Copyright 2016-2018 The OpenSSL Project Authors. All Rights Reserved.
|
||||
*
|
||||
* Licensed under the OpenSSL license (the "License"). You may not use
|
||||
* this file except in compliance with the License. You can obtain a copy
|
||||
@@ -12,10 +12,14 @@
|
||||
#include <openssl/e_os2.h>
|
||||
#include <openssl/crypto.h>
|
||||
|
||||
#include "e_os.h"
|
||||
#include "internal/nelem.h"
|
||||
#include "ssl_test_ctx.h"
|
||||
#include "testutil.h"
|
||||
|
||||
#ifdef OPENSSL_SYS_WINDOWS
|
||||
# define strcasecmp _stricmp
|
||||
#endif
|
||||
|
||||
static const int default_app_data_size = 256;
|
||||
/* Default set to be as small as possible to exercise fragmentation. */
|
||||
static const int default_max_fragment_size = 512;
|
||||
@@ -30,6 +34,7 @@ static int parse_boolean(const char *value, int *result)
|
||||
*result = 0;
|
||||
return 1;
|
||||
}
|
||||
TEST_error("parse_boolean given: '%s'", value);
|
||||
return 0;
|
||||
}
|
||||
|
||||
@@ -44,8 +49,7 @@ static int parse_boolean(const char *value, int *result)
|
||||
{ \
|
||||
OPENSSL_free(ctx->field); \
|
||||
ctx->field = OPENSSL_strdup(value); \
|
||||
TEST_check(ctx->field != NULL); \
|
||||
return 1; \
|
||||
return TEST_ptr(ctx->field); \
|
||||
}
|
||||
|
||||
#define IMPLEMENT_SSL_TEST_INT_OPTION(struct_type, name, field) \
|
||||
@@ -146,6 +150,7 @@ const char *ssl_alert_name(int alert)
|
||||
/* ExpectedProtocol */
|
||||
|
||||
static const test_enum ssl_protocols[] = {
|
||||
{"TLSv1.3", TLS1_3_VERSION},
|
||||
{"TLSv1.2", TLS1_2_VERSION},
|
||||
{"TLSv1.1", TLS1_1_VERSION},
|
||||
{"TLSv1", TLS1_VERSION},
|
||||
@@ -236,6 +241,11 @@ static const test_enum ssl_servername_callbacks[] = {
|
||||
{"None", SSL_TEST_SERVERNAME_CB_NONE},
|
||||
{"IgnoreMismatch", SSL_TEST_SERVERNAME_IGNORE_MISMATCH},
|
||||
{"RejectMismatch", SSL_TEST_SERVERNAME_REJECT_MISMATCH},
|
||||
{"ClientHelloIgnoreMismatch",
|
||||
SSL_TEST_SERVERNAME_CLIENT_HELLO_IGNORE_MISMATCH},
|
||||
{"ClientHelloRejectMismatch",
|
||||
SSL_TEST_SERVERNAME_CLIENT_HELLO_REJECT_MISMATCH},
|
||||
{"ClientHelloNoV12", SSL_TEST_SERVERNAME_CLIENT_HELLO_NO_V12},
|
||||
};
|
||||
|
||||
__owur static int parse_servername_callback(SSL_TEST_SERVER_CONF *server_conf,
|
||||
@@ -282,6 +292,36 @@ const char *ssl_session_ticket_name(ssl_session_ticket_t server)
|
||||
server);
|
||||
}
|
||||
|
||||
/* CompressionExpected */
|
||||
|
||||
IMPLEMENT_SSL_TEST_BOOL_OPTION(SSL_TEST_CTX, test, compression_expected)
|
||||
|
||||
/* SessionIdExpected */
|
||||
|
||||
static const test_enum ssl_session_id[] = {
|
||||
{"Ignore", SSL_TEST_SESSION_ID_IGNORE},
|
||||
{"Yes", SSL_TEST_SESSION_ID_YES},
|
||||
{"No", SSL_TEST_SESSION_ID_NO},
|
||||
};
|
||||
|
||||
__owur static int parse_session_id(SSL_TEST_CTX *test_ctx, const char *value)
|
||||
{
|
||||
int ret_value;
|
||||
if (!parse_enum(ssl_session_id, OSSL_NELEM(ssl_session_id),
|
||||
&ret_value, value)) {
|
||||
return 0;
|
||||
}
|
||||
test_ctx->session_id_expected = ret_value;
|
||||
return 1;
|
||||
}
|
||||
|
||||
const char *ssl_session_id_name(ssl_session_id_t server)
|
||||
{
|
||||
return enum_name(ssl_session_id,
|
||||
OSSL_NELEM(ssl_session_id),
|
||||
server);
|
||||
}
|
||||
|
||||
/* Method */
|
||||
|
||||
static const test_enum ssl_test_methods[] = {
|
||||
@@ -314,6 +354,12 @@ IMPLEMENT_SSL_TEST_STRING_OPTION(SSL_TEST_CLIENT_CONF, client, alpn_protocols)
|
||||
IMPLEMENT_SSL_TEST_STRING_OPTION(SSL_TEST_SERVER_CONF, server, alpn_protocols)
|
||||
IMPLEMENT_SSL_TEST_STRING_OPTION(SSL_TEST_CTX, test, expected_alpn_protocol)
|
||||
|
||||
/* SRP options */
|
||||
IMPLEMENT_SSL_TEST_STRING_OPTION(SSL_TEST_CLIENT_CONF, client, srp_user)
|
||||
IMPLEMENT_SSL_TEST_STRING_OPTION(SSL_TEST_SERVER_CONF, server, srp_user)
|
||||
IMPLEMENT_SSL_TEST_STRING_OPTION(SSL_TEST_CLIENT_CONF, client, srp_password)
|
||||
IMPLEMENT_SSL_TEST_STRING_OPTION(SSL_TEST_SERVER_CONF, server, srp_password)
|
||||
|
||||
/* Handshake mode */
|
||||
|
||||
static const test_enum ssl_handshake_modes[] = {
|
||||
@@ -321,6 +367,9 @@ static const test_enum ssl_handshake_modes[] = {
|
||||
{"Resume", SSL_TEST_HANDSHAKE_RESUME},
|
||||
{"RenegotiateServer", SSL_TEST_HANDSHAKE_RENEG_SERVER},
|
||||
{"RenegotiateClient", SSL_TEST_HANDSHAKE_RENEG_CLIENT},
|
||||
{"KeyUpdateServer", SSL_TEST_HANDSHAKE_KEY_UPDATE_SERVER},
|
||||
{"KeyUpdateClient", SSL_TEST_HANDSHAKE_KEY_UPDATE_CLIENT},
|
||||
{"PostHandshakeAuth", SSL_TEST_HANDSHAKE_POST_HANDSHAKE_AUTH},
|
||||
};
|
||||
|
||||
__owur static int parse_handshake_mode(SSL_TEST_CTX *test_ctx, const char *value)
|
||||
@@ -344,6 +393,24 @@ const char *ssl_handshake_mode_name(ssl_handshake_mode_t mode)
|
||||
|
||||
IMPLEMENT_SSL_TEST_STRING_OPTION(SSL_TEST_CLIENT_CONF, client, reneg_ciphers)
|
||||
|
||||
/* KeyUpdateType */
|
||||
|
||||
static const test_enum ssl_key_update_types[] = {
|
||||
{"KeyUpdateRequested", SSL_KEY_UPDATE_REQUESTED},
|
||||
{"KeyUpdateNotRequested", SSL_KEY_UPDATE_NOT_REQUESTED},
|
||||
};
|
||||
|
||||
__owur static int parse_key_update_type(SSL_TEST_CTX *test_ctx, const char *value)
|
||||
{
|
||||
int ret_value;
|
||||
if (!parse_enum(ssl_key_update_types, OSSL_NELEM(ssl_key_update_types),
|
||||
&ret_value, value)) {
|
||||
return 0;
|
||||
}
|
||||
test_ctx->key_update_type = ret_value;
|
||||
return 1;
|
||||
}
|
||||
|
||||
/* CT Validation */
|
||||
|
||||
static const test_enum ssl_ct_validation_modes[] = {
|
||||
@@ -372,6 +439,7 @@ const char *ssl_ct_validation_name(ssl_ct_validation_t mode)
|
||||
|
||||
IMPLEMENT_SSL_TEST_BOOL_OPTION(SSL_TEST_CTX, test, resumption_expected)
|
||||
IMPLEMENT_SSL_TEST_BOOL_OPTION(SSL_TEST_SERVER_CONF, server, broken_session_ticket)
|
||||
IMPLEMENT_SSL_TEST_BOOL_OPTION(SSL_TEST_CTX, test, use_sctp)
|
||||
|
||||
/* CertStatus */
|
||||
|
||||
@@ -408,17 +476,49 @@ IMPLEMENT_SSL_TEST_INT_OPTION(SSL_TEST_CTX, test, app_data_size)
|
||||
|
||||
IMPLEMENT_SSL_TEST_INT_OPTION(SSL_TEST_CTX, test, max_fragment_size)
|
||||
|
||||
/* Maximum-Fragment-Length TLS extension mode */
|
||||
static const test_enum ssl_max_fragment_len_mode[] = {
|
||||
{"None", TLSEXT_max_fragment_length_DISABLED},
|
||||
{ "512", TLSEXT_max_fragment_length_512},
|
||||
{"1024", TLSEXT_max_fragment_length_1024},
|
||||
{"2048", TLSEXT_max_fragment_length_2048},
|
||||
{"4096", TLSEXT_max_fragment_length_4096}
|
||||
};
|
||||
|
||||
/* ExpectedTmpKeyType */
|
||||
|
||||
__owur static int parse_expected_tmp_key_type(SSL_TEST_CTX *test_ctx,
|
||||
__owur static int parse_max_fragment_len_mode(SSL_TEST_CLIENT_CONF *client_conf,
|
||||
const char *value)
|
||||
{
|
||||
int ret_value;
|
||||
|
||||
if (!parse_enum(ssl_max_fragment_len_mode,
|
||||
OSSL_NELEM(ssl_max_fragment_len_mode), &ret_value, value)) {
|
||||
return 0;
|
||||
}
|
||||
client_conf->max_fragment_len_mode = ret_value;
|
||||
return 1;
|
||||
}
|
||||
|
||||
const char *ssl_max_fragment_len_name(int MFL_mode)
|
||||
{
|
||||
return enum_name(ssl_max_fragment_len_mode,
|
||||
OSSL_NELEM(ssl_max_fragment_len_mode), MFL_mode);
|
||||
}
|
||||
|
||||
|
||||
/* Expected key and signature types */
|
||||
|
||||
__owur static int parse_expected_key_type(int *ptype, const char *value)
|
||||
{
|
||||
int nid;
|
||||
const EVP_PKEY_ASN1_METHOD *ameth;
|
||||
|
||||
if (value == NULL)
|
||||
return 0;
|
||||
nid = OBJ_sn2nid(value);
|
||||
ameth = EVP_PKEY_asn1_find_str(NULL, value, -1);
|
||||
if (ameth != NULL)
|
||||
EVP_PKEY_asn1_get0_info(&nid, NULL, NULL, NULL, NULL, ameth);
|
||||
else
|
||||
nid = OBJ_sn2nid(value);
|
||||
if (nid == NID_undef)
|
||||
nid = OBJ_ln2nid(value);
|
||||
#ifndef OPENSSL_NO_EC
|
||||
@@ -427,10 +527,107 @@ __owur static int parse_expected_tmp_key_type(SSL_TEST_CTX *test_ctx,
|
||||
#endif
|
||||
if (nid == NID_undef)
|
||||
return 0;
|
||||
test_ctx->expected_tmp_key_type = nid;
|
||||
*ptype = nid;
|
||||
return 1;
|
||||
}
|
||||
|
||||
__owur static int parse_expected_tmp_key_type(SSL_TEST_CTX *test_ctx,
|
||||
const char *value)
|
||||
{
|
||||
return parse_expected_key_type(&test_ctx->expected_tmp_key_type, value);
|
||||
}
|
||||
|
||||
__owur static int parse_expected_server_cert_type(SSL_TEST_CTX *test_ctx,
|
||||
const char *value)
|
||||
{
|
||||
return parse_expected_key_type(&test_ctx->expected_server_cert_type,
|
||||
value);
|
||||
}
|
||||
|
||||
__owur static int parse_expected_server_sign_type(SSL_TEST_CTX *test_ctx,
|
||||
const char *value)
|
||||
{
|
||||
return parse_expected_key_type(&test_ctx->expected_server_sign_type,
|
||||
value);
|
||||
}
|
||||
|
||||
__owur static int parse_expected_client_cert_type(SSL_TEST_CTX *test_ctx,
|
||||
const char *value)
|
||||
{
|
||||
return parse_expected_key_type(&test_ctx->expected_client_cert_type,
|
||||
value);
|
||||
}
|
||||
|
||||
__owur static int parse_expected_client_sign_type(SSL_TEST_CTX *test_ctx,
|
||||
const char *value)
|
||||
{
|
||||
return parse_expected_key_type(&test_ctx->expected_client_sign_type,
|
||||
value);
|
||||
}
|
||||
|
||||
|
||||
/* Expected signing hash */
|
||||
|
||||
__owur static int parse_expected_sign_hash(int *ptype, const char *value)
|
||||
{
|
||||
int nid;
|
||||
|
||||
if (value == NULL)
|
||||
return 0;
|
||||
nid = OBJ_sn2nid(value);
|
||||
if (nid == NID_undef)
|
||||
nid = OBJ_ln2nid(value);
|
||||
if (nid == NID_undef)
|
||||
return 0;
|
||||
*ptype = nid;
|
||||
return 1;
|
||||
}
|
||||
|
||||
__owur static int parse_expected_server_sign_hash(SSL_TEST_CTX *test_ctx,
|
||||
const char *value)
|
||||
{
|
||||
return parse_expected_sign_hash(&test_ctx->expected_server_sign_hash,
|
||||
value);
|
||||
}
|
||||
|
||||
__owur static int parse_expected_client_sign_hash(SSL_TEST_CTX *test_ctx,
|
||||
const char *value)
|
||||
{
|
||||
return parse_expected_sign_hash(&test_ctx->expected_client_sign_hash,
|
||||
value);
|
||||
}
|
||||
|
||||
__owur static int parse_expected_ca_names(STACK_OF(X509_NAME) **pnames,
|
||||
const char *value)
|
||||
{
|
||||
if (value == NULL)
|
||||
return 0;
|
||||
if (!strcmp(value, "empty"))
|
||||
*pnames = sk_X509_NAME_new_null();
|
||||
else
|
||||
*pnames = SSL_load_client_CA_file(value);
|
||||
return *pnames != NULL;
|
||||
}
|
||||
__owur static int parse_expected_server_ca_names(SSL_TEST_CTX *test_ctx,
|
||||
const char *value)
|
||||
{
|
||||
return parse_expected_ca_names(&test_ctx->expected_server_ca_names, value);
|
||||
}
|
||||
__owur static int parse_expected_client_ca_names(SSL_TEST_CTX *test_ctx,
|
||||
const char *value)
|
||||
{
|
||||
return parse_expected_ca_names(&test_ctx->expected_client_ca_names, value);
|
||||
}
|
||||
|
||||
/* ExpectedCipher */
|
||||
|
||||
IMPLEMENT_SSL_TEST_STRING_OPTION(SSL_TEST_CTX, test, expected_cipher)
|
||||
|
||||
/* Client and Server ForcePHA */
|
||||
|
||||
IMPLEMENT_SSL_TEST_BOOL_OPTION(SSL_TEST_CLIENT_CONF, client, force_pha)
|
||||
IMPLEMENT_SSL_TEST_BOOL_OPTION(SSL_TEST_SERVER_CONF, server, force_pha)
|
||||
|
||||
/* Known test options and their corresponding parse methods. */
|
||||
|
||||
/* Top-level options. */
|
||||
@@ -446,14 +643,27 @@ static const ssl_test_ctx_option ssl_test_ctx_options[] = {
|
||||
{ "ExpectedProtocol", &parse_protocol },
|
||||
{ "ExpectedServerName", &parse_expected_servername },
|
||||
{ "SessionTicketExpected", &parse_session_ticket },
|
||||
{ "CompressionExpected", &parse_test_compression_expected },
|
||||
{ "SessionIdExpected", &parse_session_id },
|
||||
{ "Method", &parse_test_method },
|
||||
{ "ExpectedNPNProtocol", &parse_test_expected_npn_protocol },
|
||||
{ "ExpectedALPNProtocol", &parse_test_expected_alpn_protocol },
|
||||
{ "HandshakeMode", &parse_handshake_mode },
|
||||
{ "KeyUpdateType", &parse_key_update_type },
|
||||
{ "ResumptionExpected", &parse_test_resumption_expected },
|
||||
{ "ApplicationData", &parse_test_app_data_size },
|
||||
{ "MaxFragmentSize", &parse_test_max_fragment_size },
|
||||
{ "ExpectedTmpKeyType", &parse_expected_tmp_key_type },
|
||||
{ "ExpectedServerCertType", &parse_expected_server_cert_type },
|
||||
{ "ExpectedServerSignHash", &parse_expected_server_sign_hash },
|
||||
{ "ExpectedServerSignType", &parse_expected_server_sign_type },
|
||||
{ "ExpectedServerCANames", &parse_expected_server_ca_names },
|
||||
{ "ExpectedClientCertType", &parse_expected_client_cert_type },
|
||||
{ "ExpectedClientSignHash", &parse_expected_client_sign_hash },
|
||||
{ "ExpectedClientSignType", &parse_expected_client_sign_type },
|
||||
{ "ExpectedClientCANames", &parse_expected_client_ca_names },
|
||||
{ "UseSCTP", &parse_test_use_sctp },
|
||||
{ "ExpectedCipher", &parse_test_expected_cipher },
|
||||
};
|
||||
|
||||
/* Nested client options. */
|
||||
@@ -469,6 +679,10 @@ static const ssl_test_client_option ssl_test_client_options[] = {
|
||||
{ "ALPNProtocols", &parse_client_alpn_protocols },
|
||||
{ "CTValidation", &parse_ct_validation },
|
||||
{ "RenegotiateCiphers", &parse_client_reneg_ciphers},
|
||||
{ "SRPUser", &parse_client_srp_user },
|
||||
{ "SRPPassword", &parse_client_srp_password },
|
||||
{ "MaxFragmentLenExt", &parse_max_fragment_len_mode },
|
||||
{ "ForcePHA", &parse_client_force_pha },
|
||||
};
|
||||
|
||||
/* Nested server options. */
|
||||
@@ -483,19 +697,20 @@ static const ssl_test_server_option ssl_test_server_options[] = {
|
||||
{ "ALPNProtocols", &parse_server_alpn_protocols },
|
||||
{ "BrokenSessionTicket", &parse_server_broken_session_ticket },
|
||||
{ "CertStatus", &parse_certstatus },
|
||||
{ "SRPUser", &parse_server_srp_user },
|
||||
{ "SRPPassword", &parse_server_srp_password },
|
||||
{ "ForcePHA", &parse_server_force_pha },
|
||||
};
|
||||
|
||||
/*
|
||||
* Since these methods are used to create tests, we use TEST_check liberally
|
||||
* for malloc failures and other internal errors.
|
||||
*/
|
||||
SSL_TEST_CTX *SSL_TEST_CTX_new()
|
||||
{
|
||||
SSL_TEST_CTX *ret;
|
||||
ret = OPENSSL_zalloc(sizeof(*ret));
|
||||
TEST_check(ret != NULL);
|
||||
ret->app_data_size = default_app_data_size;
|
||||
ret->max_fragment_size = default_max_fragment_size;
|
||||
|
||||
/* The return code is checked by caller */
|
||||
if ((ret = OPENSSL_zalloc(sizeof(*ret))) != NULL) {
|
||||
ret->app_data_size = default_app_data_size;
|
||||
ret->max_fragment_size = default_max_fragment_size;
|
||||
}
|
||||
return ret;
|
||||
}
|
||||
|
||||
@@ -508,6 +723,12 @@ static void ssl_test_extra_conf_free_data(SSL_TEST_EXTRA_CONF *conf)
|
||||
OPENSSL_free(conf->server.alpn_protocols);
|
||||
OPENSSL_free(conf->server2.alpn_protocols);
|
||||
OPENSSL_free(conf->client.reneg_ciphers);
|
||||
OPENSSL_free(conf->server.srp_user);
|
||||
OPENSSL_free(conf->server.srp_password);
|
||||
OPENSSL_free(conf->server2.srp_user);
|
||||
OPENSSL_free(conf->server2.srp_password);
|
||||
OPENSSL_free(conf->client.srp_user);
|
||||
OPENSSL_free(conf->client.srp_password);
|
||||
}
|
||||
|
||||
static void ssl_test_ctx_free_extra_data(SSL_TEST_CTX *ctx)
|
||||
@@ -521,6 +742,9 @@ void SSL_TEST_CTX_free(SSL_TEST_CTX *ctx)
|
||||
ssl_test_ctx_free_extra_data(ctx);
|
||||
OPENSSL_free(ctx->expected_npn_protocol);
|
||||
OPENSSL_free(ctx->expected_alpn_protocol);
|
||||
sk_X509_NAME_pop_free(ctx->expected_server_ca_names, X509_NAME_free);
|
||||
sk_X509_NAME_pop_free(ctx->expected_client_ca_names, X509_NAME_free);
|
||||
OPENSSL_free(ctx->expected_cipher);
|
||||
OPENSSL_free(ctx);
|
||||
}
|
||||
|
||||
@@ -531,8 +755,8 @@ static int parse_client_options(SSL_TEST_CLIENT_CONF *client, const CONF *conf,
|
||||
int i;
|
||||
size_t j;
|
||||
|
||||
sk_conf = NCONF_get_section(conf, client_section);
|
||||
TEST_check(sk_conf != NULL);
|
||||
if (!TEST_ptr(sk_conf = NCONF_get_section(conf, client_section)))
|
||||
return 0;
|
||||
|
||||
for (i = 0; i < sk_CONF_VALUE_num(sk_conf); i++) {
|
||||
int found = 0;
|
||||
@@ -540,8 +764,8 @@ static int parse_client_options(SSL_TEST_CLIENT_CONF *client, const CONF *conf,
|
||||
for (j = 0; j < OSSL_NELEM(ssl_test_client_options); j++) {
|
||||
if (strcmp(option->name, ssl_test_client_options[j].name) == 0) {
|
||||
if (!ssl_test_client_options[j].parse(client, option->value)) {
|
||||
fprintf(stderr, "Bad value %s for option %s\n",
|
||||
option->value, option->name);
|
||||
TEST_info("Bad value %s for option %s",
|
||||
option->value, option->name);
|
||||
return 0;
|
||||
}
|
||||
found = 1;
|
||||
@@ -549,7 +773,7 @@ static int parse_client_options(SSL_TEST_CLIENT_CONF *client, const CONF *conf,
|
||||
}
|
||||
}
|
||||
if (!found) {
|
||||
fprintf(stderr, "Unknown test option: %s\n", option->name);
|
||||
TEST_info("Unknown test option: %s", option->name);
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
@@ -564,8 +788,8 @@ static int parse_server_options(SSL_TEST_SERVER_CONF *server, const CONF *conf,
|
||||
int i;
|
||||
size_t j;
|
||||
|
||||
sk_conf = NCONF_get_section(conf, server_section);
|
||||
TEST_check(sk_conf != NULL);
|
||||
if (!TEST_ptr(sk_conf = NCONF_get_section(conf, server_section)))
|
||||
return 0;
|
||||
|
||||
for (i = 0; i < sk_CONF_VALUE_num(sk_conf); i++) {
|
||||
int found = 0;
|
||||
@@ -573,8 +797,8 @@ static int parse_server_options(SSL_TEST_SERVER_CONF *server, const CONF *conf,
|
||||
for (j = 0; j < OSSL_NELEM(ssl_test_server_options); j++) {
|
||||
if (strcmp(option->name, ssl_test_server_options[j].name) == 0) {
|
||||
if (!ssl_test_server_options[j].parse(server, option->value)) {
|
||||
fprintf(stderr, "Bad value %s for option %s\n",
|
||||
option->value, option->name);
|
||||
TEST_info("Bad value %s for option %s",
|
||||
option->value, option->name);
|
||||
return 0;
|
||||
}
|
||||
found = 1;
|
||||
@@ -582,7 +806,7 @@ static int parse_server_options(SSL_TEST_SERVER_CONF *server, const CONF *conf,
|
||||
}
|
||||
}
|
||||
if (!found) {
|
||||
fprintf(stderr, "Unknown test option: %s\n", option->name);
|
||||
TEST_info("Unknown test option: %s", option->name);
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
@@ -592,16 +816,14 @@ static int parse_server_options(SSL_TEST_SERVER_CONF *server, const CONF *conf,
|
||||
|
||||
SSL_TEST_CTX *SSL_TEST_CTX_create(const CONF *conf, const char *test_section)
|
||||
{
|
||||
STACK_OF(CONF_VALUE) *sk_conf;
|
||||
SSL_TEST_CTX *ctx;
|
||||
STACK_OF(CONF_VALUE) *sk_conf = NULL;
|
||||
SSL_TEST_CTX *ctx = NULL;
|
||||
int i;
|
||||
size_t j;
|
||||
|
||||
sk_conf = NCONF_get_section(conf, test_section);
|
||||
TEST_check(sk_conf != NULL);
|
||||
|
||||
ctx = SSL_TEST_CTX_new();
|
||||
TEST_check(ctx != NULL);
|
||||
if (!TEST_ptr(sk_conf = NCONF_get_section(conf, test_section))
|
||||
|| !TEST_ptr(ctx = SSL_TEST_CTX_new()))
|
||||
goto err;
|
||||
|
||||
for (i = 0; i < sk_CONF_VALUE_num(sk_conf); i++) {
|
||||
int found = 0;
|
||||
@@ -609,16 +831,13 @@ SSL_TEST_CTX *SSL_TEST_CTX_create(const CONF *conf, const char *test_section)
|
||||
|
||||
/* Subsections */
|
||||
if (strcmp(option->name, "client") == 0) {
|
||||
if (!parse_client_options(&ctx->extra.client, conf,
|
||||
option->value))
|
||||
if (!parse_client_options(&ctx->extra.client, conf, option->value))
|
||||
goto err;
|
||||
} else if (strcmp(option->name, "server") == 0) {
|
||||
if (!parse_server_options(&ctx->extra.server, conf,
|
||||
option->value))
|
||||
if (!parse_server_options(&ctx->extra.server, conf, option->value))
|
||||
goto err;
|
||||
} else if (strcmp(option->name, "server2") == 0) {
|
||||
if (!parse_server_options(&ctx->extra.server2, conf,
|
||||
option->value))
|
||||
if (!parse_server_options(&ctx->extra.server2, conf, option->value))
|
||||
goto err;
|
||||
} else if (strcmp(option->name, "resume-client") == 0) {
|
||||
if (!parse_client_options(&ctx->resume_extra.client, conf,
|
||||
@@ -632,13 +851,12 @@ SSL_TEST_CTX *SSL_TEST_CTX_create(const CONF *conf, const char *test_section)
|
||||
if (!parse_server_options(&ctx->resume_extra.server2, conf,
|
||||
option->value))
|
||||
goto err;
|
||||
|
||||
} else {
|
||||
for (j = 0; j < OSSL_NELEM(ssl_test_ctx_options); j++) {
|
||||
if (strcmp(option->name, ssl_test_ctx_options[j].name) == 0) {
|
||||
if (!ssl_test_ctx_options[j].parse(ctx, option->value)) {
|
||||
fprintf(stderr, "Bad value %s for option %s\n",
|
||||
option->value, option->name);
|
||||
TEST_info("Bad value %s for option %s",
|
||||
option->value, option->name);
|
||||
goto err;
|
||||
}
|
||||
found = 1;
|
||||
@@ -646,7 +864,7 @@ SSL_TEST_CTX *SSL_TEST_CTX_create(const CONF *conf, const char *test_section)
|
||||
}
|
||||
}
|
||||
if (!found) {
|
||||
fprintf(stderr, "Unknown test option: %s\n", option->name);
|
||||
TEST_info("Unknown test option: %s", option->name);
|
||||
goto err;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user