1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
#include <openssl/pem.h>
#include <openssl/x509.h>
#include <stdlib.h>
#include "api/s2n.h"
#include "api/unstable/cert_authorities.h"
#include "crypto/s2n_fips.h"
#include "s2n_test.h"
#include "testlib/s2n_testlib.h"
#include "tls/extensions/s2n_cert_authorities.h"
#include "tls/s2n_cipher_suites.h"
#include "tls/s2n_connection.h"
#include "tls/s2n_handshake.h"
#include "tls/s2n_security_policies.h"
#include "utils/s2n_safety.h"
DEFINE_POINTER_CLEANUP_FUNC(BIO *, BIO_free);
DEFINE_POINTER_CLEANUP_FUNC(X509_NAME *, X509_NAME_free);
struct host_verify_data {
uint8_t callback_invoked;
uint8_t allow;
};
static uint8_t verify_host_fn(const char *host_name, size_t host_name_len, void *data)
{
struct host_verify_data *verify_data = (struct host_verify_data *) data;
verify_data->callback_invoked = 1;
return verify_data->allow;
}
/**
* Pretty prints a DER-encoded Distinguished Name to an s2n_blob
*
* @param der_dn The DER-encoded Distinguished Name input
* @param der_dn_len Length of the DER-encoded Distinguished Name
* @param output_blob Pointer to an s2n_blob that will contain the pretty-printed output
*/
S2N_RESULT pretty_print_dn(const uint8_t *der_dn, size_t der_dn_len, struct s2n_blob *output_blob)
{
RESULT_ENSURE_REF(der_dn);
RESULT_ENSURE_REF(output_blob);
DEFER_CLEANUP(BIO *bio = BIO_new(BIO_s_mem()), BIO_free_pointer);
RESULT_ENSURE_REF(bio);
/* Parse the DER-encoded DN into an X509_NAME structure */
DEFER_CLEANUP(X509_NAME *name = d2i_X509_NAME(NULL, &der_dn, der_dn_len), X509_NAME_free_pointer);
RESULT_ENSURE_REF(name);
/* Pretty print the X509_NAME to the BIO */
X509_NAME_print_ex(bio, name, 0, XN_FLAG_ONELINE);
BUF_MEM *bptr;
BIO_get_mem_ptr(bio, &bptr);
RESULT_GUARD_POSIX(s2n_realloc(output_blob, bptr->length));
RESULT_CHECKED_MEMCPY(output_blob->data, bptr->data, bptr->length);
return S2N_RESULT_OK;
}
static int cert_req_cb(struct s2n_connection *conn, void *ctx_in, struct s2n_certificate_request *req)
{
EXPECT_NOT_NULL(conn);
EXPECT_NOT_NULL(ctx_in);
EXPECT_NOT_NULL(req);
struct s2n_cert_chain_and_key **ctx = ctx_in;
struct s2n_certificate_authority_list *list = s2n_certificate_request_get_ca_list(req);
EXPECT_NOT_NULL(list);
uint8_t *name = NULL;
uint16_t length = 0;
if (s2n_cert_authorities_supported_from_trust_store()) {
/* Confirm the list is re-readable (by reading it 3 times) */
for (int i = 0; i < 3; i++) {
const char *expected_subjects[] = {
"C = US, CN = leaf",
"C = US, CN = branch",
"C = US, CN = root",
};
EXPECT_FAILURE_WITH_ERRNO(s2n_certificate_authority_list_next(NULL, &name, &length), S2N_ERR_INVALID_ARGUMENT);
EXPECT_FAILURE_WITH_ERRNO(s2n_certificate_authority_list_next(list, NULL, &length), S2N_ERR_INVALID_ARGUMENT);
EXPECT_FAILURE_WITH_ERRNO(s2n_certificate_authority_list_next(list, &name, NULL), S2N_ERR_INVALID_ARGUMENT);
EXPECT_FAILURE_WITH_ERRNO(s2n_certificate_authority_list_reread(NULL), S2N_ERR_INVALID_ARGUMENT);
for (int j = 0; j < s2n_array_len(expected_subjects); j++) {
EXPECT_TRUE(s2n_certificate_authority_list_has_next(list));
EXPECT_SUCCESS(s2n_certificate_authority_list_next(list, &name, &length));
DEFER_CLEANUP(struct s2n_blob printed = { 0 }, s2n_free);
POSIX_GUARD_RESULT(pretty_print_dn(name, length, &printed));
const char *expected = expected_subjects[j];
EXPECT_EQUAL(strlen(expected), printed.size);
EXPECT_EQUAL(memcmp(expected, printed.data, printed.size), 0);
}
EXPECT_FALSE(s2n_certificate_authority_list_has_next(list));
EXPECT_FAILURE_WITH_ERRNO(s2n_certificate_authority_list_next(list, &name, &length), S2N_ERR_INVALID_ARGUMENT);
EXPECT_SUCCESS(s2n_certificate_authority_list_reread(list));
}
} else {
/* If certificate authorities weren't set, then there shouldn't be anything in the list. */
EXPECT_FALSE(s2n_certificate_authority_list_has_next(list));
EXPECT_SUCCESS(s2n_certificate_authority_list_reread(list));
EXPECT_FALSE(s2n_certificate_authority_list_has_next(list));
}
/* We set to null to test failure in which case setting will fail. */
if (*ctx != NULL) {
EXPECT_SUCCESS(s2n_certificate_request_set_certificate(req, *ctx));
} else {
EXPECT_FAILURE_WITH_ERRNO(s2n_certificate_request_set_certificate(req, *ctx),
S2N_ERR_INVALID_ARGUMENT);
}
return 0;
}
static bool s2n_should_skip_cipher(struct s2n_cipher_suite *suite)
{
if (!suite->available) {
/* Skip Ciphers that aren't supported with the linked libcrypto */
return true;
}
/* Skip Ciphers that aren't supported with the certificate chain we use in this test */
if (suite->auth_method == S2N_AUTHENTICATION_ECDSA) {
return true;
}
if (suite->minimum_required_tls_version == S2N_TLS13 && !s2n_is_tls13_fully_supported()) {
return true;
}
return false;
}
int main(int argc, char **argv)
{
struct s2n_config *config = NULL;
const struct s2n_security_policy *default_security_policy = NULL;
const struct s2n_cipher_preferences *default_cipher_preferences = NULL;
char *cert_chain_pem = NULL;
char *private_key_pem = NULL;
char *dhparams_pem = NULL;
struct s2n_cert_chain_and_key *chain_and_key = NULL;
BEGIN_TEST();
EXPECT_NOT_NULL(cert_chain_pem = malloc(S2N_MAX_TEST_PEM_SIZE));
EXPECT_NOT_NULL(private_key_pem = malloc(S2N_MAX_TEST_PEM_SIZE));
EXPECT_NOT_NULL(dhparams_pem = malloc(S2N_MAX_TEST_PEM_SIZE));
/*
* Test Mutual Auth using **s2n_connection_set_client_auth_type**
*/
EXPECT_NOT_NULL(config = s2n_config_new_minimal());
EXPECT_SUCCESS(s2n_read_test_pem(S2N_DEFAULT_TEST_CERT_CHAIN, cert_chain_pem, S2N_MAX_TEST_PEM_SIZE));
EXPECT_SUCCESS(s2n_read_test_pem(S2N_DEFAULT_TEST_PRIVATE_KEY, private_key_pem, S2N_MAX_TEST_PEM_SIZE));
EXPECT_SUCCESS(s2n_read_test_pem(S2N_DEFAULT_TEST_DHPARAMS, dhparams_pem, S2N_MAX_TEST_PEM_SIZE));
EXPECT_SUCCESS(s2n_config_set_cipher_preferences(config, "default_tls13"));
EXPECT_NOT_NULL(chain_and_key = s2n_cert_chain_and_key_new());
EXPECT_SUCCESS(s2n_cert_chain_and_key_load_pem(chain_and_key, cert_chain_pem, private_key_pem));
EXPECT_SUCCESS(s2n_config_add_cert_chain_and_key_to_store(config, chain_and_key));
EXPECT_SUCCESS(s2n_config_add_dhparams(config, dhparams_pem));
EXPECT_NOT_NULL(default_security_policy = config->security_policy);
EXPECT_NOT_NULL(default_cipher_preferences = default_security_policy->cipher_preferences);
struct host_verify_data verify_data = { .allow = 1, .callback_invoked = 0 };
EXPECT_SUCCESS(s2n_config_set_verify_host_callback(config, verify_host_fn, &verify_data));
EXPECT_SUCCESS(s2n_config_set_verification_ca_location(config, S2N_DEFAULT_TEST_CERT_CHAIN, NULL));
struct s2n_cert_chain_and_key *cb_chain = NULL;
/* If this isn't supported we can't really test the end-to-end flow. */
if (s2n_cert_authorities_supported_from_trust_store()) {
EXPECT_SUCCESS(s2n_config_set_cert_authorities_from_trust_store(config));
}
EXPECT_FAILURE_WITH_ERRNO(s2n_config_set_cert_request_callback(NULL, cert_req_cb, (void *) &cb_chain),
S2N_ERR_INVALID_ARGUMENT);
/**
* Test with 3 variants:
*
* * Callback not set
* * Callback set, returns NULL
* * Callback set, returns a valid cert chain
*/
for (int cert_req_callback_mode = 0; cert_req_callback_mode < 3; cert_req_callback_mode++) {
if (cert_req_callback_mode != 0) {
EXPECT_SUCCESS(s2n_config_set_cert_request_callback(config, cert_req_cb, (void *) &cb_chain));
}
bool saw_tls12 = false;
bool saw_tls13 = false;
const bool expected_success = cert_req_callback_mode != 1;
/* Verify that a handshake succeeds for every cipher in the default list. */
for (size_t cipher_idx = 0; cipher_idx < default_cipher_preferences->count; cipher_idx++) {
verify_data.callback_invoked = 0;
struct s2n_cipher_preferences server_cipher_preferences;
struct s2n_security_policy server_security_policy;
struct s2n_connection *client_conn = NULL;
struct s2n_connection *server_conn = NULL;
struct s2n_stuffer client_to_server = { 0 };
struct s2n_stuffer server_to_client = { 0 };
/* Craft a cipher preference with a cipher_idx cipher */
EXPECT_MEMCPY_SUCCESS(&server_cipher_preferences, default_cipher_preferences, sizeof(server_cipher_preferences));
server_cipher_preferences.count = 1;
struct s2n_cipher_suite *cur_cipher = default_cipher_preferences->suites[cipher_idx];
if (s2n_should_skip_cipher(cur_cipher)) {
continue;
}
server_cipher_preferences.suites = &cur_cipher;
EXPECT_MEMCPY_SUCCESS(&server_security_policy, default_security_policy, sizeof(server_security_policy));
server_security_policy.cipher_preferences = &server_cipher_preferences;
config->security_policy = &server_security_policy;
EXPECT_NOT_NULL(server_conn = s2n_connection_new(S2N_SERVER));
EXPECT_SUCCESS(s2n_connection_set_client_auth_type(server_conn, S2N_CERT_AUTH_REQUIRED));
EXPECT_SUCCESS(s2n_connection_set_config(server_conn, config));
EXPECT_SUCCESS(s2n_connection_set_blinding(server_conn, S2N_SELF_SERVICE_BLINDING));
EXPECT_NOT_NULL(client_conn = s2n_connection_new(S2N_CLIENT));
EXPECT_SUCCESS(s2n_connection_set_client_auth_type(client_conn, S2N_CERT_AUTH_REQUIRED));
EXPECT_SUCCESS(s2n_connection_set_config(client_conn, config));
EXPECT_SUCCESS(s2n_connection_set_blinding(client_conn, S2N_SELF_SERVICE_BLINDING));
/* Set up our I/O callbacks. Use stuffers for the "I/O context" */
EXPECT_SUCCESS(s2n_stuffer_growable_alloc(&client_to_server, 0));
EXPECT_SUCCESS(s2n_stuffer_growable_alloc(&server_to_client, 0));
EXPECT_SUCCESS(s2n_connection_set_io_stuffers(&server_to_client, &client_to_server, client_conn));
EXPECT_SUCCESS(s2n_connection_set_io_stuffers(&client_to_server, &server_to_client, server_conn));
if (cert_req_callback_mode == 0) {
EXPECT_SUCCESS(s2n_negotiate_test_server_and_client(server_conn, client_conn));
} else if (cert_req_callback_mode == 1) {
cb_chain = NULL;
EXPECT_FAILURE_WITH_ERRNO(s2n_negotiate_test_server_and_client(server_conn, client_conn), S2N_ERR_NO_CERT_FOUND);
} else if (cert_req_callback_mode == 2) {
cb_chain = chain_and_key;
EXPECT_SUCCESS(s2n_negotiate_test_server_and_client(server_conn, client_conn));
}
if (expected_success) {
switch (s2n_connection_get_actual_protocol_version(server_conn)) {
case S2N_TLS13:
saw_tls13 = true;
break;
case S2N_TLS12:
saw_tls12 = true;
break;
default:
/* no-op */
break;
}
/* Verify that both connections negotiated Mutual Auth */
EXPECT_TRUE(s2n_connection_client_cert_used(server_conn));
EXPECT_TRUE(s2n_connection_client_cert_used(client_conn));
EXPECT_TRUE(verify_data.callback_invoked);
}
EXPECT_SUCCESS(s2n_connection_free(client_conn));
EXPECT_SUCCESS(s2n_connection_free(server_conn));
EXPECT_SUCCESS(s2n_stuffer_free(&server_to_client));
EXPECT_SUCCESS(s2n_stuffer_free(&client_to_server));
}
if (expected_success) {
/* If not supported, don't expect to see TlS 1.3 */
EXPECT_TRUE(saw_tls13 || !s2n_is_tls13_fully_supported());
EXPECT_TRUE(saw_tls12);
}
/* Reset the callback */
config->cert_request_cb = NULL;
config->cert_request_cb_ctx = NULL;
}
/*
* Test Mutual Auth using **s2n_config_set_client_auth_type**
*/
EXPECT_SUCCESS(s2n_config_set_client_auth_type(config, S2N_CERT_AUTH_REQUIRED));
/* Verify that a handshake succeeds for every cipher in the default list. */
for (size_t cipher_idx = 0; cipher_idx < default_cipher_preferences->count; cipher_idx++) {
struct s2n_cipher_preferences server_cipher_preferences;
struct s2n_security_policy server_security_policy;
struct s2n_connection *client_conn = NULL;
struct s2n_connection *server_conn = NULL;
struct s2n_stuffer client_to_server = { 0 };
struct s2n_stuffer server_to_client = { 0 };
/* Craft a cipher preference with a cipher_idx cipher */
EXPECT_MEMCPY_SUCCESS(&server_cipher_preferences, default_cipher_preferences, sizeof(server_cipher_preferences));
server_cipher_preferences.count = 1;
struct s2n_cipher_suite *cur_cipher = default_cipher_preferences->suites[cipher_idx];
if (s2n_should_skip_cipher(cur_cipher)) {
continue;
}
server_cipher_preferences.suites = &cur_cipher;
EXPECT_MEMCPY_SUCCESS(&server_security_policy, default_security_policy, sizeof(server_security_policy));
server_security_policy.cipher_preferences = &server_cipher_preferences;
config->security_policy = &server_security_policy;
EXPECT_NOT_NULL(server_conn = s2n_connection_new(S2N_SERVER));
EXPECT_SUCCESS(s2n_connection_set_config(server_conn, config));
EXPECT_NOT_NULL(client_conn = s2n_connection_new(S2N_CLIENT));
EXPECT_SUCCESS(s2n_connection_set_config(client_conn, config));
/* Set up our I/O callbacks. Use stuffers for the "I/O context" */
EXPECT_SUCCESS(s2n_stuffer_growable_alloc(&client_to_server, 0));
EXPECT_SUCCESS(s2n_stuffer_growable_alloc(&server_to_client, 0));
EXPECT_SUCCESS(s2n_connection_set_io_stuffers(&server_to_client, &client_to_server, client_conn));
EXPECT_SUCCESS(s2n_connection_set_io_stuffers(&client_to_server, &server_to_client, server_conn));
EXPECT_SUCCESS(s2n_negotiate_test_server_and_client(server_conn, client_conn));
/* Verify that both connections negotiated Mutual Auth */
EXPECT_TRUE(s2n_connection_client_cert_used(server_conn));
EXPECT_TRUE(s2n_connection_client_cert_used(client_conn));
EXPECT_SUCCESS(s2n_connection_free(client_conn));
EXPECT_SUCCESS(s2n_connection_free(server_conn));
EXPECT_SUCCESS(s2n_stuffer_free(&server_to_client));
EXPECT_SUCCESS(s2n_stuffer_free(&client_to_server));
}
/*
* Test Mutual Auth using connection override of **s2n_config_set_client_auth_type**
*/
EXPECT_SUCCESS(s2n_config_set_client_auth_type(config, S2N_CERT_AUTH_NONE));
/* Verify that a handshake succeeds for every cipher in the default list. */
for (size_t cipher_idx = 0; cipher_idx < default_cipher_preferences->count; cipher_idx++) {
struct s2n_cipher_preferences server_cipher_preferences;
struct s2n_security_policy server_security_policy;
struct s2n_connection *client_conn = NULL;
struct s2n_connection *server_conn = NULL;
struct s2n_stuffer client_to_server = { 0 };
struct s2n_stuffer server_to_client = { 0 };
/* Craft a cipher preference with a cipher_idx cipher */
EXPECT_MEMCPY_SUCCESS(&server_cipher_preferences, default_cipher_preferences, sizeof(server_cipher_preferences));
server_cipher_preferences.count = 1;
struct s2n_cipher_suite *cur_cipher = default_cipher_preferences->suites[cipher_idx];
if (s2n_should_skip_cipher(cur_cipher)) {
continue;
}
server_cipher_preferences.suites = &cur_cipher;
EXPECT_MEMCPY_SUCCESS(&server_security_policy, default_security_policy, sizeof(server_security_policy));
server_security_policy.cipher_preferences = &server_cipher_preferences;
config->security_policy = &server_security_policy;
EXPECT_NOT_NULL(server_conn = s2n_connection_new(S2N_SERVER));
EXPECT_SUCCESS(s2n_connection_set_config(server_conn, config));
EXPECT_NOT_NULL(client_conn = s2n_connection_new(S2N_CLIENT));
EXPECT_SUCCESS(s2n_connection_set_config(client_conn, config));
EXPECT_SUCCESS(s2n_connection_set_client_auth_type(server_conn, S2N_CERT_AUTH_REQUIRED));
EXPECT_SUCCESS(s2n_connection_set_client_auth_type(client_conn, S2N_CERT_AUTH_REQUIRED));
/* Set up our I/O callbacks. Use stuffers for the "I/O context" */
EXPECT_SUCCESS(s2n_stuffer_growable_alloc(&client_to_server, 0));
EXPECT_SUCCESS(s2n_stuffer_growable_alloc(&server_to_client, 0));
EXPECT_SUCCESS(s2n_connection_set_io_stuffers(&server_to_client, &client_to_server, client_conn));
EXPECT_SUCCESS(s2n_connection_set_io_stuffers(&client_to_server, &server_to_client, server_conn));
EXPECT_SUCCESS(s2n_negotiate_test_server_and_client(server_conn, client_conn));
/* Verify that both connections negotiated Mutual Auth */
EXPECT_TRUE(s2n_connection_client_cert_used(server_conn));
EXPECT_TRUE(s2n_connection_client_cert_used(client_conn));
EXPECT_SUCCESS(s2n_connection_free(client_conn));
EXPECT_SUCCESS(s2n_connection_free(server_conn));
EXPECT_SUCCESS(s2n_stuffer_free(&server_to_client));
EXPECT_SUCCESS(s2n_stuffer_free(&client_to_server));
}
/*
* Test Mutual Auth using connection override of **s2n_config_set_client_auth_type** only on one side of the
* connection and verify that a connection is not established
*/
EXPECT_SUCCESS(s2n_config_set_client_auth_type(config, S2N_CERT_AUTH_NONE));
/* Verify that a handshake succeeds for every cipher in the default list. */
for (size_t cipher_idx = 0; cipher_idx < default_cipher_preferences->count; cipher_idx++) {
struct s2n_cipher_preferences server_cipher_preferences;
struct s2n_security_policy server_security_policy;
struct s2n_connection *client_conn = NULL;
struct s2n_connection *server_conn = NULL;
struct s2n_stuffer client_to_server = { 0 };
struct s2n_stuffer server_to_client = { 0 };
/* Craft a cipher preference with a cipher_idx cipher */
EXPECT_MEMCPY_SUCCESS(&server_cipher_preferences, default_cipher_preferences, sizeof(server_cipher_preferences));
server_cipher_preferences.count = 1;
struct s2n_cipher_suite *cur_cipher = default_cipher_preferences->suites[cipher_idx];
if (s2n_should_skip_cipher(cur_cipher)) {
continue;
}
server_cipher_preferences.suites = &cur_cipher;
EXPECT_MEMCPY_SUCCESS(&server_security_policy, default_security_policy, sizeof(server_security_policy));
server_security_policy.cipher_preferences = &server_cipher_preferences;
config->security_policy = &server_security_policy;
EXPECT_NOT_NULL(server_conn = s2n_connection_new(S2N_SERVER));
EXPECT_SUCCESS(s2n_connection_set_config(server_conn, config));
EXPECT_NOT_NULL(client_conn = s2n_connection_new(S2N_CLIENT));
EXPECT_SUCCESS(s2n_connection_set_config(client_conn, config));
/* Only set S2N_CERT_AUTH_REQUIRED on the server and not the client so that the connection fails */
EXPECT_SUCCESS(s2n_connection_set_client_auth_type(server_conn, S2N_CERT_AUTH_REQUIRED));
/* Set up our I/O callbacks. Use stuffers for the "I/O context" */
EXPECT_SUCCESS(s2n_stuffer_growable_alloc(&client_to_server, 0));
EXPECT_SUCCESS(s2n_stuffer_growable_alloc(&server_to_client, 0));
EXPECT_SUCCESS(s2n_connection_set_io_stuffers(&server_to_client, &client_to_server, client_conn));
EXPECT_SUCCESS(s2n_connection_set_io_stuffers(&client_to_server, &server_to_client, server_conn));
EXPECT_FAILURE(s2n_negotiate_test_server_and_client(server_conn, client_conn));
/* Verify that NEITHER connections negotiated Mutual Auth */
EXPECT_FALSE(s2n_connection_client_cert_used(server_conn));
EXPECT_FALSE(s2n_connection_client_cert_used(client_conn));
EXPECT_SUCCESS(s2n_connection_free(client_conn));
EXPECT_SUCCESS(s2n_connection_free(server_conn));
EXPECT_SUCCESS(s2n_stuffer_free(&server_to_client));
EXPECT_SUCCESS(s2n_stuffer_free(&client_to_server));
}
/* Ensure that the client's certificate is validated, regardless of how client auth was enabled */
{
typedef enum {
TEST_ENABLE_WITH_CONFIG,
TEST_ENABLE_WITH_CONN_BEFORE_CONFIG,
TEST_ENABLE_WITH_CONN_AFTER_CONFIG,
TEST_COUNT,
} test_case;
for (test_case test = TEST_ENABLE_WITH_CONFIG; test < TEST_COUNT; test++) {
DEFER_CLEANUP(struct s2n_config *client_config = s2n_config_new(), s2n_config_ptr_free);
EXPECT_NOT_NULL(client_config);
EXPECT_SUCCESS(s2n_config_set_cipher_preferences(client_config, "default_tls13"));
EXPECT_SUCCESS(s2n_config_set_client_auth_type(client_config, S2N_CERT_AUTH_OPTIONAL));
/* The client trusts the server's cert, and sends the same cert to the server. */
EXPECT_SUCCESS(s2n_config_set_verification_ca_location(client_config, S2N_DEFAULT_TEST_CERT_CHAIN, NULL));
EXPECT_SUCCESS(s2n_config_add_cert_chain_and_key_to_store(client_config, chain_and_key));
DEFER_CLEANUP(struct s2n_config *server_config = s2n_config_new(), s2n_config_ptr_free);
EXPECT_NOT_NULL(server_config);
EXPECT_SUCCESS(s2n_config_set_cipher_preferences(server_config, "default_tls13"));
struct host_verify_data verify_data_allow = { .allow = 1 };
EXPECT_SUCCESS(s2n_config_set_verify_host_callback(server_config, verify_host_fn, &verify_data_allow));
/* The server sends its cert, but does NOT trust the client's cert. This should always
* cause certificate validation to fail on the server.
*/
EXPECT_SUCCESS(s2n_config_add_cert_chain_and_key_to_store(server_config, chain_and_key));
DEFER_CLEANUP(struct s2n_connection *server_conn = s2n_connection_new(S2N_SERVER),
s2n_connection_ptr_free);
EXPECT_NOT_NULL(server_conn);
EXPECT_SUCCESS(s2n_connection_set_blinding(server_conn, S2N_SELF_SERVICE_BLINDING));
switch (test) {
case TEST_ENABLE_WITH_CONFIG:
EXPECT_SUCCESS(s2n_config_set_client_auth_type(server_config, S2N_CERT_AUTH_REQUIRED));
EXPECT_SUCCESS(s2n_connection_set_config(server_conn, server_config));
break;
case TEST_ENABLE_WITH_CONN_BEFORE_CONFIG:
EXPECT_SUCCESS(s2n_connection_set_client_auth_type(server_conn, S2N_CERT_AUTH_REQUIRED));
EXPECT_SUCCESS(s2n_connection_set_config(server_conn, server_config));
break;
case TEST_ENABLE_WITH_CONN_AFTER_CONFIG:
EXPECT_SUCCESS(s2n_connection_set_config(server_conn, server_config));
EXPECT_SUCCESS(s2n_connection_set_client_auth_type(server_conn, S2N_CERT_AUTH_REQUIRED));
break;
default:
FAIL_MSG("Invalid test case");
}
DEFER_CLEANUP(struct s2n_connection *client_conn = s2n_connection_new(S2N_CLIENT),
s2n_connection_ptr_free);
EXPECT_NOT_NULL(client_conn);
EXPECT_SUCCESS(s2n_connection_set_config(client_conn, client_config));
EXPECT_SUCCESS(s2n_set_server_name(client_conn, "localhost"));
DEFER_CLEANUP(struct s2n_test_io_pair io_pair = { 0 }, s2n_io_pair_close);
EXPECT_SUCCESS(s2n_io_pair_init_non_blocking(&io_pair));
EXPECT_SUCCESS(s2n_connection_set_io_pair(client_conn, &io_pair));
EXPECT_SUCCESS(s2n_connection_set_io_pair(server_conn, &io_pair));
EXPECT_FAILURE_WITH_ALERT(s2n_negotiate_test_server_and_client(server_conn, client_conn),
S2N_ERR_CERT_UNTRUSTED, S2N_TLS_ALERT_CERTIFICATE_UNKNOWN);
/* Ensure that a client certificate was received on the server, indicating that the
* validation error occurred when processing the client's certificate, rather than the
* server's.
*/
uint8_t *client_cert_chain = NULL;
uint32_t client_cert_chain_len = 0;
EXPECT_SUCCESS(s2n_connection_get_client_cert_chain(server_conn,
&client_cert_chain, &client_cert_chain_len));
EXPECT_TRUE(client_cert_chain_len > 0);
}
}
EXPECT_SUCCESS(s2n_cert_chain_and_key_free(chain_and_key));
EXPECT_SUCCESS(s2n_config_free(config));
free(cert_chain_pem);
free(private_key_pem);
free(dhparams_pem);
END_TEST();
}
|