Coverage Report

Created: 2023-06-08 06:41

/src/openssl111/ssl/ssl_ciph.c
Line
Count
Source (jump to first uncovered line)
1
/*
2
 * Copyright 1995-2022 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 <openssl/conf.h>
19
#include "internal/nelem.h"
20
#include "ssl_local.h"
21
#include "internal/thread_once.h"
22
#include "internal/cryptlib.h"
23
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
1.83k
#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
38
#define SSL_ENC_AES128CCM_IDX   14
39
#define SSL_ENC_AES256CCM_IDX   15
40
#define SSL_ENC_AES128CCM8_IDX  16
41
#define SSL_ENC_AES256CCM8_IDX  17
42
#define SSL_ENC_GOST8912_IDX    18
43
#define SSL_ENC_CHACHA_IDX      19
44
#define SSL_ENC_ARIA128GCM_IDX  20
45
#define SSL_ENC_ARIA256GCM_IDX  21
46
46
#define SSL_ENC_NUM_IDX         22
47
48
/* NB: make sure indices in these tables match values above */
49
50
typedef struct {
51
    uint32_t mask;
52
    int nid;
53
} ssl_cipher_table;
54
55
/* Table of NIDs for each cipher */
56
static 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 */
70
    {SSL_AES256GCM, NID_aes_256_gcm}, /* SSL_ENC_AES256GCM_IDX 13 */
71
    {SSL_AES128CCM, NID_aes_128_ccm}, /* SSL_ENC_AES128CCM_IDX 14 */
72
    {SSL_AES256CCM, NID_aes_256_ccm}, /* SSL_ENC_AES256CCM_IDX 15 */
73
    {SSL_AES128CCM8, NID_aes_128_ccm}, /* SSL_ENC_AES128CCM8_IDX 16 */
74
    {SSL_AES256CCM8, NID_aes_256_ccm}, /* SSL_ENC_AES256CCM8_IDX 17 */
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 */
79
};
80
81
static const EVP_CIPHER *ssl_cipher_methods[SSL_ENC_NUM_IDX];
82
83
#define SSL_COMP_NULL_IDX       0
84
0
#define SSL_COMP_ZLIB_IDX       1
85
#define SSL_COMP_NUM_IDX        2
86
87
static STACK_OF(SSL_COMP) *ssl_comp_methods = NULL;
88
89
#ifndef OPENSSL_NO_COMP
90
static CRYPTO_ONCE ssl_load_builtin_comp_once = CRYPTO_ONCE_STATIC_INIT;
91
#endif
92
93
/*
94
 * Constant SSL_MAX_DIGEST equal to size of digests array should be defined
95
 * in the ssl_local.h
96
 */
97
98
72.6k
#define SSL_MD_NUM_IDX  SSL_MAX_DIGEST
99
100
/* NB: make sure indices in this table matches values above */
101
static 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 */
107
    {SSL_SHA384, NID_sha384},   /* SSL_MD_SHA384_IDX 5 */
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 */
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 */
114
};
115
116
static const EVP_MD *ssl_digest_methods[SSL_MD_NUM_IDX] = {
117
    NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL
118
};
119
120
/* *INDENT-OFF* */
121
static const ssl_cipher_table ssl_cipher_table_kx[] = {
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},
130
    {SSL_kGOST,     NID_kx_gost},
131
    {SSL_kANY,      NID_kx_any}
132
};
133
134
static const ssl_cipher_table ssl_cipher_table_auth[] = {
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},
142
    {SSL_aNULL,   NID_auth_null},
143
    {SSL_aANY,    NID_auth_any}
144
};
145
/* *INDENT-ON* */
146
147
/* Utility function for table lookup */
148
static int ssl_cipher_info_find(const ssl_cipher_table * table,
149
                                size_t table_cnt, uint32_t mask)
150
3.67k
{
151
3.67k
    size_t i;
152
29.7k
    for (i = 0; i < table_cnt; i++, table++) {
153
29.0k
        if (table->mask == mask)
154
2.96k
            return (int)i;
155
29.0k
    }
156
705
    return -1;
157
3.67k
}
158
159
#define ssl_cipher_info_lookup(table, x) \
160
3.67k
    ssl_cipher_info_find(table, OSSL_NELEM(table), x)
161
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
 */
167
static int ssl_mac_pkey_id[SSL_MD_NUM_IDX] = {
168
    /* MD5, SHA, GOST94, MAC89 */
169
    EVP_PKEY_HMAC, EVP_PKEY_HMAC, EVP_PKEY_HMAC, NID_undef,
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,
174
    /* MD5/SHA1, SHA224, SHA512 */
175
    NID_undef, NID_undef, NID_undef
176
};
177
178
static size_t ssl_mac_secret_size[SSL_MD_NUM_IDX];
179
180
16.4M
#define CIPHER_ADD      1
181
804k
#define CIPHER_KILL     2
182
7.39M
#define CIPHER_DEL      3
183
10.1M
#define CIPHER_ORD      4
184
81.1k
#define CIPHER_SPECIAL  5
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
4.34M
#define CIPHER_BUMP     6
190
191
typedef 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
198
static const SSL_CIPHER cipher_aliases[] = {
199
    /* "ALL" doesn't include eNULL (must be specifically enabled) */
200
    {0, SSL_TXT_ALL, NULL, 0, 0, 0, ~SSL_eNULL},
201
    /* "COMPLEMENTOFALL" */
202
    {0, SSL_TXT_CMPALL, NULL, 0, 0, 0, SSL_eNULL},
203
204
    /*
205
     * "COMPLEMENTOFDEFAULT" (does *not* include ciphersuites not found in
206
     * ALL!)
207
     */
208
    {0, SSL_TXT_CMPDEF, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 0, SSL_NOT_DEFAULT},
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
     */
215
    {0, SSL_TXT_kRSA, NULL, 0, SSL_kRSA},
216
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},
220
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},
224
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},
231
232
    /* server authentication aliases */
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},
244
245
    /* aliases combining key exchange and server authentication */
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},
256
257
    /* symmetric encryption aliases */
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,
266
     SSL_AES128 | SSL_AES128GCM | SSL_AES128CCM | SSL_AES128CCM8},
267
    {0, SSL_TXT_AES256, NULL, 0, 0, 0,
268
     SSL_AES256 | SSL_AES256GCM | SSL_AES256CCM | SSL_AES256CCM8},
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,
272
     SSL_AES128CCM | SSL_AES256CCM | SSL_AES128CCM8 | SSL_AES256CCM8},
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},
278
279
    {0, SSL_TXT_ARIA, NULL, 0, 0, 0, SSL_ARIA},
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
284
    /* MAC aliases */
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},
293
294
    /* protocol version aliases */
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},
299
300
    /* strength classes */
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},
304
    /* FIPS 140-2 approved ciphersuite */
305
    {0, SSL_TXT_FIPS, NULL, 0, 0, 0, ~SSL_eNULL, 0, 0, 0, 0, 0, SSL_FIPS},
306
307
    /* "EDH-" aliases to "DHE-" labels (for backward compatibility) */
308
    {0, SSL3_TXT_EDH_DSS_DES_192_CBC3_SHA, NULL, 0,
309
     SSL_kDHE, SSL_aDSS, SSL_3DES, SSL_SHA1, 0, 0, 0, 0, SSL_HIGH | SSL_FIPS},
310
    {0, SSL3_TXT_EDH_RSA_DES_192_CBC3_SHA, NULL, 0,
311
     SSL_kDHE, SSL_aRSA, SSL_3DES, SSL_SHA1, 0, 0, 0, 0, SSL_HIGH | SSL_FIPS},
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
318
 */
