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