blob: 3b4bb564f11e6d7a168c7fe9d7a91392ec9ce130 [file] [log] [blame] [view]
Emilia Kasper453dfd82016-03-17 15:14:30 +01001# SSL tests
2
3SSL testcases are configured in the `ssl-tests` directory.
4
5Each `ssl_*.conf.in` file contains a number of test configurations. These files
6are used to generate testcases in the OpenSSL CONF format.
7
8The precise test output can be dependent on the library configuration. The test
9harness generates the output files on the fly.
10
11However, for verification, we also include checked-in configuration outputs
12corresponding to the default configuration. These testcases live in
Emilia Kasper15269e52016-08-19 14:19:32 +020013`test/ssl-tests/*.conf` files.
Emilia Kasper453dfd82016-03-17 15:14:30 +010014
15For more details, see `ssl-tests/01-simple.conf.in` for an example.
16
17## Configuring the test
18
19First, give your test a name. The names do not have to be unique.
20
21An example test input looks like this:
22
23```
24 {
25 name => "test-default",
26 server => { "CipherString" => "DEFAULT" },
27 client => { "CipherString" => "DEFAULT" },
28 test => { "ExpectedResult" => "Success" },
29 }
30```
31
Emilia Kasper9f48bba2016-07-21 16:29:48 +020032The test section supports the following options
33
34### Test mode
35
36* Method - the method to test. One of DTLS or TLS.
37
38* HandshakeMode - which handshake flavour to test:
39 - Simple - plain handshake (default)
40 - Resume - test resumption
Matt Caswellfe7dd552016-09-27 11:50:43 +010041 - RenegotiateServer - test server initiated renegotiation
42 - RenegotiateClient - test client initiated renegotiation
Emilia Kasper9f48bba2016-07-21 16:29:48 +020043
44When HandshakeMode is Resume or Renegotiate, the original handshake is expected
45to succeed. All configured test expectations are verified against the second
46handshake.
47
Emilia Kasper6dc99742016-08-16 15:11:08 +020048* ApplicationData - amount of application data bytes to send (integer, defaults
49 to 256 bytes). Applies to both client and server. Application data is sent in
50 64kB chunks (but limited by MaxFragmentSize and available parallelization, see
51 below).
52
53* MaxFragmentSize - maximum send fragment size (integer, defaults to 512 in
54 tests - see `SSL_CTX_set_max_send_fragment` for documentation). Applies to
55 both client and server. Lowering the fragment size will split handshake and
56 application data up between more `SSL_write` calls, thus allowing to exercise
57 different code paths. In particular, if the buffer size (64kB) is at least
58 four times as large as the maximum fragment, interleaved multi-buffer crypto
59 implementations may be used on some platforms.
60
Emilia Kasper9f48bba2016-07-21 16:29:48 +020061### Test expectations
Emilia Kasper453dfd82016-03-17 15:14:30 +010062
63* ExpectedResult - expected handshake outcome. One of
64 - Success - handshake success
65 - ServerFail - serverside handshake failure
66 - ClientFail - clientside handshake failure
67 - InternalError - some other error
68
Emilia Kasper9f48bba2016-07-21 16:29:48 +020069* ExpectedClientAlert, ExpectedServerAlert - expected alert. See
Emilia Kasperdd8e5a52016-08-12 14:29:24 +020070 `ssl_test_ctx.c` for known values. Note: the expected alert is currently
71 matched against the _last_ received alert (i.e., a fatal alert or a
72 `close_notify`). Warning alert expectations are not yet supported. (A warning
73 alert will not be correctly matched, if followed by a `close_notify` or
74 another alert.)
Emilia Kasper453dfd82016-03-17 15:14:30 +010075
Emilia Kasper9f48bba2016-07-21 16:29:48 +020076* ExpectedProtocol - expected negotiated protocol. One of
Emilia Kasper453dfd82016-03-17 15:14:30 +010077 SSLv3, TLSv1, TLSv1.1, TLSv1.2.
78
Todd Short5c753de2016-05-12 18:16:52 -040079* SessionTicketExpected - whether or not a session ticket is expected
80 - Ignore - do not check for a session ticket (default)
81 - Yes - a session ticket is expected
82 - No - a session ticket is not expected
Emilia Kasper590ed3d2016-07-05 19:06:23 +020083
Todd Shorta84e5c92016-09-01 08:40:54 -040084* SessionIdExpected - whether or not a session id is expected
85 - Ignore - do not check for a session id (default)
86 - Yes - a session id is expected
87 - No - a session id is not expected
88
Emilia Kasper590ed3d2016-07-05 19:06:23 +020089* ResumptionExpected - whether or not resumption is expected (Resume mode only)
90 - Yes - resumed handshake
91 - No - full handshake (default)
92
Emilia Kasper9f48bba2016-07-21 16:29:48 +020093* ExpectedNPNProtocol, ExpectedALPNProtocol - NPN and ALPN expectations.
Emilia Kasperce2cdac2016-07-04 20:16:14 +020094
Dr. Stephen Hensonb93ad052017-01-08 00:09:08 +000095* ExpectedTmpKeyType - the expected algorithm or curve of server temp key
96
Dr. Stephen Henson7289ab42017-01-12 13:58:48 +000097* ExpectedServerCertType, ExpectedClientCertType - the expected algorithm or
Dr. Stephen Henson7f5f35a2017-01-08 19:30:41 +000098 curve of server or client certificate
99
Dr. Stephen Henson54b7f2a2017-01-27 15:06:16 +0000100* ExpectedServerSignHash, ExpectedClientSignHash - the expected
Dr. Stephen Hensonee5b6a42017-01-13 15:20:42 +0000101 signing hash used by server or client certificate
102
Dr. Stephen Henson54b7f2a2017-01-27 15:06:16 +0000103* ExpectedServerSignType, ExpectedClientSignType - the expected
104 signature type used by server or client when signing messages
105
Dr. Stephen Henson2e215392017-03-15 16:07:07 +0000106* ExpectedClientCANames - for client auth list of CA names the server must
107 send. If this is "empty" the list is expected to be empty otherwise it
108 is a file of certificates whose subject names form the list.
109
Dr. Stephen Hensonf15b50c2017-03-31 22:35:28 +0100110* ExpectedServerCANames - list of CA names the client must send, TLS 1.3 only.
111 If this is "empty" the list is expected to be empty otherwise it is a file
112 of certificates whose subject names form the list.
113
Emilia Kasper453dfd82016-03-17 15:14:30 +0100114## Configuring the client and server
115
116The client and server configurations can be any valid `SSL_CTX`
117configurations. For details, see the manpages for `SSL_CONF_cmd`.
118
119Give your configurations as a dictionary of CONF commands, e.g.
120
121```
122server => {
123 "CipherString" => "DEFAULT",
124 "MinProtocol" => "TLSv1",
125}
126```
127
Emilia Kasper590ed3d2016-07-05 19:06:23 +0200128The following sections may optionally be defined:
129
130* server2 - this section configures a secondary context that is selected via the
131 ServerName test option. This context is used whenever a ServerNameCallback is
132 specified. If the server2 section is not present, then the configuration
133 matches server.
134* resume_server - this section configures the client to resume its session
135 against a different server. This context is used whenever HandshakeMode is
Emilia Kasper11279b12016-07-21 14:04:00 +0200136 Resume. If the resume_server section is not present, then the configuration
Emilia Kasper590ed3d2016-07-05 19:06:23 +0200137 matches server.
Emilia Kasper11279b12016-07-21 14:04:00 +0200138* resume_client - this section configures the client to resume its session with
139 a different configuration. In practice this may occur when, for example,
140 upgraded clients reuse sessions persisted on disk. This context is used
141 whenever HandshakeMode is Resume. If the resume_client section is not present,
142 then the configuration matches client.
Todd Short5c753de2016-05-12 18:16:52 -0400143
Emilia Kasper9f48bba2016-07-21 16:29:48 +0200144### Configuring callbacks and additional options
145
146Additional handshake settings can be configured in the `extra` section of each
147client and server:
148
149```
150client => {
151 "CipherString" => "DEFAULT",
152 extra => {
153 "ServerName" => "server2",
154 }
155}
156```
157
158#### Supported client-side options
159
160* ClientVerifyCallback - the client's custom certificate verify callback.
161 Used to test callback behaviour. One of
162 - None - no custom callback (default)
163 - AcceptAll - accepts all certificates.
164 - RejectAll - rejects all certificates.
165
166* ServerName - the server the client should attempt to connect to. One of
167 - None - do not use SNI (default)
168 - server1 - the initial context
169 - server2 - the secondary context
170 - invalid - an unknown context
171
Emilia Kasperda085d22016-08-09 16:47:26 +0200172* CTValidation - Certificate Transparency validation strategy. One of
173 - None - no validation (default)
174 - Permissive - SSL_CT_VALIDATION_PERMISSIVE
175 - Strict - SSL_CT_VALIDATION_STRICT
176
Emilia Kasper9f48bba2016-07-21 16:29:48 +0200177#### Supported server-side options
178
179* ServerNameCallback - the SNI switching callback to use
180 - None - no callback (default)
181 - IgnoreMismatch - continue the handshake on SNI mismatch
182 - RejectMismatch - abort the handshake on SNI mismatch
183
184* BrokenSessionTicket - a special test case where the session ticket callback
185 does not initialize crypto.
186 - No (default)
187 - Yes
188
189#### Mutually supported options
190
191* NPNProtocols, ALPNProtocols - NPN and ALPN settings. Server and client
192 protocols can be specified as a comma-separated list, and a callback with the
193 recommended behaviour will be installed automatically.
194
Emilia Kasperea1ecd92017-03-14 13:48:54 +0100195* SRPUser, SRPPassword - SRP settings. For client, this is the SRP user to
196 connect as; for server, this is a known SRP user.
197
Emilia Kasper453dfd82016-03-17 15:14:30 +0100198### Default server and client configurations
199
200The default server certificate and CA files are added to the configurations
201automatically. Server certificate verification is requested by default.
202
203You can override these options by redefining them:
204
205```
206client => {
207 "VerifyCAFile" => "/path/to/custom/file"
208}
209```
210
211or by deleting them
212
213```
214client => {
215 "VerifyCAFile" => undef
216}
217```
218
219## Adding a test to the test harness
220
Emilia Kasper15269e52016-08-19 14:19:32 +02002211. Add a new test configuration to `test/ssl-tests`, following the examples of
222 existing `*.conf.in` files (for example, `01-simple.conf.in`).
223
2242. Generate the generated `*.conf` test input file. You can do so by running
225 `generate_ssl_tests.pl`:
226
227```
228$ ./config
229$ cd test
David Benjaminf90486f2017-09-07 18:41:52 -0400230$ TOP=.. perl -I ../util/perl/ generate_ssl_tests.pl ssl-tests/my.conf.in \
Emilia Kasper15269e52016-08-19 14:19:32 +0200231 > ssl-tests/my.conf
232```
233
234where `my.conf.in` is your test input file.
235
236For example, to generate the test cases in `ssl-tests/01-simple.conf.in`, do
237
238```
David Benjaminf90486f2017-09-07 18:41:52 -0400239$ TOP=.. perl -I ../util/perl/ generate_ssl_tests.pl ssl-tests/01-simple.conf.in > ssl-tests/01-simple.conf
Emilia Kasper15269e52016-08-19 14:19:32 +0200240```
241
242Alternatively (hackish but simple), you can comment out
243
244```
245unlink glob $tmp_file;
246```
247
248in `test/recipes/80-test_ssl_new.t` and run
249
250```
251$ make TESTS=test_ssl_new test
252```
253
254This will save the generated output in a `*.tmp` file in the build directory.
255
2563. Update the number of tests planned in `test/recipes/80-test_ssl_new.t`. If
257 the test suite has any skip conditions, update those too (see
258 `test/recipes/80-test_ssl_new.t` for details).
Emilia Kasper453dfd82016-03-17 15:14:30 +0100259
260## Running the tests with the test harness
261
262```
263HARNESS_VERBOSE=yes make TESTS=test_ssl_new test
264```
265
266## Running a test manually
267
268These steps are only needed during development. End users should run `make test`
269or follow the instructions above to run the SSL test suite.
270
271To run an SSL test manually from the command line, the `TEST_CERTS_DIR`
272environment variable to point to the location of the certs. E.g., from the root
273OpenSSL directory, do
274
275```
Matt Caswell1329b952016-09-27 10:18:00 +0100276$ CTLOG_FILE=test/ct/log_list.conf TEST_CERTS_DIR=test/certs test/ssl_test \
277 test/ssl-tests/01-simple.conf
Emilia Kasper453dfd82016-03-17 15:14:30 +0100278```
279
280or for shared builds
281
282```
Matt Caswell1329b952016-09-27 10:18:00 +0100283$ CTLOG_FILE=test/ct/log_list.conf TEST_CERTS_DIR=test/certs \
284 util/shlib_wrap.sh test/ssl_test test/ssl-tests/01-simple.conf
Emilia Kasper453dfd82016-03-17 15:14:30 +0100285```
286
Emilia Kasper453dfd82016-03-17 15:14:30 +0100287Note that the test expectations sometimes depend on the Configure settings. For
288example, the negotiated protocol depends on the set of available (enabled)
289protocols: a build with `enable-ssl3` has different test expectations than a
290build with `no-ssl3`.
291
292The Perl test harness automatically generates expected outputs, so users who
293just run `make test` do not need any extra steps.
294
295However, when running a test manually, keep in mind that the repository version
296of the generated `test/ssl-tests/*.conf` correspond to expected outputs in with
297the default Configure options. To run `ssl_test` manually from the command line
298in a build with a different configuration, you may need to generate the right
299`*.conf` file from the `*.conf.in` input first.