319
#ifdef OPENSSL_NO_ENGINE
320
321
static int get_optional_pkey_id(const char *pkey_name)
322
{
323
    const EVP_PKEY_ASN1_METHOD *ameth;
324
    int pkey_id = 0;
325
    ameth = EVP_PKEY_asn1_find_str(NULL, pkey_name, -1);
326
    if (ameth && EVP_PKEY_asn1_get0_info(&pkey_id, NULL, NULL, NULL, NULL,
327
                                         ameth) > 0)
328
        return pkey_id;
329
    return 0;
330
}
331
332
#else
333
334
static int get_optional_pkey_id(const char *pkey_name)
335
10
{
336
10
    const EVP_PKEY_ASN1_METHOD *ameth;
337
10
    ENGINE *tmpeng = NULL;
338
10
    int pkey_id = 0;
339
10
    ameth = EVP_PKEY_asn1_find_str(&tmpeng, pkey_name, -1);
340
10
    if (ameth) {
341
0
        if (EVP_PKEY_asn1_get0_info(&pkey_id, NULL, NULL, NULL, NULL,
342
0
                                    ameth) <= 0)
343
0
            pkey_id = 0;
344
0
    }
345
10
    ENGINE_finish(tmpeng);
346
10
    return pkey_id;
347
10
}
348
349
#endif
350
351
/* masks of disabled algorithms */
352
static uint32_t disabled_enc_mask;
353
static uint32_t disabled_mac_mask;
354
static uint32_t disabled_mkey_mask;
355
static uint32_t disabled_auth_mask;
356
357
int ssl_load_ciphers(void)
358
2
{
359
2
    size_t i;
360
2
    const ssl_cipher_table *t;
361
362
2
    disabled_enc_mask = 0;
363
2
    ssl_sort_cipher_list();
364
46
    for (i = 0, t = ssl_cipher_table_cipher; i < SSL_ENC_NUM_IDX; i++, t++) {
365
44
        if (t->nid == NID_undef) {
366
2
            ssl_cipher_methods[i] = NULL;
367
42
        } else {
368
42
            const EVP_CIPHER *cipher = EVP_get_cipherbynid(t->nid);
369
42
            ssl_cipher_methods[i] = cipher;
370
42
            if (cipher == NULL)
371
4
                disabled_enc_mask |= t->mask;
372
42
        }
373
44
    }
374
2
    disabled_mac_mask = 0;
375
26
    for (i = 0, t = ssl_cipher_table_mac; i < SSL_MD_NUM_IDX; i++, t++) {
376
24
        const EVP_MD *md = EVP_get_digestbynid(t->nid);
377
24
        ssl_digest_methods[i] = md;
378
24
        if (md == NULL) {
379
10
            disabled_mac_mask |= t->mask;
380
14
        } else {
381
14
            int tmpsize = EVP_MD_size(md);
382
14
            if (!ossl_assert(tmpsize >= 0))
383
0
                return 0;
384
14
            ssl_mac_secret_size[i] = tmpsize;
385
14
        }
386
24
    }
387
    /* Make sure we can access MD5 and SHA1 */
388
2
    if (!ossl_assert(ssl_digest_methods[SSL_MD_MD5_IDX] != NULL))
389
0
        return 0;
390
2
    if (!ossl_assert(ssl_digest_methods[SSL_MD_SHA1_IDX] != NULL))
391
0
        return 0;
392
393
2
    disabled_mkey_mask = 0;
394
2
    disabled_auth_mask = 0;
395
396
#ifdef OPENSSL_NO_RSA
397
    disabled_mkey_mask |= SSL_kRSA | SSL_kRSAPSK;
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
404
    disabled_mkey_mask |= SSL_kDHE | SSL_kDHEPSK;
405
#endif
406
#ifdef OPENSSL_NO_EC
407
    disabled_mkey_mask |= SSL_kECDHE | SSL_kECDHEPSK;
408
    disabled_auth_mask |= SSL_aECDSA;
409
#endif
410
#ifdef OPENSSL_NO_PSK
411
    disabled_mkey_mask |= SSL_PSK;
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
     */
422
2
    ssl_mac_pkey_id[SSL_MD_GOST89MAC_IDX] = get_optional_pkey_id("gost-mac");
423
2
    if (ssl_mac_pkey_id[SSL_MD_GOST89MAC_IDX])
424
0
        ssl_mac_secret_size[SSL_MD_GOST89MAC_IDX] = 32;
425
2
    else
426
2
        disabled_mac_mask |= SSL_GOST89MAC;
427
428
2
    ssl_mac_pkey_id[SSL_MD_GOST89MAC12_IDX] =
429
2
        get_optional_pkey_id("gost-mac-12");
430
2
    if (ssl_mac_pkey_id[SSL_MD_GOST89MAC12_IDX])
431
0
        ssl_mac_secret_size[SSL_MD_GOST89MAC12_IDX] = 32;
432
2
    else
433
2
        disabled_mac_mask |= SSL_GOST89MAC12;
434
435
2
    if (!get_optional_pkey_id("gost2001"))
436
2
        disabled_auth_mask |= SSL_aGOST01 | SSL_aGOST12;
437
2
    if (!get_optional_pkey_id("gost2012_256"))
438
2
        disabled_auth_mask |= SSL_aGOST12;
439
2
    if (!get_optional_pkey_id("gost2012_512"))
440
2
        disabled_auth_mask |= SSL_aGOST12;
441
    /*
442
     * Disable GOST key exchange if no GOST signature algs are available *
443
     */
444
2
    if ((disabled_auth_mask & (SSL_aGOST01 | SSL_aGOST12)) ==
445
2
        (SSL_aGOST01 | SSL_aGOST12))
446
2
        disabled_mkey_mask |= SSL_kGOST;
447
448
2
    return 1;
449
2
}
450
451
#ifndef OPENSSL_NO_COMP
452
453
static int sk_comp_cmp(const SSL_COMP *const *a, const SSL_COMP *const *b)
454
0
{
455
0
    return ((*a)->id - (*b)->id);
456
0
}
457
458
DEFINE_RUN_ONCE_STATIC(do_load_builtin_compressions)
459
2
{
460
2
    SSL_COMP *comp = NULL;
461
2
    COMP_METHOD *method = COMP_zlib();
462
463
2
    CRYPTO_mem_ctrl(CRYPTO_MEM_CHECK_DISABLE);
464
2
    ssl_comp_methods = sk_SSL_COMP_new(sk_comp_cmp);
465
466
2
    if (COMP_get_type(method) != NID_undef && ssl_comp_methods != NULL) {
467
0
        comp = OPENSSL_malloc(sizeof(*comp));
468
0
        if (comp != NULL) {
469
0
            comp->method = method;
470
0
            comp->id = SSL_COMP_ZLIB_IDX;
471
0
            comp->name = COMP_get_name(method);
472
0
            sk_SSL_COMP_push(ssl_comp_methods, comp);
473
0
            sk_SSL_COMP_sort(ssl_comp_methods);
474
0
        }
475
0
    }
476
2
    CRYPTO_mem_ctrl(CRYPTO_MEM_CHECK_ENABLE);
477
2
    return 1;
478
2
}
479
480
static int load_builtin_compressions(void)
481
7.55k
{
482
7.55k
    return RUN_ONCE(&ssl_load_builtin_comp_once, do_load_builtin_compressions);
483
7.55k
}
484
#endif
485
486
int ssl_cipher_get_evp(const SSL_SESSION *s, const EVP_CIPHER **enc,
487
                       const EVP_MD **md, int *mac_pkey_type,
488
                       size_t *mac_secret_size, SSL_COMP **comp, int use_etm)
489
1.83k
{
490
1.83k
    int i;
491
1.83k
    const SSL_CIPHER *c;
492
493
1.83k
    c = s->cipher;
494
1.83k
    if (c == NULL)
495
0
        return 0;
496
1.83k
    if (comp != NULL) {
497
1.31k
        SSL_COMP ctmp;
498
1.31k
#ifndef OPENSSL_NO_COMP
499
1.31k
        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
0
        }
505
1.31k
#endif
506
1.31k
        *comp = NULL;
507
1.31k
        ctmp.id = s->compress_meth;
508
1.31k
        if (ssl_comp_methods != NULL) {
509
1.31k
            i = sk_SSL_COMP_find(ssl_comp_methods, &ctmp);
510
1.31k
            *comp = sk_SSL_COMP_value(ssl_comp_methods, i);
511
1.31k
        }
512
        /* If were only interested in comp then return success */
513
1.31k
        if ((enc == NULL) && (md == NULL))
514
0
            return 1;
515
1.31k
    }
516
517
1.83k
    if ((enc == NULL) || (md == NULL))
518
0
        return 0;
519
520
1.83k
    i = ssl_cipher_info_lookup(ssl_cipher_table_cipher, c->algorithm_enc);
521
522
1.83k
    if (i == -1) {
523
0
        *enc = NULL;
524
1.83k
    } else {
525
1.83k
        if (i == SSL_ENC_NULL_IDX)
526
161
            *enc = EVP_enc_null();
527
1.67k
        else
528
1.67k
            *enc = ssl_cipher_methods[i];
529
1.83k
    }
530
531
1.83k
    i = ssl_cipher_info_lookup(ssl_cipher_table_mac, c->algorithm_mac);
532
1.83k
    if (i == -1) {
533
705
        *md = NULL;
534
705
        if (mac_pkey_type != NULL)
535
182
            *mac_pkey_type = NID_undef;
536
705
        if (mac_secret_size != NULL)
537
182
            *mac_secret_size = 0;
538
705
        if (c->algorithm_mac == SSL_AEAD)
539
705
            mac_pkey_type = NULL;
540
1.13k
    } else {
541
1.13k
        *md = ssl_digest_methods[i];
542
1.13k
        if (mac_pkey_type != NULL)
543
309
            *mac_pkey_type = ssl_mac_pkey_id[i];
544
1.13k
        if (mac_secret_size != NULL)
545
309
            *mac_secret_size = ssl_mac_secret_size[i];
546
1.13k
    }
547
548
1.83k
    if ((*enc != NULL) &&
549
1.83k
        (*md != NULL || (EVP_CIPHER_flags(*enc) & EVP_CIPH_FLAG_AEAD_CIPHER))
550
1.83k
        && (!mac_pkey_type || *mac_pkey_type != NID_undef)) {
551
1.83k
        const EVP_CIPHER *evp;
552
553
1.83k
        if (use_etm)
554
78
            return 1;
555
556
1.75k
        if (s->ssl_version >> 8 != TLS1_VERSION_MAJOR ||
557
1.75k
            s->ssl_version < TLS1_VERSION)
558
821
            return 1;
559
560
936
        if (c->algorithm_enc == SSL_RC4 &&
561
936
            c->algorithm_mac == SSL_MD5 &&
562
936
            (evp = EVP_get_cipherbyname("RC4-HMAC-MD5")))
563
29
            *enc = evp, *md = NULL;
564
907
        else if (c->algorithm_enc == SSL_AES128 &&
565
907
                 c->algorithm_mac == SSL_SHA1 &&
566
907
                 (evp = EVP_get_cipherbyname("AES-128-CBC-HMAC-SHA1")))
567
33
            *enc = evp, *md = NULL;
568
874
        else if (c->algorithm_enc == SSL_AES256 &&
569
874
                 c->algorithm_mac == SSL_SHA1 &&
570
874
                 (evp = EVP_get_cipherbyname("AES-256-CBC-HMAC-SHA1")))
571
33
            *enc = evp, *md = NULL;
572
841
        else if (c->algorithm_enc == SSL_AES128 &&
573
841
                 c->algorithm_mac == SSL_SHA256 &&
574
841
                 (evp = EVP_get_cipherbyname("AES-128-CBC-HMAC-SHA256")))
575
50
            *enc = evp, *md = NULL;
576
791
        else if (c->algorithm_enc == SSL_AES256 &&
577
791
                 c->algorithm_mac == SSL_SHA256 &&
578
791
                 (evp = EVP_get_cipherbyname("AES-256-CBC-HMAC-SHA256")))
579
1
            *enc = evp, *md = NULL;
580
936
        return 1;
581
1.75k
    } else {
582
0
        return 0;
583
0
    }
584
1.83k
}
585
586
const EVP_MD *ssl_md(int idx)
587
72.5k
{
588
72.5k
    idx &= SSL_HANDSHAKE_MAC_MASK;
589
72.5k
    if (idx < 0 || idx >= SSL_MD_NUM_IDX)
590
0
        return NULL;
591
72.5k
    return ssl_digest_methods[idx];
592
72.5k
}
593
594
const EVP_MD *ssl_handshake_md(SSL *s)
595
9.89k
{
596
9.89k
    return ssl_md(ssl_get_algorithm2(s));
597
9.89k
}
598
599
const EVP_MD *ssl_prf_md(SSL *s)
600
1.20k
{
601
1.20k
    return ssl_md(ssl_get_algorithm2(s) >> TLS1_PRF_DGST_SHIFT);
602
1.20k
}
603
604
#define ITEM_SEP(a) \
605
62.4k
        (((a) == ':') || ((a) == ' ') || ((a) == ';') || ((a) == ','))
606
607
static void ll_append_tail(CIPHER_ORDER **head, CIPHER_ORDER *curr,
608
                           CIPHER_ORDER **tail)
609
8.17M
{
610
8.17M
    if (curr == *tail)
611
0
        return;
612
8.17M
    if (curr == *head)
613
2.94M
        *head = curr->next;
614
8.17M
    if (curr->prev != NULL)
615
5.22M
        curr->prev->next = curr->next;
616
8.17M
    if (curr->next != NULL)
617
8.17M
        curr->next->prev = curr->prev;
618
8.17M
    (*tail)->next = curr;
619
8.17M
    curr->prev = *tail;
620
8.17M
    curr->next = NULL;
621
8.17M
    *tail = curr;
622
8.17M
}
623
624
static void ll_append_head(CIPHER_ORDER **head, CIPHER_ORDER *curr,
625
                           CIPHER_ORDER **tail)
626
5.99M
{
627
5.99M
    if (curr == *head)
628
0
        return;
629
5.99M
    if (curr == *tail)
630
2.75M
        *tail = curr->prev;
631
5.99M
    if (curr->next != NULL)
632
3.23M
        curr->next->prev = curr->prev;
633
5.99M
    if (curr->prev != NULL)
634
5.99M
        curr->prev->next = curr->next;
635
5.99M
    (*head)->prev = curr;
636
5.99M
    curr->next = *head;
637
5.99M
    curr->prev = NULL;
638
5.99M
    *head = curr;
639
5.99M
}
640
641
static void ssl_cipher_collect_ciphers(const SSL_METHOD *ssl_method,
642
                                       int num_of_ciphers,
643
                                       uint32_t disabled_mkey,
644
                                       uint32_t disabled_auth,
645
                                       uint32_t disabled_enc,
646
                                       uint32_t disabled_mac,
647
                                       CIPHER_ORDER *co_list,
648
                                       CIPHER_ORDER **head_p,
649
                                       CIPHER_ORDER **tail_p)
