Coverage Report

Created: 2025-12-31 06:58

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/openssl34/ssl/tls13_enc.c
Line
Count
Source
1
/*
2
 * Copyright 2016-2024 The OpenSSL Project Authors. All Rights Reserved.
3
 *
4
 * Licensed under the Apache License 2.0 (the "License").  You may not use
5
 * this file except in compliance with the License.  You can obtain a copy
6
 * in the file LICENSE in the source distribution or at
7
 * https://www.openssl.org/source/license.html
8
 */
9
10
#include <stdlib.h>
11
#include "ssl_local.h"
12
#include "internal/ktls.h"
13
#include "record/record_local.h"
14
#include "internal/cryptlib.h"
15
#include <openssl/evp.h>
16
#include <openssl/kdf.h>
17
#include <openssl/core_names.h>
18
19
961k
#define TLS13_MAX_LABEL_LEN 249
20
21
/* ASCII: "tls13 ", in hex for EBCDIC compatibility */
22
static const unsigned char label_prefix[] = "\x74\x6C\x73\x31\x33\x20";
23
24
/*
25
 * Given a |secret|; a |label| of length |labellen|; and |data| of length
26
 * |datalen| (e.g. typically a hash of the handshake messages), derive a new
27
 * secret |outlen| bytes long and store it in the location pointed to be |out|.
28
 * The |data| value may be zero length. Any errors will be treated as fatal if
29
 * |fatal| is set. Returns 1 on success  0 on failure.
30
 * If |raise_error| is set, ERR_raise is called on failure.
31
 */
32
int tls13_hkdf_expand_ex(OSSL_LIB_CTX *libctx, const char *propq,
33
    const EVP_MD *md,
34
    const unsigned char *secret,
35
    const unsigned char *label, size_t labellen,
36
    const unsigned char *data, size_t datalen,
37
    unsigned char *out, size_t outlen, int raise_error)
38
961k
{
39
961k
    EVP_KDF *kdf = EVP_KDF_fetch(libctx, OSSL_KDF_NAME_TLS1_3_KDF, propq);
40
961k
    EVP_KDF_CTX *kctx;
41
961k
    OSSL_PARAM params[7], *p = params;
42
961k
    int mode = EVP_PKEY_HKDEF_MODE_EXPAND_ONLY;
43
961k
    const char *mdname = EVP_MD_get0_name(md);
44
961k
    int ret;
45
961k
    size_t hashlen;
46
47
961k
    kctx = EVP_KDF_CTX_new(kdf);
48
961k
    EVP_KDF_free(kdf);
49
961k
    if (kctx == NULL)
50
0
        return 0;
51
52
961k
    if (labellen > TLS13_MAX_LABEL_LEN) {
53
0
        if (raise_error)
54
            /*
55
             * Probably we have been called from SSL_export_keying_material(),
56
             * or SSL_export_keying_material_early().
57
             */
58
0
            ERR_raise(ERR_LIB_SSL, SSL_R_TLS_ILLEGAL_EXPORTER_LABEL);
59
60
0
        EVP_KDF_CTX_free(kctx);
61
0
        return 0;
62
0
    }
63
64
961k
    if ((ret = EVP_MD_get_size(md)) <= 0) {
65
0
        EVP_KDF_CTX_free(kctx);
66
0
        if (raise_error)
67
0
            ERR_raise(ERR_LIB_SSL, ERR_R_INTERNAL_ERROR);
68
0
        return 0;
69
0
    }
70
961k
    hashlen = (size_t)ret;
71
72
961k
    *p++ = OSSL_PARAM_construct_int(OSSL_KDF_PARAM_MODE, &mode);
73
961k
    *p++ = OSSL_PARAM_construct_utf8_string(OSSL_KDF_PARAM_DIGEST,
74
961k
        (char *)mdname, 0);
75
961k
    *p++ = OSSL_PARAM_construct_octet_string(OSSL_KDF_PARAM_KEY,
76
961k
        (unsigned char *)secret, hashlen);
77
961k
    *p++ = OSSL_PARAM_construct_octet_string(OSSL_KDF_PARAM_PREFIX,
78
961k
        (unsigned char *)label_prefix,
79
961k
        sizeof(label_prefix) - 1);
80
961k
    *p++ = OSSL_PARAM_construct_octet_string(OSSL_KDF_PARAM_LABEL,
81
961k
        (unsigned char *)label, labellen);
82
961k
    if (data != NULL)
83
89.3k
        *p++ = OSSL_PARAM_construct_octet_string(OSSL_KDF_PARAM_DATA,
84
89.3k
            (unsigned char *)data,
85
89.3k
            datalen);
86
961k
    *p++ = OSSL_PARAM_construct_end();
87
88
961k
    ret = EVP_KDF_derive(kctx, out, outlen, params) <= 0;
89
961k
    EVP_KDF_CTX_free(kctx);
90
91
961k
    if (ret != 0) {
92
0
        if (raise_error)
93
0
            ERR_raise(ERR_LIB_SSL, ERR_R_INTERNAL_ERROR);
94
0
    }
95
96
961k
    return ret == 0;
97
961k
}
98
99
int tls13_hkdf_expand(SSL_CONNECTION *s, const EVP_MD *md,
100
    const unsigned char *secret,
101
    const unsigned char *label, size_t labellen,
102
    const unsigned char *data, size_t datalen,
103
    unsigned char *out, size_t outlen, int fatal)
104
330k
{
105
330k
    int ret;
106
330k
    SSL_CTX *sctx = SSL_CONNECTION_GET_CTX(s);
107
108
330k
    ret = tls13_hkdf_expand_ex(sctx->libctx, sctx->propq, md,
109
330k
        secret, label, labellen, data, datalen,
110
330k
        out, outlen, !fatal);
111
330k
    if (ret == 0 && fatal)
112
330k
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
113
114
330k
    return ret;
115
330k
}
116
117
/*
118
 * Given a |secret| generate a |key| of length |keylen| bytes. Returns 1 on
119
 * success  0 on failure.
120
 */
