Coverage Report

Created: 2025-06-13 06:55

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