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
|
/*
* 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 "tests/benchmark/utils/s2n_negotiate_client_benchmark.h"
#include "tests/benchmark/utils/shared_info.h"
#include "utils/s2n_safety.h"
#include "s2n_test.h"
#include <unistd.h>
#include <stdio.h>
#include <iostream>
#include <vector>
#include <stdlib.h>
extern "C" {
#include "bin/common.h"
#include "tls/s2n_connection.h"
}
static int setup_socket(int& sockfd) {
struct addrinfo hints = {};
struct addrinfo *ai = nullptr;
struct addrinfo *ai_list = nullptr;
hints.ai_family = AF_UNSPEC;
hints.ai_socktype = SOCK_STREAM;
GUARD_EXIT(getaddrinfo(host, port, &hints, &ai_list), "getaddrinfo error\n");
bool connected = false;
while (!connected) {
for (ai = ai_list; ai != NULL; ai = ai->ai_next) {
if ((sockfd = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol)) == -1) { continue; }
if (connect(sockfd, ai->ai_addr, ai->ai_addrlen) == -1) {
close(sockfd);
continue;
}
connected = true;
if (DEBUG_PRINT) {
printf("Connected to s2nd\n");
}
break;
}
}
freeaddrinfo(ai_list);
return 0;
}
static void client_handshake(benchmark::State& state, bool warmup, struct s2n_connection *conn, int sockfd) {
GUARD_EXIT(s2n_set_server_name(conn, host), "Error setting server name");
GUARD_EXIT(s2n_connection_set_fd(conn, sockfd), "Error setting file descriptor");
if (benchmark_negotiate(conn, sockfd, state, warmup) != S2N_SUCCESS) {
state.SkipWithError("Negotiate Failed\n");
}
if (DEBUG_PRINT) {
printf("Connected to %s:%s\n", host, port);
}
s2n_blocked_status blocked;
int shutdown_rc = s2n_shutdown(conn, &blocked);
while(shutdown_rc != 0) {
shutdown_rc = s2n_shutdown(conn, &blocked);
}
GUARD_EXIT(s2n_connection_wipe(conn), "Error wiping connection");
}
static void benchmark_single_suite_client(benchmark::State& state) {
int sockfd = state.range(2);
config = s2n_config_new();
struct s2n_connection *conn = s2n_connection_new(S2N_CLIENT);
size_t warmup_iters = state.range(1);
GUARD_EXIT_NULL(config);
/* In order to specify each cipher suite from the cipher_preferences_test_all_tls12
* list, a custom cipher_suite list must be created with only one cipher suite. In
* order to use this new list, a cipher preference and security policy must also be
* created */
struct s2n_cipher_suite *cipher_suites_benchmark[] = {
all_suites[state.range(0)]
};
const struct s2n_cipher_preferences cipher_preferences_benchmark = {
1, /* count */
cipher_suites_benchmark, /* suites */
};
const struct s2n_security_policy security_policy_benchmark = {
S2N_SSLv3, /* minimum_protocol_version */
&cipher_preferences_benchmark, /* cipher_preferences */
&kem_preferences_kms_pq_tls_1_0_2020_07, /* kem_preferences */
&s2n_signature_preferences_20201021, /* signature_preferences */
NULL, /* certificate_signature_preferences */
&s2n_ecc_preferences_20201021, /* ecc_preferences */
};
config->security_policy = &security_policy_benchmark;
struct verify_data *unsafe_verify_data = (verify_data *) malloc(sizeof(verify_data));
s2n_status_request_type type = S2N_STATUS_REQUEST_NONE;
GUARD_EXIT(s2n_config_set_status_request_type(config, type),
"OCSP validation is not supported by the linked libCrypto implementation. It cannot be set.");
GUARD_EXIT(s2n_config_set_verify_host_callback(config, unsafe_verify_host, unsafe_verify_data),
"Error setting host name verification function\n");
unsafe_verify_data->trusted_host = host;
if (!conn_settings.insecure) {
const char *ca_dir = NULL;
if(all_suites[state.range(0)]->auth_method == S2N_AUTHENTICATION_RSA) {
std::string ca_file = "rsa_2048_sha384_client_cert.pem";
std::string pem_file_location = pem_dir + ca_file;
GUARD_EXIT(s2n_config_set_verification_ca_location(config, pem_file_location.c_str(), ca_dir),
"Error setting CA file for RSA trust store\n");
}
else {
std::string ca_file = "ecdsa_p256_pkcs1_cert.pem";
std::string pem_file_location = pem_dir + ca_file;
GUARD_EXIT(s2n_config_set_verification_ca_location(config, pem_file_location.c_str(), ca_dir),
"Error setting CA file for ECDSA trust store\n");
}
}
else {
GUARD_EXIT(s2n_config_disable_x509_verification(config), "Error disabling X.509 validation");
}
if (conn == NULL) {
print_s2n_error("Error getting new connection");
exit(1);
}
GUARD_EXIT(s2n_connection_set_config(conn, config), "Error setting configuration");
GUARD_EXIT(s2n_connection_set_client_auth_type(conn, S2N_CERT_AUTH_OPTIONAL),
"Error setting ClientAuth optional");
if (conn_settings.use_corked_io) {
GUARD_EXIT(s2n_connection_use_corked_io(conn), "Client: Error setting corked io");
}
for (size_t i = 0; i < warmup_iters; i++) {
client_handshake(state, true, conn, sockfd);
}
for (auto _ : state) {
state.PauseTiming();
client_handshake(state, false, conn, sockfd);
}
free(unsafe_verify_data);
GUARD_EXIT(s2n_config_free(config), "Error freeing configuration");
GUARD_EXIT(s2n_connection_free(conn), "Error freeing connection");
}
int start_negotiate_benchmark_client(int argc, char** argv) {
int use_corked_io = 0;
int insecure = 0;
int sockfd = 0;
conn_settings = {0};
char bench_format[100] = "--benchmark_out_format=";
char bench_out[100] = "--benchmark_out=client_";
std::string file_prefix;
std::string gb_options;
std::vector<int> data_sizes;
long int warmup_iters = 1;
size_t iterations = 1;
size_t repetitions = 1;
argument_parse(argc, argv, use_corked_io, insecure, bench_format, file_prefix, warmup_iters, iterations, repetitions,
gb_options, data_sizes);
strcat(bench_out, file_prefix.c_str());
std::vector<char*> argv_bench(argv, argv + argc);
argv_bench.push_back(bench_out);
argv_bench.push_back(bench_format);
argv_bench.push_back(nullptr);
argv = argv_bench.data();
argc = argv_bench.size();
conn_settings.use_corked_io = use_corked_io;
conn_settings.insecure = insecure;
s2n_init();
GUARD_EXIT(setup_socket(sockfd), "Client socket setup failed\n");
for (long int current_suite = 0; current_suite < num_suites; current_suite++) {
std::string bench_name = std::string("Client: ") + all_suites[current_suite]->name;
benchmark::RegisterBenchmark(bench_name.c_str(), benchmark_single_suite_client)->Repetitions(repetitions)
->ReportAggregatesOnly()->Iterations(iterations)->Args({current_suite, warmup_iters, sockfd});
}
::benchmark::Initialize(&argc, argv);
::benchmark::RunSpecifiedBenchmarks();
s2n_cleanup();
close(sockfd);
return 0;
}
|