• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 enum class CredentialConfigType { kX509, kDelegated };
28 
29 struct CredentialConfig {
30   CredentialConfigType type;
31   std::string cert_file;
32   std::string key_file;
33   std::vector<uint16_t> signing_prefs;
34   std::string delegated_credential;
35   std::string ocsp_response;
36   std::string signed_cert_timestamps;
37 };
38 
39 struct TestConfig {
40   int port = 0;
41   bool ipv6 = false;
42   uint64_t shim_id = 0;
43   bool is_server = false;
44   bool is_dtls = false;
45   bool is_quic = false;
46   int resume_count = 0;
47   std::string write_settings;
48   bool fallback_scsv = false;
49   std::vector<uint16_t> signing_prefs;
50   std::vector<uint16_t> verify_prefs;
51   std::vector<uint16_t> expect_peer_verify_prefs;
52   std::vector<uint16_t> curves;
53   std::string key_file;
54   std::string cert_file;
55   std::string trust_cert;
56   std::string expect_server_name;
57   bool enable_ech_grease = false;
58   std::vector<std::string> ech_server_configs;
59   std::vector<std::string> ech_server_keys;
60   std::vector<int> ech_is_retry_config;
61   bool expect_ech_accept = false;
62   std::string expect_ech_name_override;
63   bool expect_no_ech_name_override = false;
64   std::string expect_ech_retry_configs;
65   bool expect_no_ech_retry_configs = false;
66   std::string ech_config_list;
67   std::string expect_certificate_types;
68   bool require_any_client_certificate = false;
69   std::string advertise_npn;
70   std::string expect_next_proto;
71   bool false_start = false;
72   std::string select_next_proto;
73   bool async = false;
74   bool write_different_record_sizes = false;
75   bool cbc_record_splitting = false;
76   bool partial_write = false;
77   bool no_tls13 = false;
78   bool no_tls12 = false;
79   bool no_tls11 = false;
80   bool no_tls1 = false;
81   bool no_ticket = false;
82   std::string expect_channel_id;
83   bool enable_channel_id = false;
84   std::string send_channel_id;
85   bool shim_writes_first = false;
86   std::string host_name;
87   std::string advertise_alpn;
88   std::string expect_alpn;
89   std::string expect_advertised_alpn;
90   std::string select_alpn;
91   bool decline_alpn = false;
92   bool reject_alpn = false;
93   bool select_empty_alpn = false;
94   bool defer_alps = false;
95   std::vector<std::pair<std::string, std::string>> application_settings;
96   std::unique_ptr<std::string> expect_peer_application_settings;
97   bool alps_use_new_codepoint = false;
98   std::string quic_transport_params;
99   std::string expect_quic_transport_params;
100   // Set quic_use_legacy_codepoint to 0 or 1 to configure, -1 uses default.
101   int quic_use_legacy_codepoint = -1;
102   bool expect_session_miss = false;
103   bool expect_extended_master_secret = false;
104   std::string psk;
105   std::string psk_identity;
106   std::string srtp_profiles;
107   bool enable_ocsp_stapling = false;
108   std::string expect_ocsp_response;
109   bool enable_signed_cert_timestamps = false;
110   std::string expect_signed_cert_timestamps;
111   uint16_t min_version = 0;
112   uint16_t max_version = 0;
113   uint16_t expect_version = 0;
114   int mtu = 0;
115   bool implicit_handshake = false;
116   bool use_early_callback = false;
117   bool fail_early_callback = false;
118   bool install_ddos_callback = false;
119   bool fail_ddos_callback = false;
120   bool fail_cert_callback = false;
121   std::string cipher;
122   bool handshake_never_done = false;
123   int export_keying_material = 0;
124   std::string export_label;
125   std::string export_context;
126   bool use_export_context = false;
127   bool tls_unique = false;
128   bool expect_ticket_renewal = false;
129   bool expect_no_session = false;
130   bool expect_ticket_supports_early_data = false;
131   bool expect_accept_early_data = false;
132   bool expect_reject_early_data = false;
133   bool expect_no_offer_early_data = false;
134   bool use_ticket_callback = false;
135   bool renew_ticket = false;
136   bool enable_early_data = false;
137   std::string ocsp_response;
138   bool check_close_notify = false;
139   bool shim_shuts_down = false;
140   bool verify_fail = false;
141   bool verify_peer = false;
142   bool verify_peer_if_no_obc = false;
143   bool expect_verify_result = false;
144   std::string signed_cert_timestamps;
145   int expect_total_renegotiations = 0;
146   bool renegotiate_once = false;
147   bool renegotiate_freely = false;
148   bool renegotiate_ignore = false;
149   bool renegotiate_explicit = false;
150   bool forbid_renegotiation_after_handshake = false;
151   uint16_t expect_peer_signature_algorithm = 0;
152   uint16_t expect_curve_id = 0;
153   bool use_old_client_cert_callback = false;
154   int initial_timeout_duration_ms = 0;
155   std::string use_client_ca_list;
156   std::string expect_client_ca_list;
157   bool send_alert = false;
158   bool peek_then_read = false;
159   bool enable_grease = false;
160   bool permute_extensions = false;
161   int max_cert_list = 0;
162   std::string ticket_key;
163   bool use_exporter_between_reads = false;
164   uint16_t expect_cipher_aes = 0;
165   uint16_t expect_cipher_no_aes = 0;
166   uint16_t expect_cipher = 0;
167   std::string expect_peer_cert_file;
168   int resumption_delay = 0;
169   bool retain_only_sha256_client_cert = false;
170   bool expect_sha256_client_cert = false;
171   bool read_with_unfinished_write = false;
172   bool expect_secure_renegotiation = false;
173   bool expect_no_secure_renegotiation = false;
174   int max_send_fragment = 0;
175   int read_size = 0;
176   bool expect_session_id = false;
177   bool expect_no_session_id = false;
178   int expect_ticket_age_skew = 0;
179   bool no_op_extra_handshake = false;
180   bool handshake_twice = false;
181   bool allow_unknown_alpn_protos = false;
182   bool use_custom_verify_callback = false;
183   std::string expect_msg_callback;
184   bool allow_false_start_without_alpn = false;
185   bool handoff = false;
186   bool handshake_hints = false;
187   bool allow_hint_mismatch = false;
188   bool use_ocsp_callback = false;
189   bool set_ocsp_in_callback = false;
190   bool decline_ocsp_callback = false;
191   bool fail_ocsp_callback = false;
192   bool install_cert_compression_algs = false;
193   int install_one_cert_compression_alg = 0;
194   bool reverify_on_resume = false;
195   bool ignore_rsa_key_usage = false;
196   bool expect_key_usage_invalid = false;
197   bool is_handshaker_supported = false;
198   bool handshaker_resume = false;
199   std::string handshaker_path;
200   bool jdk11_workaround = false;
201   bool server_preference = false;
202   bool export_traffic_secrets = false;
203   bool key_update = false;
204   std::string expect_early_data_reason;
205   bool expect_hrr = false;
206   bool expect_no_hrr = false;
207   bool wait_for_debugger = false;
208   std::string quic_early_data_context;
209   int early_write_after_message = 0;
210   bool fips_202205 = false;
211   bool wpa_202304 = false;
212   bool no_check_client_certificate_type = false;
213   bool no_check_ecdsa_curve = false;
214   int expect_selected_credential = -1;
215   std::vector<CredentialConfig> credentials;
216 
217   std::vector<const char*> handshaker_args;
218 
219   bssl::UniquePtr<SSL_CTX> SetupCtx(SSL_CTX *old_ctx) const;
220 
221   bssl::UniquePtr<SSL> NewSSL(SSL_CTX *ssl_ctx, SSL_SESSION *session,
222                               std::unique_ptr<TestState> test_state) const;
223 };
224 
225 bool ParseConfig(int argc, char **argv, bool is_shim, TestConfig *out_initial,
226                  TestConfig *out_resume, TestConfig *out_retry);
227 
228 bool SetTestConfig(SSL *ssl, const TestConfig *config);
229 
230 const TestConfig *GetTestConfig(const SSL *ssl);
231 
232 bool LoadCertificate(bssl::UniquePtr<X509> *out_x509,
233                      bssl::UniquePtr<STACK_OF(X509)> *out_chain,
234                      const std::string &file);
235 
236 bssl::UniquePtr<EVP_PKEY> LoadPrivateKey(const std::string &file);
237 
238 #endif  // HEADER_TEST_CONFIG
239