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