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