Coverage Report

Created: 2026-07-23 06:28

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