121
int tls13_derive_key(SSL_CONNECTION *s, const EVP_MD *md,
122
    const unsigned char *secret,
123
    unsigned char *key, size_t keylen)
124
83.6k
{
125
    /* ASCII: "key", in hex for EBCDIC compatibility */
126
83.6k
    static const unsigned char keylabel[] = "\x6B\x65\x79";
127
128
83.6k
    return tls13_hkdf_expand(s, md, secret, keylabel, sizeof(keylabel) - 1,
129
83.6k
        NULL, 0, key, keylen, 1);
130
83.6k
}
131
132
/*
133
 * Given a |secret| generate an |iv| of length |ivlen| bytes. Returns 1 on
134
 * success  0 on failure.
135
 */
136
int tls13_derive_iv(SSL_CONNECTION *s, const EVP_MD *md,
137
    const unsigned char *secret,
138
    unsigned char *iv, size_t ivlen)
139
83.6k
{
140
    /* ASCII: "iv", in hex for EBCDIC compatibility */
141
83.6k
    static const unsigned char ivlabel[] = "\x69\x76";
142
143
83.6k
    return tls13_hkdf_expand(s, md, secret, ivlabel, sizeof(ivlabel) - 1,
144
83.6k
        NULL, 0, iv, ivlen, 1);
145
83.6k
}
146
147
int tls13_derive_finishedkey(SSL_CONNECTION *s, const EVP_MD *md,
148
    const unsigned char *secret,
149
    unsigned char *fin, size_t finlen)
150
55.9k
{
151
    /* ASCII: "finished", in hex for EBCDIC compatibility */
152
55.9k
    static const unsigned char finishedlabel[] = "\x66\x69\x6E\x69\x73\x68\x65\x64";
153
154
55.9k
    return tls13_hkdf_expand(s, md, secret, finishedlabel,
155
55.9k
        sizeof(finishedlabel) - 1, NULL, 0, fin, finlen, 1);
156
55.9k
}
157
158
/*
159
 * Given the previous secret |prevsecret| and a new input secret |insecret| of
160
 * length |insecretlen|, generate a new secret and store it in the location
161
 * pointed to by |outsecret|. Returns 1 on success  0 on failure.
162
 */
163
int tls13_generate_secret(SSL_CONNECTION *s, const EVP_MD *md,
164
    const unsigned char *prevsecret,
165
    const unsigned char *insecret,
166
    size_t insecretlen,
167
    unsigned char *outsecret)
168
56.0k
{
169
56.0k
    size_t mdlen;
170
56.0k
    int mdleni;
171
56.0k
    int ret;
172
56.0k
    EVP_KDF *kdf;
173
56.0k
    EVP_KDF_CTX *kctx;
174
56.0k
    OSSL_PARAM params[7], *p = params;
175
56.0k
    int mode = EVP_PKEY_HKDEF_MODE_EXTRACT_ONLY;
176
56.0k
    const char *mdname = EVP_MD_get0_name(md);
177
    /* ASCII: "derived", in hex for EBCDIC compatibility */
178
56.0k
    static const char derived_secret_label[] = "\x64\x65\x72\x69\x76\x65\x64";
179
56.0k
    SSL_CTX *sctx = SSL_CONNECTION_GET_CTX(s);
180
181
56.0k
    kdf = EVP_KDF_fetch(sctx->libctx, OSSL_KDF_NAME_TLS1_3_KDF, sctx->propq);
182
56.0k
    kctx = EVP_KDF_CTX_new(kdf);
183
56.0k
    EVP_KDF_free(kdf);
184
56.0k
    if (kctx == NULL) {
185
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
186
0
        return 0;
187
0
    }
188
189
56.0k
    mdleni = EVP_MD_get_size(md);
190
    /* Ensure cast to size_t is safe */
191
56.0k
    if (!ossl_assert(mdleni > 0)) {
192
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
193
0
        EVP_KDF_CTX_free(kctx);
194
0
        return 0;
195
0
    }
196
56.0k
    mdlen = (size_t)mdleni;
197
198
56.0k
    *p++ = OSSL_PARAM_construct_int(OSSL_KDF_PARAM_MODE, &mode);
199
56.0k
    *p++ = OSSL_PARAM_construct_utf8_string(OSSL_KDF_PARAM_DIGEST,
200
56.0k
        (char *)mdname, 0);
201
56.0k
    if (insecret != NULL)
202
22.1k
        *p++ = OSSL_PARAM_construct_octet_string(OSSL_KDF_PARAM_KEY,
203
22.1k
            (unsigned char *)insecret,
204
22.1k
            insecretlen);
205
56.0k
    if (prevsecret != NULL)
206
33.8k
        *p++ = OSSL_PARAM_construct_octet_string(OSSL_KDF_PARAM_SALT,
207
33.8k
            (unsigned char *)prevsecret, mdlen);
208
56.0k
    *p++ = OSSL_PARAM_construct_octet_string(OSSL_KDF_PARAM_PREFIX,
209
56.0k
        (unsigned char *)label_prefix,
210
56.0k
        sizeof(label_prefix) - 1);
211
56.0k
    *p++ = OSSL_PARAM_construct_octet_string(OSSL_KDF_PARAM_LABEL,
212
56.0k
        (unsigned char *)derived_secret_label,
213
56.0k
        sizeof(derived_secret_label) - 1);
214
56.0k
    *p++ = OSSL_PARAM_construct_end();
215
216
56.0k
    ret = EVP_KDF_derive(kctx, outsecret, mdlen, params) <= 0;
217
218
56.0k
    if (ret != 0)
219
56.0k
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
220
221
56.0k
    EVP_KDF_CTX_free(kctx);
222
56.0k
    return ret == 0;
223
56.0k
}
224
225
/*
226
 * Given an input secret |insecret| of length |insecretlen| generate the
227
 * handshake secret. This requires the early secret to already have been
228
 * generated. Returns 1 on success  0 on failure.
229
 */
