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