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