Teach TLSProxy how to re-encrypt a TLSv1.3 message after changes
[openssl.git] / test / ssl_test.c
1 /*
2  * Copyright 2016 The OpenSSL Project Authors. All Rights Reserved.
3  *
4  * Licensed under the OpenSSL license (the "License").  You may not use
5  * this file except in compliance with the License.  You can obtain a copy
6  * in the file LICENSE in the source distribution or at
7  * https://www.openssl.org/source/license.html
8  */
9
10 #include <stdio.h>
11 #include <string.h>
12
13 #include <openssl/conf.h>
14 #include <openssl/err.h>
15 #include <openssl/ssl.h>
16
17 #include "handshake_helper.h"
18 #include "ssl_test_ctx.h"
19 #include "testutil.h"
20 #include "test_main_custom.h"
21
22 static CONF *conf = NULL;
23
24 /* Currently the section names are of the form test-<number>, e.g. test-15. */
25 #define MAX_TESTCASE_NAME_LENGTH 100
26
27 static const char *print_alert(int alert)
28 {
29     return alert ? SSL_alert_desc_string_long(alert) : "no alert";
30 }
31
32 static int check_result(HANDSHAKE_RESULT *result, SSL_TEST_CTX *test_ctx)
33 {
34     if (result->result != test_ctx->expected_result) {
35         fprintf(stderr, "ExpectedResult mismatch: expected %s, got %s.\n",
36                 ssl_test_result_name(test_ctx->expected_result),
37                 ssl_test_result_name(result->result));
38         return 0;
39     }
40     return 1;
41 }
42
43 static int check_alerts(HANDSHAKE_RESULT *result, SSL_TEST_CTX *test_ctx)
44 {
45     if (result->client_alert_sent != result->client_alert_received) {
46         fprintf(stderr, "Client sent alert %s but server received %s\n.",
47                 print_alert(result->client_alert_sent),
48                 print_alert(result->client_alert_received));
49         /*
50          * We can't bail here because the peer doesn't always get far enough
51          * to process a received alert. Specifically, in protocol version
52          * negotiation tests, we have the following scenario.
53          * Client supports TLS v1.2 only; Server supports TLS v1.1.
54          * Client proposes TLS v1.2; server responds with 1.1;
55          * Client now sends a protocol alert, using TLS v1.2 in the header.
56          * The server, however, rejects the alert because of version mismatch
57          * in the record layer; therefore, the server appears to never
58          * receive the alert.
59          */
60         /* return 0; */
61     }
62
63     if (result->server_alert_sent != result->server_alert_received) {
64         fprintf(stderr, "Server sent alert %s but client received %s\n.",
65                 print_alert(result->server_alert_sent),
66                 print_alert(result->server_alert_received));
67         /* return 0; */
68     }
69
70     /* Tolerate an alert if one wasn't explicitly specified in the test. */
71     if (test_ctx->expected_client_alert
72         /*
73          * The info callback alert value is computed as
74          * (s->s3->send_alert[0] << 8) | s->s3->send_alert[1]
75          * where the low byte is the alert code and the high byte is other stuff.
76          */
77         && (result->client_alert_sent & 0xff) != test_ctx->expected_client_alert) {
78         fprintf(stderr, "ClientAlert mismatch: expected %s, got %s.\n",
79                 print_alert(test_ctx->expected_client_alert),
80                 print_alert(result->client_alert_sent));
81         return 0;
82     }
83
84     if (test_ctx->expected_server_alert
85         && (result->server_alert_sent & 0xff) != test_ctx->expected_server_alert) {
86         fprintf(stderr, "ServerAlert mismatch: expected %s, got %s.\n",
87                 print_alert(test_ctx->expected_server_alert),
88                 print_alert(result->server_alert_sent));
89         return 0;
90     }
91
92     if (result->client_num_fatal_alerts_sent > 1) {
93         fprintf(stderr, "Client sent %d fatal alerts.\n",
94                 result->client_num_fatal_alerts_sent);
95         return 0;
96     }
97     if (result->server_num_fatal_alerts_sent > 1) {
98         fprintf(stderr, "Server sent %d alerts.\n",
99                 result->server_num_fatal_alerts_sent);
100         return 0;
101     }
102     return 1;
103 }
104
105 static int check_protocol(HANDSHAKE_RESULT *result, SSL_TEST_CTX *test_ctx)
106 {
107     if (result->client_protocol != result->server_protocol) {
108         fprintf(stderr, "Client has protocol %s but server has %s\n.",
109                 ssl_protocol_name(result->client_protocol),
110                 ssl_protocol_name(result->server_protocol));
111         return 0;
112     }
113
114     if (test_ctx->expected_protocol) {
115         if (result->client_protocol != test_ctx->expected_protocol) {
116             fprintf(stderr, "Protocol mismatch: expected %s, got %s.\n",
117                     ssl_protocol_name(test_ctx->expected_protocol),
118                     ssl_protocol_name(result->client_protocol));
119             return 0;
120         }
121     }
122     return 1;
123 }
124
125 static int check_servername(HANDSHAKE_RESULT *result, SSL_TEST_CTX *test_ctx)
126 {
127     if (result->servername != test_ctx->expected_servername) {
128       fprintf(stderr, "Client ServerName mismatch, expected %s, got %s\n.",
129               ssl_servername_name(test_ctx->expected_servername),
130               ssl_servername_name(result->servername));
131       return 0;
132     }
133   return 1;
134 }
135
136 static int check_session_ticket(HANDSHAKE_RESULT *result, SSL_TEST_CTX *test_ctx)
137 {
138     if (test_ctx->session_ticket_expected == SSL_TEST_SESSION_TICKET_IGNORE)
139         return 1;
140     if (result->session_ticket != test_ctx->session_ticket_expected) {
141         fprintf(stderr, "Client SessionTicketExpected mismatch, expected %s, got %s\n.",
142                 ssl_session_ticket_name(test_ctx->session_ticket_expected),
143                 ssl_session_ticket_name(result->session_ticket));
144         return 0;
145     }
146     return 1;
147 }
148
149 #ifndef OPENSSL_NO_NEXTPROTONEG
150 static int check_npn(HANDSHAKE_RESULT *result, SSL_TEST_CTX *test_ctx)
151 {
152     int ret = 1;
153     ret &= strings_equal("NPN Negotiated (client vs server)",
154                          result->client_npn_negotiated,
155                          result->server_npn_negotiated);
156     ret &= strings_equal("ExpectedNPNProtocol",
157                          test_ctx->expected_npn_protocol,
158                          result->client_npn_negotiated);
159     return ret;
160 }
161 #endif
162
163 static int check_alpn(HANDSHAKE_RESULT *result, SSL_TEST_CTX *test_ctx)
164 {
165     int ret = 1;
166     ret &= strings_equal("ALPN Negotiated (client vs server)",
167                          result->client_alpn_negotiated,
168                          result->server_alpn_negotiated);
169     ret &= strings_equal("ExpectedALPNProtocol",
170                          test_ctx->expected_alpn_protocol,
171                          result->client_alpn_negotiated);
172     return ret;
173 }
174
175 static int check_resumption(HANDSHAKE_RESULT *result, SSL_TEST_CTX *test_ctx)
176 {
177     if (result->client_resumed != result->server_resumed) {
178         fprintf(stderr, "Resumption mismatch (client vs server): %d vs %d\n",
179                 result->client_resumed, result->server_resumed);
180         return 0;
181     }
182     if (result->client_resumed != test_ctx->resumption_expected) {
183         fprintf(stderr, "ResumptionExpected mismatch: %d vs %d\n",
184                 test_ctx->resumption_expected, result->client_resumed);
185         return 0;
186     }
187     return 1;
188 }
189
190 static int check_tmp_key(HANDSHAKE_RESULT *result, SSL_TEST_CTX *test_ctx)
191 {
192     if (test_ctx->expected_tmp_key_type == 0
193         || test_ctx->expected_tmp_key_type == result->tmp_key_type)
194         return 1;
195     fprintf(stderr, "Tmp key type mismatch, %s vs %s\n",
196             OBJ_nid2ln(test_ctx->expected_tmp_key_type),
197             OBJ_nid2ln(result->tmp_key_type));
198     return 0;
199 }
200
201 /*
202  * This could be further simplified by constructing an expected
203  * HANDSHAKE_RESULT, and implementing comparison methods for
204  * its fields.
205  */
206 static int check_test(HANDSHAKE_RESULT *result, SSL_TEST_CTX *test_ctx)
207 {
208     int ret = 1;
209     ret &= check_result(result, test_ctx);
210     ret &= check_alerts(result, test_ctx);
211     if (result->result == SSL_TEST_SUCCESS) {
212         ret &= check_protocol(result, test_ctx);
213         ret &= check_servername(result, test_ctx);
214         ret &= check_session_ticket(result, test_ctx);
215         ret &= (result->session_ticket_do_not_call == 0);
216 #ifndef OPENSSL_NO_NEXTPROTONEG
217         ret &= check_npn(result, test_ctx);
218 #endif
219         ret &= check_alpn(result, test_ctx);
220         ret &= check_resumption(result, test_ctx);
221         ret &= check_tmp_key(result, test_ctx);
222     }
223     return ret;
224 }
225
226 static int test_handshake(int idx)
227 {
228     int ret = 0;
229     SSL_CTX *server_ctx = NULL, *server2_ctx = NULL, *client_ctx = NULL,
230         *resume_server_ctx = NULL, *resume_client_ctx = NULL;
231     SSL_TEST_CTX *test_ctx = NULL;
232     HANDSHAKE_RESULT *result = NULL;
233     char test_app[MAX_TESTCASE_NAME_LENGTH];
234
235     BIO_snprintf(test_app, sizeof(test_app), "test-%d", idx);
236
237     test_ctx = SSL_TEST_CTX_create(conf, test_app);
238     if (test_ctx == NULL)
239         goto err;
240
241 #ifndef OPENSSL_NO_DTLS
242     if (test_ctx->method == SSL_TEST_METHOD_DTLS) {
243         server_ctx = SSL_CTX_new(DTLS_server_method());
244         if (test_ctx->extra.server.servername_callback !=
245             SSL_TEST_SERVERNAME_CB_NONE) {
246             server2_ctx = SSL_CTX_new(DTLS_server_method());
247             TEST_check(server2_ctx != NULL);
248         }
249         client_ctx = SSL_CTX_new(DTLS_client_method());
250         if (test_ctx->handshake_mode == SSL_TEST_HANDSHAKE_RESUME) {
251             resume_server_ctx = SSL_CTX_new(DTLS_server_method());
252             resume_client_ctx = SSL_CTX_new(DTLS_client_method());
253             TEST_check(resume_server_ctx != NULL);
254             TEST_check(resume_client_ctx != NULL);
255         }
256     }
257 #endif
258     if (test_ctx->method == SSL_TEST_METHOD_TLS) {
259         server_ctx = SSL_CTX_new(TLS_server_method());
260         /* SNI on resumption isn't supported/tested yet. */
261         if (test_ctx->extra.server.servername_callback !=
262             SSL_TEST_SERVERNAME_CB_NONE) {
263             server2_ctx = SSL_CTX_new(TLS_server_method());
264             TEST_check(server2_ctx != NULL);
265         }
266         client_ctx = SSL_CTX_new(TLS_client_method());
267
268         if (test_ctx->handshake_mode == SSL_TEST_HANDSHAKE_RESUME) {
269             resume_server_ctx = SSL_CTX_new(TLS_server_method());
270             resume_client_ctx = SSL_CTX_new(TLS_client_method());
271             TEST_check(resume_server_ctx != NULL);
272             TEST_check(resume_client_ctx != NULL);
273         }
274     }
275
276     TEST_check(server_ctx != NULL);
277     TEST_check(client_ctx != NULL);
278
279     TEST_check(CONF_modules_load(conf, test_app, 0) > 0);
280
281     if (!SSL_CTX_config(server_ctx, "server")
282         || !SSL_CTX_config(client_ctx, "client")) {
283         goto err;
284     }
285
286     if (server2_ctx != NULL && !SSL_CTX_config(server2_ctx, "server2"))
287         goto err;
288     if (resume_server_ctx != NULL
289         && !SSL_CTX_config(resume_server_ctx, "resume-server"))
290         goto err;
291     if (resume_client_ctx != NULL
292         && !SSL_CTX_config(resume_client_ctx, "resume-client"))
293         goto err;
294
295     result = do_handshake(server_ctx, server2_ctx, client_ctx,
296                           resume_server_ctx, resume_client_ctx, test_ctx);
297
298     ret = check_test(result, test_ctx);
299
300 err:
301     CONF_modules_unload(0);
302     SSL_CTX_free(server_ctx);
303     SSL_CTX_free(server2_ctx);
304     SSL_CTX_free(client_ctx);
305     SSL_CTX_free(resume_server_ctx);
306     SSL_CTX_free(resume_client_ctx);
307     SSL_TEST_CTX_free(test_ctx);
308     HANDSHAKE_RESULT_free(result);
309     return ret;
310 }
311
312 int test_main(int argc, char **argv)
313 {
314     int result = 0;
315     long num_tests;
316
317     if (argc != 2)
318         return 1;
319
320     conf = NCONF_new(NULL);
321     TEST_check(conf != NULL);
322
323     /* argv[1] should point to the test conf file */
324     TEST_check(NCONF_load(conf, argv[1], NULL) > 0);
325
326     TEST_check(NCONF_get_number_e(conf, NULL, "num_tests", &num_tests));
327
328     ADD_ALL_TESTS(test_handshake, (int)(num_tests));
329     result = run_tests(argv[0]);
330
331     NCONF_free(conf);
332     return result;
333 }