230
int tls13_generate_handshake_secret(SSL_CONNECTION *s,
231
    const unsigned char *insecret,
232
    size_t insecretlen)
233
28.2k
{
234
    /* Calls SSLfatal() if required */
235
28.2k
    return tls13_generate_secret(s, ssl_handshake_md(s), s->early_secret,
236
28.2k
        insecret, insecretlen,
237
28.2k
        (unsigned char *)&s->handshake_secret);
238
28.2k
}
239
240
/*
241
 * Given the handshake secret |prev| of length |prevlen| generate the master
242
 * secret and store its length in |*secret_size|. Returns 1 on success  0 on
243
 * failure.
244
 */
245
int tls13_generate_master_secret(SSL_CONNECTION *s, unsigned char *out,
246
    unsigned char *prev, size_t prevlen,
247
    size_t *secret_size)
248
11.8k
{
249
11.8k
    const EVP_MD *md = ssl_handshake_md(s);
250
11.8k
    int md_size;
251
252
11.8k
    md_size = EVP_MD_get_size(md);
253
11.8k
    if (md_size <= 0) {
254
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
255
0
        return 0;
256
0
    }
257
11.8k
    *secret_size = (size_t)md_size;
258
    /* Calls SSLfatal() if required */
259
11.8k
    return tls13_generate_secret(s, md, prev, NULL, 0, out);
260
11.8k
}
261
262
/*
263
 * Generates the mac for the Finished message. Returns the length of the MAC or
264
 * 0 on error.
265
 */
266
size_t tls13_final_finish_mac(SSL_CONNECTION *s, const char *str, size_t slen,
267
    unsigned char *out)
268
27.8k
{
269
27.8k
    const EVP_MD *md = ssl_handshake_md(s);
270
27.8k
    const char *mdname = EVP_MD_get0_name(md);
271
27.8k
    unsigned char hash[EVP_MAX_MD_SIZE];
272
27.8k
    unsigned char finsecret[EVP_MAX_MD_SIZE];
273
27.8k
    unsigned char *key = NULL;
274
27.8k
    size_t len = 0, hashlen;
275
27.8k
    OSSL_PARAM params[2], *p = params;
276
27.8k
    SSL_CTX *sctx = SSL_CONNECTION_GET_CTX(s);
277
278
27.8k
    if (md == NULL)
279
0
        return 0;
280
281
    /* Safe to cast away const here since we're not "getting" any data */
282
27.8k
    if (sctx->propq != NULL)
283
0
        *p++ = OSSL_PARAM_construct_utf8_string(OSSL_ALG_PARAM_PROPERTIES,
284
0
            (char *)sctx->propq,
285
0
            0);
286
27.8k
    *p = OSSL_PARAM_construct_end();
287
288
27.8k
    if (!ssl_handshake_hash(s, hash, sizeof(hash), &hashlen)) {
289
        /* SSLfatal() already called */
290
0
        goto err;
291
0
    }
292
293
27.8k
    if (str == SSL_CONNECTION_GET_SSL(s)->method->ssl3_enc->server_finished_label) {
294
15.4k
        key = s->server_finished_secret;
295
15.4k
    } else if (SSL_IS_FIRST_HANDSHAKE(s)) {
296
12.3k
        key = s->client_finished_secret;
297
12.3k
    } else {
298
0
        if (!tls13_derive_finishedkey(s, md,
299
0
                s->client_app_traffic_secret,
300
0
                finsecret, hashlen))
301
0
            goto err;
302
0
        key = finsecret;
303
0
    }
304
305
27.8k
    if (!EVP_Q_mac(sctx->libctx, "HMAC", sctx->propq, mdname,
306
27.8k
            params, key, hashlen, hash, hashlen,
307
            /* outsize as per sizeof(peer_finish_md) */
308
27.8k
            out, EVP_MAX_MD_SIZE * 2, &len)) {
309
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
310
0
        goto err;
311
0
    }
312
313
27.8k
err:
314
27.8k
    OPENSSL_cleanse(finsecret, sizeof(finsecret));
315
27.8k
    return len;
316
27.8k
}
317
318
/*
319
 * There isn't really a key block in TLSv1.3, but we still need this function
320
 * for initialising the cipher and hash. Returns 1 on success or 0 on failure.
321
 */
322
int tls13_setup_key_block(SSL_CONNECTION *s)
323
28.2k
{
324
28.2k
    const EVP_CIPHER *c;
325
28.2k
    const EVP_MD *hash;
326
28.2k
    int mac_type = NID_undef;
327
28.2k
    size_t mac_secret_size = 0;
328
329
28.2k
    s->session->cipher = s->s3.tmp.new_cipher;
330
28.2k
    if (!ssl_cipher_get_evp(SSL_CONNECTION_GET_CTX(s), s->session, &c, &hash,
331
28.2k
            &mac_type, &mac_secret_size, NULL, 0)) {
332
        /* Error is already recorded */
333
0
        SSLfatal_alert(s, SSL_AD_INTERNAL_ERROR);
334
0
        return 0;
335
0
    }
336
337
28.2k
    ssl_evp_cipher_free(s->s3.tmp.new_sym_enc);
338
28.2k
    s->s3.tmp.new_sym_enc = c;
339
28.2k
    ssl_evp_md_free(s->s3.tmp.new_hash);
340
28.2k
    s->s3.tmp.new_hash = hash;
341
28.2k
    s->s3.tmp.new_mac_pkey_type = mac_type;
342
28.2k
    s->s3.tmp.new_mac_secret_size = mac_secret_size;
343
344
28.2k
    return 1;
345
28.2k
}
346
347
static int derive_secret_key_and_iv(SSL_CONNECTION *s, const EVP_MD *md,
348
    const EVP_CIPHER *ciph,
349
    int mac_type,
350
    const EVP_MD *mac_md,
351
    const unsigned char *insecret,
352
    const unsigned char *hash,
353
    const unsigned char *label,
354
    size_t labellen, unsigned char *secret,
355
    unsigned char *key, size_t *keylen,
356
    unsigned char **iv, size_t *ivlen,
357
    size_t *taglen)
