Coverage Report

Created: 2026-03-09 06:55

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