/src/openssl/ssl/ssl_ciph.c
Line | Count | Source |
1 | | /* |
2 | | * Copyright 1995-2026 The OpenSSL Project Authors. All Rights Reserved. |
3 | | * Copyright (c) 2002, Oracle and/or its affiliates. All rights reserved |
4 | | * Copyright 2005 Nokia. All rights reserved. |
5 | | * |
6 | | * Licensed under the Apache License 2.0 (the "License"). You may not use |
7 | | * this file except in compliance with the License. You can obtain a copy |
8 | | * in the file LICENSE in the source distribution or at |
9 | | * https://www.openssl.org/source/license.html |
10 | | */ |
11 | | |
12 | | /* |
13 | | * Because of *asn1_* |
14 | | */ |
15 | | #define OPENSSL_SUPPRESS_DEPRECATED |
16 | | |
17 | | #include <stdio.h> |
18 | | #include <ctype.h> |
19 | | #include <openssl/objects.h> |
20 | | #include <openssl/comp.h> |
21 | | #include <openssl/crypto.h> |
22 | | #include <openssl/conf.h> |
23 | | #include <openssl/trace.h> |
24 | | #include "internal/nelem.h" |
25 | | #include "ssl_local.h" |
26 | | #include "internal/thread_once.h" |
27 | | #include "internal/cryptlib.h" |
28 | | #include "internal/comp.h" |
29 | | #include "internal/ssl_unwrap.h" |
30 | | |
31 | | /* NB: make sure indices in these tables match values above */ |
32 | | |
33 | | typedef struct { |
34 | | uint32_t mask; |
35 | | int nid; |
36 | | } ssl_cipher_table; |
37 | | |
38 | | /* Table of NIDs for each cipher */ |
39 | | static const ssl_cipher_table ssl_cipher_table_cipher[SSL_ENC_NUM_IDX] = { |
40 | | { SSL_DES, NID_des_cbc }, /* SSL_ENC_DES_IDX 0 */ |
41 | | { SSL_3DES, NID_des_ede3_cbc }, /* SSL_ENC_3DES_IDX 1 */ |
42 | | { SSL_RC4, NID_rc4 }, /* SSL_ENC_RC4_IDX 2 */ |
43 | | { SSL_RC2, NID_rc2_cbc }, /* SSL_ENC_RC2_IDX 3 */ |
44 | | { SSL_IDEA, NID_idea_cbc }, /* SSL_ENC_IDEA_IDX 4 */ |
45 | | { SSL_eNULL, NID_undef }, /* SSL_ENC_NULL_IDX 5 */ |
46 | | { SSL_AES128, NID_aes_128_cbc }, /* SSL_ENC_AES128_IDX 6 */ |
47 | | { SSL_AES256, NID_aes_256_cbc }, /* SSL_ENC_AES256_IDX 7 */ |
48 | | { SSL_CAMELLIA128, NID_camellia_128_cbc }, /* SSL_ENC_CAMELLIA128_IDX 8 */ |
49 | | { SSL_CAMELLIA256, NID_camellia_256_cbc }, /* SSL_ENC_CAMELLIA256_IDX 9 */ |
50 | | { SSL_eGOST2814789CNT, NID_gost89_cnt }, /* SSL_ENC_GOST89_IDX 10 */ |
51 | | { SSL_SEED, NID_seed_cbc }, /* SSL_ENC_SEED_IDX 11 */ |
52 | | { SSL_AES128GCM, NID_aes_128_gcm }, /* SSL_ENC_AES128GCM_IDX 12 */ |
53 | | { SSL_AES256GCM, NID_aes_256_gcm }, /* SSL_ENC_AES256GCM_IDX 13 */ |
54 | | { SSL_AES128CCM, NID_aes_128_ccm }, /* SSL_ENC_AES128CCM_IDX 14 */ |
55 | | { SSL_AES256CCM, NID_aes_256_ccm }, /* SSL_ENC_AES256CCM_IDX 15 */ |
56 | | { SSL_AES128CCM8, NID_aes_128_ccm }, /* SSL_ENC_AES128CCM8_IDX 16 */ |
57 | | { SSL_AES256CCM8, NID_aes_256_ccm }, /* SSL_ENC_AES256CCM8_IDX 17 */ |
58 | | { SSL_eGOST2814789CNT12, NID_gost89_cnt_12 }, /* SSL_ENC_GOST8912_IDX 18 */ |
59 | | { SSL_CHACHA20POLY1305, NID_chacha20_poly1305 }, /* SSL_ENC_CHACHA_IDX 19 */ |
60 | | { SSL_ARIA128GCM, NID_aria_128_gcm }, /* SSL_ENC_ARIA128GCM_IDX 20 */ |
61 | | { SSL_ARIA256GCM, NID_aria_256_gcm }, /* SSL_ENC_ARIA256GCM_IDX 21 */ |
62 | | { SSL_MAGMA, NID_magma_ctr_acpkm }, /* SSL_ENC_MAGMA_IDX 22 */ |
63 | | { SSL_KUZNYECHIK, NID_kuznyechik_ctr_acpkm }, /* SSL_ENC_KUZNYECHIK_IDX 23 */ |
64 | | { SSL_SM4GCM, NID_sm4_gcm }, /* SSL_ENC_SM4GCM_IDX 24 */ |
65 | | { SSL_SM4CCM, NID_sm4_ccm }, /* SSL_ENC_SM4CCM_IDX 25 */ |
66 | | }; |
67 | | |
68 | | /* NB: make sure indices in this table matches values above */ |
69 | | static const ssl_cipher_table ssl_cipher_table_mac[SSL_MD_NUM_IDX] = { |
70 | | { SSL_MD5, NID_md5 }, /* SSL_MD_MD5_IDX 0 */ |
71 | | { SSL_SHA1, NID_sha1 }, /* SSL_MD_SHA1_IDX 1 */ |
72 | | { SSL_GOST94, NID_id_GostR3411_94 }, /* SSL_MD_GOST94_IDX 2 */ |
73 | | { SSL_GOST89MAC, NID_id_Gost28147_89_MAC }, /* SSL_MD_GOST89MAC_IDX 3 */ |
74 | | { SSL_SHA256, NID_sha256 }, /* SSL_MD_SHA256_IDX 4 */ |
75 | | { SSL_SHA384, NID_sha384 }, /* SSL_MD_SHA384_IDX 5 */ |
76 | | { SSL_GOST12_256, NID_id_GostR3411_2012_256 }, /* SSL_MD_GOST12_256_IDX 6 */ |
77 | | { SSL_GOST89MAC12, NID_gost_mac_12 }, /* SSL_MD_GOST89MAC12_IDX 7 */ |
78 | | { SSL_GOST12_512, NID_id_GostR3411_2012_512 }, /* SSL_MD_GOST12_512_IDX 8 */ |
79 | | { 0, NID_md5_sha1 }, /* SSL_MD_MD5_SHA1_IDX 9 */ |
80 | | { 0, NID_sha224 }, /* SSL_MD_SHA224_IDX 10 */ |
81 | | { 0, NID_sha512 }, /* SSL_MD_SHA512_IDX 11 */ |
82 | | { SSL_MAGMAOMAC, NID_magma_mac }, /* sSL_MD_MAGMAOMAC_IDX 12 */ |
83 | | { SSL_KUZNYECHIKOMAC, NID_kuznyechik_mac }, /* SSL_MD_KUZNYECHIKOMAC_IDX 13 */ |
84 | | { 0, NID_sm3 }, /* SSL_MD_SM3_IDX 14 */ |
85 | | }; |
86 | | |
87 | | /* *INDENT-OFF* */ |
88 | | static const ssl_cipher_table ssl_cipher_table_kx[] = { |
89 | | { SSL_kRSA, NID_kx_rsa }, |
90 | | { SSL_kECDHE, NID_kx_ecdhe }, |
91 | | { SSL_kDHE, NID_kx_dhe }, |
92 | | { SSL_kECDHEPSK, NID_kx_ecdhe_psk }, |
93 | | { SSL_kDHEPSK, NID_kx_dhe_psk }, |
94 | | { SSL_kRSAPSK, NID_kx_rsa_psk }, |
95 | | { SSL_kPSK, NID_kx_psk }, |
96 | | { SSL_kSRP, NID_kx_srp }, |
97 | | { SSL_kGOST, NID_kx_gost }, |
98 | | { SSL_kGOST18, NID_kx_gost18 }, |
99 | | { SSL_kANY, NID_kx_any } |
100 | | }; |
101 | | |
102 | | static const ssl_cipher_table ssl_cipher_table_auth[] = { |
103 | | { SSL_aRSA, NID_auth_rsa }, |
104 | | { SSL_aECDSA, NID_auth_ecdsa }, |
105 | | { SSL_aPSK, NID_auth_psk }, |
106 | | { SSL_aDSS, NID_auth_dss }, |
107 | | { SSL_aGOST01, NID_auth_gost01 }, |
108 | | { SSL_aGOST12, NID_auth_gost12 }, |
109 | | { SSL_aSRP, NID_auth_srp }, |
110 | | { SSL_aNULL, NID_auth_null }, |
111 | | { SSL_aANY, NID_auth_any } |
112 | | }; |
113 | | /* *INDENT-ON* */ |
114 | | |
115 | | /* Utility function for table lookup */ |
116 | | static int ssl_cipher_info_find(const ssl_cipher_table *table, |
117 | | size_t table_cnt, uint32_t mask) |
118 | 0 | { |
119 | 0 | size_t i; |
120 | 0 | for (i = 0; i < table_cnt; i++, table++) { |
121 | 0 | if (table->mask == mask) |
122 | 0 | return (int)i; |
123 | 0 | } |
124 | 0 | return -1; |
125 | 0 | } |
126 | | |
127 | | #define ssl_cipher_info_lookup(table, x) \ |
128 | 0 | ssl_cipher_info_find(table, OSSL_NELEM(table), x) |
129 | | |
130 | | static const int default_mac_pkey_id[SSL_MD_NUM_IDX] = { |
131 | | /* MD5, SHA, GOST94, MAC89 */ |
132 | | EVP_PKEY_HMAC, EVP_PKEY_HMAC, EVP_PKEY_HMAC, NID_undef, |
133 | | /* SHA256, SHA384, GOST2012_256, MAC89-12 */ |
134 | | EVP_PKEY_HMAC, EVP_PKEY_HMAC, EVP_PKEY_HMAC, NID_undef, |
135 | | /* GOST2012_512 */ |
136 | | EVP_PKEY_HMAC, |
137 | | /* MD5/SHA1, SHA224, SHA512, MAGMAOMAC, KUZNYECHIKOMAC */ |
138 | | NID_undef, NID_undef, NID_undef, NID_undef, NID_undef |
139 | | }; |
140 | | |
141 | 0 | #define CIPHER_ADD 1 |
142 | 0 | #define CIPHER_KILL 2 |
143 | 0 | #define CIPHER_DEL 3 |
144 | 0 | #define CIPHER_ORD 4 |
145 | 0 | #define CIPHER_SPECIAL 5 |
146 | | /* |
147 | | * Bump the ciphers to the top of the list. |
148 | | * This rule isn't currently supported by the public cipherstring API. |
149 | | */ |
150 | 0 | #define CIPHER_BUMP 6 |
151 | | |
152 | | typedef struct cipher_order_st { |
153 | | const SSL_CIPHER *cipher; |
154 | | int active; |
155 | | int dead; |
156 | | struct cipher_order_st *next, *prev; |
157 | | } CIPHER_ORDER; |
158 | | |
159 | | static const SSL_CIPHER cipher_aliases[] = { |
160 | | /* "ALL" doesn't include eNULL (must be specifically enabled) */ |
161 | | { 0, SSL_TXT_ALL, NULL, 0, 0, 0, ~SSL_eNULL }, |
162 | | /* "COMPLEMENTOFALL" */ |
163 | | { 0, SSL_TXT_CMPALL, NULL, 0, 0, 0, SSL_eNULL }, |
164 | | |
165 | | /* |
166 | | * "COMPLEMENTOFDEFAULT" (does *not* include ciphersuites not found in |
167 | | * ALL!) |
168 | | */ |
169 | | { 0, SSL_TXT_CMPDEF, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 0, SSL_NOT_DEFAULT }, |
170 | | |
171 | | /* |
172 | | * key exchange aliases (some of those using only a single bit here |
173 | | * combine multiple key exchange algs according to the RFCs, e.g. kDHE |
174 | | * combines DHE_DSS and DHE_RSA) |
175 | | */ |
176 | | { 0, SSL_TXT_kRSA, NULL, 0, SSL_kRSA }, |
177 | | |
178 | | { 0, SSL_TXT_kEDH, NULL, 0, SSL_kDHE }, |
179 | | { 0, SSL_TXT_kDHE, NULL, 0, SSL_kDHE }, |
180 | | { 0, SSL_TXT_DH, NULL, 0, SSL_kDHE }, |
181 | | |
182 | | { 0, SSL_TXT_kEECDH, NULL, 0, SSL_kECDHE }, |
183 | | { 0, SSL_TXT_kECDHE, NULL, 0, SSL_kECDHE }, |
184 | | { 0, SSL_TXT_ECDH, NULL, 0, SSL_kECDHE }, |
185 | | |
186 | | { 0, SSL_TXT_kPSK, NULL, 0, SSL_kPSK }, |
187 | | { 0, SSL_TXT_kRSAPSK, NULL, 0, SSL_kRSAPSK }, |
188 | | { 0, SSL_TXT_kECDHEPSK, NULL, 0, SSL_kECDHEPSK }, |
189 | | { 0, SSL_TXT_kDHEPSK, NULL, 0, SSL_kDHEPSK }, |
190 | | { 0, SSL_TXT_kSRP, NULL, 0, SSL_kSRP }, |
191 | | { 0, SSL_TXT_kGOST, NULL, 0, SSL_kGOST }, |
192 | | { 0, SSL_TXT_kGOST18, NULL, 0, SSL_kGOST18 }, |
193 | | |
194 | | /* server authentication aliases */ |
195 | | { 0, SSL_TXT_aRSA, NULL, 0, 0, SSL_aRSA }, |
196 | | { 0, SSL_TXT_aDSS, NULL, 0, 0, SSL_aDSS }, |
197 | | { 0, SSL_TXT_DSS, NULL, 0, 0, SSL_aDSS }, |
198 | | { 0, SSL_TXT_aNULL, NULL, 0, 0, SSL_aNULL }, |
199 | | { 0, SSL_TXT_aECDSA, NULL, 0, 0, SSL_aECDSA }, |
200 | | { 0, SSL_TXT_ECDSA, NULL, 0, 0, SSL_aECDSA }, |
201 | | { 0, SSL_TXT_aPSK, NULL, 0, 0, SSL_aPSK }, |
202 | | { 0, SSL_TXT_aGOST01, NULL, 0, 0, SSL_aGOST01 }, |
203 | | { 0, SSL_TXT_aGOST12, NULL, 0, 0, SSL_aGOST12 }, |
204 | | { 0, SSL_TXT_aGOST, NULL, 0, 0, SSL_aGOST01 | SSL_aGOST12 }, |
205 | | { 0, SSL_TXT_aSRP, NULL, 0, 0, SSL_aSRP }, |
206 | | |
207 | | /* aliases combining key exchange and server authentication */ |
208 | | { 0, SSL_TXT_EDH, NULL, 0, SSL_kDHE, ~SSL_aNULL }, |
209 | | { 0, SSL_TXT_DHE, NULL, 0, SSL_kDHE, ~SSL_aNULL }, |
210 | | { 0, SSL_TXT_EECDH, NULL, 0, SSL_kECDHE, ~SSL_aNULL }, |
211 | | { 0, SSL_TXT_ECDHE, NULL, 0, SSL_kECDHE, ~SSL_aNULL }, |
212 | | { 0, SSL_TXT_NULL, NULL, 0, 0, 0, SSL_eNULL }, |
213 | | { 0, SSL_TXT_RSA, NULL, 0, SSL_kRSA, SSL_aRSA }, |
214 | | { 0, SSL_TXT_ADH, NULL, 0, SSL_kDHE, SSL_aNULL }, |
215 | | { 0, SSL_TXT_AECDH, NULL, 0, SSL_kECDHE, SSL_aNULL }, |
216 | | { 0, SSL_TXT_PSK, NULL, 0, SSL_PSK }, |
217 | | { 0, SSL_TXT_SRP, NULL, 0, SSL_kSRP }, |
218 | | |
219 | | /* symmetric encryption aliases */ |
220 | | { 0, SSL_TXT_3DES, NULL, 0, 0, 0, SSL_3DES }, |
221 | | { 0, SSL_TXT_RC4, NULL, 0, 0, 0, SSL_RC4 }, |
222 | | { 0, SSL_TXT_RC2, NULL, 0, 0, 0, SSL_RC2 }, |
223 | | { 0, SSL_TXT_IDEA, NULL, 0, 0, 0, SSL_IDEA }, |
224 | | { 0, SSL_TXT_SEED, NULL, 0, 0, 0, SSL_SEED }, |
225 | | { 0, SSL_TXT_eNULL, NULL, 0, 0, 0, SSL_eNULL }, |
226 | | { 0, SSL_TXT_GOST, NULL, 0, 0, 0, |
227 | | SSL_eGOST2814789CNT | SSL_eGOST2814789CNT12 | SSL_MAGMA | SSL_KUZNYECHIK }, |
228 | | { 0, SSL_TXT_AES128, NULL, 0, 0, 0, |
229 | | SSL_AES128 | SSL_AES128GCM | SSL_AES128CCM | SSL_AES128CCM8 }, |
230 | | { 0, SSL_TXT_AES256, NULL, 0, 0, 0, |
231 | | SSL_AES256 | SSL_AES256GCM | SSL_AES256CCM | SSL_AES256CCM8 }, |
232 | | { 0, SSL_TXT_AES, NULL, 0, 0, 0, SSL_AES }, |
233 | | { 0, SSL_TXT_AES_GCM, NULL, 0, 0, 0, SSL_AES128GCM | SSL_AES256GCM }, |
234 | | { 0, SSL_TXT_AES_CCM, NULL, 0, 0, 0, |
235 | | SSL_AES128CCM | SSL_AES256CCM | SSL_AES128CCM8 | SSL_AES256CCM8 }, |
236 | | { 0, SSL_TXT_AES_CCM_8, NULL, 0, 0, 0, SSL_AES128CCM8 | SSL_AES256CCM8 }, |
237 | | { 0, SSL_TXT_CAMELLIA128, NULL, 0, 0, 0, SSL_CAMELLIA128 }, |
238 | | { 0, SSL_TXT_CAMELLIA256, NULL, 0, 0, 0, SSL_CAMELLIA256 }, |
239 | | { 0, SSL_TXT_CAMELLIA, NULL, 0, 0, 0, SSL_CAMELLIA }, |
240 | | { 0, SSL_TXT_CHACHA20, NULL, 0, 0, 0, SSL_CHACHA20 }, |
241 | | { 0, SSL_TXT_GOST2012_GOST8912_GOST8912, NULL, 0, 0, 0, SSL_eGOST2814789CNT12 }, |
242 | | |
243 | | { 0, SSL_TXT_ARIA, NULL, 0, 0, 0, SSL_ARIA }, |
244 | | { 0, SSL_TXT_ARIA_GCM, NULL, 0, 0, 0, SSL_ARIA128GCM | SSL_ARIA256GCM }, |
245 | | { 0, SSL_TXT_ARIA128, NULL, 0, 0, 0, SSL_ARIA128GCM }, |
246 | | { 0, SSL_TXT_ARIA256, NULL, 0, 0, 0, SSL_ARIA256GCM }, |
247 | | { 0, SSL_TXT_CBC, NULL, 0, 0, 0, SSL_CBC }, |
248 | | |
249 | | /* MAC aliases */ |
250 | | { 0, SSL_TXT_MD5, NULL, 0, 0, 0, 0, SSL_MD5 }, |
251 | | { 0, SSL_TXT_SHA1, NULL, 0, 0, 0, 0, SSL_SHA1 }, |
252 | | { 0, SSL_TXT_SHA, NULL, 0, 0, 0, 0, SSL_SHA1 }, |
253 | | { 0, SSL_TXT_GOST94, NULL, 0, 0, 0, 0, SSL_GOST94 }, |
254 | | { 0, SSL_TXT_GOST89MAC, NULL, 0, 0, 0, 0, SSL_GOST89MAC | SSL_GOST89MAC12 }, |
255 | | { 0, SSL_TXT_SHA256, NULL, 0, 0, 0, 0, SSL_SHA256 }, |
256 | | { 0, SSL_TXT_SHA384, NULL, 0, 0, 0, 0, SSL_SHA384 }, |
257 | | { 0, SSL_TXT_GOST12, NULL, 0, 0, 0, 0, SSL_GOST12_256 }, |
258 | | |
259 | | /* protocol version aliases */ |
260 | | { 0, SSL_TXT_TLSV1, NULL, 0, 0, 0, 0, 0, TLS1_VERSION }, |
261 | | { 0, "TLSv1.0", NULL, 0, 0, 0, 0, 0, TLS1_VERSION }, |
262 | | { 0, SSL_TXT_TLSV1_2, NULL, 0, 0, 0, 0, 0, TLS1_2_VERSION }, |
263 | | |
264 | | /* strength classes */ |
265 | | { 0, SSL_TXT_LOW, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 0, SSL_LOW }, |
266 | | { 0, SSL_TXT_MEDIUM, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 0, SSL_MEDIUM }, |
267 | | { 0, SSL_TXT_HIGH, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 0, SSL_HIGH }, |
268 | | |
269 | | /* "EDH-" aliases to "DHE-" labels (for backward compatibility) */ |
270 | | { 0, SSL3_TXT_EDH_DSS_DES_192_CBC3_SHA, NULL, 0, |
271 | | SSL_kDHE, SSL_aDSS, SSL_3DES, SSL_SHA1, 0, 0, 0, 0, SSL_HIGH }, |
272 | | { 0, SSL3_TXT_EDH_RSA_DES_192_CBC3_SHA, NULL, 0, |
273 | | SSL_kDHE, SSL_aRSA, SSL_3DES, SSL_SHA1, 0, 0, 0, 0, SSL_HIGH }, |
274 | | |
275 | | }; |
276 | | |
277 | | int ssl_load_ciphers(SSL_CTX *ctx) |
278 | 0 | { |
279 | 0 | size_t i; |
280 | 0 | const ssl_cipher_table *t; |
281 | 0 | EVP_KEYEXCH *kex = NULL; |
282 | 0 | EVP_SIGNATURE *sig = NULL; |
283 | |
|
284 | 0 | ctx->disabled_enc_mask = 0; |
285 | 0 | for (i = 0, t = ssl_cipher_table_cipher; i < SSL_ENC_NUM_IDX; i++, t++) { |
286 | 0 | if (t->nid != NID_undef) { |
287 | 0 | const EVP_CIPHER *cipher = ssl_evp_cipher_fetch(ctx->libctx, |
288 | 0 | OBJ_nid2sn(t->nid), |
289 | 0 | ctx->propq); |
290 | |
|
291 | 0 | ctx->ssl_cipher_methods[i] = cipher; |
292 | 0 | if (cipher == NULL) |
293 | 0 | ctx->disabled_enc_mask |= t->mask; |
294 | 0 | } |
295 | 0 | } |
296 | 0 | ctx->disabled_mac_mask = 0; |
297 | 0 | for (i = 0, t = ssl_cipher_table_mac; i < SSL_MD_NUM_IDX; i++, t++) { |
298 | | /* |
299 | | * We ignore any errors from the fetch below. It is expected to fail |
300 | | * if these algorithms are not available. |
301 | | */ |
302 | 0 | ERR_set_mark(); |
303 | 0 | const EVP_MD *md = EVP_MD_fetch(ctx->libctx, |
304 | 0 | OBJ_nid2sn(t->nid), |
305 | 0 | ctx->propq); |
306 | 0 | ERR_pop_to_mark(); |
307 | |
|
308 | 0 | ctx->ssl_digest_methods[i] = md; |
309 | 0 | if (md == NULL) { |
310 | 0 | ctx->disabled_mac_mask |= t->mask; |
311 | 0 | } else { |
312 | 0 | int tmpsize = EVP_MD_get_size(md); |
313 | |
|
314 | 0 | if (!ossl_assert(tmpsize > 0)) |
315 | 0 | return 0; |
316 | 0 | ctx->ssl_mac_secret_size[i] = tmpsize; |
317 | 0 | } |
318 | 0 | } |
319 | | |
320 | 0 | ctx->disabled_mkey_mask = 0; |
321 | 0 | ctx->disabled_auth_mask = 0; |
322 | | |
323 | | /* |
324 | | * We ignore any errors from the fetches below. They are expected to fail |
325 | | * if these algorithms are not available. |
326 | | */ |
327 | 0 | ERR_set_mark(); |
328 | 0 | sig = EVP_SIGNATURE_fetch(ctx->libctx, "DSA", ctx->propq); |
329 | 0 | if (sig == NULL) |
330 | 0 | ctx->disabled_auth_mask |= SSL_aDSS; |
331 | 0 | else |
332 | 0 | EVP_SIGNATURE_free(sig); |
333 | 0 | kex = EVP_KEYEXCH_fetch(ctx->libctx, "DH", ctx->propq); |
334 | 0 | if (kex == NULL) |
335 | 0 | ctx->disabled_mkey_mask |= SSL_kDHE | SSL_kDHEPSK; |
336 | 0 | else |
337 | 0 | EVP_KEYEXCH_free(kex); |
338 | 0 | kex = EVP_KEYEXCH_fetch(ctx->libctx, "ECDH", ctx->propq); |
339 | 0 | if (kex == NULL) |
340 | 0 | ctx->disabled_mkey_mask |= SSL_kECDHE | SSL_kECDHEPSK; |
341 | 0 | else |
342 | 0 | EVP_KEYEXCH_free(kex); |
343 | 0 | sig = EVP_SIGNATURE_fetch(ctx->libctx, "ECDSA", ctx->propq); |
344 | 0 | if (sig == NULL) |
345 | 0 | ctx->disabled_auth_mask |= SSL_aECDSA; |
346 | 0 | else |
347 | 0 | EVP_SIGNATURE_free(sig); |
348 | 0 | ERR_pop_to_mark(); |
349 | |
|
350 | | #ifdef OPENSSL_NO_PSK |
351 | | ctx->disabled_mkey_mask |= SSL_PSK; |
352 | | ctx->disabled_auth_mask |= SSL_aPSK; |
353 | | #endif |
354 | | #ifdef OPENSSL_NO_SRP |
355 | | ctx->disabled_mkey_mask |= SSL_kSRP; |
356 | | #endif |
357 | | |
358 | | /* |
359 | | * Check for presence of GOST 34.10 algorithms, and if they are not |
360 | | * present, disable appropriate auth and key exchange |
361 | | */ |
362 | 0 | memcpy(ctx->ssl_mac_pkey_id, default_mac_pkey_id, |
363 | 0 | sizeof(ctx->ssl_mac_pkey_id)); |
364 | |
|
365 | 0 | ctx->ssl_mac_pkey_id[SSL_MD_GOST89MAC_IDX] = 0; |
366 | 0 | if (ctx->ssl_mac_pkey_id[SSL_MD_GOST89MAC_IDX]) |
367 | 0 | ctx->ssl_mac_secret_size[SSL_MD_GOST89MAC_IDX] = 32; |
368 | 0 | else |
369 | 0 | ctx->disabled_mac_mask |= SSL_GOST89MAC; |
370 | |
|
371 | 0 | ctx->ssl_mac_pkey_id[SSL_MD_GOST89MAC12_IDX] = 0; |
372 | 0 | if (ctx->ssl_mac_pkey_id[SSL_MD_GOST89MAC12_IDX]) |
373 | 0 | ctx->ssl_mac_secret_size[SSL_MD_GOST89MAC12_IDX] = 32; |
374 | 0 | else |
375 | 0 | ctx->disabled_mac_mask |= SSL_GOST89MAC12; |
376 | |
|
377 | 0 | ctx->ssl_mac_pkey_id[SSL_MD_MAGMAOMAC_IDX] = 0; |
378 | 0 | if (ctx->ssl_mac_pkey_id[SSL_MD_MAGMAOMAC_IDX]) |
379 | 0 | ctx->ssl_mac_secret_size[SSL_MD_MAGMAOMAC_IDX] = 32; |
380 | 0 | else |
381 | 0 | ctx->disabled_mac_mask |= SSL_MAGMAOMAC; |
382 | |
|
383 | 0 | ctx->ssl_mac_pkey_id[SSL_MD_KUZNYECHIKOMAC_IDX] = 0; |
384 | 0 | if (ctx->ssl_mac_pkey_id[SSL_MD_KUZNYECHIKOMAC_IDX]) |
385 | 0 | ctx->ssl_mac_secret_size[SSL_MD_KUZNYECHIKOMAC_IDX] = 32; |
386 | 0 | else |
387 | 0 | ctx->disabled_mac_mask |= SSL_KUZNYECHIKOMAC; |
388 | |
|
389 | 0 | ctx->disabled_auth_mask |= SSL_aGOST01 | SSL_aGOST12; |
390 | 0 | ctx->disabled_auth_mask |= SSL_aGOST12; |
391 | 0 | ctx->disabled_auth_mask |= SSL_aGOST12; |
392 | | /* |
393 | | * Disable GOST key exchange if no GOST signature algs are available * |
394 | | */ |
395 | 0 | if ((ctx->disabled_auth_mask & (SSL_aGOST01 | SSL_aGOST12)) == (SSL_aGOST01 | SSL_aGOST12)) |
396 | 0 | ctx->disabled_mkey_mask |= SSL_kGOST; |
397 | |
|
398 | 0 | if ((ctx->disabled_auth_mask & SSL_aGOST12) == SSL_aGOST12) |
399 | 0 | ctx->disabled_mkey_mask |= SSL_kGOST18; |
400 | |
|
401 | 0 | return 1; |
402 | 0 | } |
403 | | |
404 | | int ssl_cipher_get_evp_cipher(SSL_CTX *ctx, const SSL_CIPHER *sslc, |
405 | | const EVP_CIPHER **enc) |
406 | 0 | { |
407 | 0 | int i = ssl_cipher_info_lookup(ssl_cipher_table_cipher, |
408 | 0 | sslc->algorithm_enc); |
409 | |
|
410 | 0 | if (i == -1) { |
411 | 0 | *enc = NULL; |
412 | 0 | } else { |
413 | 0 | if (i == SSL_ENC_NULL_IDX) { |
414 | | /* |
415 | | * This does not need any special handling. Use EVP_CIPHER_fetch() |
416 | | * directly. |
417 | | */ |
418 | 0 | *enc = EVP_CIPHER_fetch(ctx->libctx, "NULL", ctx->propq); |
419 | 0 | if (*enc == NULL) |
420 | 0 | return 0; |
421 | 0 | } else { |
422 | 0 | const EVP_CIPHER *cipher = ctx->ssl_cipher_methods[i]; |
423 | |
|
424 | 0 | if (cipher == NULL |
425 | 0 | || !ssl_evp_cipher_up_ref(cipher)) |
426 | 0 | return 0; |
427 | 0 | *enc = ctx->ssl_cipher_methods[i]; |
428 | 0 | } |
429 | 0 | } |
430 | 0 | return 1; |
431 | 0 | } |
432 | | |
433 | | int ssl_cipher_get_evp_md_mac(SSL_CTX *ctx, const SSL_CIPHER *sslc, |
434 | | const EVP_MD **md, |
435 | | int *mac_pkey_type, size_t *mac_secret_size) |
436 | 0 | { |
437 | 0 | int i = ssl_cipher_info_lookup(ssl_cipher_table_mac, sslc->algorithm_mac); |
438 | |
|
439 | 0 | if (i == -1) { |
440 | 0 | *md = NULL; |
441 | 0 | if (mac_pkey_type != NULL) |
442 | 0 | *mac_pkey_type = NID_undef; |
443 | 0 | if (mac_secret_size != NULL) |
444 | 0 | *mac_secret_size = 0; |
445 | 0 | } else { |
446 | 0 | const EVP_MD *digest = ctx->ssl_digest_methods[i]; |
447 | |
|
448 | 0 | if (digest == NULL || !ssl_evp_md_up_ref(digest)) |
449 | 0 | return 0; |
450 | | |
451 | 0 | *md = digest; |
452 | 0 | if (mac_pkey_type != NULL) |
453 | 0 | *mac_pkey_type = ctx->ssl_mac_pkey_id[i]; |
454 | 0 | if (mac_secret_size != NULL) |
455 | 0 | *mac_secret_size = ctx->ssl_mac_secret_size[i]; |
456 | 0 | } |
457 | 0 | return 1; |
458 | 0 | } |
459 | | |
460 | | int ssl_cipher_get_evp_cipher_sn(SSL_CTX *ctx, const SSL_CIPHER *sslc, |
461 | | const EVP_CIPHER **enc) |
462 | 0 | { |
463 | 0 | int i = ssl_cipher_info_lookup(ssl_cipher_table_cipher, sslc->algorithm_enc); |
464 | |
|
465 | 0 | if (i == -1) { |
466 | 0 | *enc = NULL; |
467 | 0 | } else { |
468 | 0 | if (i == SSL_ENC_NULL_IDX) { |
469 | | /* |
470 | | * We assume we don't care about this coming from an ENGINE so |
471 | | * just do a normal EVP_CIPHER_fetch instead of |
472 | | * ssl_evp_cipher_fetch() |
473 | | */ |
474 | 0 | *enc = EVP_CIPHER_fetch(ctx->libctx, "NULL", ctx->propq); |
475 | 0 | } else { |
476 | 0 | int ecbnid = NID_undef; |
477 | |
|
478 | 0 | *enc = NULL; |
479 | |
|
480 | 0 | if ((sslc->algorithm_enc & SSL_AES128_ANY) != 0) |
481 | 0 | ecbnid = NID_aes_128_ecb; |
482 | 0 | else if ((sslc->algorithm_enc & SSL_AES256_ANY) != 0) |
483 | 0 | ecbnid = NID_aes_256_ecb; |
484 | 0 | else if (ossl_assert((sslc->algorithm_enc & SSL_CHACHA20) != 0)) |
485 | 0 | ecbnid = NID_chacha20; |
486 | |
|
487 | 0 | if (ecbnid != NID_undef) |
488 | 0 | *enc = ssl_evp_cipher_fetch(ctx->libctx, OBJ_nid2sn(ecbnid), ctx->propq); |
489 | 0 | } |
490 | |
|
491 | 0 | if (*enc == NULL) |
492 | 0 | return 0; |
493 | 0 | } |
494 | 0 | return 1; |
495 | 0 | } |
496 | | |
497 | | int ssl_cipher_get_evp(SSL_CTX *ctx, const SSL_SESSION *s, |
498 | | const EVP_CIPHER **snenc, |
499 | | const EVP_CIPHER **enc, |
500 | | const EVP_MD **md, |
501 | | int *mac_pkey_type, size_t *mac_secret_size, |
502 | | SSL_COMP **comp, int use_etm) |
503 | 0 | { |
504 | 0 | int i; |
505 | 0 | const SSL_CIPHER *c; |
506 | |
|
507 | 0 | c = s->cipher; |
508 | 0 | if (c == NULL) |
509 | 0 | return 0; |
510 | 0 | if (comp != NULL) { |
511 | 0 | SSL_COMP ctmp; |
512 | 0 | STACK_OF(SSL_COMP) *comp_methods; |
513 | |
|
514 | 0 | *comp = NULL; |
515 | 0 | ctmp.id = s->compress_meth; |
516 | 0 | comp_methods = SSL_COMP_get_compression_methods(); |
517 | 0 | if (comp_methods != NULL) { |
518 | 0 | i = sk_SSL_COMP_find(comp_methods, &ctmp); |
519 | 0 | if (i >= 0) |
520 | 0 | *comp = sk_SSL_COMP_value(comp_methods, i); |
521 | 0 | } |
522 | | /* If were only interested in comp then return success */ |
523 | 0 | if ((enc == NULL) && (md == NULL)) |
524 | 0 | return 1; |
525 | 0 | } |
526 | | |
527 | 0 | if ((enc == NULL) || (md == NULL)) |
528 | 0 | return 0; |
529 | | |
530 | 0 | if (!ssl_cipher_get_evp_cipher(ctx, c, enc) |
531 | 0 | || (snenc != NULL |
532 | 0 | && !ssl_cipher_get_evp_cipher_sn(ctx, c, snenc))) |
533 | 0 | return 0; |
534 | | |
535 | 0 | if (!ssl_cipher_get_evp_md_mac(ctx, c, md, mac_pkey_type, |
536 | 0 | mac_secret_size)) { |
537 | 0 | ssl_evp_cipher_free(*enc); |
538 | |
|
539 | 0 | if (snenc != NULL) |
540 | 0 | ssl_evp_cipher_free(*snenc); |
541 | |
|
542 | 0 | return 0; |
543 | 0 | } |
544 | | |
545 | 0 | if ((*enc != NULL) |
546 | 0 | && (*md != NULL |
547 | 0 | || (EVP_CIPHER_get_flags(*enc) & EVP_CIPH_FLAG_AEAD_CIPHER)) |
548 | 0 | && (c->algorithm_mac == SSL_AEAD |
549 | 0 | || mac_pkey_type == NULL || *mac_pkey_type != NID_undef)) { |
550 | 0 | const EVP_CIPHER *evp = NULL; |
551 | |
|
552 | 0 | if (use_etm |
553 | 0 | || s->ssl_version >> 8 != TLS1_VERSION_MAJOR |
554 | 0 | || s->ssl_version < TLS1_VERSION) |
555 | 0 | return 1; |
556 | | |
557 | 0 | if (c->algorithm_enc == SSL_RC4 |
558 | 0 | && c->algorithm_mac == SSL_MD5) |
559 | 0 | evp = ssl_evp_cipher_fetch(ctx->libctx, |
560 | 0 | "RC4-HMAC-MD5", |
561 | 0 | ctx->propq); |
562 | 0 | else if (c->algorithm_enc == SSL_AES128 |
563 | 0 | && c->algorithm_mac == SSL_SHA1) |
564 | 0 | evp = ssl_evp_cipher_fetch(ctx->libctx, |
565 | 0 | "AES-128-CBC-HMAC-SHA1", |
566 | 0 | ctx->propq); |
567 | 0 | else if (c->algorithm_enc == SSL_AES256 |
568 | 0 | && c->algorithm_mac == SSL_SHA1) |
569 | 0 | evp = ssl_evp_cipher_fetch(ctx->libctx, |
570 | 0 | "AES-256-CBC-HMAC-SHA1", |
571 | 0 | ctx->propq); |
572 | 0 | else if (c->algorithm_enc == SSL_AES128 |
573 | 0 | && c->algorithm_mac == SSL_SHA256) |
574 | 0 | evp = ssl_evp_cipher_fetch(ctx->libctx, |
575 | 0 | "AES-128-CBC-HMAC-SHA256", |
576 | 0 | ctx->propq); |
577 | 0 | else if (c->algorithm_enc == SSL_AES256 |
578 | 0 | && c->algorithm_mac == SSL_SHA256) |
579 | 0 | evp = ssl_evp_cipher_fetch(ctx->libctx, |
580 | 0 | "AES-256-CBC-HMAC-SHA256", |
581 | 0 | ctx->propq); |
582 | |
|
583 | 0 | if (evp != NULL) { |
584 | 0 | ssl_evp_cipher_free(*enc); |
585 | 0 | ssl_evp_md_free(*md); |
586 | 0 | *enc = evp; |
587 | 0 | *md = NULL; |
588 | 0 | } |
589 | 0 | return 1; |
590 | 0 | } |
591 | | |
592 | 0 | return 0; |
593 | 0 | } |
594 | | |
595 | | const EVP_MD *ssl_md(SSL_CTX *ctx, int idx) |
596 | 0 | { |
597 | 0 | idx &= SSL_HANDSHAKE_MAC_MASK; |
598 | 0 | if (idx < 0 || idx >= SSL_MD_NUM_IDX) |
599 | 0 | return NULL; |
600 | 0 | return ctx->ssl_digest_methods[idx]; |
601 | 0 | } |
602 | | |
603 | | const EVP_MD *ssl_handshake_md(SSL_CONNECTION *s) |
604 | 0 | { |
605 | 0 | return ssl_md(SSL_CONNECTION_GET_CTX(s), ssl_get_algorithm2(s)); |
606 | 0 | } |
607 | | |
608 | | const EVP_MD *ssl_prf_md(SSL_CONNECTION *s) |
609 | 0 | { |
610 | 0 | return ssl_md(SSL_CONNECTION_GET_CTX(s), |
611 | 0 | ssl_get_algorithm2(s) >> TLS1_PRF_DGST_SHIFT); |
612 | 0 | } |
613 | | |
614 | | #define ITEM_SEP(a) \ |
615 | 0 | (((a) == ':') || ((a) == ' ') || ((a) == ';') || ((a) == ',')) |
616 | | |
617 | | static void ll_append_tail(CIPHER_ORDER **head, CIPHER_ORDER *curr, |
618 | | CIPHER_ORDER **tail) |
619 | 0 | { |
620 | 0 | if (curr == *tail) |
621 | 0 | return; |
622 | 0 | if (curr == *head) |
623 | 0 | *head = curr->next; |
624 | 0 | if (curr->prev != NULL) |
625 | 0 | curr->prev->next = curr->next; |
626 | 0 | if (curr->next != NULL) |
627 | 0 | curr->next->prev = curr->prev; |
628 | 0 | (*tail)->next = curr; |
629 | 0 | curr->prev = *tail; |
630 | 0 | curr->next = NULL; |
631 | 0 | *tail = curr; |
632 | 0 | } |
633 | | |
634 | | static void ll_append_head(CIPHER_ORDER **head, CIPHER_ORDER *curr, |
635 | | CIPHER_ORDER **tail) |
636 | 0 | { |
637 | 0 | if (curr == *head) |
638 | 0 | return; |
639 | 0 | if (curr == *tail) |
640 | 0 | *tail = curr->prev; |
641 | 0 | if (curr->next != NULL) |
642 | 0 | curr->next->prev = curr->prev; |
643 | 0 | if (curr->prev != NULL) |
644 | 0 | curr->prev->next = curr->next; |
645 | 0 | (*head)->prev = curr; |
646 | 0 | curr->next = *head; |
647 | 0 | curr->prev = NULL; |
648 | 0 | *head = curr; |
649 | 0 | } |
650 | | |
651 | | static void ssl_cipher_collect_ciphers(const SSL_METHOD *ssl_method, |
652 | | int num_of_ciphers, |
653 | | uint32_t disabled_mkey, |
654 | | uint32_t disabled_auth, |
655 | | uint32_t disabled_enc, |
656 | | uint32_t disabled_mac, |
657 | | CIPHER_ORDER *co_list, |
658 | | CIPHER_ORDER **head_p, |
659 | | CIPHER_ORDER **tail_p) |
660 | 0 | { |
661 | 0 | int i, co_list_num; |
662 | 0 | const SSL_CIPHER *c; |
663 | | |
664 | | /* |
665 | | * We have num_of_ciphers descriptions compiled in, depending on the |
666 | | * method selected (TLSv1, etc.). |
667 | | * These will later be sorted in a linked list with at most num |
668 | | * entries. |
669 | | */ |
670 | | |
671 | | /* Get the initial list of ciphers */ |
672 | 0 | co_list_num = 0; /* actual count of ciphers */ |
673 | 0 | for (i = 0; i < num_of_ciphers; i++) { |
674 | 0 | c = ssl_method->get_cipher(i); |
675 | | /* drop those that use any of that is not available */ |
676 | 0 | if (c == NULL || !c->valid) |
677 | 0 | continue; |
678 | 0 | if ((c->algorithm_mkey & disabled_mkey) || (c->algorithm_auth & disabled_auth) || (c->algorithm_enc & disabled_enc) || (c->algorithm_mac & disabled_mac)) |
679 | 0 | continue; |
680 | 0 | if (((ssl_method->ssl3_enc->enc_flags & SSL_ENC_FLAG_DTLS) == 0) && c->min_tls == 0) |
681 | 0 | continue; |
682 | 0 | if (((ssl_method->ssl3_enc->enc_flags & SSL_ENC_FLAG_DTLS) != 0) && c->min_dtls == 0) |
683 | 0 | continue; |
684 | | |
685 | 0 | co_list[co_list_num].cipher = c; |
686 | 0 | co_list[co_list_num].next = NULL; |
687 | 0 | co_list[co_list_num].prev = NULL; |
688 | 0 | co_list[co_list_num].active = 0; |
689 | 0 | co_list_num++; |
690 | 0 | } |
691 | | |
692 | | /* |
693 | | * Prepare linked list from list entries |
694 | | */ |
695 | 0 | if (co_list_num > 0) { |
696 | 0 | co_list[0].prev = NULL; |
697 | |
|
698 | 0 | if (co_list_num > 1) { |
699 | 0 | co_list[0].next = &co_list[1]; |
700 | |
|
701 | 0 | for (i = 1; i < co_list_num - 1; i++) { |
702 | 0 | co_list[i].prev = &co_list[i - 1]; |
703 | 0 | co_list[i].next = &co_list[i + 1]; |
704 | 0 | } |
705 | |
|
706 | 0 | co_list[co_list_num - 1].prev = &co_list[co_list_num - 2]; |
707 | 0 | } |
708 | |
|
709 | 0 | co_list[co_list_num - 1].next = NULL; |
710 | |
|
711 | 0 | *head_p = &co_list[0]; |
712 | 0 | *tail_p = &co_list[co_list_num - 1]; |
713 | 0 | } |
714 | 0 | } |
715 | | |
716 | | static void ssl_cipher_collect_aliases(const SSL_CIPHER **ca_list, |
717 | | int num_of_group_aliases, |
718 | | uint32_t disabled_mkey, |
719 | | uint32_t disabled_auth, |
720 | | uint32_t disabled_enc, |
721 | | uint32_t disabled_mac, |
722 | | CIPHER_ORDER *head) |
723 | 0 | { |
724 | 0 | CIPHER_ORDER *ciph_curr; |
725 | 0 | const SSL_CIPHER **ca_curr; |
726 | 0 | int i; |
727 | 0 | uint32_t mask_mkey = ~disabled_mkey; |
728 | 0 | uint32_t mask_auth = ~disabled_auth; |
729 | 0 | uint32_t mask_enc = ~disabled_enc; |
730 | 0 | uint32_t mask_mac = ~disabled_mac; |
731 | | |
732 | | /* |
733 | | * First, add the real ciphers as already collected |
734 | | */ |
735 | 0 | ciph_curr = head; |
736 | 0 | ca_curr = ca_list; |
737 | 0 | while (ciph_curr != NULL) { |
738 | 0 | *ca_curr = ciph_curr->cipher; |
739 | 0 | ca_curr++; |
740 | 0 | ciph_curr = ciph_curr->next; |
741 | 0 | } |
742 | | |
743 | | /* |
744 | | * Now we add the available ones from the cipher_aliases[] table. |
745 | | * They represent either one or more algorithms, some of which |
746 | | * in any affected category must be supported (set in enabled_mask), |
747 | | * or represent a cipher strength value (will be added in any case because algorithms=0). |
748 | | */ |
749 | 0 | for (i = 0; i < num_of_group_aliases; i++) { |
750 | 0 | uint32_t algorithm_mkey = cipher_aliases[i].algorithm_mkey; |
751 | 0 | uint32_t algorithm_auth = cipher_aliases[i].algorithm_auth; |
752 | 0 | uint32_t algorithm_enc = cipher_aliases[i].algorithm_enc; |
753 | 0 | uint32_t algorithm_mac = cipher_aliases[i].algorithm_mac; |
754 | |
|
755 | 0 | if (algorithm_mkey) |
756 | 0 | if ((algorithm_mkey & mask_mkey) == 0) |
757 | 0 | continue; |
758 | | |
759 | 0 | if (algorithm_auth) |
760 | 0 | if ((algorithm_auth & mask_auth) == 0) |
761 | 0 | continue; |
762 | | |
763 | 0 | if (algorithm_enc) |
764 | 0 | if ((algorithm_enc & mask_enc) == 0) |
765 | 0 | continue; |
766 | | |
767 | 0 | if (algorithm_mac) |
768 | 0 | if ((algorithm_mac & mask_mac) == 0) |
769 | 0 | continue; |
770 | | |
771 | 0 | *ca_curr = (SSL_CIPHER *)(cipher_aliases + i); |
772 | 0 | ca_curr++; |
773 | 0 | } |
774 | |
|
775 | 0 | *ca_curr = NULL; /* end of list */ |
776 | 0 | } |
777 | | |
778 | | static void ssl_cipher_apply_rule(uint32_t cipher_id, uint32_t alg_mkey, |
779 | | uint32_t alg_auth, uint32_t alg_enc, |
780 | | uint32_t alg_mac, int min_tls, |
781 | | uint32_t algo_strength, int rule, |
782 | | int32_t strength_bits, CIPHER_ORDER **head_p, |
783 | | CIPHER_ORDER **tail_p) |
784 | 0 | { |
785 | 0 | CIPHER_ORDER *head, *tail, *curr, *next, *last; |
786 | 0 | const SSL_CIPHER *cp; |
787 | 0 | int reverse = 0; |
788 | |
|
789 | 0 | OSSL_TRACE_BEGIN(TLS_CIPHER) |
790 | 0 | { |
791 | 0 | BIO_printf(trc_out, |
792 | 0 | "Applying rule %d with %08x/%08x/%08x/%08x/%08x %08x (%d)\n", |
793 | 0 | rule, (unsigned int)alg_mkey, (unsigned int)alg_auth, |
794 | 0 | (unsigned int)alg_enc, (unsigned int)alg_mac, min_tls, |
795 | 0 | (unsigned int)algo_strength, (int)strength_bits); |
796 | 0 | } |
797 | |
|
798 | 0 | if (rule == CIPHER_DEL || rule == CIPHER_BUMP) |
799 | 0 | reverse = 1; /* needed to maintain sorting between currently |
800 | | * deleted ciphers */ |
801 | |
|
802 | 0 | head = *head_p; |
803 | 0 | tail = *tail_p; |
804 | |
|
805 | 0 | if (reverse) { |
806 | 0 | next = tail; |
807 | 0 | last = head; |
808 | 0 | } else { |
809 | 0 | next = head; |
810 | 0 | last = tail; |
811 | 0 | } |
812 | |
|
813 | 0 | curr = NULL; |
814 | 0 | for (;;) { |
815 | 0 | if (curr == last) |
816 | 0 | break; |
817 | | |
818 | 0 | curr = next; |
819 | |
|
820 | 0 | if (curr == NULL) |
821 | 0 | break; |
822 | | |
823 | 0 | next = reverse ? curr->prev : curr->next; |
824 | |
|
825 | 0 | cp = curr->cipher; |
826 | | |
827 | | /* |
828 | | * Selection criteria is either the value of strength_bits |
829 | | * or the algorithms used. |
830 | | */ |
831 | 0 | if (strength_bits >= 0) { |
832 | 0 | if (strength_bits != cp->strength_bits) |
833 | 0 | continue; |
834 | 0 | } else { |
835 | 0 | if (trc_out != NULL) { |
836 | 0 | BIO_printf(trc_out, |
837 | 0 | "\nName: %s:" |
838 | 0 | "\nAlgo = %08x/%08x/%08x/%08x/%08x Algo_strength = %08x\n", |
839 | 0 | cp->name, |
840 | 0 | (unsigned int)cp->algorithm_mkey, |
841 | 0 | (unsigned int)cp->algorithm_auth, |
842 | 0 | (unsigned int)cp->algorithm_enc, |
843 | 0 | (unsigned int)cp->algorithm_mac, |
844 | 0 | cp->min_tls, |
845 | 0 | (unsigned int)cp->algo_strength); |
846 | 0 | } |
847 | 0 | if (cipher_id != 0 && (cipher_id != cp->id)) |
848 | 0 | continue; |
849 | 0 | if (alg_mkey && !(alg_mkey & cp->algorithm_mkey)) |
850 | 0 | continue; |
851 | 0 | if (alg_auth && !(alg_auth & cp->algorithm_auth)) |
852 | 0 | continue; |
853 | 0 | if (alg_enc && !(alg_enc & cp->algorithm_enc)) |
854 | 0 | continue; |
855 | 0 | if (alg_mac && !(alg_mac & cp->algorithm_mac)) |
856 | 0 | continue; |
857 | 0 | if (min_tls && (min_tls != cp->min_tls)) |
858 | 0 | continue; |
859 | 0 | if ((algo_strength & SSL_STRONG_MASK) |
860 | 0 | && !(algo_strength & SSL_STRONG_MASK & cp->algo_strength)) |
861 | 0 | continue; |
862 | 0 | if ((algo_strength & SSL_DEFAULT_MASK) |
863 | 0 | && !(algo_strength & SSL_DEFAULT_MASK & cp->algo_strength)) |
864 | 0 | continue; |
865 | 0 | } |
866 | | |
867 | 0 | if (trc_out != NULL) |
868 | 0 | BIO_printf(trc_out, "Action = %d\n", rule); |
869 | | |
870 | | /* add the cipher if it has not been added yet. */ |
871 | 0 | if (rule == CIPHER_ADD) { |
872 | | /* reverse == 0 */ |
873 | 0 | if (!curr->active) { |
874 | 0 | ll_append_tail(&head, curr, &tail); |
875 | 0 | curr->active = 1; |
876 | 0 | } |
877 | 0 | } |
878 | | /* Move the added cipher to this location */ |
879 | 0 | else if (rule == CIPHER_ORD) { |
880 | | /* reverse == 0 */ |
881 | 0 | if (curr->active) { |
882 | 0 | ll_append_tail(&head, curr, &tail); |
883 | 0 | } |
884 | 0 | } else if (rule == CIPHER_DEL) { |
885 | | /* reverse == 1 */ |
886 | 0 | if (curr->active) { |
887 | | /* |
888 | | * most recently deleted ciphersuites get best positions for |
889 | | * any future CIPHER_ADD (note that the CIPHER_DEL loop works |
890 | | * in reverse to maintain the order) |
891 | | */ |
892 | 0 | ll_append_head(&head, curr, &tail); |
893 | 0 | curr->active = 0; |
894 | 0 | } |
895 | 0 | } else if (rule == CIPHER_BUMP) { |
896 | 0 | if (curr->active) |
897 | 0 | ll_append_head(&head, curr, &tail); |
898 | 0 | } else if (rule == CIPHER_KILL) { |
899 | | /* reverse == 0 */ |
900 | 0 | if (head == curr) |
901 | 0 | head = curr->next; |
902 | 0 | else |
903 | 0 | curr->prev->next = curr->next; |
904 | 0 | if (tail == curr) |
905 | 0 | tail = curr->prev; |
906 | 0 | curr->active = 0; |
907 | 0 | if (curr->next != NULL) |
908 | 0 | curr->next->prev = curr->prev; |
909 | 0 | if (curr->prev != NULL) |
910 | 0 | curr->prev->next = curr->next; |
911 | 0 | curr->next = NULL; |
912 | 0 | curr->prev = NULL; |
913 | 0 | } |
914 | 0 | } |
915 | |
|
916 | 0 | *head_p = head; |
917 | 0 | *tail_p = tail; |
918 | |
|
919 | 0 | OSSL_TRACE_END(TLS_CIPHER); |
920 | 0 | } |
921 | | |
922 | | static int ssl_cipher_strength_sort(CIPHER_ORDER **head_p, |
923 | | CIPHER_ORDER **tail_p) |
924 | 0 | { |
925 | 0 | int32_t max_strength_bits; |
926 | 0 | int i, *number_uses; |
927 | 0 | CIPHER_ORDER *curr; |
928 | | |
929 | | /* |
930 | | * This routine sorts the ciphers with descending strength. The sorting |
931 | | * must keep the pre-sorted sequence, so we apply the normal sorting |
932 | | * routine as '+' movement to the end of the list. |
933 | | */ |
934 | 0 | max_strength_bits = 0; |
935 | 0 | curr = *head_p; |
936 | 0 | while (curr != NULL) { |
937 | 0 | if (curr->active && (curr->cipher->strength_bits > max_strength_bits)) |
938 | 0 | max_strength_bits = curr->cipher->strength_bits; |
939 | 0 | curr = curr->next; |
940 | 0 | } |
941 | |
|
942 | 0 | number_uses = OPENSSL_calloc(max_strength_bits + 1, sizeof(int)); |
943 | 0 | if (number_uses == NULL) |
944 | 0 | return 0; |
945 | | |
946 | | /* |
947 | | * Now find the strength_bits values actually used |
948 | | */ |
949 | 0 | curr = *head_p; |
950 | 0 | while (curr != NULL) { |
951 | 0 | if (curr->active) |
952 | 0 | number_uses[curr->cipher->strength_bits]++; |
953 | 0 | curr = curr->next; |
954 | 0 | } |
955 | | /* |
956 | | * Go through the list of used strength_bits values in descending |
957 | | * order. |
958 | | */ |
959 | 0 | for (i = max_strength_bits; i >= 0; i--) |
960 | 0 | if (number_uses[i] > 0) |
961 | 0 | ssl_cipher_apply_rule(0, 0, 0, 0, 0, 0, 0, CIPHER_ORD, i, head_p, |
962 | 0 | tail_p); |
963 | |
|
964 | 0 | OPENSSL_free(number_uses); |
965 | 0 | return 1; |
966 | 0 | } |
967 | | |
968 | | static int ssl_cipher_process_rulestr(const char *rule_str, |
969 | | CIPHER_ORDER **head_p, |
970 | | CIPHER_ORDER **tail_p, |
971 | | const SSL_CIPHER **ca_list, CERT *c) |
972 | 0 | { |
973 | 0 | uint32_t alg_mkey, alg_auth, alg_enc, alg_mac, algo_strength; |
974 | 0 | int min_tls; |
975 | 0 | const char *l, *buf; |
976 | 0 | int j, multi, found, rule, retval, ok, buflen; |
977 | 0 | uint32_t cipher_id = 0; |
978 | 0 | char ch; |
979 | |
|
980 | 0 | retval = 1; |
981 | 0 | l = rule_str; |
982 | 0 | for (;;) { |
983 | 0 | ch = *l; |
984 | |
|
985 | 0 | if (ch == '\0') |
986 | 0 | break; /* done */ |
987 | 0 | if (ch == '-') { |
988 | 0 | rule = CIPHER_DEL; |
989 | 0 | l++; |
990 | 0 | } else if (ch == '+') { |
991 | 0 | rule = CIPHER_ORD; |
992 | 0 | l++; |
993 | 0 | } else if (ch == '!') { |
994 | 0 | rule = CIPHER_KILL; |
995 | 0 | l++; |
996 | 0 | } else if (ch == '@') { |
997 | 0 | rule = CIPHER_SPECIAL; |
998 | 0 | l++; |
999 | 0 | } else { |
1000 | 0 | rule = CIPHER_ADD; |
1001 | 0 | } |
1002 | |
|
1003 | 0 | if (ITEM_SEP(ch)) { |
1004 | 0 | l++; |
1005 | 0 | continue; |
1006 | 0 | } |
1007 | | |
1008 | 0 | alg_mkey = 0; |
1009 | 0 | alg_auth = 0; |
1010 | 0 | alg_enc = 0; |
1011 | 0 | alg_mac = 0; |
1012 | 0 | min_tls = 0; |
1013 | 0 | algo_strength = 0; |
1014 | |
|
1015 | 0 | for (;;) { |
1016 | 0 | ch = *l; |
1017 | 0 | buf = l; |
1018 | 0 | buflen = 0; |
1019 | 0 | #ifndef CHARSET_EBCDIC |
1020 | 0 | while (((ch >= 'A') && (ch <= 'Z')) || ((ch >= '0') && (ch <= '9')) || ((ch >= 'a') && (ch <= 'z')) || (ch == '-') || (ch == '_') || (ch == '.') || (ch == '=')) |
1021 | | #else |
1022 | | while (isalnum((unsigned char)ch) || (ch == '-') || (ch == '_') || (ch == '.') |
1023 | | || (ch == '=')) |
1024 | | #endif |
1025 | 0 | { |
1026 | 0 | ch = *(++l); |
1027 | 0 | buflen++; |
1028 | 0 | } |
1029 | |
|
1030 | 0 | if (buflen == 0) { |
1031 | | /* |
1032 | | * We hit something we cannot deal with, |
1033 | | * it is no command or separator nor |
1034 | | * alphanumeric, so we call this an error. |
1035 | | */ |
1036 | 0 | ERR_raise(ERR_LIB_SSL, SSL_R_INVALID_COMMAND); |
1037 | 0 | return 0; |
1038 | 0 | } |
1039 | | |
1040 | 0 | if (rule == CIPHER_SPECIAL) { |
1041 | 0 | found = 0; /* unused -- avoid compiler warning */ |
1042 | 0 | break; /* special treatment */ |
1043 | 0 | } |
1044 | | |
1045 | | /* check for multi-part specification */ |
1046 | 0 | if (ch == '+') { |
1047 | 0 | multi = 1; |
1048 | 0 | l++; |
1049 | 0 | } else { |
1050 | 0 | multi = 0; |
1051 | 0 | } |
1052 | | |
1053 | | /* |
1054 | | * Now search for the cipher alias in the ca_list. Be careful |
1055 | | * with the strncmp, because the "buflen" limitation |
1056 | | * will make the rule "ADH:SOME" and the cipher |
1057 | | * "ADH-MY-CIPHER" look like a match for buflen=3. |
1058 | | * So additionally check whether the cipher name found |
1059 | | * has the correct length. We can save a strlen() call: |
1060 | | * just checking for the '\0' at the right place is |
1061 | | * sufficient, we have to strncmp() anyway. (We cannot |
1062 | | * use strcasecmp(), because buf is not '\0' terminated.) |
1063 | | */ |
1064 | 0 | j = found = 0; |
1065 | 0 | cipher_id = 0; |
1066 | 0 | while (ca_list[j]) { |
1067 | 0 | if (OPENSSL_strncasecmp(buf, ca_list[j]->name, buflen) == 0 |
1068 | 0 | && (ca_list[j]->name[buflen] == '\0')) { |
1069 | 0 | found = 1; |
1070 | 0 | break; |
1071 | 0 | } else if (ca_list[j]->stdname != NULL |
1072 | 0 | && OPENSSL_strncasecmp(buf, ca_list[j]->stdname, buflen) == 0 |
1073 | 0 | && ca_list[j]->stdname[buflen] == '\0') { |
1074 | 0 | found = 1; |
1075 | 0 | break; |
1076 | 0 | } else |
1077 | 0 | j++; |
1078 | 0 | } |
1079 | |
|
1080 | 0 | if (!found) |
1081 | 0 | break; /* ignore this entry */ |
1082 | | |
1083 | 0 | if (ca_list[j]->algorithm_mkey) { |
1084 | 0 | if (alg_mkey) { |
1085 | 0 | alg_mkey &= ca_list[j]->algorithm_mkey; |
1086 | 0 | if (!alg_mkey) { |
1087 | 0 | found = 0; |
1088 | 0 | break; |
1089 | 0 | } |
1090 | 0 | } else { |
1091 | 0 | alg_mkey = ca_list[j]->algorithm_mkey; |
1092 | 0 | } |
1093 | 0 | } |
1094 | | |
1095 | 0 | if (ca_list[j]->algorithm_auth) { |
1096 | 0 | if (alg_auth) { |
1097 | 0 | alg_auth &= ca_list[j]->algorithm_auth; |
1098 | 0 | if (!alg_auth) { |
1099 | 0 | found = 0; |
1100 | 0 | break; |
1101 | 0 | } |
1102 | 0 | } else { |
1103 | 0 | alg_auth = ca_list[j]->algorithm_auth; |
1104 | 0 | } |
1105 | 0 | } |
1106 | | |
1107 | 0 | if (ca_list[j]->algorithm_enc) { |
1108 | 0 | if (alg_enc) { |
1109 | 0 | alg_enc &= ca_list[j]->algorithm_enc; |
1110 | 0 | if (!alg_enc) { |
1111 | 0 | found = 0; |
1112 | 0 | break; |
1113 | 0 | } |
1114 | 0 | } else { |
1115 | 0 | alg_enc = ca_list[j]->algorithm_enc; |
1116 | 0 | } |
1117 | 0 | } |
1118 | | |
1119 | 0 | if (ca_list[j]->algorithm_mac) { |
1120 | 0 | if (alg_mac) { |
1121 | 0 | alg_mac &= ca_list[j]->algorithm_mac; |
1122 | 0 | if (!alg_mac) { |
1123 | 0 | found = 0; |
1124 | 0 | break; |
1125 | 0 | } |
1126 | 0 | } else { |
1127 | 0 | alg_mac = ca_list[j]->algorithm_mac; |
1128 | 0 | } |
1129 | 0 | } |
1130 | | |
1131 | 0 | if (ca_list[j]->algo_strength & SSL_STRONG_MASK) { |
1132 | 0 | if (algo_strength & SSL_STRONG_MASK) { |
1133 | 0 | algo_strength &= (ca_list[j]->algo_strength & SSL_STRONG_MASK) | ~SSL_STRONG_MASK; |
1134 | 0 | if (!(algo_strength & SSL_STRONG_MASK)) { |
1135 | 0 | found = 0; |
1136 | 0 | break; |
1137 | 0 | } |
1138 | 0 | } else { |
1139 | 0 | algo_strength = ca_list[j]->algo_strength & SSL_STRONG_MASK; |
1140 | 0 | } |
1141 | 0 | } |
1142 | | |
1143 | 0 | if (ca_list[j]->algo_strength & SSL_DEFAULT_MASK) { |
1144 | 0 | if (algo_strength & SSL_DEFAULT_MASK) { |
1145 | 0 | algo_strength &= (ca_list[j]->algo_strength & SSL_DEFAULT_MASK) | ~SSL_DEFAULT_MASK; |
1146 | 0 | if (!(algo_strength & SSL_DEFAULT_MASK)) { |
1147 | 0 | found = 0; |
1148 | 0 | break; |
1149 | 0 | } |
1150 | 0 | } else { |
1151 | 0 | algo_strength |= ca_list[j]->algo_strength & SSL_DEFAULT_MASK; |
1152 | 0 | } |
1153 | 0 | } |
1154 | | |
1155 | 0 | if (ca_list[j]->valid) { |
1156 | | /* |
1157 | | * explicit ciphersuite found; its protocol version does not |
1158 | | * become part of the search pattern! |
1159 | | */ |
1160 | |
|
1161 | 0 | cipher_id = ca_list[j]->id; |
1162 | 0 | } else { |
1163 | | /* |
1164 | | * not an explicit ciphersuite; only in this case, the |
1165 | | * protocol version is considered part of the search pattern |
1166 | | */ |
1167 | |
|
1168 | 0 | if (ca_list[j]->min_tls) { |
1169 | 0 | if (min_tls != 0 && min_tls != ca_list[j]->min_tls) { |
1170 | 0 | found = 0; |
1171 | 0 | break; |
1172 | 0 | } else { |
1173 | 0 | min_tls = ca_list[j]->min_tls; |
1174 | 0 | } |
1175 | 0 | } |
1176 | 0 | } |
1177 | | |
1178 | 0 | if (!multi) |
1179 | 0 | break; |
1180 | 0 | } |
1181 | | |
1182 | | /* |
1183 | | * Ok, we have the rule, now apply it |
1184 | | */ |
1185 | 0 | if (rule == CIPHER_SPECIAL) { /* special command */ |
1186 | 0 | ok = 0; |
1187 | 0 | if ((buflen == 8) && HAS_CASE_PREFIX(buf, "STRENGTH")) { |
1188 | 0 | ok = ssl_cipher_strength_sort(head_p, tail_p); |
1189 | 0 | } else if (buflen == 10 |
1190 | 0 | && CHECK_AND_SKIP_CASE_PREFIX(buf, "SECLEVEL=")) { |
1191 | 0 | int level = *buf - '0'; |
1192 | 0 | if (level < 0 || level > 5) { |
1193 | 0 | ERR_raise(ERR_LIB_SSL, SSL_R_INVALID_COMMAND); |
1194 | 0 | } else { |
1195 | 0 | c->sec_level = level; |
1196 | 0 | ok = 1; |
1197 | 0 | } |
1198 | 0 | } else { |
1199 | 0 | ERR_raise(ERR_LIB_SSL, SSL_R_INVALID_COMMAND); |
1200 | 0 | } |
1201 | 0 | if (ok == 0) |
1202 | 0 | retval = 0; |
1203 | | /* |
1204 | | * We do not support any "multi" options |
1205 | | * together with "@", so throw away the |
1206 | | * rest of the command, if any left, until |
1207 | | * end or ':' is found. |
1208 | | */ |
1209 | 0 | while ((*l != '\0') && !ITEM_SEP(*l)) |
1210 | 0 | l++; |
1211 | 0 | } else if (found) { |
1212 | 0 | ssl_cipher_apply_rule(cipher_id, |
1213 | 0 | alg_mkey, alg_auth, alg_enc, alg_mac, |
1214 | 0 | min_tls, algo_strength, rule, -1, head_p, |
1215 | 0 | tail_p); |
1216 | 0 | } else { |
1217 | 0 | while ((*l != '\0') && !ITEM_SEP(*l)) |
1218 | 0 | l++; |
1219 | 0 | } |
1220 | 0 | if (*l == '\0') |
1221 | 0 | break; /* done */ |
1222 | 0 | } |
1223 | | |
1224 | 0 | return retval; |
1225 | 0 | } |
1226 | | |
1227 | | static int check_suiteb_cipher_list(const SSL_METHOD *meth, CERT *c, |
1228 | | const char **prule_str) |
1229 | 0 | { |
1230 | 0 | unsigned int suiteb_flags = 0, suiteb_comb2 = 0; |
1231 | 0 | if (HAS_CASE_PREFIX(*prule_str, "SUITEB128ONLY")) { |
1232 | 0 | suiteb_flags = SSL_CERT_FLAG_SUITEB_128_LOS_ONLY; |
1233 | 0 | } else if (HAS_CASE_PREFIX(*prule_str, "SUITEB128C2")) { |
1234 | 0 | suiteb_comb2 = 1; |
1235 | 0 | suiteb_flags = SSL_CERT_FLAG_SUITEB_128_LOS; |
1236 | 0 | } else if (HAS_CASE_PREFIX(*prule_str, "SUITEB128")) { |
1237 | 0 | suiteb_flags = SSL_CERT_FLAG_SUITEB_128_LOS; |
1238 | 0 | } else if (HAS_CASE_PREFIX(*prule_str, "SUITEB192")) { |
1239 | 0 | suiteb_flags = SSL_CERT_FLAG_SUITEB_192_LOS; |
1240 | 0 | } |
1241 | |
|
1242 | 0 | if (suiteb_flags) { |
1243 | 0 | c->cert_flags &= ~SSL_CERT_FLAG_SUITEB_128_LOS; |
1244 | 0 | c->cert_flags |= suiteb_flags; |
1245 | 0 | } else { |
1246 | 0 | suiteb_flags = c->cert_flags & SSL_CERT_FLAG_SUITEB_128_LOS; |
1247 | 0 | } |
1248 | |
|
1249 | 0 | if (!suiteb_flags) |
1250 | 0 | return 1; |
1251 | | /* Check version: if TLS 1.2 ciphers allowed we can use Suite B */ |
1252 | | |
1253 | 0 | if (!(meth->ssl3_enc->enc_flags & SSL_ENC_FLAG_TLS1_2_CIPHERS)) { |
1254 | 0 | ERR_raise(ERR_LIB_SSL, SSL_R_AT_LEAST_TLS_1_2_NEEDED_IN_SUITEB_MODE); |
1255 | 0 | return 0; |
1256 | 0 | } |
1257 | | |
1258 | 0 | switch (suiteb_flags) { |
1259 | 0 | case SSL_CERT_FLAG_SUITEB_128_LOS: |
1260 | 0 | if (suiteb_comb2) |
1261 | 0 | *prule_str = "ECDHE-ECDSA-AES256-GCM-SHA384"; |
1262 | 0 | else |
1263 | 0 | *prule_str = "ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384"; |
1264 | 0 | break; |
1265 | 0 | case SSL_CERT_FLAG_SUITEB_128_LOS_ONLY: |
1266 | 0 | *prule_str = "ECDHE-ECDSA-AES128-GCM-SHA256"; |
1267 | 0 | break; |
1268 | 0 | case SSL_CERT_FLAG_SUITEB_192_LOS: |
1269 | 0 | *prule_str = "ECDHE-ECDSA-AES256-GCM-SHA384"; |
1270 | 0 | break; |
1271 | 0 | } |
1272 | 0 | return 1; |
1273 | 0 | } |
1274 | | |
1275 | | static int ciphersuite_cb(const char *elem, int len, void *arg) |
1276 | 0 | { |
1277 | 0 | STACK_OF(SSL_CIPHER) *ciphersuites = (STACK_OF(SSL_CIPHER) *)arg; |
1278 | 0 | const SSL_CIPHER *cipher; |
1279 | | /* Arbitrary sized temp buffer for the cipher name. Should be big enough */ |
1280 | 0 | char name[80]; |
1281 | | |
1282 | | /* CONF_parse_list signals empty elements with elem == NULL; skip them */ |
1283 | 0 | if (elem == NULL || len == 0) |
1284 | 0 | return 1; |
1285 | | |
1286 | 0 | if (len > (int)(sizeof(name) - 1)) |
1287 | | /* Anyway return 1 so we can parse rest of the list */ |
1288 | 0 | return 1; |
1289 | | |
1290 | 0 | memcpy(name, elem, len); |
1291 | 0 | name[len] = '\0'; |
1292 | |
|
1293 | 0 | cipher = ssl3_get_tls13_cipher_by_std_name(name); |
1294 | 0 | if (cipher == NULL) |
1295 | | /* Ciphersuite not found but return 1 to parse rest of the list */ |
1296 | 0 | return 1; |
1297 | | |
1298 | | /* Suppress duplicates */ |
1299 | 0 | for (int i = 0; i < sk_SSL_CIPHER_num(ciphersuites); ++i) |
1300 | 0 | if (sk_SSL_CIPHER_value(ciphersuites, i)->id == cipher->id) |
1301 | 0 | return 1; |
1302 | | |
1303 | 0 | if (!sk_SSL_CIPHER_push(ciphersuites, cipher)) { |
1304 | 0 | ERR_raise(ERR_LIB_SSL, ERR_R_INTERNAL_ERROR); |
1305 | 0 | return 0; |
1306 | 0 | } |
1307 | | |
1308 | 0 | return 1; |
1309 | 0 | } |
1310 | | |
1311 | | static __owur int set_ciphersuites(STACK_OF(SSL_CIPHER) **currciphers, const char *str) |
1312 | 0 | { |
1313 | 0 | STACK_OF(SSL_CIPHER) *newciphers = sk_SSL_CIPHER_new_null(); |
1314 | |
|
1315 | 0 | if (newciphers == NULL) |
1316 | 0 | return 0; |
1317 | | |
1318 | | /* Parse the list. We explicitly allow an empty list */ |
1319 | 0 | if (*str != '\0' |
1320 | 0 | && (CONF_parse_list(str, ':', 1, ciphersuite_cb, newciphers) <= 0 |
1321 | 0 | || sk_SSL_CIPHER_num(newciphers) == 0)) { |
1322 | 0 | ERR_raise(ERR_LIB_SSL, SSL_R_NO_CIPHER_MATCH); |
1323 | 0 | sk_SSL_CIPHER_free(newciphers); |
1324 | 0 | return 0; |
1325 | 0 | } |
1326 | 0 | sk_SSL_CIPHER_free(*currciphers); |
1327 | 0 | *currciphers = newciphers; |
1328 | |
|
1329 | 0 | return 1; |
1330 | 0 | } |
1331 | | |
1332 | | static int update_cipher_list_by_id(STACK_OF(SSL_CIPHER) **cipher_list_by_id, |
1333 | | STACK_OF(SSL_CIPHER) *cipherstack) |
1334 | 0 | { |
1335 | 0 | STACK_OF(SSL_CIPHER) *tmp_cipher_list = sk_SSL_CIPHER_dup(cipherstack); |
1336 | |
|
1337 | 0 | if (tmp_cipher_list == NULL) { |
1338 | 0 | return 0; |
1339 | 0 | } |
1340 | | |
1341 | 0 | sk_SSL_CIPHER_free(*cipher_list_by_id); |
1342 | 0 | *cipher_list_by_id = tmp_cipher_list; |
1343 | |
|
1344 | 0 | (void)sk_SSL_CIPHER_set_cmp_func(*cipher_list_by_id, ssl_cipher_ptr_id_cmp); |
1345 | 0 | sk_SSL_CIPHER_sort(*cipher_list_by_id); |
1346 | |
|
1347 | 0 | return 1; |
1348 | 0 | } |
1349 | | |
1350 | | static int update_cipher_list(SSL_CTX *ctx, |
1351 | | STACK_OF(SSL_CIPHER) **cipher_list, |
1352 | | STACK_OF(SSL_CIPHER) **cipher_list_by_id, |
1353 | | STACK_OF(SSL_CIPHER) *tls13_ciphersuites) |
1354 | 0 | { |
1355 | 0 | int i; |
1356 | 0 | STACK_OF(SSL_CIPHER) *tmp_cipher_list = sk_SSL_CIPHER_dup(*cipher_list); |
1357 | |
|
1358 | 0 | if (tmp_cipher_list == NULL) |
1359 | 0 | return 0; |
1360 | | |
1361 | | /* |
1362 | | * Delete any existing (D)TLSv1.3 ciphersuites. These are always first in the |
1363 | | * list. |
1364 | | */ |
1365 | | |
1366 | 0 | while (sk_SSL_CIPHER_num(tmp_cipher_list) > 0) { |
1367 | 0 | const SSL_CIPHER *cipher = sk_SSL_CIPHER_value(tmp_cipher_list, 0); |
1368 | 0 | const int version1_3 = SSL_CTX_IS_DTLS(ctx) ? DTLS1_3_VERSION |
1369 | 0 | : TLS1_3_VERSION; |
1370 | 0 | const int minversion = SSL_CTX_IS_DTLS(ctx) ? cipher->min_dtls |
1371 | 0 | : cipher->min_tls; |
1372 | |
|
1373 | 0 | if (minversion != version1_3) |
1374 | 0 | break; |
1375 | 0 | (void)sk_SSL_CIPHER_delete(tmp_cipher_list, 0); |
1376 | 0 | } |
1377 | | |
1378 | | /* Insert the new (D)TLSv1.3 ciphersuites */ |
1379 | 0 | for (i = sk_SSL_CIPHER_num(tls13_ciphersuites) - 1; i >= 0; i--) { |
1380 | 0 | const SSL_CIPHER *sslc = sk_SSL_CIPHER_value(tls13_ciphersuites, i); |
1381 | | |
1382 | | /* Don't include any TLSv1.3 ciphersuites that are disabled */ |
1383 | 0 | if ((sslc->algorithm_enc & ctx->disabled_enc_mask) == 0 |
1384 | 0 | && (ssl_cipher_table_mac[sslc->algorithm2 |
1385 | 0 | & SSL_HANDSHAKE_MAC_MASK] |
1386 | 0 | .mask |
1387 | 0 | & ctx->disabled_mac_mask) |
1388 | 0 | == 0) { |
1389 | 0 | sk_SSL_CIPHER_unshift(tmp_cipher_list, sslc); |
1390 | 0 | } |
1391 | 0 | } |
1392 | |
|
1393 | 0 | if (!update_cipher_list_by_id(cipher_list_by_id, tmp_cipher_list)) { |
1394 | 0 | sk_SSL_CIPHER_free(tmp_cipher_list); |
1395 | 0 | return 0; |
1396 | 0 | } |
1397 | | |
1398 | 0 | sk_SSL_CIPHER_free(*cipher_list); |
1399 | 0 | *cipher_list = tmp_cipher_list; |
1400 | |
|
1401 | 0 | return 1; |
1402 | 0 | } |
1403 | | |
1404 | | int SSL_CTX_set_ciphersuites(SSL_CTX *ctx, const char *str) |
1405 | 0 | { |
1406 | 0 | int ret = set_ciphersuites(&(ctx->tls13_ciphersuites), str); |
1407 | |
|
1408 | 0 | if (ret && ctx->cipher_list != NULL) |
1409 | 0 | return update_cipher_list(ctx, &ctx->cipher_list, &ctx->cipher_list_by_id, |
1410 | 0 | ctx->tls13_ciphersuites); |
1411 | | |
1412 | 0 | return ret; |
1413 | 0 | } |
1414 | | |
1415 | | int SSL_set_ciphersuites(SSL *s, const char *str) |
1416 | 0 | { |
1417 | 0 | STACK_OF(SSL_CIPHER) *cipher_list; |
1418 | 0 | SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s); |
1419 | 0 | int ret; |
1420 | |
|
1421 | 0 | if (sc == NULL) |
1422 | 0 | return 0; |
1423 | | |
1424 | 0 | ret = set_ciphersuites(&(sc->tls13_ciphersuites), str); |
1425 | |
|
1426 | 0 | if (sc->cipher_list == NULL) { |
1427 | 0 | if ((cipher_list = SSL_get_ciphers(s)) != NULL) |
1428 | 0 | sc->cipher_list = sk_SSL_CIPHER_dup(cipher_list); |
1429 | 0 | } |
1430 | 0 | if (ret && sc->cipher_list != NULL) |
1431 | 0 | return update_cipher_list(s->ctx, &sc->cipher_list, |
1432 | 0 | &sc->cipher_list_by_id, |
1433 | 0 | sc->tls13_ciphersuites); |
1434 | | |
1435 | 0 | return ret; |
1436 | 0 | } |
1437 | | |
1438 | | STACK_OF(SSL_CIPHER) *ssl_create_cipher_list(SSL_CTX *ctx, |
1439 | | STACK_OF(SSL_CIPHER) *tls13_ciphersuites, |
1440 | | STACK_OF(SSL_CIPHER) **cipher_list, |
1441 | | STACK_OF(SSL_CIPHER) **cipher_list_by_id, |
1442 | | const char *rule_str, |
1443 | | CERT *c) |
1444 | 0 | { |
1445 | 0 | int ok, num_of_ciphers, num_of_alias_max, num_of_group_aliases, i; |
1446 | 0 | uint32_t disabled_mkey, disabled_auth, disabled_enc, disabled_mac; |
1447 | 0 | STACK_OF(SSL_CIPHER) *cipherstack; |
1448 | 0 | const char *rule_p; |
1449 | 0 | CIPHER_ORDER *co_list = NULL, *head = NULL, *tail = NULL, *curr; |
1450 | 0 | const SSL_CIPHER **ca_list = NULL; |
1451 | 0 | const SSL_METHOD *ssl_method = ctx->method; |
1452 | | |
1453 | | /* |
1454 | | * Return with error if nothing to do. |
1455 | | */ |
1456 | 0 | if (rule_str == NULL || cipher_list == NULL || cipher_list_by_id == NULL) |
1457 | 0 | return NULL; |
1458 | | |
1459 | 0 | if (!check_suiteb_cipher_list(ssl_method, c, &rule_str)) |
1460 | 0 | return NULL; |
1461 | | |
1462 | | /* |
1463 | | * To reduce the work to do we only want to process the compiled |
1464 | | * in algorithms, so we first get the mask of disabled ciphers. |
1465 | | */ |
1466 | | |
1467 | 0 | disabled_mkey = ctx->disabled_mkey_mask; |
1468 | 0 | disabled_auth = ctx->disabled_auth_mask; |
1469 | 0 | disabled_enc = ctx->disabled_enc_mask; |
1470 | 0 | disabled_mac = ctx->disabled_mac_mask; |
1471 | | |
1472 | | /* |
1473 | | * Now we have to collect the available ciphers from the compiled |
1474 | | * in ciphers. We cannot get more than the number compiled in, so |
1475 | | * it is used for allocation. |
1476 | | */ |
1477 | 0 | num_of_ciphers = ssl_method->num_ciphers(); |
1478 | |
|
1479 | 0 | if (num_of_ciphers > 0) { |
1480 | 0 | co_list = OPENSSL_malloc_array(num_of_ciphers, sizeof(*co_list)); |
1481 | 0 | if (co_list == NULL) |
1482 | 0 | return NULL; /* Failure */ |
1483 | 0 | } |
1484 | | |
1485 | 0 | ssl_cipher_collect_ciphers(ssl_method, num_of_ciphers, |
1486 | 0 | disabled_mkey, disabled_auth, disabled_enc, |
1487 | 0 | disabled_mac, co_list, &head, &tail); |
1488 | | |
1489 | | /* Now arrange all ciphers by preference. */ |
1490 | | |
1491 | | /* |
1492 | | * Everything else being equal, prefer ephemeral ECDH over other key |
1493 | | * exchange mechanisms. |
1494 | | * For consistency, prefer ECDSA over RSA (though this only matters if the |
1495 | | * server has both certificates, and is using the DEFAULT, or a client |
1496 | | * preference). |
1497 | | */ |
1498 | 0 | ssl_cipher_apply_rule(0, SSL_kECDHE, SSL_aECDSA, 0, 0, 0, 0, CIPHER_ADD, |
1499 | 0 | -1, &head, &tail); |
1500 | 0 | ssl_cipher_apply_rule(0, SSL_kECDHE, 0, 0, 0, 0, 0, CIPHER_ADD, -1, &head, |
1501 | 0 | &tail); |
1502 | 0 | ssl_cipher_apply_rule(0, SSL_kECDHE, 0, 0, 0, 0, 0, CIPHER_DEL, -1, &head, |
1503 | 0 | &tail); |
1504 | | |
1505 | | /* Within each strength group, we prefer GCM over CHACHA... */ |
1506 | 0 | ssl_cipher_apply_rule(0, 0, 0, SSL_AESGCM, 0, 0, 0, CIPHER_ADD, -1, |
1507 | 0 | &head, &tail); |
1508 | 0 | ssl_cipher_apply_rule(0, 0, 0, SSL_CHACHA20, 0, 0, 0, CIPHER_ADD, -1, |
1509 | 0 | &head, &tail); |
1510 | | |
1511 | | /* |
1512 | | * ...and generally, our preferred cipher is AES. |
1513 | | * Note that AEADs will be bumped to take preference after sorting by |
1514 | | * strength. |
1515 | | */ |
1516 | 0 | ssl_cipher_apply_rule(0, 0, 0, SSL_AES ^ SSL_AESGCM, 0, 0, 0, CIPHER_ADD, |
1517 | 0 | -1, &head, &tail); |
1518 | | |
1519 | | /* Temporarily enable everything else for sorting */ |
1520 | 0 | ssl_cipher_apply_rule(0, 0, 0, 0, 0, 0, 0, CIPHER_ADD, -1, &head, &tail); |
1521 | | |
1522 | | /* Low priority for MD5 */ |
1523 | 0 | ssl_cipher_apply_rule(0, 0, 0, 0, SSL_MD5, 0, 0, CIPHER_ORD, -1, &head, |
1524 | 0 | &tail); |
1525 | | |
1526 | | /* |
1527 | | * Move anonymous ciphers to the end. Usually, these will remain |
1528 | | * disabled. (For applications that allow them, they aren't too bad, but |
1529 | | * we prefer authenticated ciphers.) |
1530 | | */ |
1531 | 0 | ssl_cipher_apply_rule(0, 0, SSL_aNULL, 0, 0, 0, 0, CIPHER_ORD, -1, &head, |
1532 | 0 | &tail); |
1533 | |
|
1534 | 0 | ssl_cipher_apply_rule(0, SSL_kRSA, 0, 0, 0, 0, 0, CIPHER_ORD, -1, &head, |
1535 | 0 | &tail); |
1536 | 0 | ssl_cipher_apply_rule(0, SSL_kPSK, 0, 0, 0, 0, 0, CIPHER_ORD, -1, &head, |
1537 | 0 | &tail); |
1538 | | |
1539 | | /* RC4 is sort-of broken -- move to the end */ |
1540 | 0 | ssl_cipher_apply_rule(0, 0, 0, SSL_RC4, 0, 0, 0, CIPHER_ORD, -1, &head, |
1541 | 0 | &tail); |
1542 | | |
1543 | | /* |
1544 | | * Now sort by symmetric encryption strength. The above ordering remains |
1545 | | * in force within each class |
1546 | | */ |
1547 | 0 | if (!ssl_cipher_strength_sort(&head, &tail)) { |
1548 | 0 | OPENSSL_free(co_list); |
1549 | 0 | return NULL; |
1550 | 0 | } |
1551 | | |
1552 | | /* |
1553 | | * Partially overrule strength sort to prefer TLS 1.2 ciphers/PRFs. |
1554 | | */ |
1555 | 0 | ssl_cipher_apply_rule(0, 0, 0, 0, 0, TLS1_2_VERSION, 0, CIPHER_BUMP, -1, |
1556 | 0 | &head, &tail); |
1557 | | |
1558 | | /* |
1559 | | * Irrespective of strength, enforce the following order: |
1560 | | * (EC)DHE + AEAD > (EC)DHE > rest of AEAD > rest. |
1561 | | * Within each group, ciphers remain sorted by strength and previous |
1562 | | * preference, i.e., |
1563 | | * 1) ECDHE > DHE |
1564 | | * 2) GCM > CHACHA |
1565 | | * 3) AES > rest |
1566 | | * 4) TLS 1.2 > legacy |
1567 | | * |
1568 | | * Because we now bump ciphers to the top of the list, we proceed in |
1569 | | * reverse order of preference. |
1570 | | */ |
1571 | 0 | ssl_cipher_apply_rule(0, 0, 0, 0, SSL_AEAD, 0, 0, CIPHER_BUMP, -1, |
1572 | 0 | &head, &tail); |
1573 | 0 | ssl_cipher_apply_rule(0, SSL_kDHE | SSL_kECDHE, 0, 0, 0, 0, 0, |
1574 | 0 | CIPHER_BUMP, -1, &head, &tail); |
1575 | 0 | ssl_cipher_apply_rule(0, SSL_kDHE | SSL_kECDHE, 0, 0, SSL_AEAD, 0, 0, |
1576 | 0 | CIPHER_BUMP, -1, &head, &tail); |
1577 | | |
1578 | | /* Now disable everything (maintaining the ordering!) */ |
1579 | 0 | ssl_cipher_apply_rule(0, 0, 0, 0, 0, 0, 0, CIPHER_DEL, -1, &head, &tail); |
1580 | | |
1581 | | /* |
1582 | | * We also need cipher aliases for selecting based on the rule_str. |
1583 | | * There might be two types of entries in the rule_str: 1) names |
1584 | | * of ciphers themselves 2) aliases for groups of ciphers. |
1585 | | * For 1) we need the available ciphers and for 2) the cipher |
1586 | | * groups of cipher_aliases added together in one list (otherwise |
1587 | | * we would be happy with just the cipher_aliases table). |
1588 | | */ |
1589 | 0 | num_of_group_aliases = OSSL_NELEM(cipher_aliases); |
1590 | 0 | num_of_alias_max = num_of_ciphers + num_of_group_aliases + 1; |
1591 | 0 | ca_list = OPENSSL_malloc_array(num_of_alias_max, sizeof(*ca_list)); |
1592 | 0 | if (ca_list == NULL) { |
1593 | 0 | OPENSSL_free(co_list); |
1594 | 0 | return NULL; /* Failure */ |
1595 | 0 | } |
1596 | 0 | ssl_cipher_collect_aliases(ca_list, num_of_group_aliases, |
1597 | 0 | disabled_mkey, disabled_auth, disabled_enc, |
1598 | 0 | disabled_mac, head); |
1599 | | |
1600 | | /* |
1601 | | * If the rule_string begins with DEFAULT, apply the default rule |
1602 | | * before using the (possibly available) additional rules. |
1603 | | */ |
1604 | 0 | ok = 1; |
1605 | 0 | rule_p = rule_str; |
1606 | 0 | if (HAS_CASE_PREFIX(rule_str, "DEFAULT")) { |
1607 | 0 | ok = ssl_cipher_process_rulestr(OSSL_default_cipher_list(), |
1608 | 0 | &head, &tail, ca_list, c); |
1609 | 0 | rule_p += 7; |
1610 | 0 | if (*rule_p == ':') |
1611 | 0 | rule_p++; |
1612 | 0 | } |
1613 | |
|
1614 | 0 | if (ok && (rule_p[0] != '\0')) |
1615 | 0 | ok = ssl_cipher_process_rulestr(rule_p, &head, &tail, ca_list, c); |
1616 | |
|
1617 | 0 | OPENSSL_free(ca_list); /* Not needed anymore */ |
1618 | |
|
1619 | 0 | if (!ok) { /* Rule processing failure */ |
1620 | 0 | OPENSSL_free(co_list); |
1621 | 0 | return NULL; |
1622 | 0 | } |
1623 | | |
1624 | | /* |
1625 | | * Allocate new "cipherstack" for the result, return with error |
1626 | | * if we cannot get one. |
1627 | | */ |
1628 | 0 | if ((cipherstack = sk_SSL_CIPHER_new_null()) == NULL) { |
1629 | 0 | OPENSSL_free(co_list); |
1630 | 0 | return NULL; |
1631 | 0 | } |
1632 | | |
1633 | | /* Add TLSv1.3 ciphers first - we always prefer those if possible */ |
1634 | 0 | for (i = 0; i < sk_SSL_CIPHER_num(tls13_ciphersuites); i++) { |
1635 | 0 | const SSL_CIPHER *sslc = sk_SSL_CIPHER_value(tls13_ciphersuites, i); |
1636 | | |
1637 | | /* Don't include any TLSv1.3 ciphers that are disabled */ |
1638 | 0 | if ((sslc->algorithm_enc & disabled_enc) != 0 |
1639 | 0 | || (ssl_cipher_table_mac[sslc->algorithm2 |
1640 | 0 | & SSL_HANDSHAKE_MAC_MASK] |
1641 | 0 | .mask |
1642 | 0 | & ctx->disabled_mac_mask) |
1643 | 0 | != 0) { |
1644 | 0 | sk_SSL_CIPHER_delete(tls13_ciphersuites, i); |
1645 | 0 | i--; |
1646 | 0 | continue; |
1647 | 0 | } |
1648 | | |
1649 | 0 | if (!sk_SSL_CIPHER_push(cipherstack, sslc)) { |
1650 | 0 | OPENSSL_free(co_list); |
1651 | 0 | sk_SSL_CIPHER_free(cipherstack); |
1652 | 0 | return NULL; |
1653 | 0 | } |
1654 | 0 | } |
1655 | | |
1656 | 0 | OSSL_TRACE_BEGIN(TLS_CIPHER) |
1657 | 0 | { |
1658 | 0 | BIO_printf(trc_out, "cipher selection:\n"); |
1659 | 0 | } |
1660 | | /* |
1661 | | * The cipher selection for the list is done. The ciphers are added |
1662 | | * to the resulting precedence to the STACK_OF(SSL_CIPHER). |
1663 | | */ |
1664 | 0 | for (curr = head; curr != NULL; curr = curr->next) { |
1665 | 0 | if (curr->active) { |
1666 | 0 | if (!sk_SSL_CIPHER_push(cipherstack, curr->cipher)) { |
1667 | 0 | OPENSSL_free(co_list); |
1668 | 0 | sk_SSL_CIPHER_free(cipherstack); |
1669 | 0 | OSSL_TRACE_CANCEL(TLS_CIPHER); |
1670 | 0 | return NULL; |
1671 | 0 | } |
1672 | 0 | if (trc_out != NULL) |
1673 | 0 | BIO_printf(trc_out, "<%s>\n", curr->cipher->name); |
1674 | 0 | } |
1675 | 0 | } |
1676 | 0 | OPENSSL_free(co_list); /* Not needed any longer */ |
1677 | 0 | OSSL_TRACE_END(TLS_CIPHER); |
1678 | | |
1679 | 0 | if (!update_cipher_list_by_id(cipher_list_by_id, cipherstack)) { |
1680 | 0 | sk_SSL_CIPHER_free(cipherstack); |
1681 | 0 | return NULL; |
1682 | 0 | } |
1683 | 0 | sk_SSL_CIPHER_free(*cipher_list); |
1684 | 0 | *cipher_list = cipherstack; |
1685 | |
|
1686 | 0 | return cipherstack; |
1687 | 0 | } |
1688 | | |
1689 | | char *SSL_CIPHER_description(const SSL_CIPHER *cipher, char *buf, int len) |
1690 | 0 | { |
1691 | 0 | const char *ver; |
1692 | 0 | const char *kx, *au, *enc, *mac; |
1693 | 0 | uint32_t alg_mkey, alg_auth, alg_enc, alg_mac; |
1694 | 0 | static const char *const format = "%-30s %-7s Kx=%-8s Au=%-5s Enc=%-22s Mac=%-4s\n"; |
1695 | |
|
1696 | 0 | if (buf == NULL) { |
1697 | 0 | len = 128; |
1698 | 0 | if ((buf = OPENSSL_malloc(len)) == NULL) |
1699 | 0 | return NULL; |
1700 | 0 | } else if (len < 128) { |
1701 | 0 | return NULL; |
1702 | 0 | } |
1703 | | |
1704 | 0 | alg_mkey = cipher->algorithm_mkey; |
1705 | 0 | alg_auth = cipher->algorithm_auth; |
1706 | 0 | alg_enc = cipher->algorithm_enc; |
1707 | 0 | alg_mac = cipher->algorithm_mac; |
1708 | |
|
1709 | 0 | ver = ssl_protocol_to_string(cipher->min_tls); |
1710 | |
|
1711 | 0 | switch (alg_mkey) { |
1712 | 0 | case SSL_kRSA: |
1713 | 0 | kx = "RSA"; |
1714 | 0 | break; |
1715 | 0 | case SSL_kDHE: |
1716 | 0 | kx = "DH"; |
1717 | 0 | break; |
1718 | 0 | case SSL_kECDHE: |
1719 | 0 | kx = "ECDH"; |
1720 | 0 | break; |
1721 | 0 | case SSL_kPSK: |
1722 | 0 | kx = "PSK"; |
1723 | 0 | break; |
1724 | 0 | case SSL_kRSAPSK: |
1725 | 0 | kx = "RSAPSK"; |
1726 | 0 | break; |
1727 | 0 | case SSL_kECDHEPSK: |
1728 | 0 | kx = "ECDHEPSK"; |
1729 | 0 | break; |
1730 | 0 | case SSL_kDHEPSK: |
1731 | 0 | kx = "DHEPSK"; |
1732 | 0 | break; |
1733 | 0 | case SSL_kSRP: |
1734 | 0 | kx = "SRP"; |
1735 | 0 | break; |
1736 | 0 | case SSL_kGOST: |
1737 | 0 | kx = "GOST"; |
1738 | 0 | break; |
1739 | 0 | case SSL_kGOST18: |
1740 | 0 | kx = "GOST18"; |
1741 | 0 | break; |
1742 | 0 | case SSL_kANY: |
1743 | 0 | kx = "any"; |
1744 | 0 | break; |
1745 | 0 | default: |
1746 | 0 | kx = "unknown"; |
1747 | 0 | } |
1748 | | |
1749 | 0 | switch (alg_auth) { |
1750 | 0 | case SSL_aRSA: |
1751 | 0 | au = "RSA"; |
1752 | 0 | break; |
1753 | 0 | case SSL_aDSS: |
1754 | 0 | au = "DSS"; |
1755 | 0 | break; |
1756 | 0 | case SSL_aNULL: |
1757 | 0 | au = "None"; |
1758 | 0 | break; |
1759 | 0 | case SSL_aECDSA: |
1760 | 0 | au = "ECDSA"; |
1761 | 0 | break; |
1762 | 0 | case SSL_aPSK: |
1763 | 0 | au = "PSK"; |
1764 | 0 | break; |
1765 | 0 | case SSL_aSRP: |
1766 | 0 | au = "SRP"; |
1767 | 0 | break; |
1768 | 0 | case SSL_aGOST01: |
1769 | 0 | au = "GOST01"; |
1770 | 0 | break; |
1771 | | /* New GOST ciphersuites have both SSL_aGOST12 and SSL_aGOST01 bits */ |
1772 | 0 | case (SSL_aGOST12 | SSL_aGOST01): |
1773 | 0 | au = "GOST12"; |
1774 | 0 | break; |
1775 | 0 | case SSL_aANY: |
1776 | 0 | au = "any"; |
1777 | 0 | break; |
1778 | 0 | default: |
1779 | 0 | au = "unknown"; |
1780 | 0 | break; |
1781 | 0 | } |
1782 | | |
1783 | 0 | switch (alg_enc) { |
1784 | 0 | case SSL_DES: |
1785 | 0 | enc = "DES(56)"; |
1786 | 0 | break; |
1787 | 0 | case SSL_3DES: |
1788 | 0 | enc = "3DES(168)"; |
1789 | 0 | break; |
1790 | 0 | case SSL_RC4: |
1791 | 0 | enc = "RC4(128)"; |
1792 | 0 | break; |
1793 | 0 | case SSL_RC2: |
1794 | 0 | enc = "RC2(128)"; |
1795 | 0 | break; |
1796 | 0 | case SSL_IDEA: |
1797 | 0 | enc = "IDEA(128)"; |
1798 | 0 | break; |
1799 | 0 | case SSL_eNULL: |
1800 | 0 | enc = "None"; |
1801 | 0 | break; |
1802 | 0 | case SSL_AES128: |
1803 | 0 | enc = "AES(128)"; |
1804 | 0 | break; |
1805 | 0 | case SSL_AES256: |
1806 | 0 | enc = "AES(256)"; |
1807 | 0 | break; |
1808 | 0 | case SSL_AES128GCM: |
1809 | 0 | enc = "AESGCM(128)"; |
1810 | 0 | break; |
1811 | 0 | case SSL_AES256GCM: |
1812 | 0 | enc = "AESGCM(256)"; |
1813 | 0 | break; |
1814 | 0 | case SSL_AES128CCM: |
1815 | 0 | enc = "AESCCM(128)"; |
1816 | 0 | break; |
1817 | 0 | case SSL_AES256CCM: |
1818 | 0 | enc = "AESCCM(256)"; |
1819 | 0 | break; |
1820 | 0 | case SSL_AES128CCM8: |
1821 | 0 | enc = "AESCCM8(128)"; |
1822 | 0 | break; |
1823 | 0 | case SSL_AES256CCM8: |
1824 | 0 | enc = "AESCCM8(256)"; |
1825 | 0 | break; |
1826 | 0 | case SSL_CAMELLIA128: |
1827 | 0 | enc = "Camellia(128)"; |
1828 | 0 | break; |
1829 | 0 | case SSL_CAMELLIA256: |
1830 | 0 | enc = "Camellia(256)"; |
1831 | 0 | break; |
1832 | 0 | case SSL_ARIA128GCM: |
1833 | 0 | enc = "ARIAGCM(128)"; |
1834 | 0 | break; |
1835 | 0 | case SSL_ARIA256GCM: |
1836 | 0 | enc = "ARIAGCM(256)"; |
1837 | 0 | break; |
1838 | 0 | case SSL_SEED: |
1839 | 0 | enc = "SEED(128)"; |
1840 | 0 | break; |
1841 | 0 | case SSL_eGOST2814789CNT: |
1842 | 0 | case SSL_eGOST2814789CNT12: |
1843 | 0 | enc = "GOST89(256)"; |
1844 | 0 | break; |
1845 | 0 | case SSL_MAGMA: |
1846 | 0 | enc = "MAGMA"; |
1847 | 0 | break; |
1848 | 0 | case SSL_KUZNYECHIK: |
1849 | 0 | enc = "KUZNYECHIK"; |
1850 | 0 | break; |
1851 | 0 | case SSL_CHACHA20POLY1305: |
1852 | 0 | enc = "CHACHA20/POLY1305(256)"; |
1853 | 0 | break; |
1854 | 0 | case SSL_SM4GCM: |
1855 | 0 | enc = "SM4GCM"; |
1856 | 0 | break; |
1857 | 0 | case SSL_SM4CCM: |
1858 | 0 | enc = "SM4CCM"; |
1859 | 0 | break; |
1860 | 0 | default: |
1861 | 0 | enc = "unknown"; |
1862 | 0 | break; |
1863 | 0 | } |
1864 | | |
1865 | 0 | switch (alg_mac) { |
1866 | 0 | case SSL_MD5: |
1867 | 0 | mac = "MD5"; |
1868 | 0 | break; |
1869 | 0 | case SSL_SHA1: |
1870 | 0 | mac = "SHA1"; |
1871 | 0 | break; |
1872 | 0 | case SSL_SHA256: |
1873 | 0 | mac = "SHA256"; |
1874 | 0 | break; |
1875 | 0 | case SSL_SHA384: |
1876 | 0 | mac = "SHA384"; |
1877 | 0 | break; |
1878 | 0 | case SSL_AEAD: |
1879 | 0 | mac = "AEAD"; |
1880 | 0 | break; |
1881 | 0 | case SSL_GOST89MAC: |
1882 | 0 | case SSL_GOST89MAC12: |
1883 | 0 | mac = "GOST89"; |
1884 | 0 | break; |
1885 | 0 | case SSL_GOST94: |
1886 | 0 | mac = "GOST94"; |
1887 | 0 | break; |
1888 | 0 | case SSL_GOST12_256: |
1889 | 0 | case SSL_GOST12_512: |
1890 | 0 | mac = "GOST2012"; |
1891 | 0 | break; |
1892 | 0 | default: |
1893 | 0 | mac = "unknown"; |
1894 | 0 | break; |
1895 | 0 | } |
1896 | | |
1897 | 0 | snprintf(buf, len, format, cipher->name, ver, kx, au, enc, mac); |
1898 | |
|
1899 | 0 | return buf; |
1900 | 0 | } |
1901 | | |
1902 | | const char *SSL_CIPHER_get_version(const SSL_CIPHER *c) |
1903 | 0 | { |
1904 | 0 | if (c == NULL) |
1905 | 0 | return "(NONE)"; |
1906 | | |
1907 | | /* |
1908 | | * Backwards-compatibility crutch. In almost all contexts we report TLS |
1909 | | * 1.0 as "TLSv1", but for ciphers we report "TLSv1.0". |
1910 | | */ |
1911 | 0 | if (c->min_tls == TLS1_VERSION) |
1912 | 0 | return "TLSv1.0"; |
1913 | 0 | return ssl_protocol_to_string(c->min_tls); |
1914 | 0 | } |
1915 | | |
1916 | | /* return the actual cipher being used */ |
1917 | | const char *SSL_CIPHER_get_name(const SSL_CIPHER *c) |
1918 | 0 | { |
1919 | 0 | if (c != NULL) |
1920 | 0 | return c->name; |
1921 | 0 | return "(NONE)"; |
1922 | 0 | } |
1923 | | |
1924 | | /* return the actual cipher being used in RFC standard name */ |
1925 | | const char *SSL_CIPHER_standard_name(const SSL_CIPHER *c) |
1926 | 0 | { |
1927 | 0 | if (c != NULL) |
1928 | 0 | return c->stdname; |
1929 | 0 | return "(NONE)"; |
1930 | 0 | } |
1931 | | |
1932 | | /* return the OpenSSL name based on given RFC standard name */ |
1933 | | const char *OPENSSL_cipher_name(const char *stdname) |
1934 | 0 | { |
1935 | 0 | const SSL_CIPHER *c; |
1936 | |
|
1937 | 0 | if (stdname == NULL) |
1938 | 0 | return "(NONE)"; |
1939 | 0 | if ((c = ssl3_get_tls13_cipher_by_std_name(stdname)) == NULL) |
1940 | 0 | c = ssl3_get_cipher_by_std_name(stdname); |
1941 | 0 | return SSL_CIPHER_get_name(c); |
1942 | 0 | } |
1943 | | |
1944 | | /* number of bits for symmetric cipher */ |
1945 | | int SSL_CIPHER_get_bits(const SSL_CIPHER *c, int *alg_bits) |
1946 | 0 | { |
1947 | 0 | int ret = 0; |
1948 | |
|
1949 | 0 | if (c != NULL) { |
1950 | 0 | if (alg_bits != NULL) |
1951 | 0 | *alg_bits = (int)c->alg_bits; |
1952 | 0 | ret = (int)c->strength_bits; |
1953 | 0 | } |
1954 | 0 | return ret; |
1955 | 0 | } |
1956 | | |
1957 | | uint32_t SSL_CIPHER_get_id(const SSL_CIPHER *c) |
1958 | 0 | { |
1959 | 0 | return c->id; |
1960 | 0 | } |
1961 | | |
1962 | | uint16_t SSL_CIPHER_get_protocol_id(const SSL_CIPHER *c) |
1963 | 0 | { |
1964 | 0 | return c->id & 0xFFFF; |
1965 | 0 | } |
1966 | | |
1967 | | SSL_COMP *ssl3_comp_find(STACK_OF(SSL_COMP) *sk, int n) |
1968 | 0 | { |
1969 | 0 | SSL_COMP *ctmp; |
1970 | 0 | SSL_COMP srch_key; |
1971 | 0 | int i; |
1972 | |
|
1973 | 0 | if ((n == 0) || (sk == NULL)) |
1974 | 0 | return NULL; |
1975 | 0 | srch_key.id = n; |
1976 | 0 | i = sk_SSL_COMP_find(sk, &srch_key); |
1977 | 0 | if (i >= 0) |
1978 | 0 | ctmp = sk_SSL_COMP_value(sk, i); |
1979 | 0 | else |
1980 | 0 | ctmp = NULL; |
1981 | |
|
1982 | 0 | return ctmp; |
1983 | 0 | } |
1984 | | |
1985 | | #ifdef OPENSSL_NO_COMP |
1986 | | STACK_OF(SSL_COMP) *SSL_COMP_get_compression_methods(void) |
1987 | | { |
1988 | | return NULL; |
1989 | | } |
1990 | | |
1991 | | STACK_OF(SSL_COMP) *SSL_COMP_set0_compression_methods(STACK_OF(SSL_COMP) |
1992 | | *meths) |
1993 | | { |
1994 | | return meths; |
1995 | | } |
1996 | | |
1997 | | int SSL_COMP_add_compression_method(int id, COMP_METHOD *cm) |
1998 | | { |
1999 | | return 1; |
2000 | | } |
2001 | | |
2002 | | #else |
2003 | | STACK_OF(SSL_COMP) *SSL_COMP_get_compression_methods(void) |
2004 | 16 | { |
2005 | 16 | STACK_OF(SSL_COMP) **rv; |
2006 | | |
2007 | 16 | rv = (STACK_OF(SSL_COMP) **)OSSL_LIB_CTX_get_data(NULL, |
2008 | 16 | OSSL_LIB_CTX_COMP_METHODS); |
2009 | 16 | if (rv != NULL) |
2010 | 16 | return *rv; |
2011 | 0 | else |
2012 | 0 | return NULL; |
2013 | 16 | } |
2014 | | |
2015 | | STACK_OF(SSL_COMP) *SSL_COMP_set0_compression_methods(STACK_OF(SSL_COMP) |
2016 | | *meths) |
2017 | 0 | { |
2018 | 0 | STACK_OF(SSL_COMP) **comp_methods; |
2019 | 0 | STACK_OF(SSL_COMP) *old_meths; |
2020 | |
|
2021 | 0 | comp_methods = (STACK_OF(SSL_COMP) **)OSSL_LIB_CTX_get_data(NULL, |
2022 | 0 | OSSL_LIB_CTX_COMP_METHODS); |
2023 | 0 | if (comp_methods == NULL) { |
2024 | 0 | old_meths = meths; |
2025 | 0 | } else { |
2026 | 0 | old_meths = *comp_methods; |
2027 | 0 | *comp_methods = meths; |
2028 | 0 | } |
2029 | |
|
2030 | 0 | return old_meths; |
2031 | 0 | } |
2032 | | |
2033 | | int SSL_COMP_add_compression_method(int id, COMP_METHOD *cm) |
2034 | 0 | { |
2035 | 0 | STACK_OF(SSL_COMP) *comp_methods; |
2036 | 0 | SSL_COMP *comp; |
2037 | |
|
2038 | 0 | comp_methods = SSL_COMP_get_compression_methods(); |
2039 | |
|
2040 | 0 | if (comp_methods == NULL) |
2041 | 0 | return 1; |
2042 | | |
2043 | 0 | if (cm == NULL || COMP_get_type(cm) == NID_undef) |
2044 | 0 | return 1; |
2045 | | |
2046 | | /*- |
2047 | | * According to draft-ietf-tls-compression-04.txt, the |
2048 | | * compression number ranges should be the following: |
2049 | | * |
2050 | | * 0 to 63: methods defined by the IETF |
2051 | | * 64 to 192: external party methods assigned by IANA |
2052 | | * 193 to 255: reserved for private use |
2053 | | */ |
2054 | 0 | if (id < 193 || id > 255) { |
2055 | 0 | ERR_raise(ERR_LIB_SSL, SSL_R_COMPRESSION_ID_NOT_WITHIN_PRIVATE_RANGE); |
2056 | 0 | return 1; |
2057 | 0 | } |
2058 | | |
2059 | 0 | comp = OPENSSL_malloc(sizeof(*comp)); |
2060 | 0 | if (comp == NULL) |
2061 | 0 | return 1; |
2062 | | |
2063 | 0 | comp->id = id; |
2064 | 0 | if (sk_SSL_COMP_find(comp_methods, comp) >= 0) { |
2065 | 0 | OPENSSL_free(comp); |
2066 | 0 | ERR_raise(ERR_LIB_SSL, SSL_R_DUPLICATE_COMPRESSION_ID); |
2067 | 0 | return 1; |
2068 | 0 | } |
2069 | 0 | if (!sk_SSL_COMP_push(comp_methods, comp)) { |
2070 | 0 | OPENSSL_free(comp); |
2071 | 0 | ERR_raise(ERR_LIB_SSL, ERR_R_CRYPTO_LIB); |
2072 | 0 | return 1; |
2073 | 0 | } |
2074 | | |
2075 | 0 | return 0; |
2076 | 0 | } |
2077 | | #endif |
2078 | | |
2079 | | const char *SSL_COMP_get_name(const COMP_METHOD *comp) |
2080 | 0 | { |
2081 | 0 | #ifndef OPENSSL_NO_COMP |
2082 | 0 | return comp ? COMP_get_name(comp) : NULL; |
2083 | | #else |
2084 | | return NULL; |
2085 | | #endif |
2086 | 0 | } |
2087 | | |
2088 | | const char *SSL_COMP_get0_name(const SSL_COMP *comp) |
2089 | 0 | { |
2090 | 0 | #ifndef OPENSSL_NO_COMP |
2091 | 0 | return comp->name; |
2092 | | #else |
2093 | | return NULL; |
2094 | | #endif |
2095 | 0 | } |
2096 | | |
2097 | | int SSL_COMP_get_id(const SSL_COMP *comp) |
2098 | 0 | { |
2099 | 0 | #ifndef OPENSSL_NO_COMP |
2100 | 0 | return comp->id; |
2101 | | #else |
2102 | | return -1; |
2103 | | #endif |
2104 | 0 | } |
2105 | | |
2106 | | const SSL_CIPHER *ssl_get_cipher_by_char(SSL_CONNECTION *s, |
2107 | | const unsigned char *ptr, |
2108 | | int all) |
2109 | 0 | { |
2110 | 0 | const SSL_CIPHER *c = SSL_CONNECTION_GET_SSL(s)->method->get_cipher_by_char(ptr); |
2111 | |
|
2112 | 0 | if (c == NULL || (!all && c->valid == 0)) |
2113 | 0 | return NULL; |
2114 | 0 | return c; |
2115 | 0 | } |
2116 | | |
2117 | | const SSL_CIPHER *SSL_CIPHER_find(SSL *ssl, const unsigned char *ptr) |
2118 | 0 | { |
2119 | 0 | return ssl->method->get_cipher_by_char(ptr); |
2120 | 0 | } |
2121 | | |
2122 | | int SSL_CIPHER_get_cipher_nid(const SSL_CIPHER *c) |
2123 | 0 | { |
2124 | 0 | int i; |
2125 | 0 | if (c == NULL) |
2126 | 0 | return NID_undef; |
2127 | 0 | i = ssl_cipher_info_lookup(ssl_cipher_table_cipher, c->algorithm_enc); |
2128 | 0 | if (i == -1) |
2129 | 0 | return NID_undef; |
2130 | 0 | return ssl_cipher_table_cipher[i].nid; |
2131 | 0 | } |
2132 | | |
2133 | | int SSL_CIPHER_get_digest_nid(const SSL_CIPHER *c) |
2134 | 0 | { |
2135 | 0 | int i = ssl_cipher_info_lookup(ssl_cipher_table_mac, c->algorithm_mac); |
2136 | |
|
2137 | 0 | if (i == -1) |
2138 | 0 | return NID_undef; |
2139 | 0 | return ssl_cipher_table_mac[i].nid; |
2140 | 0 | } |
2141 | | |
2142 | | int SSL_CIPHER_get_kx_nid(const SSL_CIPHER *c) |
2143 | 0 | { |
2144 | 0 | int i = ssl_cipher_info_lookup(ssl_cipher_table_kx, c->algorithm_mkey); |
2145 | |
|
2146 | 0 | if (i == -1) |
2147 | 0 | return NID_undef; |
2148 | 0 | return ssl_cipher_table_kx[i].nid; |
2149 | 0 | } |
2150 | | |
2151 | | int SSL_CIPHER_get_auth_nid(const SSL_CIPHER *c) |
2152 | 0 | { |
2153 | 0 | int i = ssl_cipher_info_lookup(ssl_cipher_table_auth, c->algorithm_auth); |
2154 | |
|
2155 | 0 | if (i == -1) |
2156 | 0 | return NID_undef; |
2157 | 0 | return ssl_cipher_table_auth[i].nid; |
2158 | 0 | } |
2159 | | |
2160 | | int ssl_get_md_idx(int md_nid) |
2161 | 0 | { |
2162 | 0 | int i; |
2163 | |
|
2164 | 0 | for (i = 0; i < SSL_MD_NUM_IDX; i++) { |
2165 | 0 | if (md_nid == ssl_cipher_table_mac[i].nid) |
2166 | 0 | return i; |
2167 | 0 | } |
2168 | 0 | return -1; |
2169 | 0 | } |
2170 | | |
2171 | | const EVP_MD *SSL_CIPHER_get_handshake_digest(const SSL_CIPHER *c) |
2172 | 0 | { |
2173 | 0 | int idx = c->algorithm2 & SSL_HANDSHAKE_MAC_MASK; |
2174 | |
|
2175 | 0 | if (idx < 0 || idx >= SSL_MD_NUM_IDX) |
2176 | 0 | return NULL; |
2177 | 0 | return EVP_get_digestbynid(ssl_cipher_table_mac[idx].nid); |
2178 | 0 | } |
2179 | | |
2180 | | int SSL_CIPHER_is_aead(const SSL_CIPHER *c) |
2181 | 0 | { |
2182 | 0 | return (c->algorithm_mac & SSL_AEAD) ? 1 : 0; |
2183 | 0 | } |
2184 | | |
2185 | | int ssl_cipher_get_overhead(const SSL_CIPHER *c, int version, |
2186 | | size_t *mac_overhead, size_t *int_overhead, |
2187 | | size_t *blocksize, size_t *ext_overhead) |
2188 | 0 | { |
2189 | 0 | int mac = 0, in = 0, blk = 0, out = 0; |
2190 | | |
2191 | | /* Some hard-coded numbers for the CCM/Poly1305 MAC overhead |
2192 | | * because there are no handy #defines for those. */ |
2193 | 0 | if (c->algorithm_enc & (SSL_AESGCM | SSL_ARIAGCM)) { |
2194 | 0 | out = EVP_GCM_TLS_TAG_LEN; |
2195 | | /* DTLS 1.3 uses an implicit nonce, so no explicit IV on the wire. */ |
2196 | 0 | if (version != DTLS1_3_VERSION) |
2197 | 0 | out += EVP_GCM_TLS_EXPLICIT_IV_LEN; |
2198 | 0 | } else if (c->algorithm_enc & (SSL_AES128CCM | SSL_AES256CCM)) { |
2199 | 0 | out = 16; |
2200 | | /* DTLS 1.3 uses an implicit nonce, so no explicit IV on the wire. */ |
2201 | 0 | if (version != DTLS1_3_VERSION) |
2202 | 0 | out += EVP_CCM_TLS_EXPLICIT_IV_LEN; |
2203 | 0 | } else if (c->algorithm_enc & (SSL_AES128CCM8 | SSL_AES256CCM8)) { |
2204 | 0 | out = 8; |
2205 | | /* DTLS 1.3 uses an implicit nonce, so no explicit IV on the wire. */ |
2206 | 0 | if (version != DTLS1_3_VERSION) |
2207 | 0 | out += EVP_CCM_TLS_EXPLICIT_IV_LEN; |
2208 | 0 | } else if (c->algorithm_enc & SSL_CHACHA20POLY1305) { |
2209 | 0 | out = 16; |
2210 | 0 | } else if (c->algorithm_mac & SSL_AEAD) { |
2211 | | /* We're supposed to have handled all the AEAD modes above */ |
2212 | 0 | return 0; |
2213 | 0 | } else { |
2214 | | /* Non-AEAD modes. Calculate MAC/cipher overhead separately */ |
2215 | 0 | int digest_nid = SSL_CIPHER_get_digest_nid(c); |
2216 | 0 | const EVP_MD *e_md = EVP_get_digestbynid(digest_nid); |
2217 | |
|
2218 | 0 | if (e_md == NULL) |
2219 | 0 | return 0; |
2220 | | |
2221 | 0 | mac = EVP_MD_get_size(e_md); |
2222 | 0 | if (mac <= 0) |
2223 | 0 | return 0; |
2224 | 0 | if (c->algorithm_enc != SSL_eNULL) { |
2225 | 0 | int cipher_nid = SSL_CIPHER_get_cipher_nid(c); |
2226 | 0 | const EVP_CIPHER *e_ciph = EVP_get_cipherbynid(cipher_nid); |
2227 | | |
2228 | | /* If it wasn't AEAD or SSL_eNULL, we expect it to be a |
2229 | | known CBC cipher. */ |
2230 | 0 | if (e_ciph == NULL || EVP_CIPHER_get_mode(e_ciph) != EVP_CIPH_CBC_MODE) |
2231 | 0 | return 0; |
2232 | | |
2233 | 0 | in = 1; /* padding length byte */ |
2234 | 0 | out = EVP_CIPHER_get_iv_length(e_ciph); |
2235 | 0 | if (out < 0) |
2236 | 0 | return 0; |
2237 | 0 | blk = EVP_CIPHER_get_block_size(e_ciph); |
2238 | 0 | if (blk <= 0) |
2239 | 0 | return 0; |
2240 | 0 | } |
2241 | 0 | } |
2242 | | |
2243 | 0 | *mac_overhead = (size_t)mac; |
2244 | 0 | *int_overhead = (size_t)in; |
2245 | 0 | *blocksize = (size_t)blk; |
2246 | 0 | *ext_overhead = (size_t)out; |
2247 | |
|
2248 | 0 | return 1; |
2249 | 0 | } |
2250 | | |
2251 | | int ssl_cert_is_disabled(SSL_CTX *ctx, size_t idx) |
2252 | 0 | { |
2253 | 0 | const SSL_CERT_LOOKUP *cl; |
2254 | | |
2255 | | /* A provider-loaded key type is always enabled */ |
2256 | 0 | if (idx >= SSL_PKEY_NUM) |
2257 | 0 | return 0; |
2258 | | |
2259 | 0 | cl = ssl_cert_lookup_by_idx(idx, ctx); |
2260 | 0 | if (cl == NULL || (cl->amask & ctx->disabled_auth_mask) != 0) |
2261 | 0 | return 1; |
2262 | 0 | return 0; |
2263 | 0 | } |
2264 | | |
2265 | | /* |
2266 | | * Default list of TLSv1.2 (and earlier) ciphers |
2267 | | * SSL_DEFAULT_CIPHER_LIST deprecated in 3.0.0 |
2268 | | * Update both macro and function simultaneously |
2269 | | */ |
2270 | | const char *OSSL_default_cipher_list(void) |
2271 | 0 | { |
2272 | 0 | return "ALL:!COMPLEMENTOFDEFAULT:!eNULL"; |
2273 | 0 | } |
2274 | | |
2275 | | /* |
2276 | | * Default list of TLSv1.3 (and later) ciphers |
2277 | | * TLS_DEFAULT_CIPHERSUITES deprecated in 3.0.0 |
2278 | | * Update both macro and function simultaneously |
2279 | | */ |
2280 | | const char *OSSL_default_ciphersuites(void) |
2281 | 0 | { |
2282 | 0 | return "TLS_AES_256_GCM_SHA384:" |
2283 | 0 | "TLS_CHACHA20_POLY1305_SHA256:" |
2284 | 0 | "TLS_AES_128_GCM_SHA256"; |
2285 | 0 | } |
2286 | | |
2287 | | int ssl_cipher_list_to_bytes(SSL_CONNECTION *s, STACK_OF(SSL_CIPHER) *sk, |
2288 | | WPACKET *pkt) |
2289 | 0 | { |
2290 | 0 | int i; |
2291 | 0 | size_t totlen = 0, len, maxlen, maxverok = 0; |
2292 | 0 | int empty_reneg_info_scsv = !s->renegotiate |
2293 | 0 | && !SSL_CONNECTION_IS_DTLS(s) |
2294 | 0 | && ssl_security(s, SSL_SECOP_VERSION, 0, TLS1_VERSION, NULL) |
2295 | 0 | && s->min_proto_version <= TLS1_VERSION; |
2296 | 0 | SSL *ssl = SSL_CONNECTION_GET_SSL(s); |
2297 | | |
2298 | | /* Set disabled masks for this session */ |
2299 | 0 | if (!ssl_set_client_disabled(s)) { |
2300 | 0 | SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_R_NO_PROTOCOLS_AVAILABLE); |
2301 | 0 | return 0; |
2302 | 0 | } |
2303 | | |
2304 | 0 | if (sk == NULL) { |
2305 | 0 | SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR); |
2306 | 0 | return 0; |
2307 | 0 | } |
2308 | | |
2309 | | #ifdef OPENSSL_MAX_TLS1_2_CIPHER_LENGTH |
2310 | | #if OPENSSL_MAX_TLS1_2_CIPHER_LENGTH < 6 |
2311 | | #error Max cipher length too short |
2312 | | #endif |
2313 | | /* |
2314 | | * Some servers hang if client hello > 256 bytes as hack workaround |
2315 | | * chop number of supported ciphers to keep it well below this if we |
2316 | | * use TLS v1.2 |
2317 | | */ |
2318 | | if (TLS1_get_version(ssl) >= TLS1_2_VERSION) |
2319 | | maxlen = OPENSSL_MAX_TLS1_2_CIPHER_LENGTH & ~1; |
2320 | | else |
2321 | | #endif |
2322 | | /* Maximum length that can be stored in 2 bytes. Length must be even */ |
2323 | 0 | maxlen = 0xfffe; |
2324 | |
|
2325 | 0 | if (empty_reneg_info_scsv) |
2326 | 0 | maxlen -= 2; |
2327 | 0 | if (s->mode & SSL_MODE_SEND_FALLBACK_SCSV) |
2328 | 0 | maxlen -= 2; |
2329 | | |
2330 | | /* RFC 8701: prepend a GREASE cipher suite value */ |
2331 | 0 | if ((s->options & SSL_OP_GREASE) && !s->server) { |
2332 | 0 | uint16_t grease_cs = ossl_grease_value(s, OSSL_GREASE_CIPHER); |
2333 | |
|
2334 | 0 | if (!WPACKET_put_bytes_u16(pkt, grease_cs)) { |
2335 | 0 | SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR); |
2336 | 0 | return 0; |
2337 | 0 | } |
2338 | 0 | totlen += 2; |
2339 | 0 | } |
2340 | | |
2341 | 0 | for (i = 0; i < sk_SSL_CIPHER_num(sk) && totlen < maxlen; i++) { |
2342 | 0 | const SSL_CIPHER *c; |
2343 | |
|
2344 | 0 | c = sk_SSL_CIPHER_value(sk, i); |
2345 | | /* Skip disabled ciphers */ |
2346 | 0 | if (ssl_cipher_disabled(s, c, SSL_SECOP_CIPHER_SUPPORTED)) |
2347 | 0 | continue; |
2348 | | |
2349 | 0 | if (!ssl->method->put_cipher_by_char(c, pkt, &len)) { |
2350 | 0 | SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR); |
2351 | 0 | return 0; |
2352 | 0 | } |
2353 | | |
2354 | | /* Sanity check that the maximum version we offer has ciphers enabled */ |
2355 | 0 | if (!maxverok) { |
2356 | 0 | int minproto = SSL_CONNECTION_IS_DTLS(s) ? c->min_dtls : c->min_tls; |
2357 | 0 | int maxproto = SSL_CONNECTION_IS_DTLS(s) ? c->max_dtls : c->max_tls; |
2358 | |
|
2359 | 0 | if (ssl_version_cmp(s, maxproto, s->s3.tmp.max_ver) >= 0 |
2360 | 0 | && ssl_version_cmp(s, minproto, s->s3.tmp.max_ver) <= 0) |
2361 | 0 | maxverok = 1; |
2362 | 0 | } |
2363 | |
|
2364 | 0 | totlen += len; |
2365 | 0 | } |
2366 | | |
2367 | 0 | if (totlen == 0 || !maxverok) { |
2368 | 0 | const char *maxvertext = !maxverok |
2369 | 0 | ? "No ciphers enabled for max supported SSL/TLS version" |
2370 | 0 | : NULL; |
2371 | |
|
2372 | 0 | SSLfatal_data(s, SSL_AD_INTERNAL_ERROR, SSL_R_NO_CIPHERS_AVAILABLE, |
2373 | 0 | maxvertext); |
2374 | 0 | return 0; |
2375 | 0 | } |
2376 | | |
2377 | 0 | if (totlen != 0) { |
2378 | 0 | if (empty_reneg_info_scsv) { |
2379 | 0 | static const SSL_CIPHER scsv = { |
2380 | 0 | 0, NULL, NULL, SSL3_CK_SCSV, 0, 0, 0, 0, 0, 0, 0, 0, 0 |
2381 | 0 | }; |
2382 | 0 | if (!ssl->method->put_cipher_by_char(&scsv, pkt, &len)) { |
2383 | 0 | SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR); |
2384 | 0 | return 0; |
2385 | 0 | } |
2386 | 0 | } |
2387 | 0 | if (s->mode & SSL_MODE_SEND_FALLBACK_SCSV) { |
2388 | 0 | static const SSL_CIPHER scsv = { |
2389 | 0 | 0, NULL, NULL, SSL3_CK_FALLBACK_SCSV, 0, 0, 0, 0, 0, 0, 0, 0, 0 |
2390 | 0 | }; |
2391 | 0 | if (!ssl->method->put_cipher_by_char(&scsv, pkt, &len)) { |
2392 | 0 | SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR); |
2393 | 0 | return 0; |
2394 | 0 | } |
2395 | 0 | } |
2396 | 0 | } |
2397 | | |
2398 | 0 | return 1; |
2399 | 0 | } |