358
65.2k
{
359
65.2k
    int hashleni = EVP_MD_get_size(md);
360
65.2k
    size_t hashlen;
361
65.2k
    int mode, mac_mdleni;
362
363
    /* Ensure cast to size_t is safe */
364
65.2k
    if (!ossl_assert(hashleni > 0)) {
365
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_EVP_LIB);
366
0
        return 0;
367
0
    }
368
65.2k
    hashlen = (size_t)hashleni;
369
370
65.2k
    if (!tls13_hkdf_expand(s, md, insecret, label, labellen, hash, hashlen,
371
65.2k
            secret, hashlen, 1)) {
372
        /* SSLfatal() already called */
373
0
        return 0;
374
0
    }
375
376
    /* if ciph is NULL cipher, then use new_hash to calculate keylen */
377
65.2k
    if (EVP_CIPHER_is_a(ciph, "NULL")
378
0
        && mac_md != NULL
379
0
        && mac_type == NID_hmac) {
380
0
        mac_mdleni = EVP_MD_get_size(mac_md);
381
382
0
        if (mac_mdleni <= 0) {
383
0
            SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
384
0
            return 0;
385
0
        }
386
0
        *ivlen = *taglen = (size_t)mac_mdleni;
387
0
        *keylen = s->s3.tmp.new_mac_secret_size;
388
65.2k
    } else {
389
390
65.2k
        *keylen = EVP_CIPHER_get_key_length(ciph);
391
392
65.2k
        mode = EVP_CIPHER_get_mode(ciph);
393
65.2k
        if (mode == EVP_CIPH_CCM_MODE) {
394
0
            uint32_t algenc;
395
396
0
            *ivlen = EVP_CCM_TLS_IV_LEN;
397
0
            if (s->s3.tmp.new_cipher != NULL) {
398
0
                algenc = s->s3.tmp.new_cipher->algorithm_enc;
399
0
            } else if (s->session->cipher != NULL) {
400
                /* We've not selected a cipher yet - we must be doing early data */
401
0
                algenc = s->session->cipher->algorithm_enc;
402
0
            } else if (s->psksession != NULL && s->psksession->cipher != NULL) {
403
                /* We must be doing early data with out-of-band PSK */
404
0
                algenc = s->psksession->cipher->algorithm_enc;
405
0
            } else {
406
0
                SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_EVP_LIB);
407
0
                return 0;
408
0
            }
409
0
            if (algenc & (SSL_AES128CCM8 | SSL_AES256CCM8))
410
0
                *taglen = EVP_CCM8_TLS_TAG_LEN;
411
0
            else
412
0
                *taglen = EVP_CCM_TLS_TAG_LEN;
413
65.2k
        } else {
414
65.2k
            int iivlen;
415
416
65.2k
            if (mode == EVP_CIPH_GCM_MODE) {
417
58.9k
                *taglen = EVP_GCM_TLS_TAG_LEN;
418
58.9k
            } else {
419
                /* CHACHA20P-POLY1305 */
420
6.32k
                *taglen = EVP_CHACHAPOLY_TLS_TAG_LEN;
421
6.32k
            }
422
65.2k
            iivlen = EVP_CIPHER_get_iv_length(ciph);
423
65.2k
            if (iivlen < 0) {
424
0
                SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_EVP_LIB);
425
0
                return 0;
426
0
            }
427
65.2k
            *ivlen = iivlen;
428
65.2k
        }
429
65.2k
    }
430
431
65.2k
    if (*ivlen > EVP_MAX_IV_LENGTH) {
432
0
        *iv = OPENSSL_malloc(*ivlen);
433
0
        if (*iv == NULL) {
434
0
            SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_MALLOC_FAILURE);
435
0
            return 0;
436
0
        }
437
0
    }
438
439
65.2k
    if (!tls13_derive_key(s, md, secret, key, *keylen)
440
65.2k
        || !tls13_derive_iv(s, md, secret, *iv, *ivlen)) {
441
        /* SSLfatal() already called */
442
0
        return 0;
443
0
    }
444
445
65.2k
    return 1;
