Coverage Report

Created: 2023-06-08 06:43

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