Coverage Report

Created: 2025-07-18 06:46

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