650
12.4k
{
651
12.4k
    int i, co_list_num;
652
12.4k
    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
12.4k
    co_list_num = 0;            /* actual count of ciphers */
663
2.35M
    for (i = 0; i < num_of_ciphers; i++) {
664
2.34M
        c = ssl_method->get_cipher(i);
665
        /* drop those that use any of that is not available */
666
2.34M
        if (c == NULL || !c->valid)
667
0
            continue;
668
2.34M
        if ((c->algorithm_mkey & disabled_mkey) ||
669
2.34M
            (c->algorithm_auth & disabled_auth) ||
670
2.34M
            (c->algorithm_enc & disabled_enc) ||
671
2.34M
            (c->algorithm_mac & disabled_mac))
672
49.9k
            continue;
673
2.29M
        if (((ssl_method->ssl3_enc->enc_flags & SSL_ENC_FLAG_DTLS) == 0) &&
674
2.29M
            c->min_tls == 0)
675
0
            continue;
676
2.29M
        if (((ssl_method->ssl3_enc->enc_flags & SSL_ENC_FLAG_DTLS) != 0) &&
677
2.29M
            c->min_dtls == 0)
678
0
            continue;
679
680
2.29M
        co_list[co_list_num].cipher = c;
681
2.29M
        co_list[co_list_num].next = NULL;
682
2.29M
        co_list[co_list_num].prev = NULL;
683
2.29M
        co_list[co_list_num].active = 0;
684
2.29M
        co_list_num++;
685
2.29M
    }
686
687
    /*
688
     * Prepare linked list from list entries
689
     */
690
12.4k
    if (co_list_num > 0) {
691
12.4k
        co_list[0].prev = NULL;
692
693
12.4k
        if (co_list_num > 1) {
694
12.4k
            co_list[0].next = &co_list[1];
695
696
2.28M
            for (i = 1; i < co_list_num - 1; i++) {
697
2.27M
                co_list[i].prev = &co_list[i - 1];
698
2.27M
                co_list[i].next = &co_list[i + 1];
699
2.27M
            }
700
701
12.4k
            co_list[co_list_num - 1].prev = &co_list[co_list_num - 2];
702
12.4k
        }
703
704
12.4k
        co_list[co_list_num - 1].next = NULL;
705
706
12.4k
        *head_p = &co_list[0];
707
12.4k
        *tail_p = &co_list[co_list_num - 1];
708
12.4k
    }
709
12.4k
}
710
711
static void ssl_cipher_collect_aliases(const SSL_CIPHER **ca_list,
712
                                       int num_of_group_aliases,
713
                                       uint32_t disabled_mkey,
714
                                       uint32_t disabled_auth,
715
                                       uint32_t disabled_enc,
716
                                       uint32_t disabled_mac,
717
                                       CIPHER_ORDER *head)
718
12.4k
{
719
12.4k
    CIPHER_ORDER *ciph_curr;
720
12.4k
    const SSL_CIPHER **ca_curr;
721
12.4k
    int i;
722
12.4k
    uint32_t mask_mkey = ~disabled_mkey;
723
12.4k
    uint32_t mask_auth = ~disabled_auth;
724
12.4k
    uint32_t mask_enc = ~disabled_enc;
725
12.4k
    uint32_t mask_mac = ~disabled_mac;
726
727
    /*
728
     * First, add the real ciphers as already collected
729
     */
730
12.4k
    ciph_curr = head;
731
12.4k
    ca_curr = ca_list;
732
2.30M
    while (ciph_curr != NULL) {
733
2.29M
        *ca_curr = ciph_curr->cipher;
734
2.29M
        ca_curr++;
735
2.29M
        ciph_curr = ciph_curr->next;
736
2.29M
    }
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
960k
    for (i = 0; i < num_of_group_aliases; i++) {
745
948k
        uint32_t algorithm_mkey = cipher_aliases[i].algorithm_mkey;
746
948k
        uint32_t algorithm_auth = cipher_aliases[i].algorithm_auth;
747
948k
        uint32_t algorithm_enc = cipher_aliases[i].algorithm_enc;
748
948k
        uint32_t algorithm_mac = cipher_aliases[i].algorithm_mac;
749
750
948k
        if (algorithm_mkey)
751
299k
            if ((algorithm_mkey & mask_mkey) == 0)
752
12.4k
                continue;
753
754
936k
        if (algorithm_auth)
755
249k
            if ((algorithm_auth & mask_auth) == 0)
756
37.4k
                continue;
757
758
898k
        if (algorithm_enc)
759
336k
            if ((algorithm_enc & mask_enc) == 0)
760
12.4k
                continue;
761
762
886k
        if (algorithm_mac)
763
124k
            if ((algorithm_mac & mask_mac) == 0)
764
37.4k
                continue;
765
766
848k
        *ca_curr = (SSL_CIPHER *)(cipher_aliases + i);
767
848k
        ca_curr++;
768
848k
    }
769
770
12.4k
    *ca_curr = NULL;            /* end of list */
771
12.4k
}
772
773
static void ssl_cipher_apply_rule(uint32_t cipher_id, uint32_t alg_mkey,
774
                                  uint32_t alg_auth, uint32_t alg_enc,
775
                                  uint32_t alg_mac, int min_tls,
776
                                  uint32_t algo_strength, int rule,
777
                                  int32_t strength_bits, CIPHER_ORDER **head_p,
778
                                  CIPHER_ORDER **tail_p)
779
293k
{
780
293k
    CIPHER_ORDER *head, *tail, *curr, *next, *last;
781
293k
    const SSL_CIPHER *cp;
782
293k
    int reverse = 0;
783
784
#ifdef CIPHER_DEBUG
785
    fprintf(stderr,
786
            "Applying rule %d with %08x/%08x/%08x/%08x/%08x %08x (%d)\n",
787
            rule, alg_mkey, alg_auth, alg_enc, alg_mac, min_tls,
788
            algo_strength, strength_bits);
789
#endif
790
791
293k
    if (rule == CIPHER_DEL || rule == CIPHER_BUMP)
792
74.8k
        reverse = 1;            /* needed to maintain sorting between currently
793
                                 * deleted ciphers */
794
795
293k
    head = *head_p;
796
293k
    tail = *tail_p;
797
798
293k
    if (reverse) {
799
74.8k
        next = tail;
800
74.8k
        last = head;
801
218k
    } else {
802
218k
        next = head;
803
218k
        last = tail;
804
218k
    }
805
806
293k
    curr = NULL;
807
53.5M
    for (;;) {
808
53.5M
        if (curr == last)
809
293k
            break;
810
811
53.2M
        curr = next;
812
813
53.2M
        if (curr == NULL)
814
0
            break;
815
816
53.2M
        next = reverse ? curr->prev : curr->next;
817
818
53.2M
        cp = curr->cipher;
819
820
        /*
821
         * Selection criteria is either the value of strength_bits
822
         * or the algorithms used.
823
         */
824
53.2M
        if (strength_bits >= 0) {
825
9.18M
            if (strength_bits != cp->strength_bits)
826
6.88M
                continue;
827
44.0M
        } else {
828
#ifdef CIPHER_DEBUG
829
            fprintf(stderr,
830
                    "\nName: %s:\nAlgo = %08x/%08x/%08x/%08x/%08x Algo_strength = %08x\n",
831
                    cp->name, cp->algorithm_mkey, cp->algorithm_auth,
832
                    cp->algorithm_enc, cp->algorithm_mac, cp->min_tls,
833
                    cp->algo_strength);
834
#endif
835
44.0M
            if (cipher_id != 0 && (cipher_id != cp->id))
836
0
                continue;
837
44.0M
            if (alg_mkey && !(alg_mkey & cp->algorithm_mkey))
838
12.0M
                continue;
839
32.0M
            if (alg_auth && !(alg_auth & cp->algorithm_auth))
840
2.30M
                continue;
841
29.7M
            if (alg_enc && !(alg_enc & cp->algorithm_enc))
842
9.51M
                continue;
843
20.2M
            if (alg_mac && !(alg_mac & cp->algorithm_mac))
844
4.46M
                continue;
845
15.7M
            if (min_tls && (min_tls != cp->min_tls))
846
1.22M
                continue;
847
14.5M
            if ((algo_strength & SSL_STRONG_MASK)
848
14.5M
                && !(algo_strength & SSL_STRONG_MASK & cp->algo_strength))
849
0
                continue;
850
14.5M
            if ((algo_strength & SSL_DEFAULT_MASK)
851
14.5M
                && !(algo_strength & SSL_DEFAULT_MASK & cp->algo_strength))
852
468k
                continue;
853
14.5M
        }
854
855
#ifdef CIPHER_DEBUG
856
        fprintf(stderr, "Action = %d\n", rule);
857
#endif
858
859
        /* add the cipher if it has not been added yet. */
860
16.3M
        if (rule == CIPHER_ADD) {
861
            /* reverse == 0 */
862
6.32M
            if (!curr->active) {
863
4.94M
                ll_append_tail(&head, curr, &tail);
864
4.94M
                curr->active = 1;
865
4.94M
            }
866
6.32M
        }
867
        /* Move the added cipher to this location */
868
10.0M
        else if (rule == CIPHER_ORD) {
869
            /* reverse == 0 */
870
3.23M
            if (curr->active) {
871
3.23M
                ll_append_tail(&head, curr, &tail);
872
3.23M
            }
873
6.78M
        } else if (rule == CIPHER_DEL) {
874
            /* reverse == 1 */
875
2.75M
            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
2.75M
                ll_append_head(&head, curr, &tail);
882
2.75M
                curr->active = 0;
883
2.75M
            }
884
4.02M
        } else if (rule == CIPHER_BUMP) {
885
3.23M
            if (curr->active)
886
3.23M
                ll_append_head(&head, curr, &tail);
887
3.23M
        } else if (rule == CIPHER_KILL) {
888
            /* reverse == 0 */
889
792k
            if (head == curr)
890
112k
                head = curr->next;
891
680k
            else
892
680k
                curr->prev->next = curr->next;
893
792k
            if (tail == curr)
894
6.24k
                tail = curr->prev;
895
792k
            curr->active = 0;
896
792k
            if (curr->next != NULL)
897
786k
                curr->next->prev = curr->prev;
898
792k
            if (curr->prev != NULL)
899
680k
                curr->prev->next = curr->next;
900
792k
            curr->next = NULL;
901
792k
            curr->prev = NULL;
902
792k
        }
903
16.3M
    }
904
905
293k
    *head_p = head;
906
293k
    *tail_p = tail;
907
293k
}
908
909
static int ssl_cipher_strength_sort(CIPHER_ORDER **head_p,
910
                                    CIPHER_ORDER **tail_p)