446
65.2k
}
447
448
int tls13_change_cipher_state(SSL_CONNECTION *s, int which)
449
17.1k
{
450
    /* ASCII: "c e traffic", in hex for EBCDIC compatibility */
451
17.1k
    static const unsigned char client_early_traffic[] = "\x63\x20\x65\x20\x74\x72\x61\x66\x66\x69\x63";
452
    /* ASCII: "c hs traffic", in hex for EBCDIC compatibility */
453
17.1k
    static const unsigned char client_handshake_traffic[] = "\x63\x20\x68\x73\x20\x74\x72\x61\x66\x66\x69\x63";
454
    /* ASCII: "c ap traffic", in hex for EBCDIC compatibility */
455
17.1k
    static const unsigned char client_application_traffic[] = "\x63\x20\x61\x70\x20\x74\x72\x61\x66\x66\x69\x63";
456
    /* ASCII: "s hs traffic", in hex for EBCDIC compatibility */
457
17.1k
    static const unsigned char server_handshake_traffic[] = "\x73\x20\x68\x73\x20\x74\x72\x61\x66\x66\x69\x63";
458
    /* ASCII: "s ap traffic", in hex for EBCDIC compatibility */
459
17.1k
    static const unsigned char server_application_traffic[] = "\x73\x20\x61\x70\x20\x74\x72\x61\x66\x66\x69\x63";
460
    /* ASCII: "exp master", in hex for EBCDIC compatibility */
461
17.1k
    static const unsigned char exporter_master_secret[] = "\x65\x78\x70\x20\x6D\x61\x73\x74\x65\x72";
462
    /* ASCII: "res master", in hex for EBCDIC compatibility */
463
17.1k
    static const unsigned char resumption_master_secret[] = "\x72\x65\x73\x20\x6D\x61\x73\x74\x65\x72";
464
    /* ASCII: "e exp master", in hex for EBCDIC compatibility */
465
17.1k
    static const unsigned char early_exporter_master_secret[] = "\x65\x20\x65\x78\x70\x20\x6D\x61\x73\x74\x65\x72";
466
17.1k
    unsigned char iv_intern[EVP_MAX_IV_LENGTH];
467
17.1k
    unsigned char *iv = iv_intern;
468
17.1k
    unsigned char key[EVP_MAX_KEY_LENGTH];
469
17.1k
    unsigned char secret[EVP_MAX_MD_SIZE];
470
17.1k
    unsigned char hashval[EVP_MAX_MD_SIZE];
471
17.1k
    unsigned char *hash = hashval;
472
17.1k
    unsigned char *insecret;
473
17.1k
    unsigned char *finsecret = NULL;
474
17.1k
    const char *log_label = NULL;
475
17.1k
    int finsecretlen = 0;
476
17.1k
    const unsigned char *label;
477
17.1k
    size_t labellen, hashlen = 0;
478
17.1k
    int ret = 0;
479
17.1k
    const EVP_MD *md = NULL, *mac_md = NULL;
480
17.1k
    const EVP_CIPHER *cipher = NULL;
481
17.1k
    int mac_pkey_type = NID_undef;
482
17.1k
    SSL_CTX *sctx = SSL_CONNECTION_GET_CTX(s);
483
17.1k
    size_t keylen, ivlen = EVP_MAX_IV_LENGTH, taglen;
484
17.1k
    int level;
485
17.1k
    int direction = (which & SSL3_CC_READ) != 0 ? OSSL_RECORD_DIRECTION_READ
486
17.1k
                                                : OSSL_RECORD_DIRECTION_WRITE;
487
488
17.1k
    if (((which & SSL3_CC_CLIENT) && (which & SSL3_CC_WRITE))
489
9.33k
        || ((which & SSL3_CC_SERVER) && (which & SSL3_CC_READ))) {
490
8.27k
        if ((which & SSL3_CC_EARLY) != 0) {
491
0
            EVP_MD_CTX *mdctx = NULL;
492
0
            long handlen;
493
0
            void *hdata;
494
0
            unsigned int hashlenui;
495
0
            const SSL_CIPHER *sslcipher = SSL_SESSION_get0_cipher(s->session);
496
497
0
            insecret = s->early_secret;
498
0
            label = client_early_traffic;
499
0
            labellen = sizeof(client_early_traffic) - 1;
500
0
            log_label = CLIENT_EARLY_LABEL;
501
502
0
            handlen = BIO_get_mem_data(s->s3.handshake_buffer, &hdata);
503
0
            if (handlen <= 0) {
504
0
                SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_R_BAD_HANDSHAKE_LENGTH);
505
0
                goto err;
506
0
            }
507
508
0
            if (s->early_data_state == SSL_EARLY_DATA_CONNECTING
509
0
                && s->max_early_data > 0
510
0
                && s->session->ext.max_early_data == 0) {
511
                /*
512
                 * If we are attempting to send early data, and we've decided to
513
                 * actually do it but max_early_data in s->session is 0 then we
514
                 * must be using an external PSK.
515
                 */
516
0
                if (!ossl_assert(s->psksession != NULL
517
0
                        && s->max_early_data == s->psksession->ext.max_early_data)) {
518
0
                    SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
519
0
                    goto err;
520
0
                }
521
0
                sslcipher = SSL_SESSION_get0_cipher(s->psksession);
522
0
            }
523
0
            if (sslcipher == NULL) {
524
0
                SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_R_BAD_PSK);
525
0
                goto err;
526
0
            }
527
528
            /*
529
             * This ups the ref count on cipher so we better make sure we free
530
             * it again
531
             */
532
0
            if (!ssl_cipher_get_evp_cipher(sctx, sslcipher, &cipher)) {
533
                /* Error is already recorded */
534
0
                SSLfatal_alert(s, SSL_AD_INTERNAL_ERROR);
535
0
                goto err;
536
0
            }
537
538
0
            if (((EVP_CIPHER_flags(cipher) & EVP_CIPH_FLAG_AEAD_CIPHER) == 0)
539
0
                && (!ssl_cipher_get_evp_md_mac(sctx, sslcipher, &mac_md,
540
0
                    &mac_pkey_type, NULL))) {
541
0
                SSLfatal_alert(s, SSL_AD_INTERNAL_ERROR);
542
0
                goto err;
543
0
            }
544
545
            /*
546
             * We need to calculate the handshake digest using the digest from
547
             * the session. We haven't yet selected our ciphersuite so we can't
548
             * use ssl_handshake_md().
549
             */
550
0
            mdctx = EVP_MD_CTX_new();
551
0
            if (mdctx == NULL) {
552
0
                SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_EVP_LIB);
553
0
                goto err;
554
0
            }
555
556
0
            md = ssl_md(sctx, sslcipher->algorithm2);
557
0
            if (md == NULL || !EVP_DigestInit_ex(mdctx, md, NULL)
558
0
                || !EVP_DigestUpdate(mdctx, hdata, handlen)
559
0
                || !EVP_DigestFinal_ex(mdctx, hashval, &hashlenui)) {
560
0
                SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
561
0
                EVP_MD_CTX_free(mdctx);
562
0
                goto err;
563
0
            }
564
0
            hashlen = hashlenui;
565
0
            EVP_MD_CTX_free(mdctx);
566
567
0
            if (!tls13_hkdf_expand(s, md, insecret,
568
0
                    early_exporter_master_secret,
569
0
                    sizeof(early_exporter_master_secret) - 1,
570
0
                    hashval, hashlen,
571
0
                    s->early_exporter_master_secret, hashlen,
572
0
                    1)) {
573
0
                SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
574
0
                goto err;
575
0
            }
