]> git.ipfire.org Git - thirdparty/openssl.git/blame - test/ssl_test_ctx.h
Fix some doc nits.
[thirdparty/openssl.git] / test / ssl_test_ctx.h
CommitLineData
453dfd8d
EK
1/*
2 * Copyright 2016 The OpenSSL Project Authors. All Rights Reserved.
3 *
440e5d80
RS
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
453dfd8d 7 * https://www.openssl.org/source/license.html
453dfd8d
EK
8 */
9
10#ifndef HEADER_SSL_TEST_CTX_H
11#define HEADER_SSL_TEST_CTX_H
12
13#include <openssl/conf.h>
14#include <openssl/ssl.h>
15
16typedef enum {
a263f320 17 SSL_TEST_SUCCESS = 0, /* Default */
453dfd8d
EK
18 SSL_TEST_SERVER_FAIL,
19 SSL_TEST_CLIENT_FAIL,
590ed3d7
EK
20 SSL_TEST_INTERNAL_ERROR,
21 /* Couldn't test resumption/renegotiation: original handshake failed. */
22 SSL_TEST_FIRST_HANDSHAKE_FAILED
453dfd8d
EK
23} ssl_test_result_t;
24
a263f320
EK
25typedef enum {
26 SSL_TEST_VERIFY_NONE = 0, /* Default */
27 SSL_TEST_VERIFY_ACCEPT_ALL,
28 SSL_TEST_VERIFY_REJECT_ALL
29} ssl_verify_callback_t;
30
5c753de6 31typedef enum {
81fc33c9
EK
32 SSL_TEST_SERVERNAME_NONE = 0, /* Default */
33 SSL_TEST_SERVERNAME_SERVER1,
d2b23cd2
EK
34 SSL_TEST_SERVERNAME_SERVER2,
35 SSL_TEST_SERVERNAME_INVALID
5c753de6
TS
36} ssl_servername_t;
37
d2b23cd2
EK
38typedef enum {
39 SSL_TEST_SERVERNAME_CB_NONE = 0, /* Default */
40 SSL_TEST_SERVERNAME_IGNORE_MISMATCH,
41 SSL_TEST_SERVERNAME_REJECT_MISMATCH
42} ssl_servername_callback_t;
43
5c753de6
TS
44typedef enum {
45 SSL_TEST_SESSION_TICKET_IGNORE = 0, /* Default */
46 SSL_TEST_SESSION_TICKET_YES,
47 SSL_TEST_SESSION_TICKET_NO,
d3b64b89 48 SSL_TEST_SESSION_TICKET_BROKEN /* Special test */
81fc33c9 49} ssl_session_ticket_t;
5c753de6 50
74726750
EK
51typedef enum {
52 SSL_TEST_METHOD_TLS = 0, /* Default */
d3b64b89 53 SSL_TEST_METHOD_DTLS
74726750
EK
54} ssl_test_method_t;
55
590ed3d7
EK
56typedef enum {
57 SSL_TEST_HANDSHAKE_SIMPLE = 0, /* Default */
58 SSL_TEST_HANDSHAKE_RESUME,
59 /* Not yet implemented */
60 SSL_TEST_HANDSHAKE_RENEGOTIATE
61} ssl_handshake_mode_t;
62
da085d27
EK
63typedef enum {
64 SSL_TEST_CT_VALIDATION_NONE = 0, /* Default */
65 SSL_TEST_CT_VALIDATION_PERMISSIVE,
66 SSL_TEST_CT_VALIDATION_STRICT
67} ssl_ct_validation_t;
9f48bbac
EK
68/*
69 * Server/client settings that aren't supported by the SSL CONF library,
70 * such as callbacks.
71 */
72typedef struct {
73 /* One of a number of predefined custom callbacks. */
74 ssl_verify_callback_t verify_callback;
75 /* One of a number of predefined server names use by the client */
76 ssl_servername_t servername;
77 /* Supported NPN and ALPN protocols. A comma-separated list. */
78 char *npn_protocols;
79 char *alpn_protocols;
da085d27 80 ssl_ct_validation_t ct_validation;
9f48bbac
EK
81} SSL_TEST_CLIENT_CONF;
82
83typedef struct {
84 /* SNI callback (server-side). */
85 ssl_servername_callback_t servername_callback;
86 /* Supported NPN and ALPN protocols. A comma-separated list. */
87 char *npn_protocols;
88 char *alpn_protocols;
89 /* Whether to set a broken session ticket callback. */
90 int broken_session_ticket;
91} SSL_TEST_SERVER_CONF;
92
93typedef struct {
94 SSL_TEST_CLIENT_CONF client;
95 SSL_TEST_SERVER_CONF server;
96 SSL_TEST_SERVER_CONF server2;
97} SSL_TEST_EXTRA_CONF;
98
99typedef struct {
100 /*
101 * Global test configuration. Does not change between handshakes.
102 */
103 /* Whether the server/client CTX should use DTLS or TLS. */
104 ssl_test_method_t method;
105 /* Whether to test a resumed/renegotiated handshake. */
106 ssl_handshake_mode_t handshake_mode;
e0421bd8
EK
107 /*
108 * How much application data to exchange (default is 256 bytes).
109 * Both peers will send |app_data_size| bytes interleaved.
110 */
111 int app_data_size;
9f48bbac
EK
112
113 /*
114 * Extra server/client configurations. Per-handshake.
115 */
116 /* First handshake. */
117 SSL_TEST_EXTRA_CONF extra;
118 /* Resumed handshake. */
119 SSL_TEST_EXTRA_CONF resume_extra;
120
121 /*
122 * Test expectations. These apply to the LAST handshake.
123 */
453dfd8d
EK
124 /* Defaults to SUCCESS. */
125 ssl_test_result_t expected_result;
126 /* Alerts. 0 if no expectation. */
127 /* See ssl.h for alert codes. */
128 /* Alert sent by the client / received by the server. */
9f48bbac 129 int expected_client_alert;
453dfd8d 130 /* Alert sent by the server / received by the client. */
9f48bbac 131 int expected_server_alert;
453dfd8d
EK
132 /* Negotiated protocol version. 0 if no expectation. */
133 /* See ssl.h for protocol versions. */
9f48bbac 134 int expected_protocol;
d2b23cd2
EK
135 /*
136 * The expected SNI context to use.
137 * We test server-side that the server switched to the expected context.
138 * Set by the callback upon success, so if the callback wasn't called or
139 * terminated with an alert, the servername will match with
140 * SSL_TEST_SERVERNAME_NONE.
141 * Note: in the event that the servername was accepted, the client should
142 * also receive an empty SNI extension back but we have no way of probing
143 * client-side via the API that this was the case.
144 */
145 ssl_servername_t expected_servername;
81fc33c9 146 ssl_session_ticket_t session_ticket_expected;
9f48bbac 147 /* The expected NPN/ALPN protocol to negotiate. */
ce2cdac2 148 char *expected_npn_protocol;
ce2cdac2 149 char *expected_alpn_protocol;
590ed3d7
EK
150 /* Whether the second handshake is resumed or a full handshake (boolean). */
151 int resumption_expected;
453dfd8d
EK
152} SSL_TEST_CTX;
153
a263f320 154const char *ssl_test_result_name(ssl_test_result_t result);
453dfd8d
EK
155const char *ssl_alert_name(int alert);
156const char *ssl_protocol_name(int protocol);
a263f320 157const char *ssl_verify_callback_name(ssl_verify_callback_t verify_callback);
5c753de6 158const char *ssl_servername_name(ssl_servername_t server);
d2b23cd2
EK
159const char *ssl_servername_callback_name(ssl_servername_callback_t
160 servername_callback);
81fc33c9 161const char *ssl_session_ticket_name(ssl_session_ticket_t server);
74726750 162const char *ssl_test_method_name(ssl_test_method_t method);
590ed3d7 163const char *ssl_handshake_mode_name(ssl_handshake_mode_t mode);
da085d27 164const char *ssl_ct_validation_name(ssl_ct_validation_t mode);
453dfd8d
EK
165
166/*
167 * Load the test case context from |conf|.
9f48bbac 168 * See test/README.ssltest.md for details on the conf file format.
453dfd8d
EK
169 */
170SSL_TEST_CTX *SSL_TEST_CTX_create(const CONF *conf, const char *test_section);
171
172SSL_TEST_CTX *SSL_TEST_CTX_new(void);
173
174void SSL_TEST_CTX_free(SSL_TEST_CTX *ctx);
175
176#endif /* HEADER_SSL_TEST_CTX_H */