911
12.4k
{
912
12.4k
    int32_t max_strength_bits;
913
12.4k
    int i, *number_uses;
914
12.4k
    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
12.4k
    max_strength_bits = 0;
922
12.4k
    curr = *head_p;
923
2.30M
    while (curr != NULL) {
924
2.29M
        if (curr->active && (curr->cipher->strength_bits > max_strength_bits))
925
12.4k
            max_strength_bits = curr->cipher->strength_bits;
926
2.29M
        curr = curr->next;
927
2.29M
    }
928
929
12.4k
    number_uses = OPENSSL_zalloc(sizeof(int) * (max_strength_bits + 1));
930
12.4k
    if (number_uses == NULL) {
931
0
        SSLerr(SSL_F_SSL_CIPHER_STRENGTH_SORT, ERR_R_MALLOC_FAILURE);
932
0
        return 0;
933
0
    }
934
935
    /*
936
     * Now find the strength_bits values actually used
937
     */
938
12.4k
    curr = *head_p;
939
2.30M
    while (curr != NULL) {
940
2.29M
        if (curr->active)
941
2.29M
            number_uses[curr->cipher->strength_bits]++;
942
2.29M
        curr = curr->next;
943
2.29M
    }
944
    /*
945
     * Go through the list of used strength_bits values in descending
946
     * order.
947
     */
948
3.21M
    for (i = max_strength_bits; i >= 0; i--)
949
3.20M
        if (number_uses[i] > 0)
950
49.9k
            ssl_cipher_apply_rule(0, 0, 0, 0, 0, 0, 0, CIPHER_ORD, i, head_p,
951
49.9k
                                  tail_p);
952
953
12.4k
    OPENSSL_free(number_uses);
954
12.4k
    return 1;
955
12.4k
}
956
957
static int ssl_cipher_process_rulestr(const char *rule_str,
958
                                      CIPHER_ORDER **head_p,
959
                                      CIPHER_ORDER **tail_p,
960
                                      const SSL_CIPHER **ca_list, CERT *c)
961
12.4k
{
962
12.4k
    uint32_t alg_mkey, alg_auth, alg_enc, alg_mac, algo_strength;
963
12.4k
    int min_tls;
964
12.4k
    const char *l, *buf;
965
12.4k
    int j, multi, found, rule, retval, ok, buflen;
966
12.4k
    uint32_t cipher_id = 0;
967
12.4k
    char ch;
968
969
12.4k
    retval = 1;
970
12.4k
    l = rule_str;
971
62.4k
    for ( ; ; ) {
972
62.4k
        ch = *l;
973
974
62.4k
        if (ch == '\0')
975
0
            break;              /* done */
976
62.4k
        if (ch == '-') {
977
0
            rule = CIPHER_DEL;
978
0
            l++;
979
62.4k
        } else if (ch == '+') {
980
0
            rule = CIPHER_ORD;
981
0
            l++;
982
62.4k
        } else if (ch == '!') {
983
12.4k
            rule = CIPHER_KILL;
984
12.4k
            l++;
985
49.9k
        } else if (ch == '@') {
986
6.24k
            rule = CIPHER_SPECIAL;
987
6.24k
            l++;
988
43.6k
        } else {
989
43.6k
            rule = CIPHER_ADD;
990
43.6k
        }
991
992
62.4k
        if (ITEM_SEP(ch)) {
993
24.9k
            l++;
994
24.9k
            continue;
995
24.9k
        }
996
997
37.4k
        alg_mkey = 0;
998
37.4k
        alg_auth = 0;
999
37.4k
        alg_enc = 0;
1000
37.4k
        alg_mac = 0;
1001
37.4k
        min_tls = 0;
1002
37.4k
        algo_strength = 0;
1003
1004
37.4k
        for (;;) {
1005
37.4k
            ch = *l;
1006
37.4k
            buf = l;
1007
37.4k
            buflen = 0;
1008
37.4k
#ifndef CHARSET_EBCDIC
1009
318k
            while (((ch >= 'A') && (ch <= 'Z')) ||
1010
318k
                   ((ch >= '0') && (ch <= '9')) ||
1011
318k
                   ((ch >= 'a') && (ch <= 'z')) ||
1012
318k
                   (ch == '-') || (ch == '.') || (ch == '='))
1013
#else
1014
            while (isalnum((unsigned char)ch) || (ch == '-') || (ch == '.')
1015
                   || (ch == '='))
1016
#endif
1017
280k
            {
1018
280k
                ch = *(++l);
1019
280k
                buflen++;
1020
280k
            }
1021
1022
37.4k
            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
                 */
1028
0
                SSLerr(SSL_F_SSL_CIPHER_PROCESS_RULESTR, SSL_R_INVALID_COMMAND);
1029
0
                return 0;
1030
0
            }
1031
1032
37.4k
            if (rule == CIPHER_SPECIAL) {
1033
6.24k
                found = 0;      /* unused -- avoid compiler warning */
1034
6.24k
                break;          /* special treatment */
1035
6.24k
            }
1036
1037
            /* check for multi-part specification */
1038
31.2k
            if (ch == '+') {
1039
0
                multi = 1;
1040
0
                l++;
1041
31.2k
            } else {
1042
31.2k
                multi = 0;
1043
31.2k
            }
1044
1045
            /*
1046
             * Now search for the cipher alias in the ca_list. Be careful
1047
             * with the strncmp, because the "buflen" limitation
1048
             * will make the rule "ADH:SOME" and the cipher
1049
             * "ADH-MY-CIPHER" look like a match for buflen=3.
1050
             * So additionally check whether the cipher name found
1051
             * has the correct length. We can save a strlen() call:
1052
             * just checking for the '\0' at the right place is
1053
             * sufficient, we have to strncmp() anyway. (We cannot
1054
             * use strcmp(), because buf is not '\0' terminated.)
1055
             */
1056
31.2k
            j = found = 0;
1057
31.2k
            cipher_id = 0;
1058
6.25M
            while (ca_list[j]) {
1059
6.25M
                if (strncmp(buf, ca_list[j]->name, buflen) == 0
1060
6.25M
                    && (ca_list[j]->name[buflen] == '\0')) {
1061
31.2k
                    found = 1;
1062
31.2k
                    break;
1063
31.2k
                } else
1064
6.22M
                    j++;
1065
6.25M
            }
1066
1067
31.2k
            if (!found)
1068
0
                break;          /* ignore this entry */
1069
1070
31.2k
            if (ca_list[j]->algorithm_mkey) {
1071
0
                if (alg_mkey) {
1072
0
                    alg_mkey &= ca_list[j]->algorithm_mkey;
1073
0
                    if (!alg_mkey) {
1074
0
                        found = 0;
1075
0
                        break;
1076
0
                    }
1077
0
                } else {
1078
0
                    alg_mkey = ca_list[j]->algorithm_mkey;
1079
0
                }
1080
0
            }
1081
1082
31.2k
            if (ca_list[j]->algorithm_auth) {
1083
0
                if (alg_auth) {
1084
0
                    alg_auth &= ca_list[j]->algorithm_auth;
1085
0
                    if (!alg_auth) {
1086
0
                        found = 0;
1087
0
                        break;
1088
0
                    }
1089
0
                } else {
1090
0
                    alg_auth = ca_list[j]->algorithm_auth;
1091
0
                }
1092
0
            }
1093
1094
31.2k
            if (ca_list[j]->algorithm_enc) {
1095
24.9k
                if (alg_enc) {
1096
0
                    alg_enc &= ca_list[j]->algorithm_enc;
1097
0
                    if (!alg_enc) {
1098
0
                        found = 0;
1099
0
                        break;
1100
0
                    }
1101
24.9k
                } else {
1102
24.9k
                    alg_enc = ca_list[j]->algorithm_enc;
1103
24.9k
                }
1104
24.9k
            }
1105
1106
31.2k
            if (ca_list[j]->algorithm_mac) {
1107
0
                if (alg_mac) {
1108
0
                    alg_mac &= ca_list[j]->algorithm_mac;
1109
0
                    if (!alg_mac) {
1110
0
                        found = 0;
1111
0
                        break;
1112
0
                    }
1113
0
                } else {
1114
0
                    alg_mac = ca_list[j]->algorithm_mac;
1115
0
                }
1116
0
            }
1117
1118
31.2k
            if (ca_list[j]->algo_strength & SSL_STRONG_MASK) {
1119
0
                if (algo_strength & SSL_STRONG_MASK) {
1120
0
                    algo_strength &=
1121
0
                        (ca_list[j]->algo_strength & SSL_STRONG_MASK) |
1122
0
                        ~SSL_STRONG_MASK;
1123
0
                    if (!(algo_strength & SSL_STRONG_MASK)) {
1124
0
                        found = 0;
1125
0
                        break;
1126
0
                    }
1127
0
                } else {
1128
0
                    algo_strength = ca_list[j]->algo_strength & SSL_STRONG_MASK;
1129
0
                }
1130
0
            }
1131
1132
31.2k
            if (ca_list[j]->algo_strength & SSL_DEFAULT_MASK) {
1133
6.24k
                if (algo_strength & SSL_DEFAULT_MASK) {
1134
0
                    algo_strength &=
1135
0
                        (ca_list[j]->algo_strength & SSL_DEFAULT_MASK) |
1136
0
                        ~SSL_DEFAULT_MASK;
1137
0
                    if (!(algo_strength & SSL_DEFAULT_MASK)) {
1138
0
                        found = 0;
1139
0
                        break;
1140
0
                    }
1141
6.24k
                } else {
1142
6.24k
                    algo_strength |=
1143
6.24k
                        ca_list[j]->algo_strength & SSL_DEFAULT_MASK;
1144
6.24k
                }
1145
6.24k
            }
1146
1147
31.2k
            if (ca_list[j]->valid) {
1148
                /*
1149
                 * explicit ciphersuite found; its protocol version does not
1150
                 * become part of the search pattern!
1151
                 */
1152
1153
0
                cipher_id = ca_list[j]->id;
1154
31.2k
            } else {
1155
                /*
1156
                 * not an explicit ciphersuite; only in this case, the
1157
                 * protocol version is considered part of the search pattern
1158
                 */
1159
1160
31.2k
                if (ca_list[j]->min_tls) {
1161
0
                    if (min_tls != 0 && min_tls != ca_list[j]->min_tls) {
1162
0
                        found = 0;
1163
0
                        break;
1164
0
                    } else {
1165
0
                        min_tls = ca_list[j]->min_tls;
1166
0
                    }
1167
0
                }
1168
31.2k
            }
1169
1170
31.2k
            if (!multi)
1171
31.2k
                break;
1172
31.2k
        }
1173
1174
        /*
1175
         * Ok, we have the rule, now apply it
1176
         */
1177
37.4k
        if (rule == CIPHER_SPECIAL) { /* special command */
1178
6.24k
            ok = 0;
1179
6.24k
            if ((buflen == 8) && strncmp(buf, "STRENGTH", 8) == 0) {
1180
0
                ok = ssl_cipher_strength_sort(head_p, tail_p);
1181
6.24k
            } else if (buflen == 10 && strncmp(buf, "SECLEVEL=", 9) == 0) {
1182
6.24k
                int level = buf[9] - '0';
1183
6.24k
                if (level < 0 || level > 5) {
1184
0
                    SSLerr(SSL_F_SSL_CIPHER_PROCESS_RULESTR,
1185
0
                           SSL_R_INVALID_COMMAND);
1186
6.24k
                } else {
1187
6.24k
                    c->sec_level = level;
1188
6.24k
                    ok = 1;
1189
6.24k
                }
1190
6.24k
            } else {
1191
0
                SSLerr(SSL_F_SSL_CIPHER_PROCESS_RULESTR, SSL_R_INVALID_COMMAND);
1192
0
            }
1193
6.24k
            if (ok == 0)
1194
0
                retval = 0;
1195
            /*
1196
             * We do not support any "multi" options
1197
             * together with "@", so throw away the
1198
             * rest of the command, if any left, until
1199
             * end or ':' is found.
1200
             */
1201
6.24k
            while ((*l != '\0') && !ITEM_SEP(*l))
1202
0
                l++;
1203
31.2k
        } else if (found) {
1204
31.2k
            ssl_cipher_apply_rule(cipher_id,
1205
31.2k
                                  alg_mkey, alg_auth, alg_enc, alg_mac,
1206
31.2k
                                  min_tls, algo_strength, rule, -1, head_p,
1207
31.2k
                                  tail_p);
1208
31.2k
        } else {
1209
0
            while ((*l != '\0') && !ITEM_SEP(*l))
1210
0
                l++;
1211
0
        }
1212
37.4k
        if (*l == '\0')
1213
12.4k
            break;              /* done */
1214
37.4k
    }
