Coverage Report

Created: 2018-08-29 13:53

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