1 /* Copyright (c) 2014, Google Inc. 2 * 3 * Permission to use, copy, modify, and/or distribute this software for any 4 * purpose with or without fee is hereby granted, provided that the above 5 * copyright notice and this permission notice appear in all copies. 6 * 7 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 8 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 9 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY 10 * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 11 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION 12 * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN 13 * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ 14 15 #ifndef HEADER_TEST_CONFIG 16 #define HEADER_TEST_CONFIG 17 18 #include <string> 19 #include <utility> 20 #include <vector> 21 22 #include <openssl/base.h> 23 #include <openssl/x509.h> 24 25 #include "test_state.h" 26 27 struct TestConfig { 28 int port = 0; 29 bool is_server = false; 30 bool is_dtls = false; 31 bool is_quic = false; 32 int resume_count = 0; 33 std::string write_settings; 34 bool fallback_scsv = false; 35 std::vector<int> signing_prefs; 36 std::vector<int> verify_prefs; 37 std::vector<int> expect_peer_verify_prefs; 38 std::vector<int> curves; 39 std::string key_file; 40 std::string cert_file; 41 std::string expect_server_name; 42 bool enable_ech_grease = false; 43 std::string expect_certificate_types; 44 bool require_any_client_certificate = false; 45 std::string advertise_npn; 46 std::string expect_next_proto; 47 bool false_start = false; 48 std::string select_next_proto; 49 bool async = false; 50 bool write_different_record_sizes = false; 51 bool cbc_record_splitting = false; 52 bool partial_write = false; 53 bool no_tls13 = false; 54 bool no_tls12 = false; 55 bool no_tls11 = false; 56 bool no_tls1 = false; 57 bool no_ticket = false; 58 std::string expect_channel_id; 59 bool enable_channel_id = false; 60 std::string send_channel_id; 61 int expect_token_binding_param = -1; 62 std::string send_token_binding_params; 63 bool shim_writes_first = false; 64 std::string host_name; 65 std::string advertise_alpn; 66 std::string expect_alpn; 67 std::string expect_late_alpn; 68 std::string expect_advertised_alpn; 69 std::string select_alpn; 70 bool decline_alpn = false; 71 bool select_empty_alpn = false; 72 bool defer_alps = false; 73 std::vector<std::pair<std::string, std::string>> application_settings; 74 std::unique_ptr<std::string> expect_peer_application_settings; 75 std::string quic_transport_params; 76 std::string expect_quic_transport_params; 77 // Set quic_use_legacy_codepoint to 0 or 1 to configure, -1 uses default. 78 int quic_use_legacy_codepoint = -1; 79 bool expect_session_miss = false; 80 bool expect_extended_master_secret = false; 81 std::string psk; 82 std::string psk_identity; 83 std::string srtp_profiles; 84 bool enable_ocsp_stapling = false; 85 std::string expect_ocsp_response; 86 bool enable_signed_cert_timestamps = false; 87 std::string expect_signed_cert_timestamps; 88 int min_version = 0; 89 int max_version = 0; 90 int expect_version = 0; 91 int mtu = 0; 92 bool implicit_handshake = false; 93 bool use_early_callback = false; 94 bool fail_early_callback = false; 95 bool install_ddos_callback = false; 96 bool fail_ddos_callback = false; 97 bool fail_cert_callback = false; 98 std::string cipher; 99 bool handshake_never_done = false; 100 int export_keying_material = 0; 101 std::string export_label; 102 std::string export_context; 103 bool use_export_context = false; 104 bool tls_unique = false; 105 bool expect_ticket_renewal = false; 106 bool expect_no_session = false; 107 bool expect_ticket_supports_early_data = false; 108 bool expect_accept_early_data = false; 109 bool expect_reject_early_data = false; 110 bool expect_no_offer_early_data = false; 111 bool use_ticket_callback = false; 112 bool renew_ticket = false; 113 bool enable_early_data = false; 114 bool enable_client_custom_extension = false; 115 bool enable_server_custom_extension = false; 116 bool custom_extension_skip = false; 117 bool custom_extension_fail_add = false; 118 std::string ocsp_response; 119 bool check_close_notify = false; 120 bool shim_shuts_down = false; 121 bool verify_fail = false; 122 bool verify_peer = false; 123 bool verify_peer_if_no_obc = false; 124 bool expect_verify_result = false; 125 std::string signed_cert_timestamps; 126 int expect_total_renegotiations = 0; 127 bool renegotiate_once = false; 128 bool renegotiate_freely = false; 129 bool renegotiate_ignore = false; 130 bool renegotiate_explicit = false; 131 bool forbid_renegotiation_after_handshake = false; 132 int expect_peer_signature_algorithm = 0; 133 bool enable_all_curves = false; 134 int expect_curve_id = 0; 135 bool use_old_client_cert_callback = false; 136 int initial_timeout_duration_ms = 0; 137 std::string use_client_ca_list; 138 std::string expect_client_ca_list; 139 bool send_alert = false; 140 bool peek_then_read = false; 141 bool enable_grease = false; 142 int max_cert_list = 0; 143 std::string ticket_key; 144 bool use_exporter_between_reads = false; 145 int expect_cipher_aes = 0; 146 int expect_cipher_no_aes = 0; 147 int expect_cipher = 0; 148 std::string expect_peer_cert_file; 149 int resumption_delay = 0; 150 bool retain_only_sha256_client_cert = false; 151 bool expect_sha256_client_cert = false; 152 bool read_with_unfinished_write = false; 153 bool expect_secure_renegotiation = false; 154 bool expect_no_secure_renegotiation = false; 155 int max_send_fragment = 0; 156 int read_size = 0; 157 bool expect_session_id = false; 158 bool expect_no_session_id = false; 159 int expect_ticket_age_skew = 0; 160 bool no_op_extra_handshake = false; 161 bool handshake_twice = false; 162 bool allow_unknown_alpn_protos = false; 163 bool use_custom_verify_callback = false; 164 std::string expect_msg_callback; 165 bool allow_false_start_without_alpn = false; 166 bool handoff = false; 167 bool use_ocsp_callback = false; 168 bool set_ocsp_in_callback = false; 169 bool decline_ocsp_callback = false; 170 bool fail_ocsp_callback = false; 171 bool install_cert_compression_algs = false; 172 bool reverify_on_resume = false; 173 bool enforce_rsa_key_usage = false; 174 bool is_handshaker_supported = false; 175 bool handshaker_resume = false; 176 std::string handshaker_path; 177 bool jdk11_workaround = false; 178 bool server_preference = false; 179 bool export_traffic_secrets = false; 180 bool key_update = false; 181 bool expect_delegated_credential_used = false; 182 std::string delegated_credential; 183 std::string expect_early_data_reason; 184 bool expect_hrr = false; 185 bool expect_no_hrr = false; 186 bool wait_for_debugger = false; 187 std::string quic_early_data_context; 188 189 int argc; 190 char **argv; 191 192 bssl::UniquePtr<SSL_CTX> SetupCtx(SSL_CTX *old_ctx) const; 193 194 bssl::UniquePtr<SSL> NewSSL(SSL_CTX *ssl_ctx, SSL_SESSION *session, 195 bool is_resume, 196 std::unique_ptr<TestState> test_state) const; 197 }; 198 199 bool ParseConfig(int argc, char **argv, TestConfig *out_initial, 200 TestConfig *out_resume, TestConfig *out_retry); 201 202 bool SetTestConfig(SSL *ssl, const TestConfig *config); 203 204 const TestConfig *GetTestConfig(const SSL *ssl); 205 206 bool LoadCertificate(bssl::UniquePtr<X509> *out_x509, 207 bssl::UniquePtr<STACK_OF(X509)> *out_chain, 208 const std::string &file); 209 210 bssl::UniquePtr<EVP_PKEY> LoadPrivateKey(const std::string &file); 211 212 #endif // HEADER_TEST_CONFIG 213