1215
1216
12.4k
    return retval;
1217
12.4k
}
1218
1219
#ifndef OPENSSL_NO_EC
1220
static int check_suiteb_cipher_list(const SSL_METHOD *meth, CERT *c,
1221
                                    const char **prule_str)
1222
12.4k
{
1223
12.4k
    unsigned int suiteb_flags = 0, suiteb_comb2 = 0;
1224
12.4k
    if (strncmp(*prule_str, "SUITEB128ONLY", 13) == 0) {
1225
0
        suiteb_flags = SSL_CERT_FLAG_SUITEB_128_LOS_ONLY;
1226
12.4k
    } else if (strncmp(*prule_str, "SUITEB128C2", 11) == 0) {
1227
0
        suiteb_comb2 = 1;
1228
0
        suiteb_flags = SSL_CERT_FLAG_SUITEB_128_LOS;
1229
12.4k
    } else if (strncmp(*prule_str, "SUITEB128", 9) == 0) {
1230
0
        suiteb_flags = SSL_CERT_FLAG_SUITEB_128_LOS;
1231
12.4k
    } else if (strncmp(*prule_str, "SUITEB192", 9) == 0) {
1232
0
        suiteb_flags = SSL_CERT_FLAG_SUITEB_192_LOS;
1233
0
    }
1234
1235
12.4k
    if (suiteb_flags) {
1236
0
        c->cert_flags &= ~SSL_CERT_FLAG_SUITEB_128_LOS;
1237
0
        c->cert_flags |= suiteb_flags;
1238
12.4k
    } else {
1239
12.4k
        suiteb_flags = c->cert_flags & SSL_CERT_FLAG_SUITEB_128_LOS;
1240
12.4k
    }
1241
1242
12.4k
    if (!suiteb_flags)
1243
12.4k
        return 1;
1244
    /* Check version: if TLS 1.2 ciphers allowed we can use Suite B */
1245
1246
0
    if (!(meth->ssl3_enc->enc_flags & SSL_ENC_FLAG_TLS1_2_CIPHERS)) {
1247
0
        SSLerr(SSL_F_CHECK_SUITEB_CIPHER_LIST,
1248
0
               SSL_R_AT_LEAST_TLS_1_2_NEEDED_IN_SUITEB_MODE);
1249
0
        return 0;
1250
0
    }
1251
0
# ifndef OPENSSL_NO_EC
1252
0
    switch (suiteb_flags) {
1253
0
    case SSL_CERT_FLAG_SUITEB_128_LOS:
1254
0
        if (suiteb_comb2)
1255
0
            *prule_str = "ECDHE-ECDSA-AES256-GCM-SHA384";
1256
0
        else
1257
0
            *prule_str =
1258
0
                "ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384";
1259
0
        break;
1260
0
    case SSL_CERT_FLAG_SUITEB_128_LOS_ONLY:
1261
0
        *prule_str = "ECDHE-ECDSA-AES128-GCM-SHA256";
1262
0
        break;
1263
0
    case SSL_CERT_FLAG_SUITEB_192_LOS:
1264
0
        *prule_str = "ECDHE-ECDSA-AES256-GCM-SHA384";
1265
0
        break;
1266
0
    }
1267
0
    return 1;
1268
# else
1269
    SSLerr(SSL_F_CHECK_SUITEB_CIPHER_LIST, SSL_R_ECDH_REQUIRED_FOR_SUITEB_MODE);
1270
    return 0;
1271
# endif
1272
0
}
1273
#endif
1274
1275
static int ciphersuite_cb(const char *elem, int len, void *arg)
1276
18.7k
{
1277
18.7k
    STACK_OF(SSL_CIPHER) *ciphersuites = (STACK_OF(SSL_CIPHER) *)arg;
1278
18.7k
    const SSL_CIPHER *cipher;
1279
    /* Arbitrary sized temp buffer for the cipher name. Should be big enough */
1280
18.7k
    char name[80];
1281
1282
18.7k
    if (len > (int)(sizeof(name) - 1)) {
1283
0
        SSLerr(SSL_F_CIPHERSUITE_CB, SSL_R_NO_CIPHER_MATCH);
1284
0
        return 0;
1285
0
    }
1286
1287
18.7k
    memcpy(name, elem, len);
1288
18.7k
    name[len] = '\0';
1289
1290
18.7k
    cipher = ssl3_get_cipher_by_std_name(name);
1291
18.7k
    if (cipher == NULL) {
1292
0
        SSLerr(SSL_F_CIPHERSUITE_CB, SSL_R_NO_CIPHER_MATCH);
1293
0
        return 0;
1294
0
    }
1295
1296
18.7k
    if (!sk_SSL_CIPHER_push(ciphersuites, cipher)) {
1297
0
        SSLerr(SSL_F_CIPHERSUITE_CB, ERR_R_INTERNAL_ERROR);
1298
0
        return 0;
1299
0
    }
1300
1301
18.7k
    return 1;
1302
18.7k
}
1303
1304
static __owur int set_ciphersuites(STACK_OF(SSL_CIPHER) **currciphers, const char *str)
1305
6.24k
{
1306
6.24k
    STACK_OF(SSL_CIPHER) *newciphers = sk_SSL_CIPHER_new_null();
1307
1308
6.24k
    if (newciphers == NULL)
1309
0
        return 0;
1310
1311
    /* Parse the list. We explicitly allow an empty list */
1312
6.24k
    if (*str != '\0'
1313
6.24k
            && !CONF_parse_list(str, ':', 1, ciphersuite_cb, newciphers)) {
1314
0
        sk_SSL_CIPHER_free(newciphers);
1315
0
        return 0;
1316
0
    }
1317
6.24k
    sk_SSL_CIPHER_free(*currciphers);
1318
6.24k
    *currciphers = newciphers;
1319
1320
6.24k
    return 1;
1321
6.24k
}
1322
1323
static int update_cipher_list_by_id(STACK_OF(SSL_CIPHER) **cipher_list_by_id,
1324
                                    STACK_OF(SSL_CIPHER) *cipherstack)
1325
12.4k
{
1326
12.4k
    STACK_OF(SSL_CIPHER) *tmp_cipher_list = sk_SSL_CIPHER_dup(cipherstack);
1327
1328
12.4k
    if (tmp_cipher_list == NULL) {
1329
0
        return 0;
1330
0
    }
1331
1332
12.4k
    sk_SSL_CIPHER_free(*cipher_list_by_id);
1333
12.4k
    *cipher_list_by_id = tmp_cipher_list;
1334
1335
12.4k
    (void)sk_SSL_CIPHER_set_cmp_func(*cipher_list_by_id, ssl_cipher_ptr_id_cmp);
1336
12.4k
    sk_SSL_CIPHER_sort(*cipher_list_by_id);
1337
1338
12.4k
    return 1;
1339
12.4k
}
1340
1341
static int update_cipher_list(STACK_OF(SSL_CIPHER) **cipher_list,
1342
                              STACK_OF(SSL_CIPHER) **cipher_list_by_id,
1343
                              STACK_OF(SSL_CIPHER) *tls13_ciphersuites)
1344
0
{
1345
0
    int i;
1346
0
    STACK_OF(SSL_CIPHER) *tmp_cipher_list = sk_SSL_CIPHER_dup(*cipher_list);
1347
1348
0
    if (tmp_cipher_list == NULL)
1349
0
        return 0;
1350
1351
    /*
1352
     * Delete any existing TLSv1.3 ciphersuites. These are always first in the
1353
     * list.
1354
     */
1355
0
    while (sk_SSL_CIPHER_num(tmp_cipher_list) > 0
1356
0
           && sk_SSL_CIPHER_value(tmp_cipher_list, 0)->min_tls
1357
0
              == TLS1_3_VERSION)
1358
0
        sk_SSL_CIPHER_delete(tmp_cipher_list, 0);
1359
1360
    /* Insert the new TLSv1.3 ciphersuites */
1361
0
    for (i = 0; i < sk_SSL_CIPHER_num(tls13_ciphersuites); i++)
1362
0
        sk_SSL_CIPHER_insert(tmp_cipher_list,
1363
0
                             sk_SSL_CIPHER_value(tls13_ciphersuites, i), i);
1364
1365
0
    if (!update_cipher_list_by_id(cipher_list_by_id, tmp_cipher_list))
1366
0
        return 0;
1367
1368
0
    sk_SSL_CIPHER_free(*cipher_list);
1369
0
    *cipher_list = tmp_cipher_list;
1370
1371
0
    return 1;
1372
0
}
1373
1374
int SSL_CTX_set_ciphersuites(SSL_CTX *ctx, const char *str)
1375
6.24k
{
1376
6.24k
    int ret = set_ciphersuites(&(ctx->tls13_ciphersuites), str);
1377
1378
6.24k
    if (ret && ctx->cipher_list != NULL)
1379
0
        return update_cipher_list(&ctx->cipher_list, &ctx->cipher_list_by_id,
1380
0
                                  ctx->tls13_ciphersuites);
1381
1382
6.24k
    return ret;
1383
6.24k
}
1384
1385
int SSL_set_ciphersuites(SSL *s, const char *str)
1386
0
{
1387
0
    STACK_OF(SSL_CIPHER) *cipher_list;
1388
0
    int ret = set_ciphersuites(&(s->tls13_ciphersuites), str);
1389
1390
0
    if (s->cipher_list == NULL) {
1391
0
        if ((cipher_list = SSL_get_ciphers(s)) != NULL)
1392
0
            s->cipher_list = sk_SSL_CIPHER_dup(cipher_list);
1393
0
    }
1394
0
    if (ret && s->cipher_list != NULL)
1395
0
        return update_cipher_list(&s->cipher_list, &s->cipher_list_by_id,
1396
0
                                  s->tls13_ciphersuites);
1397
1398
0
    return ret;
1399
0
}
1400
1401
STACK_OF(SSL_CIPHER) *ssl_create_cipher_list(const SSL_METHOD *ssl_method,
1402
                                             STACK_OF(SSL_CIPHER) *tls13_ciphersuites,
1403
                                             STACK_OF(SSL_CIPHER) **cipher_list,
1404
                                             STACK_OF(SSL_CIPHER) **cipher_list_by_id,
1405
                                             const char *rule_str,
1406
                                             CERT *c)
