/src/openssl35/ssl/ssl_conf.c
Line | Count | Source |
1 | | /* |
2 | | * Copyright 2012-2025 The OpenSSL Project Authors. All Rights Reserved. |
3 | | * |
4 | | * Licensed under the Apache License 2.0 (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 "internal/e_os.h" |
11 | | |
12 | | #include <stdio.h> |
13 | | #include "ssl_local.h" |
14 | | #include <openssl/conf.h> |
15 | | #include <openssl/objects.h> |
16 | | #include <openssl/decoder.h> |
17 | | #include <openssl/core_dispatch.h> |
18 | | #include "internal/nelem.h" |
19 | | #include "internal/ssl_unwrap.h" |
20 | | |
21 | | /* |
22 | | * structure holding name tables. This is used for permitted elements in lists |
23 | | * such as TLSv1. |
24 | | */ |
25 | | |
26 | | typedef struct { |
27 | | const char *name; |
28 | | int namelen; |
29 | | unsigned int name_flags; |
30 | | uint64_t option_value; |
31 | | } ssl_flag_tbl; |
32 | | |
33 | | /* Switch table: use for single command line switches like no_tls2 */ |
34 | | typedef struct { |
35 | | uint64_t option_value; |
36 | | unsigned int name_flags; |
37 | | } ssl_switch_tbl; |
38 | | |
39 | | /* Sense of name is inverted e.g. "TLSv1" will clear SSL_OP_NO_TLSv1 */ |
40 | 0 | #define SSL_TFLAG_INV 0x1 |
41 | | /* Mask for type of flag referred to */ |
42 | 0 | #define SSL_TFLAG_TYPE_MASK 0xf00 |
43 | | /* Flag is for options */ |
44 | 0 | #define SSL_TFLAG_OPTION 0x000 |
45 | | /* Flag is for cert_flags */ |
46 | 0 | #define SSL_TFLAG_CERT 0x100 |
47 | | /* Flag is for verify mode */ |
48 | 0 | #define SSL_TFLAG_VFY 0x200 |
49 | | /* Option can only be used for clients */ |
50 | 0 | #define SSL_TFLAG_CLIENT SSL_CONF_FLAG_CLIENT |
51 | | /* Option can only be used for servers */ |
52 | 0 | #define SSL_TFLAG_SERVER SSL_CONF_FLAG_SERVER |
53 | 0 | #define SSL_TFLAG_BOTH (SSL_TFLAG_CLIENT | SSL_TFLAG_SERVER) |
54 | | |
55 | | #define SSL_FLAG_TBL(str, flag) \ |
56 | 0 | { str, (int)(sizeof(str) - 1), SSL_TFLAG_BOTH, flag } |
57 | | #define SSL_FLAG_TBL_SRV(str, flag) \ |
58 | 0 | { str, (int)(sizeof(str) - 1), SSL_TFLAG_SERVER, flag } |
59 | | #define SSL_FLAG_TBL_CLI(str, flag) \ |
60 | | { str, (int)(sizeof(str) - 1), SSL_TFLAG_CLIENT, flag } |
61 | | #define SSL_FLAG_TBL_INV(str, flag) \ |
62 | 0 | { str, (int)(sizeof(str) - 1), SSL_TFLAG_INV | SSL_TFLAG_BOTH, flag } |
63 | | #define SSL_FLAG_TBL_SRV_INV(str, flag) \ |
64 | | { str, (int)(sizeof(str) - 1), SSL_TFLAG_INV | SSL_TFLAG_SERVER, flag } |
65 | | #define SSL_FLAG_TBL_CERT(str, flag) \ |
66 | 0 | { str, (int)(sizeof(str) - 1), SSL_TFLAG_CERT | SSL_TFLAG_BOTH, flag } |
67 | | |
68 | | #define SSL_FLAG_VFY_CLI(str, flag) \ |
69 | 0 | { str, (int)(sizeof(str) - 1), SSL_TFLAG_VFY | SSL_TFLAG_CLIENT, flag } |
70 | | #define SSL_FLAG_VFY_SRV(str, flag) \ |
71 | 0 | { str, (int)(sizeof(str) - 1), SSL_TFLAG_VFY | SSL_TFLAG_SERVER, flag } |
72 | | |
73 | | /* |
74 | | * Opaque structure containing SSL configuration context. |
75 | | */ |
76 | | |
77 | | struct ssl_conf_ctx_st { |
78 | | /* |
79 | | * Various flags indicating (among other things) which options we will |
80 | | * recognise. |
81 | | */ |
82 | | unsigned int flags; |
83 | | /* Prefix and length of commands */ |
84 | | char *prefix; |
85 | | size_t prefixlen; |
86 | | /* SSL_CTX or SSL structure to perform operations on */ |
87 | | SSL_CTX *ctx; |
88 | | SSL *ssl; |
89 | | /* Pointer to SSL or SSL_CTX options field or NULL if none */ |
90 | | uint64_t *poptions; |
91 | | /* Certificate filenames for each type */ |
92 | | char **cert_filename; |
93 | | /* Number of elements in the cert_filename array */ |
94 | | size_t num_cert_filename; |
95 | | /* Pointer to SSL or SSL_CTX cert_flags or NULL if none */ |
96 | | uint32_t *pcert_flags; |
97 | | /* Pointer to SSL or SSL_CTX verify_mode or NULL if none */ |
98 | | uint32_t *pvfy_flags; |
99 | | /* Pointer to SSL or SSL_CTX min_version field or NULL if none */ |
100 | | int *min_version; |
101 | | /* Pointer to SSL or SSL_CTX max_version field or NULL if none */ |
102 | | int *max_version; |
103 | | /* Current flag table being worked on */ |
104 | | const ssl_flag_tbl *tbl; |
105 | | /* Size of table */ |
106 | | size_t ntbl; |
107 | | /* Client CA names */ |
108 | | STACK_OF(X509_NAME) *canames; |
109 | | }; |
110 | | |
111 | | static void ssl_set_option(SSL_CONF_CTX *cctx, unsigned int name_flags, |
112 | | uint64_t option_value, int onoff) |
113 | 0 | { |
114 | 0 | uint32_t *pflags; |
115 | |
|
116 | 0 | if (cctx->poptions == NULL) |
117 | 0 | return; |
118 | 0 | if (name_flags & SSL_TFLAG_INV) |
119 | 0 | onoff ^= 1; |
120 | 0 | switch (name_flags & SSL_TFLAG_TYPE_MASK) { |
121 | | |
122 | 0 | case SSL_TFLAG_CERT: |
123 | 0 | pflags = cctx->pcert_flags; |
124 | 0 | break; |
125 | | |
126 | 0 | case SSL_TFLAG_VFY: |
127 | 0 | pflags = cctx->pvfy_flags; |
128 | 0 | break; |
129 | | |
130 | 0 | case SSL_TFLAG_OPTION: |
131 | 0 | if (onoff) |
132 | 0 | *cctx->poptions |= option_value; |
133 | 0 | else |
134 | 0 | *cctx->poptions &= ~option_value; |
135 | 0 | return; |
136 | | |
137 | 0 | default: |
138 | 0 | return; |
139 | 0 | } |
140 | 0 | if (onoff) |
141 | 0 | *pflags |= option_value; |
142 | 0 | else |
143 | 0 | *pflags &= ~option_value; |
144 | 0 | } |
145 | | |
146 | | static int ssl_match_option(SSL_CONF_CTX *cctx, const ssl_flag_tbl *tbl, |
147 | | const char *name, int namelen, int onoff) |
148 | 0 | { |
149 | | /* If name not relevant for context skip */ |
150 | 0 | if (!(cctx->flags & tbl->name_flags & SSL_TFLAG_BOTH)) |
151 | 0 | return 0; |
152 | 0 | if (namelen == -1) { |
153 | 0 | if (strcmp(tbl->name, name)) |
154 | 0 | return 0; |
155 | 0 | } else if (tbl->namelen != namelen |
156 | 0 | || OPENSSL_strncasecmp(tbl->name, name, namelen)) |
157 | 0 | return 0; |
158 | 0 | ssl_set_option(cctx, tbl->name_flags, tbl->option_value, onoff); |
159 | 0 | return 1; |
160 | 0 | } |
161 | | |
162 | | static int ssl_set_option_list(const char *elem, int len, void *usr) |
163 | 0 | { |
164 | 0 | SSL_CONF_CTX *cctx = usr; |
165 | 0 | size_t i; |
166 | 0 | const ssl_flag_tbl *tbl; |
167 | 0 | int onoff = 1; |
168 | | /* |
169 | | * len == -1 indicates not being called in list context, just for single |
170 | | * command line switches, so don't allow +, -. |
171 | | */ |
172 | 0 | if (elem == NULL) |
173 | 0 | return 0; |
174 | 0 | if (len != -1) { |
175 | 0 | if (*elem == '+') { |
176 | 0 | elem++; |
177 | 0 | len--; |
178 | 0 | onoff = 1; |
179 | 0 | } else if (*elem == '-') { |
180 | 0 | elem++; |
181 | 0 | len--; |
182 | 0 | onoff = 0; |
183 | 0 | } |
184 | 0 | } |
185 | 0 | for (i = 0, tbl = cctx->tbl; i < cctx->ntbl; i++, tbl++) { |
186 | 0 | if (ssl_match_option(cctx, tbl, elem, len, onoff)) |
187 | 0 | return 1; |
188 | 0 | } |
189 | 0 | return 0; |
190 | 0 | } |
191 | | |
192 | | /* Set supported signature algorithms */ |
193 | | static int cmd_SignatureAlgorithms(SSL_CONF_CTX *cctx, const char *value) |
194 | 0 | { |
195 | 0 | int rv; |
196 | 0 | if (cctx->ssl) |
197 | 0 | rv = SSL_set1_sigalgs_list(cctx->ssl, value); |
198 | | /* NB: ctx == NULL performs syntax checking only */ |
199 | 0 | else |
200 | 0 | rv = SSL_CTX_set1_sigalgs_list(cctx->ctx, value); |
201 | 0 | return rv > 0; |
202 | 0 | } |
203 | | |
204 | | /* Set supported client signature algorithms */ |
205 | | static int cmd_ClientSignatureAlgorithms(SSL_CONF_CTX *cctx, const char *value) |
206 | 0 | { |
207 | 0 | int rv; |
208 | 0 | if (cctx->ssl) |
209 | 0 | rv = SSL_set1_client_sigalgs_list(cctx->ssl, value); |
210 | | /* NB: ctx == NULL performs syntax checking only */ |
211 | 0 | else |
212 | 0 | rv = SSL_CTX_set1_client_sigalgs_list(cctx->ctx, value); |
213 | 0 | return rv > 0; |
214 | 0 | } |
215 | | |
216 | | static int cmd_Groups(SSL_CONF_CTX *cctx, const char *value) |
217 | 0 | { |
218 | 0 | int rv; |
219 | 0 | if (cctx->ssl) |
220 | 0 | rv = SSL_set1_groups_list(cctx->ssl, value); |
221 | | /* NB: ctx == NULL performs syntax checking only */ |
222 | 0 | else |
223 | 0 | rv = SSL_CTX_set1_groups_list(cctx->ctx, value); |
224 | 0 | return rv > 0; |
225 | 0 | } |
226 | | |
227 | | /* This is the old name for cmd_Groups - retained for backwards compatibility */ |
228 | | static int cmd_Curves(SSL_CONF_CTX *cctx, const char *value) |
229 | 0 | { |
230 | 0 | return cmd_Groups(cctx, value); |
231 | 0 | } |
232 | | |
233 | | /* ECDH temporary parameters */ |
234 | | static int cmd_ECDHParameters(SSL_CONF_CTX *cctx, const char *value) |
235 | 0 | { |
236 | 0 | int rv = 1; |
237 | | |
238 | | /* Ignore values supported by 1.0.2 for the automatic selection */ |
239 | 0 | if ((cctx->flags & SSL_CONF_FLAG_FILE) |
240 | 0 | && (OPENSSL_strcasecmp(value, "+automatic") == 0 |
241 | 0 | || OPENSSL_strcasecmp(value, "automatic") == 0)) |
242 | 0 | return 1; |
243 | 0 | if ((cctx->flags & SSL_CONF_FLAG_CMDLINE) && strcmp(value, "auto") == 0) |
244 | 0 | return 1; |
245 | | |
246 | | /* ECDHParameters accepts a single group name */ |
247 | 0 | if (strchr(value, ':') != NULL) |
248 | 0 | return 0; |
249 | | |
250 | 0 | if (cctx->ctx) |
251 | 0 | rv = SSL_CTX_set1_groups_list(cctx->ctx, value); |
252 | 0 | else if (cctx->ssl) |
253 | 0 | rv = SSL_set1_groups_list(cctx->ssl, value); |
254 | |
|
255 | 0 | return rv > 0; |
256 | 0 | } |
257 | | |
258 | | static int cmd_CipherString(SSL_CONF_CTX *cctx, const char *value) |
259 | 0 | { |
260 | 0 | int rv = 1; |
261 | |
|
262 | 0 | if (cctx->ctx) |
263 | 0 | rv = SSL_CTX_set_cipher_list(cctx->ctx, value); |
264 | 0 | if (cctx->ssl) |
265 | 0 | rv = SSL_set_cipher_list(cctx->ssl, value); |
266 | 0 | return rv > 0; |
267 | 0 | } |
268 | | |
269 | | static int cmd_Ciphersuites(SSL_CONF_CTX *cctx, const char *value) |
270 | 0 | { |
271 | 0 | int rv = 1; |
272 | |
|
273 | 0 | if (cctx->ctx) |
274 | 0 | rv = SSL_CTX_set_ciphersuites(cctx->ctx, value); |
275 | 0 | if (cctx->ssl) |
276 | 0 | rv = SSL_set_ciphersuites(cctx->ssl, value); |
277 | 0 | return rv > 0; |
278 | 0 | } |
279 | | |
280 | | static int cmd_Protocol(SSL_CONF_CTX *cctx, const char *value) |
281 | 0 | { |
282 | 0 | static const ssl_flag_tbl ssl_protocol_list[] = { |
283 | 0 | SSL_FLAG_TBL_INV("ALL", SSL_OP_NO_SSL_MASK), |
284 | 0 | SSL_FLAG_TBL_INV("SSLv2", SSL_OP_NO_SSLv2), |
285 | 0 | SSL_FLAG_TBL_INV("SSLv3", SSL_OP_NO_SSLv3), |
286 | 0 | SSL_FLAG_TBL_INV("TLSv1", SSL_OP_NO_TLSv1), |
287 | 0 | SSL_FLAG_TBL_INV("TLSv1.1", SSL_OP_NO_TLSv1_1), |
288 | 0 | SSL_FLAG_TBL_INV("TLSv1.2", SSL_OP_NO_TLSv1_2), |
289 | 0 | SSL_FLAG_TBL_INV("TLSv1.3", SSL_OP_NO_TLSv1_3), |
290 | 0 | SSL_FLAG_TBL_INV("DTLSv1", SSL_OP_NO_DTLSv1), |
291 | 0 | SSL_FLAG_TBL_INV("DTLSv1.2", SSL_OP_NO_DTLSv1_2) |
292 | 0 | }; |
293 | 0 | cctx->tbl = ssl_protocol_list; |
294 | 0 | cctx->ntbl = OSSL_NELEM(ssl_protocol_list); |
295 | 0 | return CONF_parse_list(value, ',', 1, ssl_set_option_list, cctx); |
296 | 0 | } |
297 | | |
298 | | /* |
299 | | * protocol_from_string - converts a protocol version string to a number |
300 | | * |
301 | | * Returns -1 on failure or the version on success |
302 | | */ |
303 | | static int protocol_from_string(const char *value) |
304 | 0 | { |
305 | 0 | struct protocol_versions { |
306 | 0 | const char *name; |
307 | 0 | int version; |
308 | 0 | }; |
309 | | /* |
310 | | * Note: To avoid breaking previously valid configurations, we must retain |
311 | | * legacy entries in this table even if the underlying protocol is no |
312 | | * longer supported. This also means that the constants SSL3_VERSION, ... |
313 | | * need to be retained indefinitely. This table can only grow, never |
314 | | * shrink. |
315 | | */ |
316 | 0 | static const struct protocol_versions versions[] = { |
317 | 0 | { "None", 0 }, |
318 | 0 | { "SSLv3", SSL3_VERSION }, |
319 | 0 | { "TLSv1", TLS1_VERSION }, |
320 | 0 | { "TLSv1.1", TLS1_1_VERSION }, |
321 | 0 | { "TLSv1.2", TLS1_2_VERSION }, |
322 | 0 | { "TLSv1.3", TLS1_3_VERSION }, |
323 | 0 | { "DTLSv1", DTLS1_VERSION }, |
324 | 0 | { "DTLSv1.2", DTLS1_2_VERSION } |
325 | 0 | }; |
326 | 0 | size_t i; |
327 | 0 | size_t n = OSSL_NELEM(versions); |
328 | |
|
329 | 0 | for (i = 0; i < n; i++) |
330 | 0 | if (strcmp(versions[i].name, value) == 0) |
331 | 0 | return versions[i].version; |
332 | 0 | return -1; |
333 | 0 | } |
334 | | |
335 | | static int min_max_proto(SSL_CONF_CTX *cctx, const char *value, int *bound) |
336 | 0 | { |
337 | 0 | int method_version; |
338 | 0 | int new_version; |
339 | |
|
340 | 0 | if (cctx->ctx != NULL) |
341 | 0 | method_version = cctx->ctx->method->version; |
342 | 0 | else if (cctx->ssl != NULL) |
343 | 0 | method_version = cctx->ssl->defltmeth->version; |
344 | 0 | else |
345 | 0 | return 0; |
346 | 0 | if ((new_version = protocol_from_string(value)) < 0) |
347 | 0 | return 0; |
348 | 0 | return ssl_set_version_bound(method_version, new_version, bound); |
349 | 0 | } |
350 | | |
351 | | /* |
352 | | * cmd_MinProtocol - Set min protocol version |
353 | | * @cctx: config structure to save settings in |
354 | | * @value: The min protocol version in string form |
355 | | * |
356 | | * Returns 1 on success and 0 on failure. |
357 | | */ |
358 | | static int cmd_MinProtocol(SSL_CONF_CTX *cctx, const char *value) |
359 | 0 | { |
360 | 0 | return min_max_proto(cctx, value, cctx->min_version); |
361 | 0 | } |
362 | | |
363 | | /* |
364 | | * cmd_MaxProtocol - Set max protocol version |
365 | | * @cctx: config structure to save settings in |
366 | | * @value: The max protocol version in string form |
367 | | * |
368 | | * Returns 1 on success and 0 on failure. |
369 | | */ |
370 | | static int cmd_MaxProtocol(SSL_CONF_CTX *cctx, const char *value) |
371 | 0 | { |
372 | 0 | return min_max_proto(cctx, value, cctx->max_version); |
373 | 0 | } |
374 | | |
375 | | static int cmd_Options(SSL_CONF_CTX *cctx, const char *value) |
376 | 0 | { |
377 | 0 | static const ssl_flag_tbl ssl_option_list[] = { |
378 | 0 | SSL_FLAG_TBL_INV("SessionTicket", SSL_OP_NO_TICKET), |
379 | 0 | SSL_FLAG_TBL_INV("EmptyFragments", |
380 | 0 | SSL_OP_DONT_INSERT_EMPTY_FRAGMENTS), |
381 | 0 | SSL_FLAG_TBL("Bugs", SSL_OP_ALL), |
382 | 0 | SSL_FLAG_TBL_INV("Compression", SSL_OP_NO_COMPRESSION), |
383 | 0 | SSL_FLAG_TBL_SRV("ServerPreference", SSL_OP_CIPHER_SERVER_PREFERENCE), |
384 | 0 | SSL_FLAG_TBL_SRV("NoResumptionOnRenegotiation", |
385 | 0 | SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION), |
386 | 0 | SSL_FLAG_TBL_SRV("DHSingle", SSL_OP_SINGLE_DH_USE), |
387 | 0 | SSL_FLAG_TBL_SRV("ECDHSingle", SSL_OP_SINGLE_ECDH_USE), |
388 | 0 | SSL_FLAG_TBL("UnsafeLegacyRenegotiation", |
389 | 0 | SSL_OP_ALLOW_UNSAFE_LEGACY_RENEGOTIATION), |
390 | 0 | SSL_FLAG_TBL("UnsafeLegacyServerConnect", |
391 | 0 | SSL_OP_LEGACY_SERVER_CONNECT), |
392 | 0 | SSL_FLAG_TBL("ClientRenegotiation", |
393 | 0 | SSL_OP_ALLOW_CLIENT_RENEGOTIATION), |
394 | 0 | SSL_FLAG_TBL_INV("EncryptThenMac", SSL_OP_NO_ENCRYPT_THEN_MAC), |
395 | 0 | SSL_FLAG_TBL("NoRenegotiation", SSL_OP_NO_RENEGOTIATION), |
396 | 0 | SSL_FLAG_TBL("AllowNoDHEKEX", SSL_OP_ALLOW_NO_DHE_KEX), |
397 | 0 | SSL_FLAG_TBL("PreferNoDHEKEX", SSL_OP_PREFER_NO_DHE_KEX), |
398 | 0 | SSL_FLAG_TBL("PrioritizeChaCha", SSL_OP_PRIORITIZE_CHACHA), |
399 | 0 | SSL_FLAG_TBL("MiddleboxCompat", SSL_OP_ENABLE_MIDDLEBOX_COMPAT), |
400 | 0 | SSL_FLAG_TBL_INV("AntiReplay", SSL_OP_NO_ANTI_REPLAY), |
401 | 0 | SSL_FLAG_TBL_INV("ExtendedMasterSecret", SSL_OP_NO_EXTENDED_MASTER_SECRET), |
402 | 0 | SSL_FLAG_TBL_INV("CANames", SSL_OP_DISABLE_TLSEXT_CA_NAMES), |
403 | 0 | SSL_FLAG_TBL("KTLS", SSL_OP_ENABLE_KTLS), |
404 | 0 | SSL_FLAG_TBL_CERT("StrictCertCheck", SSL_CERT_FLAG_TLS_STRICT), |
405 | 0 | SSL_FLAG_TBL_INV("TxCertificateCompression", SSL_OP_NO_TX_CERTIFICATE_COMPRESSION), |
406 | 0 | SSL_FLAG_TBL_INV("RxCertificateCompression", SSL_OP_NO_RX_CERTIFICATE_COMPRESSION), |
407 | 0 | SSL_FLAG_TBL("KTLSTxZerocopySendfile", SSL_OP_ENABLE_KTLS_TX_ZEROCOPY_SENDFILE), |
408 | 0 | SSL_FLAG_TBL("IgnoreUnexpectedEOF", SSL_OP_IGNORE_UNEXPECTED_EOF), |
409 | 0 | }; |
410 | 0 | if (value == NULL) |
411 | 0 | return -3; |
412 | 0 | cctx->tbl = ssl_option_list; |
413 | 0 | cctx->ntbl = OSSL_NELEM(ssl_option_list); |
414 | 0 | return CONF_parse_list(value, ',', 1, ssl_set_option_list, cctx); |
415 | 0 | } |
416 | | |
417 | | static int cmd_VerifyMode(SSL_CONF_CTX *cctx, const char *value) |
418 | 0 | { |
419 | 0 | static const ssl_flag_tbl ssl_vfy_list[] = { |
420 | 0 | SSL_FLAG_VFY_CLI("Peer", SSL_VERIFY_PEER), |
421 | 0 | SSL_FLAG_VFY_SRV("Request", SSL_VERIFY_PEER), |
422 | 0 | SSL_FLAG_VFY_SRV("Require", |
423 | 0 | SSL_VERIFY_PEER | SSL_VERIFY_FAIL_IF_NO_PEER_CERT), |
424 | 0 | SSL_FLAG_VFY_SRV("Once", SSL_VERIFY_PEER | SSL_VERIFY_CLIENT_ONCE), |
425 | 0 | SSL_FLAG_VFY_SRV("RequestPostHandshake", |
426 | 0 | SSL_VERIFY_PEER | SSL_VERIFY_POST_HANDSHAKE), |
427 | 0 | SSL_FLAG_VFY_SRV("RequirePostHandshake", |
428 | 0 | SSL_VERIFY_PEER | SSL_VERIFY_POST_HANDSHAKE | SSL_VERIFY_FAIL_IF_NO_PEER_CERT), |
429 | 0 | }; |
430 | 0 | if (value == NULL) |
431 | 0 | return -3; |
432 | 0 | cctx->tbl = ssl_vfy_list; |
433 | 0 | cctx->ntbl = OSSL_NELEM(ssl_vfy_list); |
434 | 0 | return CONF_parse_list(value, ',', 1, ssl_set_option_list, cctx); |
435 | 0 | } |
436 | | |
437 | | static int cmd_Certificate(SSL_CONF_CTX *cctx, const char *value) |
438 | 0 | { |
439 | 0 | int rv = 1; |
440 | 0 | CERT *c = NULL; |
441 | 0 | if (cctx->ctx != NULL) { |
442 | 0 | rv = SSL_CTX_use_certificate_chain_file(cctx->ctx, value); |
443 | 0 | c = cctx->ctx->cert; |
444 | 0 | } |
445 | 0 | if (cctx->ssl != NULL) { |
446 | 0 | SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(cctx->ssl); |
447 | |
|
448 | 0 | if (sc != NULL) { |
449 | 0 | rv = SSL_use_certificate_chain_file(cctx->ssl, value); |
450 | 0 | c = sc->cert; |
451 | 0 | } else { |
452 | 0 | rv = 0; |
453 | 0 | } |
454 | 0 | } |
455 | 0 | if (rv > 0 && c != NULL && cctx->flags & SSL_CONF_FLAG_REQUIRE_PRIVATE) { |
456 | 0 | size_t fileidx = c->key - c->pkeys; |
457 | |
|
458 | 0 | if (fileidx >= cctx->num_cert_filename) { |
459 | 0 | rv = 0; |
460 | 0 | } else { |
461 | 0 | char **pfilename = &cctx->cert_filename[c->key - c->pkeys]; |
462 | |
|
463 | 0 | OPENSSL_free(*pfilename); |
464 | 0 | *pfilename = OPENSSL_strdup(value); |
465 | 0 | if (*pfilename == NULL) |
466 | 0 | rv = 0; |
467 | 0 | } |
468 | 0 | } |
469 | |
|
470 | 0 | return rv > 0; |
471 | 0 | } |
472 | | |
473 | | static int cmd_PrivateKey(SSL_CONF_CTX *cctx, const char *value) |
474 | 0 | { |
475 | 0 | int rv = 1; |
476 | 0 | if (!(cctx->flags & SSL_CONF_FLAG_CERTIFICATE)) |
477 | 0 | return -2; |
478 | 0 | if (cctx->ctx) |
479 | 0 | rv = SSL_CTX_use_PrivateKey_file(cctx->ctx, value, SSL_FILETYPE_PEM); |
480 | 0 | if (cctx->ssl) |
481 | 0 | rv = SSL_use_PrivateKey_file(cctx->ssl, value, SSL_FILETYPE_PEM); |
482 | 0 | return rv > 0; |
483 | 0 | } |
484 | | |
485 | | static int cmd_ServerInfoFile(SSL_CONF_CTX *cctx, const char *value) |
486 | 0 | { |
487 | 0 | int rv = 1; |
488 | 0 | if (cctx->ctx) |
489 | 0 | rv = SSL_CTX_use_serverinfo_file(cctx->ctx, value); |
490 | 0 | return rv > 0; |
491 | 0 | } |
492 | | |
493 | | static int do_store(SSL_CONF_CTX *cctx, |
494 | | const char *CAfile, const char *CApath, const char *CAstore, |
495 | | int verify_store) |
496 | 0 | { |
497 | 0 | CERT *cert; |
498 | 0 | X509_STORE **st; |
499 | 0 | SSL_CTX *ctx; |
500 | 0 | OSSL_LIB_CTX *libctx = NULL; |
501 | 0 | const char *propq = NULL; |
502 | |
|
503 | 0 | if (cctx->ctx != NULL) { |
504 | 0 | cert = cctx->ctx->cert; |
505 | 0 | ctx = cctx->ctx; |
506 | 0 | } else if (cctx->ssl != NULL) { |
507 | 0 | SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(cctx->ssl); |
508 | |
|
509 | 0 | if (sc == NULL) |
510 | 0 | return 0; |
511 | | |
512 | 0 | cert = sc->cert; |
513 | 0 | ctx = cctx->ssl->ctx; |
514 | 0 | } else { |
515 | 0 | return 1; |
516 | 0 | } |
517 | 0 | if (ctx != NULL) { |
518 | 0 | libctx = ctx->libctx; |
519 | 0 | propq = ctx->propq; |
520 | 0 | } |
521 | 0 | st = verify_store ? &cert->verify_store : &cert->chain_store; |
522 | 0 | if (*st == NULL) { |
523 | 0 | *st = X509_STORE_new(); |
524 | 0 | if (*st == NULL) |
525 | 0 | return 0; |
526 | 0 | } |
527 | | |
528 | 0 | if (CAfile != NULL && !X509_STORE_load_file_ex(*st, CAfile, libctx, propq)) |
529 | 0 | return 0; |
530 | 0 | if (CApath != NULL && !X509_STORE_load_path(*st, CApath)) |
531 | 0 | return 0; |
532 | 0 | if (CAstore != NULL && !X509_STORE_load_store_ex(*st, CAstore, libctx, propq)) |
533 | 0 | return 0; |
534 | 0 | return 1; |
535 | 0 | } |
536 | | |
537 | | static int cmd_ChainCAPath(SSL_CONF_CTX *cctx, const char *value) |
538 | 0 | { |
539 | 0 | return do_store(cctx, NULL, value, NULL, 0); |
540 | 0 | } |
541 | | |
542 | | static int cmd_ChainCAFile(SSL_CONF_CTX *cctx, const char *value) |
543 | 0 | { |
544 | 0 | return do_store(cctx, value, NULL, NULL, 0); |
545 | 0 | } |
546 | | |
547 | | static int cmd_ChainCAStore(SSL_CONF_CTX *cctx, const char *value) |
548 | 0 | { |
549 | 0 | return do_store(cctx, NULL, NULL, value, 0); |
550 | 0 | } |
551 | | |
552 | | static int cmd_VerifyCAPath(SSL_CONF_CTX *cctx, const char *value) |
553 | 0 | { |
554 | 0 | return do_store(cctx, NULL, value, NULL, 1); |
555 | 0 | } |
556 | | |
557 | | static int cmd_VerifyCAFile(SSL_CONF_CTX *cctx, const char *value) |
558 | 0 | { |
559 | 0 | return do_store(cctx, value, NULL, NULL, 1); |
560 | 0 | } |
561 | | |
562 | | static int cmd_VerifyCAStore(SSL_CONF_CTX *cctx, const char *value) |
563 | 0 | { |
564 | 0 | return do_store(cctx, NULL, NULL, value, 1); |
565 | 0 | } |
566 | | |
567 | | static int cmd_RequestCAFile(SSL_CONF_CTX *cctx, const char *value) |
568 | 0 | { |
569 | 0 | if (cctx->canames == NULL) |
570 | 0 | cctx->canames = sk_X509_NAME_new_null(); |
571 | 0 | if (cctx->canames == NULL) |
572 | 0 | return 0; |
573 | 0 | return SSL_add_file_cert_subjects_to_stack(cctx->canames, value); |
574 | 0 | } |
575 | | |
576 | | static int cmd_ClientCAFile(SSL_CONF_CTX *cctx, const char *value) |
577 | 0 | { |
578 | 0 | return cmd_RequestCAFile(cctx, value); |
579 | 0 | } |
580 | | |
581 | | static int cmd_RequestCAPath(SSL_CONF_CTX *cctx, const char *value) |
582 | 0 | { |
583 | 0 | if (cctx->canames == NULL) |
584 | 0 | cctx->canames = sk_X509_NAME_new_null(); |
585 | 0 | if (cctx->canames == NULL) |
586 | 0 | return 0; |
587 | 0 | return SSL_add_dir_cert_subjects_to_stack(cctx->canames, value); |
588 | 0 | } |
589 | | |
590 | | static int cmd_ClientCAPath(SSL_CONF_CTX *cctx, const char *value) |
591 | 0 | { |
592 | 0 | return cmd_RequestCAPath(cctx, value); |
593 | 0 | } |
594 | | |
595 | | static int cmd_RequestCAStore(SSL_CONF_CTX *cctx, const char *value) |
596 | 0 | { |
597 | 0 | if (cctx->canames == NULL) |
598 | 0 | cctx->canames = sk_X509_NAME_new_null(); |
599 | 0 | if (cctx->canames == NULL) |
600 | 0 | return 0; |
601 | 0 | return SSL_add_store_cert_subjects_to_stack(cctx->canames, value); |
602 | 0 | } |
603 | | |
604 | | static int cmd_ClientCAStore(SSL_CONF_CTX *cctx, const char *value) |
605 | 0 | { |
606 | 0 | return cmd_RequestCAStore(cctx, value); |
607 | 0 | } |
608 | | |
609 | | static int cmd_DHParameters(SSL_CONF_CTX *cctx, const char *value) |
610 | 0 | { |
611 | 0 | int rv = 0; |
612 | 0 | EVP_PKEY *dhpkey = NULL; |
613 | 0 | BIO *in = NULL; |
614 | 0 | SSL_CTX *sslctx = (cctx->ssl != NULL) ? cctx->ssl->ctx : cctx->ctx; |
615 | 0 | OSSL_DECODER_CTX *decoderctx = NULL; |
616 | |
|
617 | 0 | if (cctx->ctx != NULL || cctx->ssl != NULL) { |
618 | 0 | in = BIO_new(BIO_s_file()); |
619 | 0 | if (in == NULL) |
620 | 0 | goto end; |
621 | 0 | if (BIO_read_filename(in, value) <= 0) |
622 | 0 | goto end; |
623 | | |
624 | 0 | decoderctx |
625 | 0 | = OSSL_DECODER_CTX_new_for_pkey(&dhpkey, "PEM", NULL, "DH", |
626 | 0 | OSSL_KEYMGMT_SELECT_DOMAIN_PARAMETERS, |
627 | 0 | sslctx->libctx, sslctx->propq); |
628 | 0 | if (decoderctx == NULL) |
629 | 0 | goto end; |
630 | 0 | ERR_set_mark(); |
631 | 0 | while (!OSSL_DECODER_from_bio(decoderctx, in) |
632 | 0 | && dhpkey == NULL |
633 | 0 | && !BIO_eof(in)) |
634 | 0 | ; |
635 | 0 | OSSL_DECODER_CTX_free(decoderctx); |
636 | |
|
637 | 0 | if (dhpkey == NULL) { |
638 | 0 | ERR_clear_last_mark(); |
639 | 0 | goto end; |
640 | 0 | } |
641 | 0 | ERR_pop_to_mark(); |
642 | 0 | } else { |
643 | 0 | return 1; |
644 | 0 | } |
645 | | |
646 | 0 | if (cctx->ctx != NULL) { |
647 | 0 | if ((rv = SSL_CTX_set0_tmp_dh_pkey(cctx->ctx, dhpkey)) > 0) |
648 | 0 | dhpkey = NULL; |
649 | 0 | } |
650 | 0 | if (cctx->ssl != NULL) { |
651 | 0 | if ((rv = SSL_set0_tmp_dh_pkey(cctx->ssl, dhpkey)) > 0) |
652 | 0 | dhpkey = NULL; |
653 | 0 | } |
654 | 0 | end: |
655 | 0 | EVP_PKEY_free(dhpkey); |
656 | 0 | BIO_free(in); |
657 | 0 | return rv > 0; |
658 | 0 | } |
659 | | |
660 | | /* |
661 | | * |value| input is "<number[,number]>" |
662 | | * where the first number is the padding block size for |
663 | | * application data, and the optional second is the |
664 | | * padding block size for handshake messages |
665 | | */ |
666 | | static int cmd_RecordPadding(SSL_CONF_CTX *cctx, const char *value) |
667 | 0 | { |
668 | 0 | int rv = 0; |
669 | 0 | unsigned long block_padding = 0, hs_padding = 0; |
670 | 0 | char *commap = NULL, *copy = NULL; |
671 | 0 | char *endptr = NULL; |
672 | |
|
673 | 0 | copy = OPENSSL_strdup(value); |
674 | 0 | if (copy == NULL) |
675 | 0 | goto out; |
676 | 0 | commap = strstr(copy, ","); |
677 | 0 | if (commap != NULL) { |
678 | 0 | *commap = '\0'; |
679 | 0 | if (*(commap + 1) == '\0') |
680 | 0 | goto out; |
681 | 0 | if (!OPENSSL_strtoul(commap + 1, &endptr, 0, &hs_padding)) |
682 | 0 | goto out; |
683 | 0 | } |
684 | 0 | if (!OPENSSL_strtoul(copy, &endptr, 0, &block_padding)) |
685 | 0 | goto out; |
686 | 0 | if (commap == NULL) |
687 | 0 | hs_padding = block_padding; |
688 | | |
689 | | /* |
690 | | * All we care about are non-negative values, |
691 | | * the setters check the range |
692 | | */ |
693 | 0 | if (cctx->ctx) { |
694 | | /* |
695 | | * QUIC always pads TLS data at the packet level, and as such, attempting |
696 | | * to set block padding at the record level fails in calls to SSL_CTX_set_block_padding_ex. |
697 | | * However, when configuring record padding via config file, we have no idea if we are |
698 | | * going to create TCP or QUIC based SSL's, so silently ignore this configuration option |
699 | | * for QUIC. |
700 | | */ |
701 | 0 | if (SSL_CTX_is_quic(cctx->ctx)) |
702 | 0 | rv = 1; |
703 | 0 | else |
704 | 0 | rv = SSL_CTX_set_block_padding_ex(cctx->ctx, (size_t)block_padding, |
705 | 0 | (size_t)hs_padding); |
706 | 0 | } |
707 | 0 | if (cctx->ssl) { |
708 | | /* |
709 | | * As above, ignore this config option for QUIC |
710 | | */ |
711 | 0 | if (SSL_is_quic(cctx->ssl)) |
712 | 0 | rv = 1; |
713 | 0 | else |
714 | 0 | rv = SSL_set_block_padding_ex(cctx->ssl, (size_t)block_padding, |
715 | 0 | (size_t)hs_padding); |
716 | 0 | } |
717 | 0 | out: |
718 | 0 | OPENSSL_free(copy); |
719 | 0 | return rv; |
720 | 0 | } |
721 | | |
722 | | static int cmd_NumTickets(SSL_CONF_CTX *cctx, const char *value) |
723 | 0 | { |
724 | 0 | int rv = 0; |
725 | 0 | int num_tickets = atoi(value); |
726 | |
|
727 | 0 | if (num_tickets >= 0) { |
728 | 0 | if (cctx->ctx) |
729 | 0 | rv = SSL_CTX_set_num_tickets(cctx->ctx, num_tickets); |
730 | 0 | if (cctx->ssl) |
731 | 0 | rv = SSL_set_num_tickets(cctx->ssl, num_tickets); |
732 | 0 | } |
733 | 0 | return rv; |
734 | 0 | } |
735 | | |
736 | | typedef struct { |
737 | | int (*cmd)(SSL_CONF_CTX *cctx, const char *value); |
738 | | const char *str_file; |
739 | | const char *str_cmdline; |
740 | | unsigned short flags; |
741 | | unsigned short value_type; |
742 | | } ssl_conf_cmd_tbl; |
743 | | |
744 | | /* Table of supported parameters */ |
745 | | |
746 | | #define SSL_CONF_CMD(name, cmdopt, flags, type) \ |
747 | | { cmd_##name, #name, cmdopt, flags, type } |
748 | | |
749 | | #define SSL_CONF_CMD_STRING(name, cmdopt, flags) \ |
750 | | SSL_CONF_CMD(name, cmdopt, flags, SSL_CONF_TYPE_STRING) |
751 | | |
752 | | #define SSL_CONF_CMD_SWITCH(name, flags) \ |
753 | | { 0, NULL, name, flags, SSL_CONF_TYPE_NONE } |
754 | | |
755 | | /* See apps/include/opt.h if you change this table. */ |
756 | | /* The SSL_CONF_CMD_SWITCH should be the same order as ssl_cmd_switches */ |
757 | | static const ssl_conf_cmd_tbl ssl_conf_cmds[] = { |
758 | | SSL_CONF_CMD_SWITCH("no_ssl3", 0), |
759 | | SSL_CONF_CMD_SWITCH("no_tls1", 0), |
760 | | SSL_CONF_CMD_SWITCH("no_tls1_1", 0), |
761 | | SSL_CONF_CMD_SWITCH("no_tls1_2", 0), |
762 | | SSL_CONF_CMD_SWITCH("no_tls1_3", 0), |
763 | | SSL_CONF_CMD_SWITCH("bugs", 0), |
764 | | SSL_CONF_CMD_SWITCH("no_comp", 0), |
765 | | SSL_CONF_CMD_SWITCH("comp", 0), |
766 | | SSL_CONF_CMD_SWITCH("no_tx_cert_comp", 0), |
767 | | SSL_CONF_CMD_SWITCH("tx_cert_comp", 0), |
768 | | SSL_CONF_CMD_SWITCH("no_rx_cert_comp", 0), |
769 | | SSL_CONF_CMD_SWITCH("rx_cert_comp", 0), |
770 | | SSL_CONF_CMD_SWITCH("ecdh_single", SSL_CONF_FLAG_SERVER), |
771 | | SSL_CONF_CMD_SWITCH("no_ticket", 0), |
772 | | SSL_CONF_CMD_SWITCH("serverpref", SSL_CONF_FLAG_SERVER), |
773 | | SSL_CONF_CMD_SWITCH("legacy_renegotiation", 0), |
774 | | SSL_CONF_CMD_SWITCH("client_renegotiation", SSL_CONF_FLAG_SERVER), |
775 | | SSL_CONF_CMD_SWITCH("legacy_server_connect", SSL_CONF_FLAG_CLIENT), |
776 | | SSL_CONF_CMD_SWITCH("no_renegotiation", 0), |
777 | | SSL_CONF_CMD_SWITCH("no_resumption_on_reneg", SSL_CONF_FLAG_SERVER), |
778 | | SSL_CONF_CMD_SWITCH("no_legacy_server_connect", SSL_CONF_FLAG_CLIENT), |
779 | | SSL_CONF_CMD_SWITCH("allow_no_dhe_kex", 0), |
780 | | SSL_CONF_CMD_SWITCH("prefer_no_dhe_kex", 0), |
781 | | SSL_CONF_CMD_SWITCH("prioritize_chacha", SSL_CONF_FLAG_SERVER), |
782 | | SSL_CONF_CMD_SWITCH("strict", 0), |
783 | | SSL_CONF_CMD_SWITCH("no_middlebox", 0), |
784 | | SSL_CONF_CMD_SWITCH("anti_replay", SSL_CONF_FLAG_SERVER), |
785 | | SSL_CONF_CMD_SWITCH("no_anti_replay", SSL_CONF_FLAG_SERVER), |
786 | | SSL_CONF_CMD_SWITCH("no_etm", 0), |
787 | | SSL_CONF_CMD_SWITCH("no_ems", 0), |
788 | | SSL_CONF_CMD_STRING(SignatureAlgorithms, "sigalgs", 0), |
789 | | SSL_CONF_CMD_STRING(ClientSignatureAlgorithms, "client_sigalgs", 0), |
790 | | SSL_CONF_CMD_STRING(Curves, "curves", 0), |
791 | | SSL_CONF_CMD_STRING(Groups, "groups", 0), |
792 | | SSL_CONF_CMD_STRING(ECDHParameters, "named_curve", SSL_CONF_FLAG_SERVER), |
793 | | SSL_CONF_CMD_STRING(CipherString, "cipher", 0), |
794 | | SSL_CONF_CMD_STRING(Ciphersuites, "ciphersuites", 0), |
795 | | SSL_CONF_CMD_STRING(Protocol, NULL, 0), |
796 | | SSL_CONF_CMD_STRING(MinProtocol, "min_protocol", 0), |
797 | | SSL_CONF_CMD_STRING(MaxProtocol, "max_protocol", 0), |
798 | | SSL_CONF_CMD_STRING(Options, NULL, 0), |
799 | | SSL_CONF_CMD_STRING(VerifyMode, NULL, 0), |
800 | | SSL_CONF_CMD(Certificate, "cert", SSL_CONF_FLAG_CERTIFICATE, |
801 | | SSL_CONF_TYPE_FILE), |
802 | | SSL_CONF_CMD(PrivateKey, "key", SSL_CONF_FLAG_CERTIFICATE, |
803 | | SSL_CONF_TYPE_FILE), |
804 | | SSL_CONF_CMD(ServerInfoFile, NULL, |
805 | | SSL_CONF_FLAG_SERVER | SSL_CONF_FLAG_CERTIFICATE, |
806 | | SSL_CONF_TYPE_FILE), |
807 | | SSL_CONF_CMD(ChainCAPath, "chainCApath", SSL_CONF_FLAG_CERTIFICATE, |
808 | | SSL_CONF_TYPE_DIR), |
809 | | SSL_CONF_CMD(ChainCAFile, "chainCAfile", SSL_CONF_FLAG_CERTIFICATE, |
810 | | SSL_CONF_TYPE_FILE), |
811 | | SSL_CONF_CMD(ChainCAStore, "chainCAstore", SSL_CONF_FLAG_CERTIFICATE, |
812 | | SSL_CONF_TYPE_STORE), |
813 | | SSL_CONF_CMD(VerifyCAPath, "verifyCApath", SSL_CONF_FLAG_CERTIFICATE, |
814 | | SSL_CONF_TYPE_DIR), |
815 | | SSL_CONF_CMD(VerifyCAFile, "verifyCAfile", SSL_CONF_FLAG_CERTIFICATE, |
816 | | SSL_CONF_TYPE_FILE), |
817 | | SSL_CONF_CMD(VerifyCAStore, "verifyCAstore", SSL_CONF_FLAG_CERTIFICATE, |
818 | | SSL_CONF_TYPE_STORE), |
819 | | SSL_CONF_CMD(RequestCAFile, "requestCAFile", SSL_CONF_FLAG_CERTIFICATE, |
820 | | SSL_CONF_TYPE_FILE), |
821 | | SSL_CONF_CMD(ClientCAFile, NULL, |
822 | | SSL_CONF_FLAG_SERVER | SSL_CONF_FLAG_CERTIFICATE, |
823 | | SSL_CONF_TYPE_FILE), |
824 | | SSL_CONF_CMD(RequestCAPath, NULL, SSL_CONF_FLAG_CERTIFICATE, |
825 | | SSL_CONF_TYPE_DIR), |
826 | | SSL_CONF_CMD(ClientCAPath, NULL, |
827 | | SSL_CONF_FLAG_SERVER | SSL_CONF_FLAG_CERTIFICATE, |
828 | | SSL_CONF_TYPE_DIR), |
829 | | SSL_CONF_CMD(RequestCAStore, "requestCAStore", SSL_CONF_FLAG_CERTIFICATE, |
830 | | SSL_CONF_TYPE_STORE), |
831 | | SSL_CONF_CMD(ClientCAStore, NULL, |
832 | | SSL_CONF_FLAG_SERVER | SSL_CONF_FLAG_CERTIFICATE, |
833 | | SSL_CONF_TYPE_STORE), |
834 | | SSL_CONF_CMD(DHParameters, "dhparam", |
835 | | SSL_CONF_FLAG_SERVER | SSL_CONF_FLAG_CERTIFICATE, |
836 | | SSL_CONF_TYPE_FILE), |
837 | | SSL_CONF_CMD_STRING(RecordPadding, "record_padding", 0), |
838 | | SSL_CONF_CMD_STRING(NumTickets, "num_tickets", SSL_CONF_FLAG_SERVER), |
839 | | }; |
840 | | |
841 | | /* Supported switches: must match order of switches in ssl_conf_cmds */ |
842 | | static const ssl_switch_tbl ssl_cmd_switches[] = { |
843 | | { SSL_OP_NO_SSLv3, 0 }, /* no_ssl3 */ |
844 | | { SSL_OP_NO_TLSv1, 0 }, /* no_tls1 */ |
845 | | { SSL_OP_NO_TLSv1_1, 0 }, /* no_tls1_1 */ |
846 | | { SSL_OP_NO_TLSv1_2, 0 }, /* no_tls1_2 */ |
847 | | { SSL_OP_NO_TLSv1_3, 0 }, /* no_tls1_3 */ |
848 | | { SSL_OP_ALL, 0 }, /* bugs */ |
849 | | { SSL_OP_NO_COMPRESSION, 0 }, /* no_comp */ |
850 | | { SSL_OP_NO_COMPRESSION, SSL_TFLAG_INV }, /* comp */ |
851 | | { SSL_OP_NO_TX_CERTIFICATE_COMPRESSION, 0 }, /* no_tx_cert_comp */ |
852 | | { SSL_OP_NO_TX_CERTIFICATE_COMPRESSION, SSL_TFLAG_INV }, /* tx_cert_comp */ |
853 | | { SSL_OP_NO_RX_CERTIFICATE_COMPRESSION, 0 }, /* no_rx_cert_comp */ |
854 | | { SSL_OP_NO_RX_CERTIFICATE_COMPRESSION, SSL_TFLAG_INV }, /* rx_cert_comp */ |
855 | | { SSL_OP_SINGLE_ECDH_USE, 0 }, /* ecdh_single */ |
856 | | { SSL_OP_NO_TICKET, 0 }, /* no_ticket */ |
857 | | { SSL_OP_CIPHER_SERVER_PREFERENCE, 0 }, /* serverpref */ |
858 | | /* legacy_renegotiation */ |
859 | | { SSL_OP_ALLOW_UNSAFE_LEGACY_RENEGOTIATION, 0 }, |
860 | | /* Allow client renegotiation */ |
861 | | { SSL_OP_ALLOW_CLIENT_RENEGOTIATION, 0 }, |
862 | | /* legacy_server_connect */ |
863 | | { SSL_OP_LEGACY_SERVER_CONNECT, 0 }, |
864 | | /* no_renegotiation */ |
865 | | { SSL_OP_NO_RENEGOTIATION, 0 }, |
866 | | /* no_resumption_on_reneg */ |
867 | | { SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION, 0 }, |
868 | | /* no_legacy_server_connect */ |
869 | | { SSL_OP_LEGACY_SERVER_CONNECT, SSL_TFLAG_INV }, |
870 | | /* allow_no_dhe_kex */ |
871 | | { SSL_OP_ALLOW_NO_DHE_KEX, 0 }, |
872 | | /* prefer_no_dhe_kex */ |
873 | | { SSL_OP_PREFER_NO_DHE_KEX, 0 }, |
874 | | /* chacha reprioritization */ |
875 | | { SSL_OP_PRIORITIZE_CHACHA, 0 }, |
876 | | { SSL_CERT_FLAG_TLS_STRICT, SSL_TFLAG_CERT }, /* strict */ |
877 | | /* no_middlebox */ |
878 | | { SSL_OP_ENABLE_MIDDLEBOX_COMPAT, SSL_TFLAG_INV }, |
879 | | /* anti_replay */ |
880 | | { SSL_OP_NO_ANTI_REPLAY, SSL_TFLAG_INV }, |
881 | | /* no_anti_replay */ |
882 | | { SSL_OP_NO_ANTI_REPLAY, 0 }, |
883 | | /* no Encrypt-then-Mac */ |
884 | | { SSL_OP_NO_ENCRYPT_THEN_MAC, 0 }, |
885 | | /* no Extended master secret */ |
886 | | { SSL_OP_NO_EXTENDED_MASTER_SECRET, 0 }, |
887 | | }; |
888 | | |
889 | | static int ssl_conf_cmd_skip_prefix(SSL_CONF_CTX *cctx, const char **pcmd) |
890 | 0 | { |
891 | 0 | if (pcmd == NULL || *pcmd == NULL) |
892 | 0 | return 0; |
893 | | /* If a prefix is set, check and skip */ |
894 | 0 | if (cctx->prefix) { |
895 | 0 | if (strlen(*pcmd) <= cctx->prefixlen) |
896 | 0 | return 0; |
897 | 0 | if (cctx->flags & SSL_CONF_FLAG_CMDLINE && strncmp(*pcmd, cctx->prefix, cctx->prefixlen)) |
898 | 0 | return 0; |
899 | 0 | if (cctx->flags & SSL_CONF_FLAG_FILE && OPENSSL_strncasecmp(*pcmd, cctx->prefix, cctx->prefixlen)) |
900 | 0 | return 0; |
901 | 0 | *pcmd += cctx->prefixlen; |
902 | 0 | } else if (cctx->flags & SSL_CONF_FLAG_CMDLINE) { |
903 | 0 | if (**pcmd != '-' || !(*pcmd)[1]) |
904 | 0 | return 0; |
905 | 0 | *pcmd += 1; |
906 | 0 | } |
907 | 0 | return 1; |
908 | 0 | } |
909 | | |
910 | | /* Determine if a command is allowed according to cctx flags */ |
911 | | static int ssl_conf_cmd_allowed(SSL_CONF_CTX *cctx, const ssl_conf_cmd_tbl *t) |
912 | 0 | { |
913 | 0 | unsigned int tfl = t->flags; |
914 | 0 | unsigned int cfl = cctx->flags; |
915 | 0 | if ((tfl & SSL_CONF_FLAG_SERVER) && !(cfl & SSL_CONF_FLAG_SERVER)) |
916 | 0 | return 0; |
917 | 0 | if ((tfl & SSL_CONF_FLAG_CLIENT) && !(cfl & SSL_CONF_FLAG_CLIENT)) |
918 | 0 | return 0; |
919 | 0 | if ((tfl & SSL_CONF_FLAG_CERTIFICATE) |
920 | 0 | && !(cfl & SSL_CONF_FLAG_CERTIFICATE)) |
921 | 0 | return 0; |
922 | 0 | return 1; |
923 | 0 | } |
924 | | |
925 | | static const ssl_conf_cmd_tbl *ssl_conf_cmd_lookup(SSL_CONF_CTX *cctx, |
926 | | const char *cmd) |
927 | 0 | { |
928 | 0 | const ssl_conf_cmd_tbl *t; |
929 | 0 | size_t i; |
930 | 0 | if (cmd == NULL) |
931 | 0 | return NULL; |
932 | | |
933 | | /* Look for matching parameter name in table */ |
934 | 0 | for (i = 0, t = ssl_conf_cmds; i < OSSL_NELEM(ssl_conf_cmds); i++, t++) { |
935 | 0 | if (ssl_conf_cmd_allowed(cctx, t)) { |
936 | 0 | if (cctx->flags & SSL_CONF_FLAG_CMDLINE) { |
937 | 0 | if (t->str_cmdline && strcmp(t->str_cmdline, cmd) == 0) |
938 | 0 | return t; |
939 | 0 | } |
940 | 0 | if (cctx->flags & SSL_CONF_FLAG_FILE) { |
941 | 0 | if (t->str_file && OPENSSL_strcasecmp(t->str_file, cmd) == 0) |
942 | 0 | return t; |
943 | 0 | } |
944 | 0 | } |
945 | 0 | } |
946 | 0 | return NULL; |
947 | 0 | } |
948 | | |
949 | | static int ctrl_switch_option(SSL_CONF_CTX *cctx, const ssl_conf_cmd_tbl *cmd) |
950 | 0 | { |
951 | | /* Find index of command in table */ |
952 | 0 | size_t idx = cmd - ssl_conf_cmds; |
953 | 0 | const ssl_switch_tbl *scmd; |
954 | | |
955 | | /* Sanity check index */ |
956 | 0 | if (idx >= OSSL_NELEM(ssl_cmd_switches)) { |
957 | 0 | ERR_raise(ERR_LIB_SSL, ERR_R_INTERNAL_ERROR); |
958 | 0 | return 0; |
959 | 0 | } |
960 | | /* Obtain switches entry with same index */ |
961 | 0 | scmd = ssl_cmd_switches + idx; |
962 | 0 | ssl_set_option(cctx, scmd->name_flags, scmd->option_value, 1); |
963 | 0 | return 1; |
964 | 0 | } |
965 | | |
966 | | int SSL_CONF_cmd(SSL_CONF_CTX *cctx, const char *cmd, const char *value) |
967 | 0 | { |
968 | 0 | const ssl_conf_cmd_tbl *runcmd; |
969 | 0 | if (cmd == NULL) { |
970 | 0 | ERR_raise(ERR_LIB_SSL, SSL_R_INVALID_NULL_CMD_NAME); |
971 | 0 | return 0; |
972 | 0 | } |
973 | | |
974 | 0 | if (!ssl_conf_cmd_skip_prefix(cctx, &cmd)) |
975 | 0 | goto unknown_cmd; |
976 | | |
977 | 0 | runcmd = ssl_conf_cmd_lookup(cctx, cmd); |
978 | |
|
979 | 0 | if (runcmd) { |
980 | 0 | int rv = -3; |
981 | |
|
982 | 0 | if (runcmd->value_type == SSL_CONF_TYPE_NONE) { |
983 | 0 | return ctrl_switch_option(cctx, runcmd); |
984 | 0 | } |
985 | 0 | if (value == NULL) |
986 | 0 | goto bad_value; |
987 | 0 | rv = runcmd->cmd(cctx, value); |
988 | 0 | if (rv > 0) |
989 | 0 | return 2; |
990 | 0 | if (rv != -2) |
991 | 0 | rv = 0; |
992 | |
|
993 | 0 | bad_value: |
994 | 0 | if (cctx->flags & SSL_CONF_FLAG_SHOW_ERRORS) |
995 | 0 | ERR_raise_data(ERR_LIB_SSL, SSL_R_BAD_VALUE, |
996 | 0 | "cmd=%s, value=%s", cmd, |
997 | 0 | value != NULL ? value : "<EMPTY>"); |
998 | 0 | return rv; |
999 | 0 | } |
1000 | | |
1001 | 0 | unknown_cmd: |
1002 | 0 | if (cctx->flags & SSL_CONF_FLAG_SHOW_ERRORS) |
1003 | 0 | ERR_raise_data(ERR_LIB_SSL, SSL_R_UNKNOWN_CMD_NAME, "cmd=%s", cmd); |
1004 | |
|
1005 | 0 | return -2; |
1006 | 0 | } |
1007 | | |
1008 | | int SSL_CONF_cmd_argv(SSL_CONF_CTX *cctx, int *pargc, char ***pargv) |
1009 | 0 | { |
1010 | 0 | int rv; |
1011 | 0 | const char *arg = NULL, *argn; |
1012 | |
|
1013 | 0 | if (pargc != NULL && *pargc == 0) |
1014 | 0 | return 0; |
1015 | 0 | if (pargc == NULL || *pargc > 0) |
1016 | 0 | arg = **pargv; |
1017 | 0 | if (arg == NULL) |
1018 | 0 | return 0; |
1019 | 0 | if (pargc == NULL || *pargc > 1) |
1020 | 0 | argn = (*pargv)[1]; |
1021 | 0 | else |
1022 | 0 | argn = NULL; |
1023 | 0 | cctx->flags &= ~SSL_CONF_FLAG_FILE; |
1024 | 0 | cctx->flags |= SSL_CONF_FLAG_CMDLINE; |
1025 | 0 | rv = SSL_CONF_cmd(cctx, arg, argn); |
1026 | 0 | if (rv > 0) { |
1027 | | /* Success: update pargc, pargv */ |
1028 | 0 | (*pargv) += rv; |
1029 | 0 | if (pargc) |
1030 | 0 | (*pargc) -= rv; |
1031 | 0 | return rv; |
1032 | 0 | } |
1033 | | /* Unknown switch: indicate no arguments processed */ |
1034 | 0 | if (rv == -2) |
1035 | 0 | return 0; |
1036 | | /* Some error occurred processing command, return fatal error */ |
1037 | 0 | if (rv == 0) |
1038 | 0 | return -1; |
1039 | 0 | return rv; |
1040 | 0 | } |
1041 | | |
1042 | | int SSL_CONF_cmd_value_type(SSL_CONF_CTX *cctx, const char *cmd) |
1043 | 0 | { |
1044 | 0 | if (ssl_conf_cmd_skip_prefix(cctx, &cmd)) { |
1045 | 0 | const ssl_conf_cmd_tbl *runcmd; |
1046 | 0 | runcmd = ssl_conf_cmd_lookup(cctx, cmd); |
1047 | 0 | if (runcmd) |
1048 | 0 | return runcmd->value_type; |
1049 | 0 | } |
1050 | 0 | return SSL_CONF_TYPE_UNKNOWN; |
1051 | 0 | } |
1052 | | |
1053 | | SSL_CONF_CTX *SSL_CONF_CTX_new(void) |
1054 | 0 | { |
1055 | 0 | SSL_CONF_CTX *ret = OPENSSL_zalloc(sizeof(*ret)); |
1056 | |
|
1057 | 0 | return ret; |
1058 | 0 | } |
1059 | | |
1060 | | int SSL_CONF_CTX_finish(SSL_CONF_CTX *cctx) |
1061 | 0 | { |
1062 | | /* See if any certificates are missing private keys */ |
1063 | 0 | size_t i; |
1064 | 0 | CERT *c = NULL; |
1065 | |
|
1066 | 0 | if (cctx->ctx != NULL) { |
1067 | 0 | c = cctx->ctx->cert; |
1068 | 0 | } else if (cctx->ssl != NULL) { |
1069 | 0 | SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(cctx->ssl); |
1070 | |
|
1071 | 0 | if (sc != NULL) |
1072 | 0 | c = sc->cert; |
1073 | 0 | } |
1074 | 0 | if (c != NULL && cctx->flags & SSL_CONF_FLAG_REQUIRE_PRIVATE) { |
1075 | 0 | for (i = 0; i < cctx->num_cert_filename; i++) { |
1076 | 0 | const char *p = cctx->cert_filename[i]; |
1077 | | |
1078 | | /* |
1079 | | * If missing private key try to load one from certificate file |
1080 | | */ |
1081 | 0 | if (p != NULL && c->pkeys[i].privatekey == NULL) { |
1082 | 0 | if (!cmd_PrivateKey(cctx, p)) |
1083 | 0 | return 0; |
1084 | 0 | } |
1085 | 0 | } |
1086 | 0 | } |
1087 | 0 | if (cctx->canames) { |
1088 | 0 | if (cctx->ssl) |
1089 | 0 | SSL_set0_CA_list(cctx->ssl, cctx->canames); |
1090 | 0 | else if (cctx->ctx) |
1091 | 0 | SSL_CTX_set0_CA_list(cctx->ctx, cctx->canames); |
1092 | 0 | else |
1093 | 0 | sk_X509_NAME_pop_free(cctx->canames, X509_NAME_free); |
1094 | 0 | cctx->canames = NULL; |
1095 | 0 | } |
1096 | 0 | return 1; |
1097 | 0 | } |
1098 | | |
1099 | | static void free_cert_filename(SSL_CONF_CTX *cctx) |
1100 | 0 | { |
1101 | 0 | size_t i; |
1102 | |
|
1103 | 0 | for (i = 0; i < cctx->num_cert_filename; i++) |
1104 | 0 | OPENSSL_free(cctx->cert_filename[i]); |
1105 | 0 | OPENSSL_free(cctx->cert_filename); |
1106 | 0 | cctx->cert_filename = NULL; |
1107 | 0 | cctx->num_cert_filename = 0; |
1108 | 0 | } |
1109 | | |
1110 | | void SSL_CONF_CTX_free(SSL_CONF_CTX *cctx) |
1111 | 152k | { |
1112 | 152k | if (cctx) { |
1113 | 0 | free_cert_filename(cctx); |
1114 | 0 | OPENSSL_free(cctx->prefix); |
1115 | 0 | sk_X509_NAME_pop_free(cctx->canames, X509_NAME_free); |
1116 | 0 | OPENSSL_free(cctx); |
1117 | 0 | } |
1118 | 152k | } |
1119 | | |
1120 | | unsigned int SSL_CONF_CTX_set_flags(SSL_CONF_CTX *cctx, unsigned int flags) |
1121 | 0 | { |
1122 | 0 | cctx->flags |= flags; |
1123 | 0 | return cctx->flags; |
1124 | 0 | } |
1125 | | |
1126 | | unsigned int SSL_CONF_CTX_clear_flags(SSL_CONF_CTX *cctx, unsigned int flags) |
1127 | 0 | { |
1128 | 0 | cctx->flags &= ~flags; |
1129 | 0 | return cctx->flags; |
1130 | 0 | } |
1131 | | |
1132 | | int SSL_CONF_CTX_set1_prefix(SSL_CONF_CTX *cctx, const char *pre) |
1133 | 0 | { |
1134 | 0 | char *tmp = NULL; |
1135 | 0 | if (pre) { |
1136 | 0 | tmp = OPENSSL_strdup(pre); |
1137 | 0 | if (tmp == NULL) |
1138 | 0 | return 0; |
1139 | 0 | } |
1140 | 0 | OPENSSL_free(cctx->prefix); |
1141 | 0 | cctx->prefix = tmp; |
1142 | 0 | if (tmp) |
1143 | 0 | cctx->prefixlen = strlen(tmp); |
1144 | 0 | else |
1145 | 0 | cctx->prefixlen = 0; |
1146 | 0 | return 1; |
1147 | 0 | } |
1148 | | |
1149 | | void SSL_CONF_CTX_set_ssl(SSL_CONF_CTX *cctx, SSL *ssl) |
1150 | 0 | { |
1151 | 0 | cctx->ssl = ssl; |
1152 | 0 | cctx->ctx = NULL; |
1153 | 0 | free_cert_filename(cctx); |
1154 | 0 | if (ssl != NULL) { |
1155 | 0 | SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(ssl); |
1156 | |
|
1157 | 0 | if (sc == NULL) |
1158 | 0 | return; |
1159 | 0 | cctx->poptions = &sc->options; |
1160 | 0 | cctx->min_version = &sc->min_proto_version; |
1161 | 0 | cctx->max_version = &sc->max_proto_version; |
1162 | 0 | cctx->pcert_flags = &sc->cert->cert_flags; |
1163 | 0 | cctx->pvfy_flags = &sc->verify_mode; |
1164 | 0 | cctx->cert_filename = OPENSSL_zalloc(sc->ssl_pkey_num |
1165 | 0 | * sizeof(*cctx->cert_filename)); |
1166 | 0 | if (cctx->cert_filename != NULL) |
1167 | 0 | cctx->num_cert_filename = sc->ssl_pkey_num; |
1168 | 0 | } else { |
1169 | 0 | cctx->poptions = NULL; |
1170 | 0 | cctx->min_version = NULL; |
1171 | 0 | cctx->max_version = NULL; |
1172 | 0 | cctx->pcert_flags = NULL; |
1173 | 0 | cctx->pvfy_flags = NULL; |
1174 | 0 | } |
1175 | 0 | } |
1176 | | |
1177 | | void SSL_CONF_CTX_set_ssl_ctx(SSL_CONF_CTX *cctx, SSL_CTX *ctx) |
1178 | 0 | { |
1179 | 0 | cctx->ctx = ctx; |
1180 | 0 | cctx->ssl = NULL; |
1181 | 0 | free_cert_filename(cctx); |
1182 | 0 | if (ctx) { |
1183 | 0 | cctx->poptions = &ctx->options; |
1184 | 0 | cctx->min_version = &ctx->min_proto_version; |
1185 | 0 | cctx->max_version = &ctx->max_proto_version; |
1186 | 0 | cctx->pcert_flags = &ctx->cert->cert_flags; |
1187 | 0 | cctx->pvfy_flags = &ctx->verify_mode; |
1188 | 0 | cctx->cert_filename = OPENSSL_zalloc((SSL_PKEY_NUM + ctx->sigalg_list_len) |
1189 | 0 | * sizeof(*cctx->cert_filename)); |
1190 | 0 | if (cctx->cert_filename != NULL) |
1191 | 0 | cctx->num_cert_filename = SSL_PKEY_NUM + ctx->sigalg_list_len; |
1192 | 0 | } else { |
1193 | 0 | cctx->poptions = NULL; |
1194 | 0 | cctx->min_version = NULL; |
1195 | 0 | cctx->max_version = NULL; |
1196 | 0 | cctx->pcert_flags = NULL; |
1197 | | cctx->pvfy_flags = NULL; |
1198 | 0 | } |
1199 | 0 | } |