Coverage Report

Created: 2023-06-07 07:24

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