1407
12.4k
{
1408
12.4k
    int ok, num_of_ciphers, num_of_alias_max, num_of_group_aliases, i;
1409
12.4k
    uint32_t disabled_mkey, disabled_auth, disabled_enc, disabled_mac;
1410
12.4k
    STACK_OF(SSL_CIPHER) *cipherstack;
1411
12.4k
    const char *rule_p;
1412
12.4k
    CIPHER_ORDER *co_list = NULL, *head = NULL, *tail = NULL, *curr;
1413
12.4k
    const SSL_CIPHER **ca_list = NULL;
1414
1415
    /*
1416
     * Return with error if nothing to do.
1417
     */
1418
12.4k
    if (rule_str == NULL || cipher_list == NULL || cipher_list_by_id == NULL)
1419
0
        return NULL;
1420
12.4k
#ifndef OPENSSL_NO_EC
1421
12.4k
    if (!check_suiteb_cipher_list(ssl_method, c, &rule_str))
1422
0
        return NULL;
1423
12.4k
#endif
1424
1425
    /*
1426
     * To reduce the work to do we only want to process the compiled
1427
     * in algorithms, so we first get the mask of disabled ciphers.
1428
     */
1429
1430
12.4k
    disabled_mkey = disabled_mkey_mask;
1431
12.4k
    disabled_auth = disabled_auth_mask;
1432
12.4k
    disabled_enc = disabled_enc_mask;
1433
12.4k
    disabled_mac = disabled_mac_mask;
1434
1435
    /*
1436
     * Now we have to collect the available ciphers from the compiled
1437
     * in ciphers. We cannot get more than the number compiled in, so
1438
     * it is used for allocation.
1439
     */
1440
12.4k
    num_of_ciphers = ssl_method->num_ciphers();
1441
1442
12.4k
    co_list = OPENSSL_malloc(sizeof(*co_list) * num_of_ciphers);
1443
12.4k
    if (co_list == NULL) {
1444
0
        SSLerr(SSL_F_SSL_CREATE_CIPHER_LIST, ERR_R_MALLOC_FAILURE);
1445
0
        return NULL;          /* Failure */
1446
0
    }
1447
1448
12.4k
    ssl_cipher_collect_ciphers(ssl_method, num_of_ciphers,
1449
12.4k
                               disabled_mkey, disabled_auth, disabled_enc,
1450
12.4k
                               disabled_mac, co_list, &head, &tail);
1451
1452
    /* Now arrange all ciphers by preference. */
1453
1454
    /*
1455
     * Everything else being equal, prefer ephemeral ECDH over other key
1456
     * exchange mechanisms.
1457
     * For consistency, prefer ECDSA over RSA (though this only matters if the
1458
     * server has both certificates, and is using the DEFAULT, or a client
1459
     * preference).
1460
     */
1461
12.4k
    ssl_cipher_apply_rule(0, SSL_kECDHE, SSL_aECDSA, 0, 0, 0, 0, CIPHER_ADD,
1462
12.4k
                          -1, &head, &tail);
1463
12.4k
    ssl_cipher_apply_rule(0, SSL_kECDHE, 0, 0, 0, 0, 0, CIPHER_ADD, -1, &head,
1464
12.4k
                          &tail);
1465
12.4k
    ssl_cipher_apply_rule(0, SSL_kECDHE, 0, 0, 0, 0, 0, CIPHER_DEL, -1, &head,
1466
12.4k
                          &tail);
1467
1468
    /* Within each strength group, we prefer GCM over CHACHA... */
1469
12.4k
    ssl_cipher_apply_rule(0, 0, 0, SSL_AESGCM, 0, 0, 0, CIPHER_ADD, -1,
1470
12.4k
                          &head, &tail);
1471
12.4k
    ssl_cipher_apply_rule(0, 0, 0, SSL_CHACHA20, 0, 0, 0, CIPHER_ADD, -1,
1472
12.4k
                          &head, &tail);
1473
1474
    /*
1475
     * ...and generally, our preferred cipher is AES.
1476
     * Note that AEADs will be bumped to take preference after sorting by
1477
     * strength.
1478
     */
1479
12.4k
    ssl_cipher_apply_rule(0, 0, 0, SSL_AES ^ SSL_AESGCM, 0, 0, 0, CIPHER_ADD,
1480
12.4k
                          -1, &head, &tail);
1481
1482
    /* Temporarily enable everything else for sorting */
1483
12.4k
    ssl_cipher_apply_rule(0, 0, 0, 0, 0, 0, 0, CIPHER_ADD, -1, &head, &tail);
1484
1485
    /* Low priority for MD5 */
1486
12.4k
    ssl_cipher_apply_rule(0, 0, 0, 0, SSL_MD5, 0, 0, CIPHER_ORD, -1, &head,
1487
12.4k
                          &tail);
1488
1489
    /*
1490
     * Move anonymous ciphers to the end.  Usually, these will remain
1491
     * disabled. (For applications that allow them, they aren't too bad, but
1492
     * we prefer authenticated ciphers.)
1493
     */
1494
12.4k
    ssl_cipher_apply_rule(0, 0, SSL_aNULL, 0, 0, 0, 0, CIPHER_ORD, -1, &head,
1495
12.4k
                          &tail);
1496
1497
12.4k
    ssl_cipher_apply_rule(0, SSL_kRSA, 0, 0, 0, 0, 0, CIPHER_ORD, -1, &head,
1498
12.4k
                          &tail);
1499
12.4k
    ssl_cipher_apply_rule(0, SSL_kPSK, 0, 0, 0, 0, 0, CIPHER_ORD, -1, &head,
1500
12.4k
                          &tail);
1501
1502
    /* RC4 is sort-of broken -- move to the end */
1503
12.4k
    ssl_cipher_apply_rule(0, 0, 0, SSL_RC4, 0, 0, 0, CIPHER_ORD, -1, &head,
1504
12.4k
                          &tail);
1505
1506
    /*
1507
     * Now sort by symmetric encryption strength.  The above ordering remains
1508
     * in force within each class
1509
     */
1510
12.4k
    if (!ssl_cipher_strength_sort(&head, &tail)) {
1511
0
        OPENSSL_free(co_list);
1512
0
        return NULL;
1513
0
    }
1514
1515
    /*
1516
     * Partially overrule strength sort to prefer TLS 1.2 ciphers/PRFs.
1517
     * TODO(openssl-team): is there an easier way to accomplish all this?
1518
     */
1519
12.4k
    ssl_cipher_apply_rule(0, 0, 0, 0, 0, TLS1_2_VERSION, 0, CIPHER_BUMP, -1,
1520
12.4k
                          &head, &tail);
1521
1522
    /*
1523
     * Irrespective of strength, enforce the following order:
1524
     * (EC)DHE + AEAD > (EC)DHE > rest of AEAD > rest.
1525
     * Within each group, ciphers remain sorted by strength and previous
1526
     * preference, i.e.,
1527
     * 1) ECDHE > DHE
1528
     * 2) GCM > CHACHA
1529
     * 3) AES > rest
1530
     * 4) TLS 1.2 > legacy
1531
     *
1532
     * Because we now bump ciphers to the top of the list, we proceed in
1533
     * reverse order of preference.
1534
     */
1535
12.4k
    ssl_cipher_apply_rule(0, 0, 0, 0, SSL_AEAD, 0, 0, CIPHER_BUMP, -1,
1536
12.4k
                          &head, &tail);
1537
12.4k
    ssl_cipher_apply_rule(0, SSL_kDHE | SSL_kECDHE, 0, 0, 0, 0, 0,
1538
12.4k
                          CIPHER_BUMP, -1, &head, &tail);
1539
12.4k
    ssl_cipher_apply_rule(0, SSL_kDHE | SSL_kECDHE, 0, 0, SSL_AEAD, 0, 0,
1540
12.4k
                          CIPHER_BUMP, -1, &head, &tail);
1541
1542
    /* Now disable everything (maintaining the ordering!) */
1543
12.4k
    ssl_cipher_apply_rule(0, 0, 0, 0, 0, 0, 0, CIPHER_DEL, -1, &head, &tail);
1544
1545
    /*
1546
     * We also need cipher aliases for selecting based on the rule_str.
1547
     * There might be two types of entries in the rule_str: 1) names
1548
     * of ciphers themselves 2) aliases for groups of ciphers.
1549
     * For 1) we need the available ciphers and for 2) the cipher
1550
     * groups of cipher_aliases added together in one list (otherwise
1551
     * we would be happy with just the cipher_aliases table).
1552
     */
1553
12.4k
    num_of_group_aliases = OSSL_NELEM(cipher_aliases);
1554
12.4k
    num_of_alias_max = num_of_ciphers + num_of_group_aliases + 1;
1555
12.4k
    ca_list = OPENSSL_malloc(sizeof(*ca_list) * num_of_alias_max);
1556
12.4k
    if (ca_list == NULL) {
1557
0
        OPENSSL_free(co_list);
1558
0
        SSLerr(SSL_F_SSL_CREATE_CIPHER_LIST, ERR_R_MALLOC_FAILURE);
1559
0
        return NULL;          /* Failure */
1560
0
    }
1561
12.4k
    ssl_cipher_collect_aliases(ca_list, num_of_group_aliases,
1562
12.4k
                               disabled_mkey, disabled_auth, disabled_enc,
1563
12.4k
                               disabled_mac, head);
1564
1565
    /*
1566
     * If the rule_string begins with DEFAULT, apply the default rule
1567
     * before using the (possibly available) additional rules.
1568
     */
1569
12.4k
    ok = 1;
1570
12.4k
    rule_p = rule_str;
1571
12.4k
    if (strncmp(rule_str, "DEFAULT", 7) == 0) {
1572
0
        ok = ssl_cipher_process_rulestr(SSL_DEFAULT_CIPHER_LIST,
1573
0
                                        &head, &tail, ca_list, c);
1574
0
        rule_p += 7;
1575
0
        if (*rule_p == ':')
1576
0
            rule_p++;
1577
0
    }
1578
1579
12.4k
    if (ok && (strlen(rule_p) > 0))
1580
12.4k
        ok = ssl_cipher_process_rulestr(rule_p, &head, &tail, ca_list, c);
1581
1582
12.4k
    OPENSSL_free(ca_list);      /* Not needed anymore */
1583
1584
12.4k
    if (!ok) {                  /* Rule processing failure */
1585
0
        OPENSSL_free(co_list);
1586
0
        return NULL;
1587
0
    }
1588
1589
    /*
1590
     * Allocate new "cipherstack" for the result, return with error
1591
     * if we cannot get one.
1592
     */
1593
12.4k
    if ((cipherstack = sk_SSL_CIPHER_new_null()) == NULL) {
1594
0
        OPENSSL_free(co_list);
1595
0
        return NULL;
1596
0
    }
1597
1598
    /* Add TLSv1.3 ciphers first - we always prefer those if possible */
1599
49.9k
    for (i = 0; i < sk_SSL_CIPHER_num(tls13_ciphersuites); i++) {
1600
37.4k
        if (!sk_SSL_CIPHER_push(cipherstack,
1601
37.4k
                                sk_SSL_CIPHER_value(tls13_ciphersuites, i))) {
1602
0
            OPENSSL_free(co_list);
1603
0
            sk_SSL_CIPHER_free(cipherstack);
1604
0
            return NULL;
1605
0
        }
1606
37.4k
    }
1607
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
1.51M
    for (curr = head; curr != NULL; curr = curr->next) {
1613
1.50M
        if (curr->active) {
1614
1.50M
            if (!sk_SSL_CIPHER_push(cipherstack, curr->cipher)) {
1615
0
                OPENSSL_free(co_list);
1616
0
                sk_SSL_CIPHER_free(cipherstack);
1617
0
                return NULL;
1618
0
            }
1619
#ifdef CIPHER_DEBUG
1620
            fprintf(stderr, "<%s>\n", curr->cipher->name);
1621
#endif
1622
1.50M
        }
1623
1.50M
    }
1624
12.4k
    OPENSSL_free(co_list);      /* Not needed any longer */
1625
1626
12.4k
    if (!update_cipher_list_by_id(cipher_list_by_id, cipherstack)) {
1627
0
        sk_SSL_CIPHER_free(cipherstack);
1628
0
        return NULL;
1629
0
    }
1630
12.4k
    sk_SSL_CIPHER_free(*cipher_list);
1631
12.4k
    *cipher_list = cipherstack;
1632
1633
12.4k
    return cipherstack;
1634
12.4k
}
1635
1636
char *SSL_CIPHER_description(const SSL_CIPHER *cipher, char *buf, int len)
1637
0
{
1638
0
    const char *ver;
1639
0
    const char *kx, *au, *enc, *mac;
1640
0
    uint32_t alg_mkey, alg_auth, alg_enc, alg_mac;
1641
0
    static const char *format = "%-23s %s Kx=%-8s Au=%-4s Enc=%-9s Mac=%-4s\n";
1642
1643
0
    if (buf == NULL) {
1644
0
        len = 128;
1645
0
        if ((buf = OPENSSL_malloc(len)) == NULL) {
1646
0
            SSLerr(SSL_F_SSL_CIPHER_DESCRIPTION, ERR_R_MALLOC_FAILURE);
1647
0
            return NULL;
1648
0
        }
1649
0
    } else if (len < 128) {
1650
0
        return NULL;
1651
0
    }
1652
1653
0
    alg_mkey = cipher->algorithm_mkey;
1654
0
    alg_auth = cipher->algorithm_auth;
1655
0
    alg_enc = cipher->algorithm_enc;
1656
0
    alg_mac = cipher->algorithm_mac;
1657
1658
0
    ver = ssl_protocol_to_string(cipher->min_tls);
1659
1660
0
    switch (alg_mkey) {
1661
0
    case SSL_kRSA:
1662
0
        kx = "RSA";
1663
0
        break;
1664
0
    case SSL_kDHE:
1665
0
        kx = "DH";
1666
0
        break;
1667
0
    case SSL_kECDHE:
1668
0
        kx = "ECDH";
1669
0
        break;
1670
0
    case SSL_kPSK:
1671
0
        kx = "PSK";
1672
0
        break;
1673
0
    case SSL_kRSAPSK:
1674
0
        kx = "RSAPSK";
1675
0
        break;
1676
0
    case SSL_kECDHEPSK:
1677
0
        kx = "ECDHEPSK";
1678
0
        break;
1679
0
    case SSL_kDHEPSK:
1680
0
        kx = "DHEPSK";
1681
0
        break;
1682
0
    case SSL_kSRP:
1683
0
        kx = "SRP";
1684
0
        break;
1685
0
    case SSL_kGOST:
1686
0
        kx = "GOST";
1687
0
        break;
1688
0
    case SSL_kANY:
1689
0
        kx = "any";
1690
0
        break;
1691
0
    default:
1692
0
        kx = "unknown";
1693
0
    }
1694
1695
0
    switch (alg_auth) {
1696
0
    case SSL_aRSA:
1697
0
        au = "RSA";
1698
0
        break;
1699
0
    case SSL_aDSS:
1700
0
        au = "DSS";
1701
0
        break;
1702
0
    case SSL_aNULL:
1703
0
        au = "None";
1704
0
        break;
1705
0
    case SSL_aECDSA:
1706
0
        au = "ECDSA";
1707
0
        break;
1708
0
    case SSL_aPSK:
1709
0
        au = "PSK";
1710
0
        break;
1711
0
    case SSL_aSRP:
1712
0
        au = "SRP";
1713
0
        break;
1714
0
    case SSL_aGOST01:
1715
0
        au = "GOST01";
1716
0
        break;
1717
    /* New GOST ciphersuites have both SSL_aGOST12 and SSL_aGOST01 bits */
1718
0
    case (SSL_aGOST12 | SSL_aGOST01):
1719
0
        au = "GOST12";
1720
0
        break;
1721
0
    case SSL_aANY:
1722
0
        au = "any";
1723
0
        break;
1724
0
    default:
1725
0
        au = "unknown";
1726
0
        break;
1727
0
    }
1728
1729
0
    switch (alg_enc) {
1730
0
    case SSL_DES:
1731
0
        enc = "DES(56)";
1732
0
        break;
1733
0
    case SSL_3DES:
1734
0
        enc = "3DES(168)";
1735
0
        break;
1736
0
    case SSL_RC4:
1737
0
        enc = "RC4(128)";
1738
0
        break;
1739
0
    case SSL_RC2:
1740
0
        enc = "RC2(128)";
1741
0
        break;
1742
0
    case SSL_IDEA:
1743
0
        enc = "IDEA(128)";
1744
0
        break;
1745
0
    case SSL_eNULL:
1746
0
        enc = "None";
1747
0
        break;
1748
0
    case SSL_AES128:
1749
0
        enc = "AES(128)";
1750
0
        break;
1751
0
    case SSL_AES256:
1752
0
        enc = "AES(256)";
1753
0
        break;
1754
0
    case SSL_AES128GCM:
1755
0
        enc = "AESGCM(128)";
1756
0
        break;
1757
0
    case SSL_AES256GCM:
1758
0
        enc = "AESGCM(256)";
1759
0
        break;
1760
0
    case SSL_AES128CCM:
1761
0
        enc = "AESCCM(128)";
1762
0
        break;
1763
0
    case SSL_AES256CCM:
1764
0
        enc = "AESCCM(256)";
1765
0
        break;
1766
0
    case SSL_AES128CCM8:
1767
0
        enc = "AESCCM8(128)";
1768
0
        break;
1769
0
    case SSL_AES256CCM8:
1770
0
        enc = "AESCCM8(256)";
1771
0
        break;
1772
0
    case SSL_CAMELLIA128:
1773
0
        enc = "Camellia(128)";
1774
0
        break;
1775
0
    case SSL_CAMELLIA256:
1776
0
        enc = "Camellia(256)";
1777
0
        break;
1778
0
    case SSL_ARIA128GCM:
1779
0
        enc = "ARIAGCM(128)";
1780
0
        break;
1781
0
    case SSL_ARIA256GCM:
1782
0
        enc = "ARIAGCM(256)";
1783
0
        break;
1784
0
    case SSL_SEED:
1785
0
        enc = "SEED(128)";
1786
0
        break;
1787
0
    case SSL_eGOST2814789CNT:
1788
0
    case SSL_eGOST2814789CNT12:
1789
0
        enc = "GOST89(256)";
1790
0
        break;
1791
0
    case SSL_CHACHA20POLY1305:
1792
0
        enc = "CHACHA20/POLY1305(256)";
1793
0
        break;
1794
0
    default:
1795
0
        enc = "unknown";
1796
0
        break;
1797
0
    }
1798
1799
0
    switch (alg_mac) {
1800
0
    case SSL_MD5:
1801
0
        mac = "MD5";
1802
0
        break;
1803
0
    case SSL_SHA1:
1804
0
        mac = "SHA1";
1805
0
        break;
1806
0
    case SSL_SHA256:
1807
0
        mac = "SHA256";
1808
0
        break;
1809
0
    case SSL_SHA384:
1810
0
        mac = "SHA384";
1811
0
        break;
1812
0
    case SSL_AEAD:
1813
0
        mac = "AEAD";
1814
0
        break;
1815
0
    case SSL_GOST89MAC:
1816
0
    case SSL_GOST89MAC12:
1817
0
        mac = "GOST89";
1818
0
        break;
1819
0
    case SSL_GOST94:
1820
0
        mac = "GOST94";
1821
0
        break;
1822
0
    case SSL_GOST12_256:
1823
0
    case SSL_GOST12_512:
1824
0
        mac = "GOST2012";
1825
0
        break;
1826
0
    default:
1827
0
        mac = "unknown";
1828
0
        break;
1829
0
    }
1830
1831
0
    BIO_snprintf(buf, len, format, cipher->name, ver, kx, au, enc, mac);
1832
1833
0
    return buf;
1834
0
}
1835
1836
const char *SSL_CIPHER_get_version(const SSL_CIPHER *c)
1837
0
{
1838
0
    if (c == NULL)
1839
0
        return "(NONE)";
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
0
    if (c->min_tls == TLS1_VERSION)
1846
0
        return "TLSv1.0";
1847
0
    return ssl_protocol_to_string(c->min_tls);
1848
0
}
1849
1850
/* return the actual cipher being used */
1851
const char *SSL_CIPHER_get_name(const SSL_CIPHER *c)
1852
0
{
1853
0
    if (c != NULL)
1854
0
        return c->name;
1855
0
    return "(NONE)";
1856
0
}
1857
1858
/* return the actual cipher being used in RFC standard name */
1859
const char *SSL_CIPHER_standard_name(const SSL_CIPHER *c)
1860
0
{
1861
0
    if (c != NULL)
1862
0
        return c->stdname;
1863
0
    return "(NONE)";
1864
0
}
1865
1866
/* return the OpenSSL name based on given RFC standard name */
1867
const char *OPENSSL_cipher_name(const char *stdname)
1868
0
{
1869
0
    const SSL_CIPHER *c;
1870
1871
0
    if (stdname == NULL)
1872
0
        return "(NONE)";
1873
0
    c = ssl3_get_cipher_by_std_name(stdname);
1874
0
    return SSL_CIPHER_get_name(c);
1875
0
}
1876
1877
/* number of bits for symmetric cipher */
1878
int SSL_CIPHER_get_bits(const SSL_CIPHER *c, int *alg_bits)
1879
0
{
1880
0
    int ret = 0;
1881
1882
0
    if (c != NULL) {
1883
0
        if (alg_bits != NULL)
1884
0
            *alg_bits = (int)c->alg_bits;
1885
0
        ret = (int)c->strength_bits;
1886
0
    }
1887
0
    return ret;
1888
0
}
1889
1890
uint32_t SSL_CIPHER_get_id(const SSL_CIPHER *c)
1891
2.16k
{
1892
2.16k
    return c->id;
1893
2.16k
}
1894
1895
uint16_t SSL_CIPHER_get_protocol_id(const SSL_CIPHER *c)
1896
0
{
1897
0
    return c->id & 0xFFFF;
1898
0
}
1899
1900
SSL_COMP *ssl3_comp_find(STACK_OF(SSL_COMP) *sk, int n)
1901
0
{
1902
0
    SSL_COMP *ctmp;
1903
0
    int i, nn;
1904
1905
0
    if ((n == 0) || (sk == NULL))
1906
0
        return NULL;
1907
0
    nn = sk_SSL_COMP_num(sk);
1908
0
    for (i = 0; i < nn; i++) {
1909
0
        ctmp = sk_SSL_COMP_value(sk, i);
1910
0
        if (ctmp->id == n)
1911
0
            return ctmp;
1912
0
    }
1913
0
    return NULL;
1914
0
}
1915
1916
#ifdef OPENSSL_NO_COMP
1917
STACK_OF(SSL_COMP) *SSL_COMP_get_compression_methods(void)
1918
{
1919
    return NULL;
1920
}
1921
1922
STACK_OF(SSL_COMP) *SSL_COMP_set0_compression_methods(STACK_OF(SSL_COMP)
1923
                                                      *meths)
