Coverage Report

Created: 2025-12-31 06:58

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