576
577
0
            if (!ssl_log_secret(s, EARLY_EXPORTER_SECRET_LABEL,
578
0
                    s->early_exporter_master_secret, hashlen)) {
579
                /* SSLfatal() already called */
580
0
                goto err;
581
0
            }
582
8.27k
        } else if (which & SSL3_CC_HANDSHAKE) {
583
5.69k
            insecret = s->handshake_secret;
584
5.69k
            finsecret = s->client_finished_secret;
585
5.69k
            finsecretlen = EVP_MD_get_size(ssl_handshake_md(s));
586
5.69k
            if (finsecretlen <= 0) {
587
0
                SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
588
0
                goto err;
589
0
            }
590
5.69k
            label = client_handshake_traffic;
591
5.69k
            labellen = sizeof(client_handshake_traffic) - 1;
592
5.69k
            log_label = CLIENT_HANDSHAKE_LABEL;
593
            /*
594
             * The handshake hash used for the server read/client write handshake
595
             * traffic secret is the same as the hash for the server
596
             * write/client read handshake traffic secret. However, if we
597
             * processed early data then we delay changing the server
598
             * read/client write cipher state until later, and the handshake
599
             * hashes have moved on. Therefore we use the value saved earlier
600
             * when we did the server write/client read change cipher state.
601
             */
602
5.69k
            hash = s->handshake_traffic_hash;
603
5.69k
        } else {
604
2.58k
            insecret = s->master_secret;
605
2.58k
            label = client_application_traffic;
606
2.58k
            labellen = sizeof(client_application_traffic) - 1;
607
2.58k
            log_label = CLIENT_APPLICATION_LABEL;
608
            /*
609
             * For this we only use the handshake hashes up until the server
610
             * Finished hash. We do not include the client's Finished, which is
611
             * what ssl_handshake_hash() would give us. Instead we use the
612
             * previously saved value.
613
             */
614
2.58k
            hash = s->server_finished_hash;
615
2.58k
        }
616
8.87k
    } else {
617
        /* Early data never applies to client-read/server-write */
618
8.87k
        if (which & SSL3_CC_HANDSHAKE) {
619
5.82k
            insecret = s->handshake_secret;
620
5.82k
            finsecret = s->server_finished_secret;
621
5.82k
            finsecretlen = EVP_MD_get_size(ssl_handshake_md(s));
622
5.82k
            if (finsecretlen <= 0) {
623
0
                SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
624
0
                goto err;
625
0
            }
626
5.82k
            label = server_handshake_traffic;
627
5.82k
            labellen = sizeof(server_handshake_traffic) - 1;
628
5.82k
            log_label = SERVER_HANDSHAKE_LABEL;
629
5.82k
        } else {
630
3.04k
            insecret = s->master_secret;
631
3.04k
            label = server_application_traffic;
632
3.04k
            labellen = sizeof(server_application_traffic) - 1;
633
3.04k
            log_label = SERVER_APPLICATION_LABEL;
634
3.04k
        }
635
8.87k
    }
636
637
17.1k
    if ((which & SSL3_CC_EARLY) == 0) {
638
17.1k
        md = ssl_handshake_md(s);
639
17.1k
        cipher = s->s3.tmp.new_sym_enc;
640
17.1k
        mac_md = s->s3.tmp.new_hash;
641
17.1k
        mac_pkey_type = s->s3.tmp.new_mac_pkey_type;
642
17.1k
        if (!ssl3_digest_cached_records(s, 1)
643
17.1k
            || !ssl_handshake_hash(s, hashval, sizeof(hashval), &hashlen)) {
644
0
            /* SSLfatal() already called */;
645
0
            goto err;
646
0
        }
647
17.1k
    }
648
649
    /*
650
     * Save the hash of handshakes up to now for use when we calculate the
651
     * client application traffic secret
652
     */
653
17.1k
    if (label == server_application_traffic)
654
3.04k
        memcpy(s->server_finished_hash, hashval, hashlen);
655
656
17.1k
    if (label == server_handshake_traffic)
657
5.82k
        memcpy(s->handshake_traffic_hash, hashval, hashlen);
658
659
17.1k
    if (label == client_application_traffic) {
660
        /*
661
         * We also create the resumption master secret, but this time use the
662
         * hash for the whole handshake including the Client Finished
663
         */
664
2.58k
        if (!tls13_hkdf_expand(s, ssl_handshake_md(s), insecret,
665
2.58k
                resumption_master_secret,
666
2.58k
                sizeof(resumption_master_secret) - 1,
667
2.58k
                hashval, hashlen, s->resumption_master_secret,
668
2.58k
                hashlen, 1)) {
669
            /* SSLfatal() already called */
670
0
            goto err;
671
0
        }
672
2.58k
    }
673
674
    /* check whether cipher is known */
675
17.1k
    if (!ossl_assert(cipher != NULL))
676
0
        goto err;
677
678
17.1k
    if (!derive_secret_key_and_iv(s, md, cipher, mac_pkey_type, mac_md,
679
17.1k
            insecret, hash, label, labellen, secret, key,
680
17.1k
            &keylen, &iv, &ivlen, &taglen)) {
681
        /* SSLfatal() already called */
682
0
        goto err;
683
0
    }
684
685
17.1k
    if (label == server_application_traffic) {
686
3.04k
        memcpy(s->server_app_traffic_secret, secret, hashlen);
687
        /* Now we create the exporter master secret */
688
3.04k
        if (!tls13_hkdf_expand(s, ssl_handshake_md(s), insecret,
689
3.04k
                exporter_master_secret,
690
3.04k
                sizeof(exporter_master_secret) - 1,
691
3.04k
                hash, hashlen, s->exporter_master_secret,
692
3.04k
                hashlen, 1)) {
693
            /* SSLfatal() already called */
694
0
            goto err;
695
0
        }
696
697
3.04k
        if (!ssl_log_secret(s, EXPORTER_SECRET_LABEL, s->exporter_master_secret,
698
3.04k
                hashlen)) {
699
            /* SSLfatal() already called */
700
0
            goto err;
701
0
        }
702
14.1k
    } else if (label == client_application_traffic)