1924
{
1925
    return meths;
1926
}
1927
1928
int SSL_COMP_add_compression_method(int id, COMP_METHOD *cm)
1929
{
1930
    return 1;
1931
}
1932
1933
#else
1934
STACK_OF(SSL_COMP) *SSL_COMP_get_compression_methods(void)
1935
6.24k
{
1936
6.24k
    load_builtin_compressions();
1937
6.24k
    return ssl_comp_methods;
1938
6.24k
}
1939
1940
STACK_OF(SSL_COMP) *SSL_COMP_set0_compression_methods(STACK_OF(SSL_COMP)
1941
                                                      *meths)
1942
0
{
1943
0
    STACK_OF(SSL_COMP) *old_meths = ssl_comp_methods;
1944
0
    ssl_comp_methods = meths;
1945
0
    return old_meths;
1946
0
}
1947
1948
static void cmeth_free(SSL_COMP *cm)
1949
0
{
1950
0
    OPENSSL_free(cm);
1951
0
}
1952
1953
void ssl_comp_free_compression_methods_int(void)
1954
2
{
1955
2
    STACK_OF(SSL_COMP) *old_meths = ssl_comp_methods;
1956
2
    ssl_comp_methods = NULL;
1957
2
    sk_SSL_COMP_pop_free(old_meths, cmeth_free);
1958
2
}
1959
1960
int SSL_COMP_add_compression_method(int id, COMP_METHOD *cm)
1961
0
{
1962
0
    SSL_COMP *comp;
1963
1964
0
    if (cm == NULL || COMP_get_type(cm) == NID_undef)
1965
0
        return 1;
1966
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
     */
1975
0
    if (id < 193 || id > 255) {
1976
0
        SSLerr(SSL_F_SSL_COMP_ADD_COMPRESSION_METHOD,
1977
0
               SSL_R_COMPRESSION_ID_NOT_WITHIN_PRIVATE_RANGE);
1978
0
        return 1;
1979
0
    }
1980
1981
0
    CRYPTO_mem_ctrl(CRYPTO_MEM_CHECK_DISABLE);
1982
0
    comp = OPENSSL_malloc(sizeof(*comp));
1983
0
    if (comp == NULL) {
1984
0
        CRYPTO_mem_ctrl(CRYPTO_MEM_CHECK_ENABLE);
1985
0
        SSLerr(SSL_F_SSL_COMP_ADD_COMPRESSION_METHOD, ERR_R_MALLOC_FAILURE);
1986
0
        return 1;
1987
0
    }
1988
1989
0
    comp->id = id;
1990
0
    comp->method = cm;
1991
0
    load_builtin_compressions();
1992
0
    if (ssl_comp_methods && sk_SSL_COMP_find(ssl_comp_methods, comp) >= 0) {
1993
0
        OPENSSL_free(comp);
1994
0
        CRYPTO_mem_ctrl(CRYPTO_MEM_CHECK_ENABLE);
1995
0
        SSLerr(SSL_F_SSL_COMP_ADD_COMPRESSION_METHOD,
1996
0
               SSL_R_DUPLICATE_COMPRESSION_ID);
1997
0
        return 1;
1998
0
    }
1999
0
    if (ssl_comp_methods == NULL || !sk_SSL_COMP_push(ssl_comp_methods, comp)) {
2000
0
        OPENSSL_free(comp);
2001
0
        CRYPTO_mem_ctrl(CRYPTO_MEM_CHECK_ENABLE);
2002
0
        SSLerr(SSL_F_SSL_COMP_ADD_COMPRESSION_METHOD, ERR_R_MALLOC_FAILURE);
2003
0
        return 1;
2004
0
    }
2005
0
    CRYPTO_mem_ctrl(CRYPTO_MEM_CHECK_ENABLE);
2006
0
    return 0;
2007
0
}
2008
#endif
2009
2010
const char *SSL_COMP_get_name(const COMP_METHOD *comp)
2011
0
{
2012
0
#ifndef OPENSSL_NO_COMP
2013
0
    return comp ? COMP_get_name(comp) : NULL;
2014
#else
2015
    return NULL;
2016
#endif
2017
0
}
2018
2019
const char *SSL_COMP_get0_name(const SSL_COMP *comp)
2020
0
{
2021
0
#ifndef OPENSSL_NO_COMP
2022
0
    return comp->name;
2023
#else
2024
    return NULL;
2025
#endif
2026
0
}
2027
2028
int SSL_COMP_get_id(const SSL_COMP *comp)
2029
0
{
2030
0
#ifndef OPENSSL_NO_COMP
2031
0
    return comp->id;
2032
#else
2033
    return -1;
2034
#endif
2035
0
}
2036
2037
const SSL_CIPHER *ssl_get_cipher_by_char(SSL *ssl, const unsigned char *ptr,
2038
                                         int all)
