Coverage Report

Created: 2025-06-13 06:58

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