703
2.58k
        memcpy(s->client_app_traffic_secret, secret, hashlen);
704
705
17.1k
    if (!ssl_log_secret(s, log_label, secret, hashlen)) {
706
        /* SSLfatal() already called */
707
0
        goto err;
708
0
    }
709
710
17.1k
    if (finsecret != NULL
711
11.5k
        && !tls13_derive_finishedkey(s, ssl_handshake_md(s), secret,
712
11.5k
            finsecret, (size_t)finsecretlen)) {
713
        /* SSLfatal() already called */
714
0
        goto err;
715
0
    }
716
717
17.1k
    if ((which & SSL3_CC_WRITE) != 0) {
718
8.73k
        if (!s->server && label == client_early_traffic)
719
0
            s->rlayer.wrlmethod->set_plain_alerts(s->rlayer.wrl, 1);
720
8.73k
        else
721
8.73k
            s->rlayer.wrlmethod->set_plain_alerts(s->rlayer.wrl, 0);
722
8.73k
    }
723
724
17.1k
    level = (which & SSL3_CC_EARLY) != 0
725
17.1k
        ? OSSL_RECORD_PROTECTION_LEVEL_EARLY
726
17.1k
        : ((which & SSL3_CC_HANDSHAKE) != 0
727
17.1k
                  ? OSSL_RECORD_PROTECTION_LEVEL_HANDSHAKE
728
17.1k
                  : OSSL_RECORD_PROTECTION_LEVEL_APPLICATION);
729
730
17.1k
    if (!ssl_set_new_record_layer(s, s->version,
731
17.1k
            direction,
732
17.1k
            level, secret, hashlen, key, keylen, iv,
733
17.1k
            ivlen, NULL, 0, cipher, taglen,
734
17.1k
            mac_pkey_type, mac_md, NULL, md)) {
735
        /* SSLfatal already called */
736
5
        goto err;
737
5
    }
738
739
17.1k
    ret = 1;
740
17.1k
err:
741
17.1k
    if ((which & SSL3_CC_EARLY) != 0) {
742
        /* We up-refed this so now we need to down ref */
743
0
        if ((EVP_CIPHER_flags(cipher) & EVP_CIPH_FLAG_AEAD_CIPHER) == 0)
744
0
            ssl_evp_md_free(mac_md);
745
0
        ssl_evp_cipher_free(cipher);
746
0
    }
747
17.1k
    OPENSSL_cleanse(key, sizeof(key));
748
17.1k
    OPENSSL_cleanse(secret, sizeof(secret));
749
17.1k
    if (iv != iv_intern)
750
0
        OPENSSL_free(iv);
751
17.1k
    return ret;
752
17.1k
}
753
754
int tls13_update_key(SSL_CONNECTION *s, int sending)
755
0
{
756
    /* ASCII: "traffic upd", in hex for EBCDIC compatibility */
757
0
    static const unsigned char application_traffic[] = "\x74\x72\x61\x66\x66\x69\x63\x20\x75\x70\x64";
758
0
    const EVP_MD *md = ssl_handshake_md(s);
759
0
    size_t hashlen;
760
0
    unsigned char key[EVP_MAX_KEY_LENGTH];
761
0
    unsigned char *insecret;
762
0
    unsigned char secret[EVP_MAX_MD_SIZE];
763
0
    char *log_label;
764
0
    size_t keylen, ivlen, taglen;
765
0
    int ret = 0, l;
766
0
    int direction = sending ? OSSL_RECORD_DIRECTION_WRITE
767
0
                            : OSSL_RECORD_DIRECTION_READ;
768
0
    unsigned char iv_intern[EVP_MAX_IV_LENGTH];
769
0
    unsigned char *iv = iv_intern;
770
771
0
    if ((l = EVP_MD_get_size(md)) <= 0) {
772
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
773
0
        return 0;
774
0
    }
775
0
    hashlen = (size_t)l;
776
777
0
    if (s->server == sending)
778
0
        insecret = s->server_app_traffic_secret;
779
0
    else
780
0
        insecret = s->client_app_traffic_secret;
781
782
0
    if (!derive_secret_key_and_iv(s, md,
783
0
            s->s3.tmp.new_sym_enc,
784
0
            s->s3.tmp.new_mac_pkey_type, s->s3.tmp.new_hash,
785
0
            insecret, NULL,
786
0
            application_traffic,
787
0
            sizeof(application_traffic) - 1, secret, key,
788
0
            &keylen, &iv, &ivlen, &taglen)) {
789
        /* SSLfatal() already called */
790
0
        goto err;
791
0
    }
792
793
0
    memcpy(insecret, secret, hashlen);
794
795
0
    if (!ssl_set_new_record_layer(s, s->version,
796
0
            direction,
797
0
            OSSL_RECORD_PROTECTION_LEVEL_APPLICATION,
798
0
            insecret, hashlen, key, keylen, iv, ivlen, NULL, 0,
799
0
            s->s3.tmp.new_sym_enc, taglen, NID_undef, NULL,
800
0
            NULL, md)) {
801
        /* SSLfatal already called */
802
0
        goto err;
803
0
    }
804
805
    /* Call Key log on successful traffic secret update */
806
0
    log_label = s->server == sending ? SERVER_APPLICATION_N_LABEL : CLIENT_APPLICATION_N_LABEL;
807
0
    if (!ssl_log_secret(s, log_label, secret, hashlen)) {
808
        /* SSLfatal() already called */
809
0
        goto err;
810
0
    }
811
0
    ret = 1;
812
0
err:
813
0
    OPENSSL_cleanse(key, sizeof(key));
814
0
    OPENSSL_cleanse(secret, sizeof(secret));
815
0
    if (iv != iv_intern)
816
0
        OPENSSL_free(iv);
817
0
    return ret;
818
0
}
819
820
int tls13_alert_code(int code)
821
15.3k
{
822
    /* There are 2 additional alerts in TLSv1.3 compared to TLSv1.2 */
823
15.3k
    if (code == SSL_AD_MISSING_EXTENSION || code == SSL_AD_CERTIFICATE_REQUIRED)
824
272
        return code;
825
826
15.1k
    return tls1_alert_code(code);
827
15.3k
}
828
829
int tls13_export_keying_material(SSL_CONNECTION *s,
830
    unsigned char *out, size_t olen,
831
    const char *label, size_t llen,
832
    const unsigned char *context,
833
    size_t contextlen, int use_context)