2039
66.8k
{
2040
66.8k
    const SSL_CIPHER *c = ssl->method->get_cipher_by_char(ptr);
2041
2042
66.8k
    if (c == NULL || (!all && c->valid == 0))
2043
42.5k
        return NULL;
2044
24.3k
    return c;
2045
66.8k
}
2046
2047
const SSL_CIPHER *SSL_CIPHER_find(SSL *ssl, const unsigned char *ptr)
2048
0
{
2049
0
    return ssl->method->get_cipher_by_char(ptr);
2050
0
}
2051
2052
int SSL_CIPHER_get_cipher_nid(const SSL_CIPHER *c)
2053
0
{
2054
0
    int i;
2055
0
    if (c == NULL)
2056
0
        return NID_undef;
2057
0
    i = ssl_cipher_info_lookup(ssl_cipher_table_cipher, c->algorithm_enc);
2058
0
    if (i == -1)
2059
0
        return NID_undef;
2060
0
    return ssl_cipher_table_cipher[i].nid;
2061
0
}
2062
2063
int SSL_CIPHER_get_digest_nid(const SSL_CIPHER *c)
2064
0
{
2065
0
    int i = ssl_cipher_info_lookup(ssl_cipher_table_mac, c->algorithm_mac);
2066
2067
0
    if (i == -1)
2068
0
        return NID_undef;
2069
0
    return ssl_cipher_table_mac[i].nid;
2070
0
}
2071
2072
int SSL_CIPHER_get_kx_nid(const SSL_CIPHER *c)
2073
0
{
2074
0
    int i = ssl_cipher_info_lookup(ssl_cipher_table_kx, c->algorithm_mkey);
2075
2076
0
    if (i == -1)
2077
0
        return NID_undef;
2078
0
    return ssl_cipher_table_kx[i].nid;
2079
0
}
2080
2081
int SSL_CIPHER_get_auth_nid(const SSL_CIPHER *c)
2082
0
{
2083
0
    int i = ssl_cipher_info_lookup(ssl_cipher_table_auth, c->algorithm_auth);
2084
2085
0
    if (i == -1)
2086
0
        return NID_undef;
2087
0
    return ssl_cipher_table_auth[i].nid;
2088
0
}
2089
2090
const EVP_MD *SSL_CIPHER_get_handshake_digest(const SSL_CIPHER *c)
2091
0
{
2092
0
    int idx = c->algorithm2 & SSL_HANDSHAKE_MAC_MASK;
2093
2094
0
    if (idx < 0 || idx >= SSL_MD_NUM_IDX)
2095
0
        return NULL;
2096
0
    return ssl_digest_methods[idx];
2097
0
}
2098
2099
int SSL_CIPHER_is_aead(const SSL_CIPHER *c)
2100
0
{
2101
0
    return (c->algorithm_mac & SSL_AEAD) ? 1 : 0;
2102
0
}
2103
2104
int 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
0
{
2108
0
    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. */
2112
0
    if (c->algorithm_enc & (SSL_AESGCM | SSL_ARIAGCM)) {
2113
0
        out = EVP_GCM_TLS_EXPLICIT_IV_LEN + EVP_GCM_TLS_TAG_LEN;
2114
0
    } else if (c->algorithm_enc & (SSL_AES128CCM | SSL_AES256CCM)) {
2115
0
        out = EVP_CCM_TLS_EXPLICIT_IV_LEN + 16;
2116
0
    } else if (c->algorithm_enc & (SSL_AES128CCM8 | SSL_AES256CCM8)) {
2117
0
        out = EVP_CCM_TLS_EXPLICIT_IV_LEN + 8;
2118
0
    } else if (c->algorithm_enc & SSL_CHACHA20POLY1305) {
2119
0
        out = 16;
2120
0
    } else if (c->algorithm_mac & SSL_AEAD) {
2121
        /* We're supposed to have handled all the AEAD modes above */
2122
0
        return 0;
2123
0
    } else {
2124
        /* Non-AEAD modes. Calculate MAC/cipher overhead separately */
2125
0
        int digest_nid = SSL_CIPHER_get_digest_nid(c);
2126
0
        const EVP_MD *e_md = EVP_get_digestbynid(digest_nid);
2127
2128
0
        if (e_md == NULL)
2129
0
            return 0;
2130
2131
0
        mac = EVP_MD_size(e_md);
2132
0
        if (c->algorithm_enc != SSL_eNULL) {
2133
0
            int cipher_nid = SSL_CIPHER_get_cipher_nid(c);
2134
0
            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
0
            if (e_ciph == NULL ||
2139
0
                EVP_CIPHER_mode(e_ciph) != EVP_CIPH_CBC_MODE)
2140
0
                return 0;
2141
2142
0
            in = 1; /* padding length byte */
2143
0
            out = EVP_CIPHER_iv_length(e_ciph);
2144
0
            blk = EVP_CIPHER_block_size(e_ciph);
2145
0
        }
2146
0
    }
2147
2148
0
    *mac_overhead = mac;
2149
0
    *int_overhead = in;
2150
0
    *blocksize = blk;
2151
0
    *ext_overhead = out;
2152
2153
0
    return 1;
2154
0
}
2155
2156
int ssl_cert_is_disabled(size_t idx)
2157
24.9k
{
2158
24.9k
    const SSL_CERT_LOOKUP *cl = ssl_cert_lookup_by_idx(idx);
2159
2160
24.9k
    if (cl == NULL || (cl->amask & disabled_auth_mask) != 0)
2161
0
        return 1;
2162
24.9k
    return 0;
2163
24.9k
}