834
0
{
835
0
    unsigned char exportsecret[EVP_MAX_MD_SIZE];
836
    /* ASCII: "exporter", in hex for EBCDIC compatibility */
837
0
    static const unsigned char exporterlabel[] = "\x65\x78\x70\x6F\x72\x74\x65\x72";
838
0
    unsigned char hash[EVP_MAX_MD_SIZE], data[EVP_MAX_MD_SIZE];
839
0
    const EVP_MD *md = ssl_handshake_md(s);
840
0
    EVP_MD_CTX *ctx = EVP_MD_CTX_new();
841
0
    unsigned int hashsize, datalen;
842
0
    int ret = 0;
843
844
0
    if (ctx == NULL || md == NULL || !ossl_statem_export_allowed(s))
845
0
        goto err;
846
847
0
    if (!use_context)
848
0
        contextlen = 0;
849
850
0
    if (EVP_DigestInit_ex(ctx, md, NULL) <= 0
851
0
        || EVP_DigestUpdate(ctx, context, contextlen) <= 0
852
0
        || EVP_DigestFinal_ex(ctx, hash, &hashsize) <= 0
853
0
        || EVP_DigestInit_ex(ctx, md, NULL) <= 0
854
0
        || EVP_DigestFinal_ex(ctx, data, &datalen) <= 0
855
0
        || !tls13_hkdf_expand(s, md, s->exporter_master_secret,
856
0
            (const unsigned char *)label, llen,
857
0
            data, datalen, exportsecret, hashsize, 0)
858
0
        || !tls13_hkdf_expand(s, md, exportsecret, exporterlabel,
859
0
            sizeof(exporterlabel) - 1, hash, hashsize,
860
0
            out, olen, 0))
861
0
        goto err;
862
863
0
    ret = 1;
864
0
err:
865
0
    EVP_MD_CTX_free(ctx);
866
0
    return ret;
867
0
}
868
869
int tls13_export_keying_material_early(SSL_CONNECTION *s,
870
    unsigned char *out, size_t olen,
871
    const char *label, size_t llen,
872
    const unsigned char *context,
873
    size_t contextlen)
874
0
{
875
    /* ASCII: "exporter", in hex for EBCDIC compatibility */
876
0
    static const unsigned char exporterlabel[] = "\x65\x78\x70\x6F\x72\x74\x65\x72";
877
0
    unsigned char exportsecret[EVP_MAX_MD_SIZE];
878
0
    unsigned char hash[EVP_MAX_MD_SIZE], data[EVP_MAX_MD_SIZE];
879
0
    const EVP_MD *md;
880
0
    EVP_MD_CTX *ctx = EVP_MD_CTX_new();
881
0
    unsigned int hashsize, datalen;
882
0
    int ret = 0;
883
0
    const SSL_CIPHER *sslcipher;
884
885
0
    if (ctx == NULL || !ossl_statem_export_early_allowed(s))
886
0
        goto err;
887
888
0
    if (!s->server && s->max_early_data > 0
889
0
        && s->session->ext.max_early_data == 0)
890
0
        sslcipher = SSL_SESSION_get0_cipher(s->psksession);
891
0
    else
892
0
        sslcipher = SSL_SESSION_get0_cipher(s->session);
893
894
0
    md = ssl_md(SSL_CONNECTION_GET_CTX(s), sslcipher->algorithm2);
895
896
    /*
897
     * Calculate the hash value and store it in |data|. The reason why
898
     * the empty string is used is that the definition of TLS-Exporter
899
     * is like so:
900
     *
901
     * TLS-Exporter(label, context_value, key_length) =
902
     *     HKDF-Expand-Label(Derive-Secret(Secret, label, ""),
903
     *                       "exporter", Hash(context_value), key_length)
904
     *
905
     * Derive-Secret(Secret, Label, Messages) =
906
     *       HKDF-Expand-Label(Secret, Label,
907
     *                         Transcript-Hash(Messages), Hash.length)
908
     *
909
     * Here Transcript-Hash is the cipher suite hash algorithm.
910
     */
911
0
    if (md == NULL
912
0
        || EVP_DigestInit_ex(ctx, md, NULL) <= 0
913
0
        || EVP_DigestUpdate(ctx, context, contextlen) <= 0
914
0
        || EVP_DigestFinal_ex(ctx, hash, &hashsize) <= 0
915
0
        || EVP_DigestInit_ex(ctx, md, NULL) <= 0
916
0
        || EVP_DigestFinal_ex(ctx, data, &datalen) <= 0
917
0
        || !tls13_hkdf_expand(s, md, s->early_exporter_master_secret,
918
0
            (const unsigned char *)label, llen,
919
0
            data, datalen, exportsecret, hashsize, 0)
920
0
        || !tls13_hkdf_expand(s, md, exportsecret, exporterlabel,
921
0
            sizeof(exporterlabel) - 1, hash, hashsize,
922
0
            out, olen, 0))
923
0
        goto err;
924
925
0
    ret = 1;
926
0
err:
927
0
    EVP_MD_CTX_free(ctx);
928
0
    return ret;
929
0
}