Coverage Report

Created: 2026-08-18 07:24

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/openssl/ssl/ssl_local.h
Line
Count
Source
1
/*
2
 * Copyright 1995-2026 The OpenSSL Project Authors. All Rights Reserved.
3
 * Copyright (c) 2002, Oracle and/or its affiliates. All rights reserved
4
 * Copyright 2005 Nokia. All rights reserved.
5
 *
6
 * Licensed under the Apache License 2.0 (the "License").  You may not use
7
 * this file except in compliance with the License.  You can obtain a copy
8
 * in the file LICENSE in the source distribution or at
9
 * https://www.openssl.org/source/license.html
10
 */
11
12
#ifndef OSSL_SSL_LOCAL_H
13
#define OSSL_SSL_LOCAL_H
14
15
#include <stdbool.h>
16
#include <stdlib.h>
17
#include <time.h>
18
#include <errno.h>
19
#include "internal/common.h" /* for HAS_PREFIX */
20
21
#include <openssl/buffer.h>
22
#include <openssl/bio.h>
23
#include <openssl/comp.h>
24
#include <openssl/dsa.h>
25
#include <openssl/err.h>
26
#include <openssl/ssl.h>
27
#include <openssl/async.h>
28
#include <openssl/symhacks.h>
29
#include <openssl/ct.h>
30
#include "internal/recordmethod.h"
31
#include "internal/statem.h"
32
#include "internal/packet.h"
33
#include "internal/dane.h"
34
#include "internal/refcount.h"
35
#include "internal/tlssigalgs.h"
36
#include "internal/tsan_assist.h"
37
#include "internal/bio.h"
38
#include "internal/ktls.h"
39
#include "internal/time.h"
40
#include "internal/ssl.h"
41
#include "internal/cryptlib.h"
42
#include "internal/quic_predef.h"
43
#include "record/record.h"
44
#include "internal/quic_predef.h"
45
#include "internal/quic_tls.h"
46
#ifndef OPENSSL_NO_ECH
47
#include "ech/ech_local.h"
48
#endif
49
50
#ifdef OPENSSL_BUILD_SHLIBSSL
51
#undef OPENSSL_EXTERN
52
#define OPENSSL_EXTERN OPENSSL_EXPORT
53
#endif
54
55
0
#define TLS_MAX_VERSION_INTERNAL TLS1_3_VERSION
56
0
#define DTLS_MAX_VERSION_INTERNAL DTLS1_2_VERSION
57
58
/*
59
 * DTLS version numbers are strange because they're inverted. Except for
60
 * DTLS1_BAD_VER, which should be considered "lower" than the rest.
61
 */
62
0
#define dtls_ver_ordinal(v1) (((v1) == DTLS1_BAD_VER) ? 0xff00 : (v1))
63
0
#define DTLS_VERSION_GT(v1, v2) (dtls_ver_ordinal(v1) < dtls_ver_ordinal(v2))
64
0
#define DTLS_VERSION_GE(v1, v2) (dtls_ver_ordinal(v1) <= dtls_ver_ordinal(v2))
65
0
#define DTLS_VERSION_LT(v1, v2) (dtls_ver_ordinal(v1) > dtls_ver_ordinal(v2))
66
0
#define DTLS_VERSION_LE(v1, v2) (dtls_ver_ordinal(v1) >= dtls_ver_ordinal(v2))
67
/* TLS/DTLS version for the given SSL object: XTLS(ssl, 1, 2) == TLS 1.2 or DTLS 1.2 */
68
0
#define XTLS(ssl, m, n) (SSL_is_dtls(ssl) ? (((0xFF - m) << 8) | (0xFF - n)) : (((0x02 + m) << 8) | (0x01 + n)))
69
70
0
#define SSL_AD_NO_ALERT -1
71
72
/*
73
 * Define the Bitmasks for SSL_CIPHER.algorithms.
74
 * This bits are used packed as dense as possible. If new methods/ciphers
75
 * etc will be added, the bits a likely to change, so this information
76
 * is for internal library use only, even though SSL_CIPHER.algorithms
77
 * can be publicly accessed.
78
 * Use the according functions for cipher management instead.
79
 *
80
 * The bit mask handling in the selection and sorting scheme in
81
 * ssl_create_cipher_list() has only limited capabilities, reflecting
82
 * that the different entities within are mutually exclusive:
83
 * ONLY ONE BIT PER MASK CAN BE SET AT A TIME.
84
 */
85
86
/* Bits for algorithm_mkey (key exchange algorithm) */
87
/* RSA key exchange */
88
0
#define SSL_kRSA 0x00000001U
89
/* tmp DH key no DH cert */
90
0
#define SSL_kDHE 0x00000002U
91
/* ephemeral ECDH */
92
0
#define SSL_kECDHE 0x00000004U
93
/* PSK */
94
0
#define SSL_kPSK 0x00000008U
95
/* GOST key exchange */
96
0
#define SSL_kGOST 0x00000010U
97
/* SRP */
98
0
#define SSL_kSRP 0x00000020U
99
100
0
#define SSL_kRSAPSK 0x00000040U
101
0
#define SSL_kECDHEPSK 0x00000080U
102
0
#define SSL_kDHEPSK 0x00000100U
103
/* GOST KDF key exchange, draft-smyshlyaev-tls12-gost-suites */
104
0
#define SSL_kGOST18 0x00000200U
105
106
/* all PSK */
107
108
0
#define SSL_PSK (SSL_kPSK | SSL_kRSAPSK | SSL_kECDHEPSK | SSL_kDHEPSK)
109
110
/* Any appropriate key exchange algorithm (for TLS 1.3 ciphersuites) */
111
0
#define SSL_kANY 0x00000000U
112
113
/* Bits for algorithm_auth (server authentication) */
114
/* RSA auth */
115
0
#define SSL_aRSA 0x00000001U
116
/* DSS auth */
117
0
#define SSL_aDSS 0x00000002U
118
/* no auth (i.e. use ADH or AECDH) */
119
0
#define SSL_aNULL 0x00000004U
120
/* ECDSA auth*/
121
0
#define SSL_aECDSA 0x00000008U
122
/* PSK auth */
123
0
#define SSL_aPSK 0x00000010U
124
/* GOST R 34.10-2001 signature auth */
125
0
#define SSL_aGOST01 0x00000020U
126
/* SRP auth */
127
0
#define SSL_aSRP 0x00000040U
128
/* GOST R 34.10-2012 signature auth */
129
0
#define SSL_aGOST12 0x00000080U
130
/* Any appropriate signature auth (for TLS 1.3 ciphersuites) */
131
0
#define SSL_aANY 0x00000000U
132
/* All bits requiring a certificate */
133
#define SSL_aCERT \
134
0
    (SSL_aRSA | SSL_aDSS | SSL_aECDSA | SSL_aGOST01 | SSL_aGOST12)
135
136
/* Bits for algorithm_enc (symmetric encryption) */
137
0
#define SSL_DES 0x00000001U
138
0
#define SSL_3DES 0x00000002U
139
0
#define SSL_RC4 0x00000004U
140
0
#define SSL_RC2 0x00000008U
141
0
#define SSL_IDEA 0x00000010U
142
0
#define SSL_eNULL 0x00000020U
143
0
#define SSL_AES128 0x00000040U
144
0
#define SSL_AES256 0x00000080U
145
0
#define SSL_CAMELLIA128 0x00000100U
146
0
#define SSL_CAMELLIA256 0x00000200U
147
0
#define SSL_eGOST2814789CNT 0x00000400U
148
0
#define SSL_SEED 0x00000800U
149
0
#define SSL_AES128GCM 0x00001000U
150
0
#define SSL_AES256GCM 0x00002000U
151
0
#define SSL_AES128CCM 0x00004000U
152
0
#define SSL_AES256CCM 0x00008000U
153
0
#define SSL_AES128CCM8 0x00010000U
154
0
#define SSL_AES256CCM8 0x00020000U
155
0
#define SSL_eGOST2814789CNT12 0x00040000U
156
0
#define SSL_CHACHA20POLY1305 0x00080000U
157
0
#define SSL_ARIA128GCM 0x00100000U
158
0
#define SSL_ARIA256GCM 0x00200000U
159
0
#define SSL_MAGMA 0x00400000U
160
0
#define SSL_KUZNYECHIK 0x00800000U
161
0
#define SSL_SM4GCM 0x01000000U
162
0
#define SSL_SM4CCM 0x02000000U
163
164
0
#define SSL_AESGCM (SSL_AES128GCM | SSL_AES256GCM)
165
0
#define SSL_AESCCM (SSL_AES128CCM | SSL_AES256CCM | SSL_AES128CCM8 | SSL_AES256CCM8)
166
0
#define SSL_AES (SSL_AES128 | SSL_AES256 | SSL_AESGCM | SSL_AESCCM)
167
#define SSL_CAMELLIA (SSL_CAMELLIA128 | SSL_CAMELLIA256)
168
0
#define SSL_CHACHA20 (SSL_CHACHA20POLY1305)
169
0
#define SSL_ARIAGCM (SSL_ARIA128GCM | SSL_ARIA256GCM)
170
#define SSL_ARIA (SSL_ARIAGCM)
171
#define SSL_CBC (SSL_DES | SSL_3DES | SSL_RC2 | SSL_IDEA \
172
    | SSL_AES128 | SSL_AES256 | SSL_CAMELLIA128          \
173
    | SSL_CAMELLIA256 | SSL_SEED)
174
175
/* Bits for algorithm_mac (symmetric authentication) */
176
177
0
#define SSL_MD5 0x00000001U
178
0
#define SSL_SHA1 0x00000002U
179
0
#define SSL_GOST94 0x00000004U
180
0
#define SSL_GOST89MAC 0x00000008U
181
0
#define SSL_SHA256 0x00000010U
182
0
#define SSL_SHA384 0x00000020U
183
/* Not a real MAC, just an indication it is part of cipher */
184
0
#define SSL_AEAD 0x00000040U
185
0
#define SSL_GOST12_256 0x00000080U
186
0
#define SSL_GOST89MAC12 0x00000100U
187
0
#define SSL_GOST12_512 0x00000200U
188
0
#define SSL_MAGMAOMAC 0x00000400U
189
0
#define SSL_KUZNYECHIKOMAC 0x00000800U
190
191
/*
192
 * When adding new digest in the ssl_ciph.c and increment SSL_MD_NUM_IDX make
193
 * sure to update this constant too
194
 */
195
196
0
#define SSL_MD_MD5_IDX 0
197
0
#define SSL_MD_SHA1_IDX 1
198
#define SSL_MD_GOST94_IDX 2
199
0
#define SSL_MD_GOST89MAC_IDX 3
200
0
#define SSL_MD_SHA256_IDX 4
201
0
#define SSL_MD_SHA384_IDX 5
202
#define SSL_MD_GOST12_256_IDX 6
203
0
#define SSL_MD_GOST89MAC12_IDX 7
204
#define SSL_MD_GOST12_512_IDX 8
205
0
#define SSL_MD_MD5_SHA1_IDX 9
206
0
#define SSL_MD_SHA224_IDX 10
207
#define SSL_MD_SHA512_IDX 11
208
0
#define SSL_MD_MAGMAOMAC_IDX 12
209
0
#define SSL_MD_KUZNYECHIKOMAC_IDX 13
210
#define SSL_MD_SM3_IDX 14
211
0
#define SSL_MAX_DIGEST 15
212
213
0
#define SSL_MD_NUM_IDX SSL_MAX_DIGEST
214
215
/* Bits for algorithm2 (handshake digests and other extra flags) */
216
217
/* Bits 0-7 are handshake MAC */
218
0
#define SSL_HANDSHAKE_MAC_MASK 0xFF
219
0
#define SSL_HANDSHAKE_MAC_MD5_SHA1 SSL_MD_MD5_SHA1_IDX
220
0
#define SSL_HANDSHAKE_MAC_SHA256 SSL_MD_SHA256_IDX
221
0
#define SSL_HANDSHAKE_MAC_SHA384 SSL_MD_SHA384_IDX
222
#define SSL_HANDSHAKE_MAC_GOST94 SSL_MD_GOST94_IDX
223
#define SSL_HANDSHAKE_MAC_GOST12_256 SSL_MD_GOST12_256_IDX
224
#define SSL_HANDSHAKE_MAC_GOST12_512 SSL_MD_GOST12_512_IDX
225
#define SSL_HANDSHAKE_MAC_SM3 SSL_MD_SM3_IDX
226
0
#define SSL_HANDSHAKE_MAC_DEFAULT SSL_HANDSHAKE_MAC_MD5_SHA1
227
228
/* Bits 8-15 bits are PRF */
229
0
#define TLS1_PRF_DGST_SHIFT 8
230
#define TLS1_PRF_SHA1_MD5 (SSL_MD_MD5_SHA1_IDX << TLS1_PRF_DGST_SHIFT)
231
0
#define TLS1_PRF_SHA256 (SSL_MD_SHA256_IDX << TLS1_PRF_DGST_SHIFT)
232
0
#define TLS1_PRF_SHA384 (SSL_MD_SHA384_IDX << TLS1_PRF_DGST_SHIFT)
233
#define TLS1_PRF_GOST94 (SSL_MD_GOST94_IDX << TLS1_PRF_DGST_SHIFT)
234
#define TLS1_PRF_GOST12_256 (SSL_MD_GOST12_256_IDX << TLS1_PRF_DGST_SHIFT)
235
#define TLS1_PRF_GOST12_512 (SSL_MD_GOST12_512_IDX << TLS1_PRF_DGST_SHIFT)
236
0
#define TLS1_PRF (SSL_MD_MD5_SHA1_IDX << TLS1_PRF_DGST_SHIFT)
237
238
/*
239
 * Stream MAC for GOST ciphersuites from cryptopro draft (currently this also
240
 * goes into algorithm2)
241
 */
242
0
#define TLS1_STREAM_MAC 0x10000
243
/*
244
 * TLSTREE cipher/mac key derivation from draft-smyshlyaev-tls12-gost-suites
245
 * (currently this also  goes into algorithm2)
246
 */
247
0
#define TLS1_TLSTREE 0x20000
248
249
/* Ciphersuite supported in QUIC */
250
0
#define SSL_QUIC 0x00040000U
251
252
0
#define SSL_STRONG_MASK 0x0000001FU
253
0
#define SSL_DEFAULT_MASK 0X00000020U
254
255
#define SSL_STRONG_NONE 0x00000001U
256
#define SSL_LOW 0x00000002U
257
#define SSL_MEDIUM 0x00000004U
258
#define SSL_HIGH 0x00000008U
259
/* #define SSL_FIPS 0x00000010U obsolete FIPS canister remnant */
260
#define SSL_NOT_DEFAULT 0x00000020U
261
262
/* we have used 0000003f - 26 bits left to go */
263
264
/* Flag used on OpenSSL ciphersuite ids to indicate they are for SSLv3+ */
265
0
#define SSL3_CK_CIPHERSUITE_FLAG 0x03000000
266
267
/* Check if an SSL structure is using DTLS */
268
#define SSL_CONNECTION_IS_DTLS(s) \
269
0
    (SSL_CONNECTION_GET_SSL(s)->method->ssl3_enc->enc_flags & SSL_ENC_FLAG_DTLS)
270
271
/* Check if an SSL_CTX structure is using DTLS */
272
#define SSL_CTX_IS_DTLS(ctx) \
273
0
    (ctx->method->ssl3_enc->enc_flags & SSL_ENC_FLAG_DTLS)
274
275
/* Check if we are using TLSv1.3 */
276
0
#define SSL_CONNECTION_IS_TLS13(s) (!SSL_CONNECTION_IS_DTLS(s)      \
277
0
    && SSL_CONNECTION_GET_SSL(s)->method->version >= TLS1_3_VERSION \
278
0
    && SSL_CONNECTION_GET_SSL(s)->method->version != TLS_ANY_VERSION)
279
280
#define SSL_CONNECTION_TREAT_AS_TLS13(s)                         \
281
0
    (SSL_CONNECTION_IS_TLS13(s)                                  \
282
0
        || (s)->early_data_state == SSL_EARLY_DATA_CONNECTING    \
283
0
        || (s)->early_data_state == SSL_EARLY_DATA_CONNECT_RETRY \
284
0
        || (s)->early_data_state == SSL_EARLY_DATA_WRITING       \
285
0
        || (s)->early_data_state == SSL_EARLY_DATA_WRITE_RETRY   \
286
0
        || (s)->hello_retry_request == SSL_HRR_PENDING)
287
288
0
#define SSL_IS_FIRST_HANDSHAKE(s) ((s)->s3.tmp.finish_md_len == 0 \
289
0
    || (s)->s3.tmp.peer_finish_md_len == 0)
290
291
/*
292
 * See if we use signature algorithms extension and signature algorithm
293
 * before signatures.
294
 */
295
#define SSL_USE_SIGALGS(s) \
296
0
    (SSL_CONNECTION_GET_SSL(s)->method->ssl3_enc->enc_flags & SSL_ENC_FLAG_SIGALGS)
297
298
#define IS_MAX_FRAGMENT_LENGTH_EXT_VALID(value) \
299
0
    (((value) >= TLSEXT_max_fragment_length_512) && ((value) <= TLSEXT_max_fragment_length_4096))
300
#define USE_MAX_FRAGMENT_LENGTH_EXT(session) \
301
0
    IS_MAX_FRAGMENT_LENGTH_EXT_VALID(session->ext.max_fragment_len_mode)
302
#define GET_MAX_FRAGMENT_LENGTH(session) \
303
0
    (512U << (session->ext.max_fragment_len_mode - 1))
304
305
0
#define SSL_READ_ETM(s) (s->s3.flags & TLS1_FLAGS_ENCRYPT_THEN_MAC_READ)
306
0
#define SSL_WRITE_ETM(s) (s->s3.flags & TLS1_FLAGS_ENCRYPT_THEN_MAC_WRITE)
307
308
0
#define SSL_IS_QUIC_HANDSHAKE(s) (((s)->s3.flags & TLS1_FLAGS_QUIC) != 0)
309
0
#define SSL_IS_QUIC_INT_HANDSHAKE(s) (((s)->s3.flags & TLS1_FLAGS_QUIC_INTERNAL) != 0)
310
311
/* no end of early data */
312
0
#define SSL_NO_EOED(s) SSL_IS_QUIC_HANDSHAKE(s)
313
314
/* alert_dispatch values */
315
316
/* No alert pending */
317
0
#define SSL_ALERT_DISPATCH_NONE 0
318
/* Alert pending */
319
0
#define SSL_ALERT_DISPATCH_PENDING 1
320
/* Pending alert write needs to be retried */
321
0
#define SSL_ALERT_DISPATCH_RETRY 2
322
323
/* Mostly for SSLv3 */
324
0
#define SSL_PKEY_RSA 0
325
0
#define SSL_PKEY_RSA_PSS_SIGN 1
326
0
#define SSL_PKEY_DSA_SIGN 2
327
0
#define SSL_PKEY_ECC 3
328
0
#define SSL_PKEY_GOST01 4
329
0
#define SSL_PKEY_GOST12_256 5
330
0
#define SSL_PKEY_GOST12_512 6
331
0
#define SSL_PKEY_ED25519 7
332
0
#define SSL_PKEY_ED448 8
333
0
#define SSL_PKEY_NUM 9
334
335
#define SSL_ENC_DES_IDX 0
336
#define SSL_ENC_3DES_IDX 1
337
#define SSL_ENC_RC4_IDX 2
338
#define SSL_ENC_RC2_IDX 3
339
#define SSL_ENC_IDEA_IDX 4
340
0
#define SSL_ENC_NULL_IDX 5
341
#define SSL_ENC_AES128_IDX 6
342
#define SSL_ENC_AES256_IDX 7
343
#define SSL_ENC_CAMELLIA128_IDX 8
344
#define SSL_ENC_CAMELLIA256_IDX 9
345
#define SSL_ENC_GOST89_IDX 10
346
#define SSL_ENC_SEED_IDX 11
347
#define SSL_ENC_AES128GCM_IDX 12
348
#define SSL_ENC_AES256GCM_IDX 13
349
#define SSL_ENC_AES128CCM_IDX 14
350
#define SSL_ENC_AES256CCM_IDX 15
351
#define SSL_ENC_AES128CCM8_IDX 16
352
#define SSL_ENC_AES256CCM8_IDX 17
353
#define SSL_ENC_GOST8912_IDX 18
354
#define SSL_ENC_CHACHA_IDX 19
355
#define SSL_ENC_ARIA128GCM_IDX 20
356
#define SSL_ENC_ARIA256GCM_IDX 21
357
#define SSL_ENC_MAGMA_IDX 22
358
#define SSL_ENC_KUZNYECHIK_IDX 23
359
#define SSL_ENC_SM4GCM_IDX 24
360
#define SSL_ENC_SM4CCM_IDX 25
361
0
#define SSL_ENC_NUM_IDX 26
362
363
/*-
364
 * SSL_kRSA <- RSA_ENC
365
 * SSL_kDH  <- DH_ENC & (RSA_ENC | RSA_SIGN | DSA_SIGN)
366
 * SSL_kDHE <- RSA_ENC | RSA_SIGN | DSA_SIGN
367
 * SSL_aRSA <- RSA_ENC | RSA_SIGN
368
 * SSL_aDSS <- DSA_SIGN
369
 */
370
371
/* Certificate Type State */
372
0
#define OSSL_CERT_TYPE_CTOS_NONE 0
373
0
#define OSSL_CERT_TYPE_CTOS_GOOD 1
374
0
#define OSSL_CERT_TYPE_CTOS_ERROR 2
375
376
/* Post-Handshake Authentication state */
377
typedef enum {
378
    SSL_PHA_NONE = 0,
379
    SSL_PHA_EXT_SENT, /* client-side only: extension sent */
380
    SSL_PHA_EXT_RECEIVED, /* server-side only: extension received */
381
    SSL_PHA_REQUEST_PENDING, /* server-side only: request pending */
382
    SSL_PHA_REQUESTED /* request received by client, or sent by server */
383
} SSL_PHA_STATE;
384
385
/* CipherSuite value length. */
386
0
#define TLS_CIPHER_LEN 2
387
/* used to hold info on the particular ciphers used */
388
struct ssl_cipher_st {
389
    uint32_t valid;
390
    const char *name; /* text name */
391
    const char *stdname; /* RFC name */
392
    uint32_t id; /* id, 4 bytes, first is version */
393
    /*
394
     * changed in 1.0.0: these four used to be portions of a single value
395
     * 'algorithms'
396
     */
397
    uint32_t algorithm_mkey; /* key exchange algorithm */
398
    uint32_t algorithm_auth; /* server authentication */
399
    uint32_t algorithm_enc; /* symmetric encryption */
400
    uint32_t algorithm_mac; /* symmetric authentication */
401
    int min_tls; /* minimum SSL/TLS protocol version */
402
    int max_tls; /* maximum SSL/TLS protocol version */
403
    int min_dtls; /* minimum DTLS protocol version */
404
    int max_dtls; /* maximum DTLS protocol version */
405
    uint32_t algo_strength; /* strength and export flags */
406
    uint32_t algorithm2; /* Extra flags */
407
    int32_t strength_bits; /* Number of bits really used */
408
    uint32_t alg_bits; /* Number of bits for algorithm */
409
};
410
411
/* Used to hold SSL/TLS functions */
412
struct ssl_method_st {
413
    int version;
414
    unsigned flags;
415
    uint64_t mask;
416
    SSL *(*ssl_new)(SSL_CTX *ctx);
417
    void (*ssl_free)(SSL *s);
418
    int (*ssl_reset)(SSL *s);
419
    int (*ssl_init)(SSL *s);
420
    int (*ssl_clear)(SSL *s);
421
    void (*ssl_deinit)(SSL *s);
422
    int (*ssl_accept)(SSL *s);
423
    int (*ssl_connect)(SSL *s);
424
    int (*ssl_read)(SSL *s, void *buf, size_t len, size_t *readbytes);
425
    int (*ssl_peek)(SSL *s, void *buf, size_t len, size_t *readbytes);
426
    int (*ssl_write)(SSL *s, const void *buf, size_t len, size_t *written);
427
    int (*ssl_shutdown)(SSL *s);
428
    int (*ssl_renegotiate)(SSL *s);
429
    int (*ssl_renegotiate_check)(SSL *s, int);
430
    int (*ssl_read_bytes)(SSL *s, uint8_t type, uint8_t *recvd_type,
431
        unsigned char *buf, size_t len, int peek,
432
        size_t *readbytes);
433
    int (*ssl_write_bytes)(SSL *s, uint8_t type, const void *buf_, size_t len,
434
        size_t *written);
435
    int (*ssl_dispatch_alert)(SSL *s);
436
    long (*ssl_ctrl)(SSL *s, int cmd, long larg, void *parg);
437
    long (*ssl_ctx_ctrl)(SSL_CTX *ctx, int cmd, long larg, void *parg);
438
    const SSL_CIPHER *(*get_cipher_by_char)(const unsigned char *ptr);
439
    int (*put_cipher_by_char)(const SSL_CIPHER *cipher, WPACKET *pkt,
440
        size_t *len);
441
    size_t (*ssl_pending)(const SSL *s);
442
    int (*num_ciphers)(void);
443
    const SSL_CIPHER *(*get_cipher)(unsigned ncipher);
444
    OSSL_TIME (*get_timeout)(void);
445
    const struct ssl3_enc_method *ssl3_enc; /* Extra TLS stuff */
446
    int (*ssl_version)(void);
447
    long (*ssl_callback_ctrl)(SSL *s, int cb_id, void (*fp)(void));
448
    long (*ssl_ctx_callback_ctrl)(SSL_CTX *s, int cb_id, void (*fp)(void));
449
};
450
451
/*
452
 * Matches the length of PSK_MAX_PSK_LEN. We keep it the same value for
453
 * consistency, even in the event of OPENSSL_NO_PSK being defined.
454
 */
455
0
#define TLS13_MAX_RESUMPTION_PSK_LENGTH 512
456
457
/*-
458
 * Lets make this into an ASN.1 type structure as follows
459
 * SSL_SESSION_ID ::= SEQUENCE {
460
 *      version                 INTEGER,        -- structure version number
461
 *      SSLversion              INTEGER,        -- SSL version number
462
 *      Cipher                  OCTET STRING,   -- the 3 byte cipher ID
463
 *      Session_ID              OCTET STRING,   -- the Session ID
464
 *      Master_key              OCTET STRING,   -- the master key
465
 *      Key_Arg [ 0 ] IMPLICIT  OCTET STRING,   -- the optional Key argument
466
 *      Time [ 1 ] EXPLICIT     INTEGER,        -- optional Start Time
467
 *      Timeout [ 2 ] EXPLICIT  INTEGER,        -- optional Timeout ins seconds
468
 *      Peer [ 3 ] EXPLICIT     X509,           -- optional Peer Certificate
469
 *      Session_ID_context [ 4 ] EXPLICIT OCTET STRING,   -- the Session ID context
470
 *      Verify_result [ 5 ] EXPLICIT INTEGER,   -- X509_V_... code for `Peer'
471
 *      HostName [ 6 ] EXPLICIT OCTET STRING,   -- optional HostName from servername TLS extension
472
 *      PSK_identity_hint [ 7 ] EXPLICIT OCTET STRING, -- optional PSK identity hint
473
 *      PSK_identity [ 8 ] EXPLICIT OCTET STRING,  -- optional PSK identity
474
 *      Ticket_lifetime_hint [9] EXPLICIT INTEGER, -- server's lifetime hint for session ticket
475
 *      Ticket [10]             EXPLICIT OCTET STRING, -- session ticket (clients only)
476
 *      Compression_meth [11]   EXPLICIT OCTET STRING, -- optional compression method
477
 *      SRP_username [ 12 ] EXPLICIT OCTET STRING -- optional SRP username
478
 *      flags [ 13 ] EXPLICIT INTEGER -- optional flags
479
 *      }
480
 * Look in ssl/ssl_asn1.c for more details
481
 * I'm using EXPLICIT tags so I can read the damn things using asn1parse :-).
482
 */
483
struct ssl_session_st {
484
    int ssl_version; /* what ssl version session info is being kept
485
                      * in here? */
486
    size_t master_key_length;
487
488
    /* TLSv1.3 early_secret used for external PSKs */
489
    unsigned char early_secret[EVP_MAX_MD_SIZE];
490
    /*
491
     * For <=TLS1.2 this is the master_key. For TLS1.3 this is the resumption
492
     * PSK
493
     */
494
    unsigned char master_key[TLS13_MAX_RESUMPTION_PSK_LENGTH];
495
    /* session_id - valid? */
496
    size_t session_id_length;
497
    unsigned char session_id[SSL_MAX_SSL_SESSION_ID_LENGTH];
498
    /*
499
     * this is used to determine whether the session is being reused in the
500
     * appropriate context. It is up to the application to set this, via
501
     * SSL_new
502
     */
503
    size_t sid_ctx_length;
504
    unsigned char sid_ctx[SSL_MAX_SID_CTX_LENGTH];
505
#ifndef OPENSSL_NO_PSK
506
    char *psk_identity_hint;
507
    char *psk_identity;
508
#endif
509
    /*
510
     * Used to indicate that session resumption is not allowed. Applications
511
     * can also set this bit for a new session via not_resumable_session_cb
512
     * to disable session caching and tickets.
513
     */
514
    int not_resumable;
515
    /*
516
     * Set when this session's master key was resolved from an external PSK
517
     * identity (psk_find_session_cb(), or the legacy psk_server_callback())
518
     * rather than from a resumption ticket or session-cache lookup.
519
     * ssl_get_prev_session() uses this to exempt such sessions from sid_ctx
520
     * checks that only make sense for a real cache lookup.
521
     *
522
     * Deliberately not part of the SSL_SESSION ASN.1 encoding: it must not
523
     * survive a real ticket round-trip (a session reconstructed by
524
     * d2i_SSL_SESSION() from a genuine, previously-issued ticket is by
525
     * definition not an external-PSK match, and should get the ordinary
526
     * sid_ctx treatment). ssl_session_dup() resets it to 0 on every copy,
527
     * mirroring not_resumable just above, for the same reason.
528
     */
529
    int psk_external;
530
    /* Peer raw public key, if available */
531
    EVP_PKEY *peer_rpk;
532
    /* This is the cert and type for the other end. */
533
    X509 *peer;
534
    /* Certificate chain peer sent. */
535
    STACK_OF(X509) *peer_chain;
536
    /*
537
     * when app_verify_callback accepts a session where the peer's
538
     * certificate is not ok, we must remember the error for session reuse:
539
     */
540
    long verify_result; /* only for servers */
541
    OSSL_TIME timeout;
542
    OSSL_TIME time;
543
    OSSL_TIME calc_timeout;
544
    unsigned int compress_meth; /* Need to lookup the method */
545
    const SSL_CIPHER *cipher;
546
    unsigned long cipher_id; /* when ASN.1 loaded, this needs to be used to
547
                              * load the 'cipher' structure */
548
    unsigned int kex_group; /* TLS group from key exchange */
549
    CRYPTO_EX_DATA ex_data; /* application specific data */
550
551
    struct {
552
        char *hostname;
553
        /* RFC4507 info */
554
        unsigned char *tick; /* Session ticket */
555
        size_t ticklen; /* Session ticket length */
556
        /* Session lifetime hint in seconds */
557
        unsigned long tick_lifetime_hint;
558
        uint32_t tick_age_add;
559
        /* Max number of bytes that can be sent as early data */
560
        uint32_t max_early_data;
561
        /* The ALPN protocol selected for this session */
562
        unsigned char *alpn_selected;
563
        size_t alpn_selected_len;
564
        /*
565
         * Maximum Fragment Length as per RFC 4366.
566
         * If this value does not contain RFC 4366 allowed values (1-4) then
567
         * either the Maximum Fragment Length Negotiation failed or was not
568
         * performed at all.
569
         */
570
        uint8_t max_fragment_len_mode;
571
    } ext;
572
#ifndef OPENSSL_NO_SRP
573
    char *srp_username;
574
#endif
575
    unsigned char *ticket_appdata;
576
    size_t ticket_appdata_len;
577
    uint32_t flags;
578
    SSL_CTX *owner;
579
580
    /*
581
     * These are used to make removal of session-ids more efficient and to
582
     * implement a maximum cache size. Access requires protection of ctx->lock.
583
     */
584
    struct ssl_session_st *prev, *next;
585
    CRYPTO_REF_COUNT references;
586
};
587
588
/* Extended master secret support */
589
0
#define SSL_SESS_FLAG_EXTMS 0x1
590
591
#ifndef OPENSSL_NO_SRP
592
593
typedef struct srp_ctx_st {
594
    /* param for all the callbacks */
595
    void *SRP_cb_arg;
596
    /* set client Hello login callback */
597
    int (*TLS_ext_srp_username_callback)(SSL *, int *, void *);
598
    /* set SRP N/g param callback for verification */
599
    int (*SRP_verify_param_callback)(SSL *, void *);
600
    /* set SRP client passwd callback */
601
    char *(*SRP_give_srp_client_pwd_callback)(SSL *, void *);
602
    char *login;
603
    BIGNUM *N, *g, *s, *B, *A;
604
    BIGNUM *a, *b, *v;
605
    char *info;
606
    int strength;
607
    unsigned long srp_Mask;
608
} SRP_CTX;
609
610
#endif
611
612
typedef enum {
613
    SSL_EARLY_DATA_NONE = 0,
614
    SSL_EARLY_DATA_CONNECT_RETRY,
615
    SSL_EARLY_DATA_CONNECTING,
616
    SSL_EARLY_DATA_WRITE_RETRY,
617
    SSL_EARLY_DATA_WRITING,
618
    SSL_EARLY_DATA_WRITE_FLUSH,
619
    SSL_EARLY_DATA_UNAUTH_WRITING,
620
    SSL_EARLY_DATA_FINISHED_WRITING,
621
    SSL_EARLY_DATA_ACCEPT_RETRY,
622
    SSL_EARLY_DATA_ACCEPTING,
623
    SSL_EARLY_DATA_READ_RETRY,
624
    SSL_EARLY_DATA_READING,
625
    SSL_EARLY_DATA_FINISHED_READING
626
} SSL_EARLY_DATA_STATE;
627
628
/*
629
 * We check that the amount of unreadable early data doesn't exceed
630
 * max_early_data. max_early_data is given in plaintext bytes. However if it is
631
 * unreadable then we only know the number of ciphertext bytes. We also don't
632
 * know how much the overhead should be because it depends on the ciphersuite.
633
 * We make a small allowance. We assume 5 records of actual data plus the end
634
 * of early data alert record. Each record has a tag and a content type byte.
635
 * The longest tag length we know of is EVP_GCM_TLS_TAG_LEN. We don't count the
636
 * content of the alert record either which is 2 bytes.
637
 */
638
0
#define EARLY_DATA_CIPHERTEXT_OVERHEAD ((6 * (EVP_GCM_TLS_TAG_LEN + 1)) + 2)
639
640
/*
641
 * The allowance we have between the client's calculated ticket age and our own.
642
 * We allow for 10 seconds. If a ticket is presented and the
643
 * client's age calculation is different by more than this than our own then we
644
 * do not allow that ticket for early_data.
645
 */
646
0
#define TICKET_AGE_ALLOWANCE ossl_seconds2time(10)
647
648
0
#define MAX_COMPRESSIONS_SIZE 255
649
650
typedef struct raw_extension_st {
651
    /* Raw packet data for the extension */
652
    PACKET data;
653
    /* Set to 1 if the extension is present or 0 otherwise */
654
    int present;
655
    /* Set to 1 if we have already parsed the extension or 0 otherwise */
656
    int parsed;
657
    /* The type of this extension, i.e. a TLSEXT_TYPE_* value */
658
    unsigned int type;
659
    /* Track what order extensions are received in (0-based). */
660
    size_t received_order;
661
} RAW_EXTENSION;
662
663
typedef struct {
664
    unsigned int legacy_version;
665
    unsigned char random[SSL3_RANDOM_SIZE];
666
    size_t session_id_len;
667
    unsigned char session_id[SSL_MAX_SSL_SESSION_ID_LENGTH];
668
    size_t dtls_cookie_len;
669
    unsigned char dtls_cookie[DTLS1_COOKIE_LENGTH];
670
    PACKET ciphersuites;
671
    size_t compressions_len;
672
    unsigned char compressions[MAX_COMPRESSIONS_SIZE];
673
    PACKET extensions;
674
    size_t pre_proc_exts_len;
675
    RAW_EXTENSION *pre_proc_exts;
676
} CLIENTHELLO_MSG;
677
678
/*
679
 * Extension index values NOTE: Any updates to these defines should be mirrored
680
 * with equivalent updates to ext_defs in extensions.c
681
 */
682
typedef enum tlsext_index_en {
683
    TLSEXT_IDX_renegotiate,
684
    TLSEXT_IDX_server_name,
685
    TLSEXT_IDX_max_fragment_length,
686
    TLSEXT_IDX_srp,
687
    TLSEXT_IDX_ec_point_formats,
688
    TLSEXT_IDX_supported_groups,
689
    TLSEXT_IDX_session_ticket,
690
    TLSEXT_IDX_status_request,
691
    TLSEXT_IDX_next_proto_neg,
692
    TLSEXT_IDX_application_layer_protocol_negotiation,
693
    TLSEXT_IDX_use_srtp,
694
    TLSEXT_IDX_encrypt_then_mac,
695
    TLSEXT_IDX_signed_certificate_timestamp,
696
    TLSEXT_IDX_extended_master_secret,
697
    TLSEXT_IDX_signature_algorithms_cert,
698
    TLSEXT_IDX_post_handshake_auth,
699
    TLSEXT_IDX_client_cert_type,
700
    TLSEXT_IDX_server_cert_type,
701
    TLSEXT_IDX_signature_algorithms,
702
    TLSEXT_IDX_supported_versions,
703
    TLSEXT_IDX_psk_kex_modes,
704
    TLSEXT_IDX_key_share,
705
    TLSEXT_IDX_cookie,
706
    TLSEXT_IDX_cryptopro_bug,
707
    TLSEXT_IDX_compress_certificate,
708
    TLSEXT_IDX_early_data,
709
    TLSEXT_IDX_certificate_authorities,
710
    TLSEXT_IDX_ech,
711
    TLSEXT_IDX_outer_extensions,
712
    TLSEXT_IDX_grease1,
713
    TLSEXT_IDX_grease2,
714
    TLSEXT_IDX_padding,
715
    TLSEXT_IDX_psk,
716
    /* Dummy index - must always be the last entry */
717
    TLSEXT_IDX_num_builtins
718
} TLSEXT_INDEX;
719
720
/* RFC 8701 GREASE seed indices */
721
0
#define OSSL_GREASE_CIPHER 0
722
0
#define OSSL_GREASE_GROUP 1
723
0
#define OSSL_GREASE_EXT1 2
724
0
#define OSSL_GREASE_EXT2 3
725
#define OSSL_GREASE_VERSION 4
726
#define OSSL_GREASE_SIGALG 5
727
0
#define OSSL_GREASE_LAST_INDEX 5
728
729
DEFINE_LHASH_OF_EX(SSL_SESSION);
730
/* Needed in ssl_cert.c */
731
DEFINE_LHASH_OF_EX(X509_NAME);
732
733
0
#define TLSEXT_KEYNAME_LENGTH 16
734
#define TLSEXT_TICK_KEY_LENGTH 32
735
736
typedef struct ssl_ctx_ext_secure_st {
737
    unsigned char tick_hmac_key[TLSEXT_TICK_KEY_LENGTH];
738
    unsigned char tick_aes_key[TLSEXT_TICK_KEY_LENGTH];
739
} SSL_CTX_EXT_SECURE;
740
741
/*
742
 * Helper function for HMAC
743
 * The structure should be considered opaque, it will change once the low
744
 * level deprecated calls are removed.  At that point it can be replaced
745
 * by EVP_MAC_CTX and most of the functions converted to macros or inlined
746
 * directly.
747
 */
748
typedef struct ssl_hmac_st {
749
    EVP_MAC_CTX *ctx;
750
#ifndef OPENSSL_NO_DEPRECATED_3_0
751
    HMAC_CTX *old_ctx;
752
#endif
753
} SSL_HMAC;
754
755
SSL_HMAC *ssl_hmac_construct(const SSL_CTX *ctx, SSL_HMAC *hctx);
756
void ssl_hmac_destruct(SSL_HMAC *ctx);
757
#ifndef OPENSSL_NO_DEPRECATED_3_0
758
HMAC_CTX *ssl_hmac_get0_HMAC_CTX(SSL_HMAC *ctx);
759
#endif
760
EVP_MAC_CTX *ssl_hmac_get0_EVP_MAC_CTX(SSL_HMAC *ctx);
761
int ssl_hmac_init(SSL_HMAC *ctx, void *key, size_t len, char *md);
762
int ssl_hmac_update(SSL_HMAC *ctx, const unsigned char *data, size_t len);
763
int ssl_hmac_final(SSL_HMAC *ctx, unsigned char *md, size_t *len,
764
    size_t max_size);
765
size_t ssl_hmac_size(const SSL_HMAC *ctx);
766
767
int ssl_get_EC_curve_nid(const EVP_PKEY *pkey);
768
__owur int tls13_set_encoded_pub_key(EVP_PKEY *pkey,
769
    const unsigned char *enckey,
770
    size_t enckeylen);
771
772
typedef struct tls_group_info_st {
773
    char *tlsname; /* Curve Name as in TLS specs */
774
    char *realname; /* Curve Name according to provider */
775
    char *algorithm; /* Algorithm name to fetch */
776
    unsigned int secbits; /* Bits of security (from SP800-57) */
777
    uint16_t group_id; /* Group ID */
778
    int mintls; /* Minimum TLS version, -1 unsupported */
779
    int maxtls; /* Maximum TLS version (or 0 for undefined) */
780
    int mindtls; /* Minimum DTLS version, -1 unsupported */
781
    int maxdtls; /* Maximum DTLS version (or 0 for undefined) */
782
    char is_kem; /* Mode for this Group: 0 is KEX, 1 is KEM */
783
} TLS_GROUP_INFO;
784
785
typedef struct tls_sigalg_info_st {
786
    char *name; /* name as in IANA TLS specs */
787
    uint16_t code_point; /* IANA-specified code point of sigalg-name */
788
    char *sigalg_name; /* (combined) sigalg name */
789
    char *sigalg_oid; /* (combined) sigalg OID */
790
    char *sig_name; /* pure signature algorithm name */
791
    char *sig_oid; /* pure signature algorithm OID */
792
    char *hash_name; /* hash algorithm name */
793
    char *hash_oid; /* hash algorithm OID */
794
    char *keytype; /* keytype name */
795
    char *keytype_oid; /* keytype OID */
796
    unsigned int secbits; /* Bits of security (from SP800-57) */
797
    int mintls; /* Minimum TLS version, -1 unsupported */
798
    int maxtls; /* Maximum TLS version (or 0 for undefined) */
799
    int mindtls; /* Minimum DTLS version, -1 unsupported */
800
    int maxdtls; /* Maximum DTLS version (or 0 for undefined) */
801
} TLS_SIGALG_INFO;
802
803
/*
804
 * Structure containing table entry of certificate info corresponding to
805
 * CERT_PKEY entries
806
 */
807
typedef struct {
808
    int pkey_nid; /* NID of public key algorithm */
809
    uint32_t amask; /* authmask corresponding to key type */
810
} SSL_CERT_LOOKUP;
811
812
#if !defined(OPENSSL_NO_TLS1)      \
813
    || !defined(OPENSSL_NO_TLS1_1) \
814
    || !defined(OPENSSL_NO_TLS1_2) \
815
    || !defined(OPENSSL_NO_DTLS1)  \
816
    || !defined(OPENSSL_NO_DTLS1_2)
817
#define OPENSSL_HAVE_TLS1PRF
818
#endif
819
820
struct ssl_ctx_st {
821
    OSSL_LIB_CTX *libctx;
822
823
    const SSL_METHOD *method;
824
    STACK_OF(SSL_CIPHER) *cipher_list;
825
    /* same as above but sorted for lookup */
826
    STACK_OF(SSL_CIPHER) *cipher_list_by_id;
827
    /* TLSv1.3 specific ciphersuites */
828
    STACK_OF(SSL_CIPHER) *tls13_ciphersuites;
829
    struct x509_store_st /* X509_STORE */ *cert_store;
830
    LHASH_OF(SSL_SESSION) *sessions;
831
    EVP_MAC *hmac;
832
    EVP_MD *sha256;
833
    EVP_CIPHER *tktenc;
834
#ifdef OPENSSL_HAVE_TLS1PRF
835
    EVP_KDF *tls1prf;
836
#endif
837
    /*
838
     * Most session-ids that will be cached, default is
839
     * SSL_SESSION_CACHE_MAX_SIZE_DEFAULT. 0 is unlimited.
840
     */
841
    size_t session_cache_size;
842
    struct ssl_session_st *session_cache_head;
843
    struct ssl_session_st *session_cache_tail;
844
    /*
845
     * This can have one of 2 values, ored together, SSL_SESS_CACHE_CLIENT,
846
     * SSL_SESS_CACHE_SERVER, Default is SSL_SESSION_CACHE_SERVER, which
847
     * means only SSL_accept will cache SSL_SESSIONS.
848
     */
849
    uint32_t session_cache_mode;
850
    /*
851
     * If timeout is not 0, it is the default timeout value set when
852
     * SSL_new() is called.  This has been put in to make life easier to set
853
     * things up
854
     */
855
    OSSL_TIME session_timeout;
856
    /*
857
     * If this callback is not null, it will be called each time a session id
858
     * is added to the cache.  If this function returns 1, it means that the
859
     * callback will do an SSL_SESSION_free() when it has finished using it.
860
     * Otherwise, on 0, it means the callback has finished with it. If
861
     * remove_session_cb is not null, it will be called when a session-id is
862
     * removed from the cache.  After the call, OpenSSL will
863
     * SSL_SESSION_free() it.
864
     */
865
    int (*new_session_cb)(struct ssl_st *ssl, SSL_SESSION *sess);
866
    void (*remove_session_cb)(struct ssl_ctx_st *ctx, SSL_SESSION *sess);
867
    SSL_SESSION *(*get_session_cb)(struct ssl_st *ssl,
868
        const unsigned char *data, int len,
869
        int *copy);
870
    struct {
871
        TSAN_QUALIFIER int sess_connect; /* SSL new conn - started */
872
        TSAN_QUALIFIER int sess_connect_renegotiate; /* SSL reneg - requested */
873
        TSAN_QUALIFIER int sess_connect_good; /* SSL new conne/reneg - finished */
874
        TSAN_QUALIFIER int sess_accept; /* SSL new accept - started */
875
        TSAN_QUALIFIER int sess_accept_renegotiate; /* SSL reneg - requested */
876
        TSAN_QUALIFIER int sess_accept_good; /* SSL accept/reneg - finished */
877
        TSAN_QUALIFIER int sess_miss; /* session lookup misses */
878
        TSAN_QUALIFIER int sess_timeout; /* reuse attempt on timeouted session */
879
        TSAN_QUALIFIER int sess_cache_full; /* session removed due to full cache */
880
        TSAN_QUALIFIER int sess_hit; /* session reuse actually done */
881
        TSAN_QUALIFIER int sess_cb_hit; /* session-id that was not in
882
                                         * the cache was passed back via
883
                                         * the callback. This indicates
884
                                         * that the application is
885
                                         * supplying session-id's from
886
                                         * other processes - spooky
887
                                         * :-) */
888
    } stats;
889
#ifdef TSAN_REQUIRES_LOCKING
890
    CRYPTO_RWLOCK *tsan_lock;
891
#endif
892
893
    CRYPTO_REF_COUNT references;
894
895
    /* if defined, these override the X509_verify_cert() calls */
896
    int (*app_verify_callback)(X509_STORE_CTX *, void *);
897
    void *app_verify_arg;
898
    /*
899
     * before OpenSSL 0.9.7, 'app_verify_arg' was ignored
900
     * ('app_verify_callback' was called with just one argument)
901
     */
902
903
    /* Default password callback. */
904
    pem_password_cb *default_passwd_callback;
905
906
    /* Default password callback user data. */
907
    void *default_passwd_callback_userdata;
908
909
    /* get client cert callback */
910
    int (*client_cert_cb)(SSL *ssl, X509 **x509, EVP_PKEY **pkey);
911
912
    /* cookie generate callback */
913
    int (*app_gen_cookie_cb)(SSL *ssl, unsigned char *cookie,
914
        unsigned int *cookie_len);
915
916
    /* verify cookie callback */
917
    int (*app_verify_cookie_cb)(SSL *ssl, const unsigned char *cookie,
918
        unsigned int cookie_len);
919
920
    /* TLS1.3 app-controlled cookie generate callback */
921
    int (*gen_stateless_cookie_cb)(SSL *ssl, unsigned char *cookie,
922
        size_t *cookie_len);
923
924
    /* TLS1.3 verify app-controlled cookie callback */
925
    int (*verify_stateless_cookie_cb)(SSL *ssl, const unsigned char *cookie,
926
        size_t cookie_len);
927
928
    CRYPTO_EX_DATA ex_data;
929
930
    STACK_OF(X509) *extra_certs;
931
    STACK_OF(SSL_COMP) *comp_methods; /* stack of SSL_COMP, TLSv1 */
932
933
    /* Default values used when no per-SSL value is defined follow */
934
935
    /* used if SSL's info_callback is NULL */
936
    void (*info_callback)(const SSL *ssl, int type, int val);
937
938
    /*
939
     * What we put in certificate_authorities extension for TLS 1.3
940
     * (ClientHello and CertificateRequest) or just client cert requests for
941
     * earlier versions. If client_ca_names is populated then it is only used
942
     * for client cert requests, and in preference to ca_names.
943
     */
944
    STACK_OF(X509_NAME) *ca_names;
945
    STACK_OF(X509_NAME) *client_ca_names;
946
947
    /*
948
     * Default values to use in SSL structures follow (these are copied by
949
     * SSL_new)
950
     */
951
952
    uint64_t options;
953
    uint32_t mode;
954
    int min_proto_version;
955
    int max_proto_version;
956
    size_t max_cert_list;
957
958
    struct cert_st /* CERT */ *cert;
959
    SSL_CERT_LOOKUP *ssl_cert_info;
960
    int read_ahead;
961
962
    /* callback that allows applications to peek at protocol messages */
963
    ossl_msg_cb msg_callback;
964
    void *msg_callback_arg;
965
966
    uint32_t verify_mode;
967
    size_t sid_ctx_length;
968
    unsigned char sid_ctx[SSL_MAX_SID_CTX_LENGTH];
969
    /* called 'verify_callback' in the SSL */
970
    int (*default_verify_callback)(int ok, X509_STORE_CTX *ctx);
971
972
    /* Default generate session ID callback. */
973
    GEN_SESSION_CB generate_session_id;
974
975
    X509_VERIFY_PARAM *param;
976
977
    int quiet_shutdown;
978
979
#ifndef OPENSSL_NO_CT
980
    CTLOG_STORE *ctlog_store; /* CT Log Store */
981
    /*
982
     * Validates that the SCTs (Signed Certificate Timestamps) are sufficient.
983
     * If they are not, the connection should be aborted.
984
     */
985
    ssl_ct_validation_cb ct_validation_callback;
986
    void *ct_validation_callback_arg;
987
#endif
988
989
    /*
990
     * If we're using more than one pipeline how should we divide the data
991
     * up between the pipes?
992
     */
993
    size_t split_send_fragment;
994
    /*
995
     * Maximum amount of data to send in one fragment. actual record size can
996
     * be more than this due to padding and MAC overheads.
997
     */
998
    size_t max_send_fragment;
999
1000
    /* Up to how many pipelines should we use? If 0 then 1 is assumed */
1001
    size_t max_pipelines;
1002
1003
    /* The default read buffer length to use (0 means not set) */
1004
    size_t default_read_buf_len;
1005
1006
    /* ClientHello callback.  Mostly for extensions, but not entirely. */
1007
    SSL_client_hello_cb_fn client_hello_cb;
1008
    void *client_hello_cb_arg;
1009
1010
    /* Callback to announce new pending ssl objects in the accept queue */
1011
    SSL_new_pending_conn_cb_fn new_pending_conn_cb;
1012
    void *new_pending_conn_arg;
1013
1014
    /* TLS extensions. */
1015
    struct {
1016
        /* TLS extensions servername callback */
1017
        int (*servername_cb)(SSL *, int *, void *);
1018
        void *servername_arg;
1019
        /* RFC 4507 session ticket keys */
1020
        unsigned char tick_key_name[TLSEXT_KEYNAME_LENGTH];
1021
        SSL_CTX_EXT_SECURE *secure;
1022
#ifndef OPENSSL_NO_DEPRECATED_3_0
1023
        /* Callback to support customisation of ticket key setting */
1024
        int (*ticket_key_cb)(SSL *ssl,
1025
            unsigned char *name, unsigned char *iv,
1026
            EVP_CIPHER_CTX *ectx, HMAC_CTX *hctx, int enc);
1027
#endif
1028
        int (*ticket_key_evp_cb)(SSL *ssl,
1029
            unsigned char *name, unsigned char *iv,
1030
            EVP_CIPHER_CTX *ectx, EVP_MAC_CTX *hctx,
1031
            int enc);
1032
1033
        /* certificate status request info */
1034
        /* Callback for status request */
1035
        int (*status_cb)(SSL *ssl, void *arg);
1036
        void *status_arg;
1037
        /* ext status type used for CSR extension (OCSP Stapling) */
1038
        int status_type;
1039
        /* RFC 4366 Maximum Fragment Length Negotiation */
1040
        uint8_t max_fragment_len_mode;
1041
1042
        size_t supportedgroups_len;
1043
        uint16_t *supportedgroups;
1044
1045
        size_t keyshares_len;
1046
        uint16_t *keyshares;
1047
1048
        size_t tuples_len; /* Number of group tuples */
1049
        size_t *tuples; /* Number of groups in each group tuple */
1050
1051
        /*
1052
         * ALPN information (we are in the process of transitioning from NPN to
1053
         * ALPN.)
1054
         */
1055
1056
        /*-
1057
         * For a server, this contains a callback function that allows the
1058
         * server to select the protocol for the connection.
1059
         *   out: on successful return, this must point to the raw protocol
1060
         *        name (without the length prefix).
1061
         *   outlen: on successful return, this contains the length of |*out|.
1062
         *   in: points to the client's list of supported protocols in
1063
         *       wire-format.
1064
         *   inlen: the length of |in|.
1065
         */
1066
        int (*alpn_select_cb)(SSL *s,
1067
            const unsigned char **out,
1068
            unsigned char *outlen,
1069
            const unsigned char *in,
1070
            unsigned int inlen, void *arg);
1071
        void *alpn_select_cb_arg;
1072
1073
        /*
1074
         * For a client, this contains the list of supported protocols in wire
1075
         * format.
1076
         */
1077
        unsigned char *alpn;
1078
        size_t alpn_len;
1079
1080
#ifndef OPENSSL_NO_NEXTPROTONEG
1081
        /* Next protocol negotiation information */
1082
1083
        /*
1084
         * For a server, this contains a callback function by which the set of
1085
         * advertised protocols can be provided.
1086
         */
1087
        SSL_CTX_npn_advertised_cb_func npn_advertised_cb;
1088
        void *npn_advertised_cb_arg;
1089
        /*
1090
         * For a client, this contains a callback function that selects the next
1091
         * protocol from the list provided by the server.
1092
         */
1093
        SSL_CTX_npn_select_cb_func npn_select_cb;
1094
        void *npn_select_cb_arg;
1095
#endif
1096
1097
        unsigned char cookie_hmac_key[SHA256_DIGEST_LENGTH];
1098
#ifndef OPENSSL_NO_ECH
1099
        OSSL_ECH_CTX ech;
1100
#endif
1101
    } ext;
1102
1103
#ifndef OPENSSL_NO_PSK
1104
    SSL_psk_client_cb_func psk_client_callback;
1105
    SSL_psk_server_cb_func psk_server_callback;
1106
#endif
1107
    SSL_psk_find_session_cb_func psk_find_session_cb;
1108
    SSL_psk_use_session_cb_func psk_use_session_cb;
1109
1110
#ifndef OPENSSL_NO_SRP
1111
    SRP_CTX srp_ctx; /* ctx for SRP authentication */
1112
#endif
1113
1114
    /* Shared DANE context */
1115
    struct dane_ctx_st dane;
1116
1117
#ifndef OPENSSL_NO_SRTP
1118
    /* SRTP profiles we are willing to do from RFC 5764 */
1119
    STACK_OF(SRTP_PROTECTION_PROFILE) *srtp_profiles;
1120
#endif
1121
    /*
1122
     * Callback for disabling session caching and ticket support on a session
1123
     * basis, depending on the chosen cipher.
1124
     */
1125
    int (*not_resumable_session_cb)(SSL *ssl, int is_forward_secure);
1126
1127
    CRYPTO_RWLOCK *lock;
1128
1129
    /*
1130
     * Callback for logging key material for use with debugging tools like
1131
     * Wireshark. The callback should log `line` followed by a newline.
1132
     */
1133
    SSL_CTX_keylog_cb_func keylog_callback;
1134
1135
    /*
1136
     * Private flag for internal key logging based on SSLKEYLOG env
1137
     */
1138
#ifndef OPENSSL_NO_SSLKEYLOG
1139
    uint32_t do_sslkeylog;
1140
#endif
1141
1142
    /*
1143
     * The maximum number of bytes advertised in session tickets that can be
1144
     * sent as early data.
1145
     */
1146
    uint32_t max_early_data;
1147
1148
    /*
1149
     * The maximum number of bytes of early data that a server will tolerate
1150
     * (which should be at least as much as max_early_data).
1151
     */
1152
    uint32_t recv_max_early_data;
1153
1154
    /* TLS1.3 padding callback */
1155
    size_t (*record_padding_cb)(SSL *s, int type, size_t len, void *arg);
1156
    void *record_padding_arg;
1157
    size_t block_padding;
1158
    size_t hs_padding;
1159
1160
    /* Session ticket appdata */
1161
    SSL_CTX_generate_session_ticket_fn generate_ticket_cb;
1162
    SSL_CTX_decrypt_session_ticket_fn decrypt_ticket_cb;
1163
    void *ticket_cb_data;
1164
1165
    /* The number of TLS1.3 tickets to automatically send */
1166
    size_t num_tickets;
1167
1168
    /* Callback to determine if early_data is acceptable or not */
1169
    SSL_allow_early_data_cb_fn allow_early_data_cb;
1170
    void *allow_early_data_cb_data;
1171
1172
    /* Do we advertise Post-handshake auth support? */
1173
    int pha_enabled;
1174
1175
    /* Callback for SSL async handling */
1176
    SSL_async_callback_fn async_cb;
1177
    void *async_cb_arg;
1178
1179
    char *propq;
1180
1181
    int ssl_mac_pkey_id[SSL_MD_NUM_IDX];
1182
    const EVP_CIPHER *ssl_cipher_methods[SSL_ENC_NUM_IDX];
1183
    const EVP_MD *ssl_digest_methods[SSL_MD_NUM_IDX];
1184
    size_t ssl_mac_secret_size[SSL_MD_NUM_IDX];
1185
1186
    size_t sigalg_lookup_cache_len;
1187
    size_t tls12_sigalgs_len;
1188
    /* Cache of all sigalgs we know and whether they are available or not */
1189
    struct sigalg_lookup_st *sigalg_lookup_cache;
1190
    /* List of all sigalgs (code points) available, incl. from providers */
1191
    uint16_t *tls12_sigalgs;
1192
1193
    TLS_GROUP_INFO *group_list;
1194
    size_t group_list_len;
1195
    size_t group_list_max_len;
1196
1197
    TLS_SIGALG_INFO *sigalg_list;
1198
    size_t sigalg_list_len;
1199
    size_t sigalg_list_max_len;
1200
1201
    /* masks of disabled algorithms */
1202
    uint32_t disabled_enc_mask;
1203
    uint32_t disabled_mac_mask;
1204
    uint32_t disabled_mkey_mask;
1205
    uint32_t disabled_auth_mask;
1206
1207
#ifndef OPENSSL_NO_COMP_ALG
1208
    /* certificate compression preferences */
1209
    int cert_comp_prefs[TLSEXT_comp_cert_limit];
1210
#endif
1211
1212
    /* Certificate Type stuff - for RPK vs X.509 */
1213
    unsigned char *client_cert_type;
1214
    size_t client_cert_type_len;
1215
    unsigned char *server_cert_type;
1216
    size_t server_cert_type_len;
1217
1218
#ifndef OPENSSL_NO_QUIC
1219
    uint64_t domain_flags;
1220
    SSL_TOKEN_STORE *tokencache;
1221
#endif
1222
1223
#ifndef OPENSSL_NO_QLOG
1224
    char *qlog_title; /* Session title for qlog */
1225
#endif
1226
};
1227
1228
typedef struct ossl_quic_tls_callbacks_st {
1229
    int (*crypto_send_cb)(SSL *s, const unsigned char *buf, size_t buf_len,
1230
        size_t *consumed, void *arg);
1231
    int (*crypto_recv_rcd_cb)(SSL *s, const unsigned char **buf,
1232
        size_t *bytes_read, void *arg);
1233
    int (*crypto_release_rcd_cb)(SSL *s, size_t bytes_read, void *arg);
1234
    int (*yield_secret_cb)(SSL *s, uint32_t prot_level, int direction,
1235
        const unsigned char *secret, size_t secret_len,
1236
        void *arg);
1237
    int (*got_transport_params_cb)(SSL *s, const unsigned char *params,
1238
        size_t params_len,
1239
        void *arg);
1240
    int (*alert_cb)(SSL *s, unsigned char alert_code, void *arg);
1241
} OSSL_QUIC_TLS_CALLBACKS;
1242
1243
typedef struct cert_pkey_st CERT_PKEY;
1244
1245
0
#define SSL_TYPE_SSL_CONNECTION 0
1246
0
#define SSL_TYPE_QUIC_CONNECTION 0x80
1247
0
#define SSL_TYPE_QUIC_XSO 0x81
1248
0
#define SSL_TYPE_QUIC_LISTENER 0x82
1249
0
#define SSL_TYPE_QUIC_DOMAIN 0x83
1250
1251
0
#define SSL_TYPE_IS_QUIC(x) (((x) & 0x80) != 0)
1252
1253
struct ssl_st {
1254
    int type;
1255
    SSL_CTX *ctx;
1256
    const SSL_METHOD *defltmeth;
1257
    const SSL_METHOD *method;
1258
    CRYPTO_REF_COUNT references;
1259
    CRYPTO_RWLOCK *lock;
1260
    /* extra application data */
1261
    CRYPTO_EX_DATA ex_data;
1262
};
1263
1264
struct ssl_connection_st {
1265
    /* type identifier and common data */
1266
    struct ssl_st ssl;
1267
1268
    /*
1269
     * The actual end user's SSL object. Could be different to this one for
1270
     * QUIC
1271
     */
1272
    SSL *user_ssl;
1273
1274
    /*
1275
     * protocol version (one of TLS1_VERSION, DTLS1_VERSION)
1276
     */
1277
    int version;
1278
    /*
1279
     * There are 2 BIO's even though they are normally both the same.  This
1280
     * is so data can be read and written to different handlers
1281
     */
1282
    /* used by SSL_read */
1283
    BIO *rbio;
1284
    /* used by SSL_write */
1285
    BIO *wbio;
1286
    /* used during session-id reuse to concatenate messages */
1287
    BIO *bbio;
1288
    /*
1289
     * This holds a variable that indicates what we were doing when a 0 or -1
1290
     * is returned.  This is needed for non-blocking IO so we know what
1291
     * request needs re-doing when in SSL_accept or SSL_connect
1292
     */
1293
    int rwstate;
1294
    int (*handshake_func)(SSL *);
1295
    /*
1296
     * Imagine that here's a boolean member "init" that is switched as soon
1297
     * as SSL_set_{accept/connect}_state is called for the first time, so
1298
     * that "state" and "handshake_func" are properly initialized.  But as
1299
     * handshake_func is == 0 until then, we use this test instead of an
1300
     * "init" member.
1301
     */
1302
    /* are we the server side? */
1303
    int server;
1304
    /*
1305
     * Generate a new session or reuse an old one.
1306
     * NB: For servers, the 'new' session may actually be a previously
1307
     * cached session or even the previous session unless
1308
     * SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION is set
1309
     */
1310
    int new_session;
1311
    /* don't send shutdown packets */
1312
    int quiet_shutdown;
1313
    /* we have shut things down, 0x01 sent, 0x02 for received */
1314
    int shutdown;
1315
    /* Timestamps used to calculate the handshake RTT */
1316
    OSSL_TIME ts_msg_write;
1317
    OSSL_TIME ts_msg_read;
1318
    /* where we are */
1319
    OSSL_STATEM statem;
1320
    SSL_EARLY_DATA_STATE early_data_state;
1321
    BUF_MEM *init_buf; /* buffer used during init */
1322
    void *init_msg; /* pointer to handshake message body, set by
1323
                     * tls_get_message_header() */
1324
    size_t init_num; /* amount read/written */
1325
    size_t init_off; /* amount read/written */
1326
1327
    size_t ssl_pkey_num;
1328
1329
    /* QUIC TLS fields */
1330
    OSSL_QUIC_TLS_CALLBACKS qtcb;
1331
    void *qtarg;
1332
    QUIC_TLS *qtls;
1333
1334
    struct {
1335
        long flags;
1336
        unsigned char server_random[SSL3_RANDOM_SIZE];
1337
        unsigned char client_random[SSL3_RANDOM_SIZE];
1338
1339
        /* used during startup, digest all incoming/outgoing packets */
1340
        BIO *handshake_buffer;
1341
        /*
1342
         * When handshake digest is determined, buffer is hashed and
1343
         * freed and MD_CTX for the required digest is stored here.
1344
         */
1345
        EVP_MD_CTX *handshake_dgst;
1346
        /*
1347
         * Set whenever an expected ChangeCipherSpec message is processed.
1348
         * Unset when the peer's Finished message is received.
1349
         * Unexpected ChangeCipherSpec messages trigger a fatal alert.
1350
         */
1351
        int change_cipher_spec;
1352
        int warn_alert;
1353
        int fatal_alert;
1354
        /*
1355
         * we allow one fatal and one warning alert to be outstanding, send close
1356
         * alert via the warning alert
1357
         */
1358
        int alert_dispatch;
1359
        unsigned char send_alert[2];
1360
        /*
1361
         * This flag is set when we should renegotiate ASAP, basically when there
1362
         * is no more data in the read or write buffers
1363
         */
1364
        int renegotiate;
1365
        int total_renegotiations;
1366
        int num_renegotiations;
1367
        int in_read_app_data;
1368
1369
        struct {
1370
            /* actually only need to be 12 for TLS */
1371
            unsigned char finish_md[EVP_MAX_MD_SIZE * 2];
1372
            size_t finish_md_len;
1373
            unsigned char peer_finish_md[EVP_MAX_MD_SIZE * 2];
1374
            size_t peer_finish_md_len;
1375
            size_t message_size;
1376
            int message_type;
1377
            /* used to hold the new cipher we are going to use */
1378
            const SSL_CIPHER *new_cipher;
1379
            EVP_PKEY *pkey; /* holds short lived key exchange key */
1380
            /* holds the array of short lived key exchange key (pointers) */
1381
            EVP_PKEY *ks_pkey[OPENSSL_CLIENT_MAX_KEY_SHARES];
1382
            uint16_t ks_group_id[OPENSSL_CLIENT_MAX_KEY_SHARES]; /* The IDs of the keyshare keys */
1383
            size_t num_ks_pkey; /* how many keyshares are there */
1384
            /* used for certificate requests */
1385
            int cert_req;
1386
            /* Certificate types in certificate request message. */
1387
            uint8_t *ctype;
1388
            size_t ctype_len;
1389
            /* Certificate authorities list peer sent */
1390
            STACK_OF(X509_NAME) *peer_ca_names;
1391
            size_t key_block_length;
1392
            unsigned char *key_block;
1393
            const EVP_CIPHER *new_sym_enc;
1394
            const EVP_MD *new_hash;
1395
            int new_mac_pkey_type;
1396
            size_t new_mac_secret_size;
1397
#ifndef OPENSSL_NO_COMP
1398
            const SSL_COMP *new_compression;
1399
#else
1400
            char *new_compression;
1401
#endif
1402
            int cert_request;
1403
            /* Raw values of the cipher list from a client */
1404
            unsigned char *ciphers_raw;
1405
            size_t ciphers_rawlen;
1406
            /* Temporary storage for premaster secret */
1407
            unsigned char *pms;
1408
            size_t pmslen;
1409
#ifndef OPENSSL_NO_PSK
1410
            /* Temporary storage for PSK key */
1411
            unsigned char *psk;
1412
            size_t psklen;
1413
#endif
1414
            /* Signature algorithm we actually use */
1415
            const struct sigalg_lookup_st *sigalg;
1416
            /* Pointer to certificate we use */
1417
            CERT_PKEY *cert;
1418
            /*
1419
             * signature algorithms peer reports: e.g. supported signature
1420
             * algorithms extension for server or as part of a certificate
1421
             * request for client.
1422
             * Keep track of the algorithms for TLS and X.509 usage separately.
1423
             */
1424
            uint16_t *peer_sigalgs;
1425
            uint16_t *peer_cert_sigalgs;
1426
            /* Size of above arrays */
1427
            size_t peer_sigalgslen;
1428
            size_t peer_cert_sigalgslen;
1429
            /* Sigalg peer actually uses */
1430
            const struct sigalg_lookup_st *peer_sigalg;
1431
            /*
1432
             * Set if corresponding CERT_PKEY can be used with current
1433
             * SSL session: e.g. appropriate curve, signature algorithms etc.
1434
             * If zero it can't be used at all.
1435
             */
1436
            uint32_t *valid_flags;
1437
            /*
1438
             * For servers the following masks are for the key and auth algorithms
1439
             * that are supported by the certs below. For clients they are masks of
1440
             * *disabled* algorithms based on the current session.
1441
             */
1442
            uint32_t mask_k;
1443
            uint32_t mask_a;
1444
            /*
1445
             * The following are used by the client to see if a cipher is allowed or
1446
             * not.  It contains the minimum and maximum version the client's using
1447
             * based on what it knows so far.
1448
             */
1449
            int min_ver;
1450
            int max_ver;
1451
        } tmp;
1452
1453
        /* Connection binding to prevent renegotiation attacks */
1454
        unsigned char previous_client_finished[EVP_MAX_MD_SIZE];
1455
        size_t previous_client_finished_len;
1456
        unsigned char previous_server_finished[EVP_MAX_MD_SIZE];
1457
        size_t previous_server_finished_len;
1458
        int send_connection_binding;
1459
1460
#ifndef OPENSSL_NO_NEXTPROTONEG
1461
        /*
1462
         * Set if we saw the Next Protocol Negotiation extension from our peer.
1463
         */
1464
        int npn_seen;
1465
#endif
1466
1467
        /*
1468
         * ALPN information (we are in the process of transitioning from NPN to
1469
         * ALPN.)
1470
         */
1471
1472
        /*
1473
         * In a server these point to the selected ALPN protocol after the
1474
         * ClientHello has been processed. In a client these contain the protocol
1475
         * that the server selected once the ServerHello has been processed.
1476
         */
1477
        unsigned char *alpn_selected;
1478
        size_t alpn_selected_len;
1479
        /* used by the server to know what options were proposed */
1480
        unsigned char *alpn_proposed;
1481
        size_t alpn_proposed_len;
1482
        /* used by the client to know if it actually sent alpn */
1483
        int alpn_sent;
1484
1485
        /*
1486
         * This is set to true if we believe that this is a version of Safari
1487
         * running on OS X 10.6 or newer. We wish to know this because Safari on
1488
         * 10.8 .. 10.8.3 has broken ECDHE-ECDSA support.
1489
         */
1490
        char is_probably_safari;
1491
1492
        /*
1493
         * Track whether we did a key exchange this handshake or not, so
1494
         * SSL_get_negotiated_group() knows whether to fall back to the
1495
         * value in the SSL_SESSION.
1496
         */
1497
        char did_kex;
1498
        /* For clients: peer temporary key */
1499
        /* The group_id for the key exchange key */
1500
        uint16_t group_id;
1501
        EVP_PKEY *peer_tmp;
1502
        /* The cached group_id candidate for the key exchange key */
1503
        uint16_t group_id_candidate;
1504
    } s3;
1505
1506
    struct dtls1_state_st *d1; /* DTLSv1 variables */
1507
    /* callback that allows applications to peek at protocol messages */
1508
    void (*msg_callback)(int write_p, int version, int content_type,
1509
        const void *buf, size_t len, SSL *ssl, void *arg);
1510
    void *msg_callback_arg;
1511
    int hit; /* reusing a previous session */
1512
    X509_VERIFY_PARAM *param;
1513
    /* Per connection DANE state */
1514
    SSL_DANE dane;
1515
    /* crypto */
1516
    STACK_OF(SSL_CIPHER) *peer_ciphers;
1517
    STACK_OF(SSL_CIPHER) *cipher_list;
1518
    STACK_OF(SSL_CIPHER) *cipher_list_by_id;
1519
    /* TLSv1.3 specific ciphersuites */
1520
    STACK_OF(SSL_CIPHER) *tls13_ciphersuites;
1521
    /*
1522
     * These are the ones being used, the ones in SSL_SESSION are the ones to
1523
     * be 'copied' into these ones
1524
     */
1525
    uint32_t mac_flags;
1526
    /*
1527
     * The TLS1.3 secrets.
1528
     */
1529
    unsigned char early_secret[EVP_MAX_MD_SIZE];
1530
    unsigned char handshake_secret[EVP_MAX_MD_SIZE];
1531
    unsigned char master_secret[EVP_MAX_MD_SIZE];
1532
    unsigned char resumption_master_secret[EVP_MAX_MD_SIZE];
1533
    unsigned char client_finished_secret[EVP_MAX_MD_SIZE];
1534
    unsigned char server_finished_secret[EVP_MAX_MD_SIZE];
1535
    unsigned char server_finished_hash[EVP_MAX_MD_SIZE];
1536
    unsigned char handshake_traffic_hash[EVP_MAX_MD_SIZE];
1537
    unsigned char client_app_traffic_secret[EVP_MAX_MD_SIZE];
1538
    unsigned char server_app_traffic_secret[EVP_MAX_MD_SIZE];
1539
    unsigned char exporter_master_secret[EVP_MAX_MD_SIZE];
1540
    unsigned char early_exporter_master_secret[EVP_MAX_MD_SIZE];
1541
1542
    /* session info */
1543
    /* client cert? */
1544
    /* This is used to hold the server certificate used */
1545
    struct cert_st /* CERT */ *cert;
1546
1547
    /*
1548
     * The hash of all messages prior to the CertificateVerify, and the length
1549
     * of that hash.
1550
     */
1551
    unsigned char cert_verify_hash[EVP_MAX_MD_SIZE];
1552
    size_t cert_verify_hash_len;
1553
1554
    /* Flag to indicate whether we should send a HelloRetryRequest or not */
1555
    enum { SSL_HRR_NONE = 0,
1556
        SSL_HRR_PENDING,
1557
        SSL_HRR_COMPLETE } hello_retry_request;
1558
1559
    /*
1560
     * the session_id_context is used to ensure sessions are only reused in
1561
     * the appropriate context
1562
     */
1563
    size_t sid_ctx_length;
1564
    unsigned char sid_ctx[SSL_MAX_SID_CTX_LENGTH];
1565
    /* This can also be in the session once a session is established */
1566
    SSL_SESSION *session;
1567
    /* TLSv1.3 PSK session */
1568
    SSL_SESSION *psksession;
1569
    unsigned char *psksession_id;
1570
    size_t psksession_id_len;
1571
    /* Default generate session ID callback. */
1572
    GEN_SESSION_CB generate_session_id;
1573
    /*
1574
     * The temporary TLSv1.3 session id. This isn't really a session id at all
1575
     * but is a random value sent in the legacy session id field.
1576
     */
1577
    unsigned char tmp_session_id[SSL_MAX_SSL_SESSION_ID_LENGTH];
1578
    size_t tmp_session_id_len;
1579
    /* Used in SSL3 */
1580
    /*
1581
     * 0 don't care about verify failure.
1582
     * 1 fail if verify fails
1583
     */
1584
    uint32_t verify_mode;
1585
    /* fail if callback returns 0 */
1586
    int (*verify_callback)(int ok, X509_STORE_CTX *ctx);
1587
    /* optional informational callback */
1588
    void (*info_callback)(const SSL *ssl, int type, int val);
1589
    /* error bytes to be written */
1590
    int error;
1591
    /* actual code */
1592
    int error_code;
1593
#ifndef OPENSSL_NO_PSK
1594
    SSL_psk_client_cb_func psk_client_callback;
1595
    SSL_psk_server_cb_func psk_server_callback;
1596
#endif
1597
    SSL_psk_find_session_cb_func psk_find_session_cb;
1598
    SSL_psk_use_session_cb_func psk_use_session_cb;
1599
1600
    /* Verified chain of peer */
1601
    STACK_OF(X509) *verified_chain;
1602
    long verify_result;
1603
    /*
1604
     * What we put in certificate_authorities extension for TLS 1.3
1605
     * (ClientHello and CertificateRequest) or just client cert requests for
1606
     * earlier versions. If client_ca_names is populated then it is only used
1607
     * for client cert requests, and in preference to ca_names.
1608
     */
1609
    STACK_OF(X509_NAME) *ca_names;
1610
    STACK_OF(X509_NAME) *client_ca_names;
1611
    /* protocol behaviour */
1612
    uint64_t options;
1613
    /* API behaviour */
1614
    uint32_t mode;
1615
    int min_proto_version;
1616
    int max_proto_version;
1617
    size_t max_cert_list;
1618
    int first_packet;
1619
    /*
1620
     * What was passed in ClientHello.legacy_version. Used for RSA pre-master
1621
     * secret and (D)TLS (<=1.2) rollback check
1622
     */
1623
    int client_version;
1624
    /*
1625
     * If we're using more than one pipeline how should we divide the data
1626
     * up between the pipes?
1627
     */
1628
    size_t split_send_fragment;
1629
    /*
1630
     * Maximum amount of data to send in one fragment. actual record size can
1631
     * be more than this due to padding and MAC overheads.
1632
     */
1633
    size_t max_send_fragment;
1634
    /* Up to how many pipelines should we use? If 0 then 1 is assumed */
1635
    size_t max_pipelines;
1636
1637
    struct {
1638
        /* Built-in extension flags */
1639
        uint8_t extflags[TLSEXT_IDX_num_builtins];
1640
        /* TLS extension debug callback */
1641
        void (*debug_cb)(SSL *s, int client_server, int type,
1642
            const unsigned char *data, int len, void *arg);
1643
        void *debug_arg;
1644
        char *hostname;
1645
        /* certificate status request info */
1646
        /* Status type or -1 if no status type */
1647
        int status_type;
1648
        /* Raw extension data, if seen */
1649
        unsigned char *scts;
1650
        /* Length of raw extension data, if seen */
1651
        uint16_t scts_len;
1652
1653
        struct {
1654
            /* OCSP status request only */
1655
            STACK_OF(OCSP_RESPID) *ids;
1656
            X509_EXTENSIONS *exts;
1657
            /* OCSP response received or to be sent */
1658
            unsigned char *resp;
1659
            size_t resp_len;
1660
            STACK_OF(OCSP_RESPONSE) *resp_ex;
1661
        } ocsp;
1662
1663
        /* TLS 1.3 tickets requested by the application. */
1664
        int extra_tickets_expected;
1665
1666
        /*
1667
         * Peer's advertised ec_point_formats list (TLS 1.2 and below),
1668
         * retained as received so SSL_get0_ec_point_formats() can return
1669
         * it verbatim.  Point format no longer influences cert selection
1670
         * or acceptance; the parse hook validates RFC 4492/8422 section
1671
         * 5.1.2 ("uncompressed" must be present) inline.
1672
         */
1673
        size_t peer_ecpointformats_len;
1674
        unsigned char *peer_ecpointformats;
1675
1676
        /* our list */
1677
        size_t supportedgroups_len;
1678
        uint16_t *supportedgroups;
1679
        /* peer's list */
1680
        size_t peer_supportedgroups_len;
1681
        uint16_t *peer_supportedgroups;
1682
1683
        /* key shares */
1684
        size_t keyshares_len;
1685
        uint16_t *keyshares;
1686
        /* supported groups tuples */
1687
        size_t tuples_len;
1688
        size_t *tuples;
1689
1690
        /* TLS Session Ticket extension override */
1691
        TLS_SESSION_TICKET_EXT *session_ticket;
1692
        /* TLS Session Ticket extension callback */
1693
        tls_session_ticket_ext_cb_fn session_ticket_cb;
1694
        void *session_ticket_cb_arg;
1695
        /* TLS pre-shared secret session resumption */
1696
        tls_session_secret_cb_fn session_secret_cb;
1697
        void *session_secret_cb_arg;
1698
        /*
1699
         * For a client, this contains the list of supported protocols in wire
1700
         * format.
1701
         */
1702
        unsigned char *alpn;
1703
        size_t alpn_len;
1704
        /*
1705
         * Next protocol negotiation. For the client, this is the protocol that
1706
         * we sent in NextProtocol and is set when handling ServerHello
1707
         * extensions. For a server, this is the client's selected_protocol from
1708
         * NextProtocol and is set when handling the NextProtocol message, before
1709
         * the Finished message.
1710
         */
1711
        unsigned char *npn;
1712
        size_t npn_len;
1713
1714
        /* The available PSK key exchange modes */
1715
        int psk_kex_mode;
1716
1717
        /* Are we expecting to receive early data? */
1718
        int early_data;
1719
1720
        /* May be sent by a server in HRR. Must be echoed back in ClientHello */
1721
        unsigned char *tls13_cookie;
1722
        size_t tls13_cookie_len;
1723
1724
        /*
1725
         * Maximum Fragment Length as per RFC 4366.
1726
         * If this member contains one of the allowed values (1-4)
1727
         * then we should include Maximum Fragment Length Negotiation
1728
         * extension in Client Hello.
1729
         * Please note that value of this member does not have direct
1730
         * effect. The actual (binding) value is stored in SSL_SESSION,
1731
         * as this extension is optional on server side.
1732
         */
1733
        uint8_t max_fragment_len_mode;
1734
1735
        /*
1736
         * On the client side the number of ticket identities we sent in the
1737
         * ClientHello. On the server side the identity of the ticket we
1738
         * selected.
1739
         */
1740
        int tick_identity;
1741
1742
        /*
1743
         * Cached result of the resumption ticket age/lifetime check for the
1744
         * ClientHello under construction. Time-dependent, double-checked
1745
         * within the same flight (see tls13_check_tick_lifetime_hint()).
1746
         */
1747
        uint32_t tick_age_ms;
1748
1749
        /*
1750
         * The first-offered PSK, the one that keys any 0-RTT, recorded while
1751
         * the ClientHello is built -- the resumption session when we offer it,
1752
         * else the external psksession; NULL when no 0-RTT is offered. Held
1753
         * (up-ref'd) so it stays valid across the post-ServerHello swap, and
1754
         * read by the binder, the early-key derivation, the early exporter and
1755
         * the byte-budget lookup. Freed at handshake reset and connection free.
1756
         */
1757
        SSL_SESSION *early_data_session;
1758
1759
        /* This is the list of algorithms the peer supports that we also support */
1760
        int compress_certificate_from_peer[TLSEXT_comp_cert_limit];
1761
1762
        uint8_t client_cert_type;
1763
        uint8_t client_cert_type_ctos;
1764
        uint8_t server_cert_type;
1765
        uint8_t server_cert_type_ctos;
1766
1767
#ifndef OPENSSL_NO_ECH
1768
        OSSL_ECH_CONN ech;
1769
#endif
1770
1771
        /* RFC 8701 GREASE */
1772
        uint8_t grease_seed[OSSL_GREASE_LAST_INDEX + 1];
1773
1774
        /* "bool" fields go last, for slightly better packing */
1775
        bool grease_seeded;
1776
1777
        /* Expect OCSP CertificateStatus message */
1778
        bool status_expected;
1779
1780
        /* RFC4507 session ticket expected to be received or sent */
1781
        bool ticket_expected;
1782
1783
        /* Set to one if we have negotiated ETM */
1784
        bool use_etm;
1785
1786
        /* Is the session perhaps suitable for early data? */
1787
        bool early_data_ok;
1788
1789
        /* Was the session found unsuitable for early data? */
1790
        bool early_data_suppressed;
1791
1792
        /*
1793
         * Cached result of the resumption ticket age/lifetime check for the
1794
         * ClientHello under construction. Time-dependent, double-checked
1795
         * within the same flight (see tls13_check_tick_lifetime_hint()).
1796
         */
1797
        bool tick_age_checked;
1798
        bool tick_age_ok;
1799
1800
        /* Have we received a cookie from the client? */
1801
        bool cookieok;
1802
1803
        /* indicate that we sent the extension, so we'll accept it */
1804
        bool compress_certificate_sent;
1805
    } ext;
1806
1807
    /*
1808
     * Parsed form of the ClientHello, kept around across client_hello_cb
1809
     * calls.
1810
     */
1811
    CLIENTHELLO_MSG *clienthello;
1812
1813
    /*-
1814
     * no further mod of servername
1815
     * 0 : call the servername extension callback.
1816
     * 1 : prepare 2, allow last ack just after in server callback.
1817
     * 2 : don't call servername callback, no ack in server hello
1818
     */
1819
    int servername_done;
1820
#ifndef OPENSSL_NO_CT
1821
    /*
1822
     * Validates that the SCTs (Signed Certificate Timestamps) are sufficient.
1823
     * If they are not, the connection should be aborted.
1824
     */
1825
    ssl_ct_validation_cb ct_validation_callback;
1826
    /* User-supplied argument that is passed to the ct_validation_callback */
1827
    void *ct_validation_callback_arg;
1828
    /*
1829
     * Consolidated stack of SCTs from all sources.
1830
     * Lazily populated by CT_get_peer_scts(SSL*)
1831
     */
1832
    STACK_OF(SCT) *scts;
1833
    /* Have we attempted to find/parse SCTs yet? */
1834
    int scts_parsed;
1835
#endif
1836
    SSL_CTX *session_ctx; /* initial ctx, used to store sessions */
1837
#ifndef OPENSSL_NO_SRTP
1838
    /* What we'll do */
1839
    STACK_OF(SRTP_PROTECTION_PROFILE) *srtp_profiles;
1840
    /* What's been chosen */
1841
    SRTP_PROTECTION_PROFILE *srtp_profile;
1842
#endif
1843
    /*-
1844
     * 1 if we are renegotiating.
1845
     * 2 if we are a server and are inside a handshake
1846
     * (i.e. not just sending a HelloRequest)
1847
     */
1848
    int renegotiate;
1849
    /* If sending a KeyUpdate is pending */
1850
    int key_update;
1851
    /* Post-handshake authentication state */
1852
    SSL_PHA_STATE post_handshake_auth;
1853
    int pha_enabled;
1854
    uint8_t *pha_context;
1855
    size_t pha_context_len;
1856
    int certreqs_sent;
1857
    EVP_MD_CTX *pha_dgst; /* this is just the digest through ClientFinished */
1858
1859
#ifndef OPENSSL_NO_SRP
1860
    /* ctx for SRP authentication */
1861
    SRP_CTX srp_ctx;
1862
#endif
1863
    /*
1864
     * Callback for disabling session caching and ticket support on a session
1865
     * basis, depending on the chosen cipher.
1866
     */
1867
    int (*not_resumable_session_cb)(SSL *ssl, int is_forward_secure);
1868
1869
    /* Record layer data */
1870
    RECORD_LAYER rlayer;
1871
1872
    /* Default password callback. */
1873
    pem_password_cb *default_passwd_callback;
1874
    /* Default password callback user data. */
1875
    void *default_passwd_callback_userdata;
1876
    /* Async Job info */
1877
    ASYNC_JOB *job;
1878
    ASYNC_WAIT_CTX *waitctx;
1879
    size_t asyncrw;
1880
1881
    /*
1882
     * The maximum number of bytes advertised in session tickets that can be
1883
     * sent as early data.
1884
     */
1885
    uint32_t max_early_data;
1886
    /*
1887
     * The maximum number of bytes of early data that a server will tolerate
1888
     * (which should be at least as much as max_early_data).
1889
     */
1890
    uint32_t recv_max_early_data;
1891
1892
    /*
1893
     * The number of bytes of early data received so far. If we accepted early
1894
     * data then this is a count of the plaintext bytes. If we rejected it then
1895
     * this is a count of the ciphertext bytes.
1896
     */
1897
    uint32_t early_data_count;
1898
1899
    /* The number of TLS1.3 tickets to automatically send */
1900
    size_t num_tickets;
1901
    /* The number of TLS1.3 tickets actually sent so far */
1902
    size_t sent_tickets;
1903
    /* The next nonce value to use when we send a ticket on this connection */
1904
    uint64_t next_ticket_nonce;
1905
1906
    /* Callback to determine if early_data is acceptable or not */
1907
    SSL_allow_early_data_cb_fn allow_early_data_cb;
1908
    void *allow_early_data_cb_data;
1909
1910
    /* Callback for SSL async handling */
1911
    SSL_async_callback_fn async_cb;
1912
    void *async_cb_arg;
1913
1914
    /*
1915
     * Signature algorithms shared by client and server: cached because these
1916
     * are used most often.
1917
     */
1918
    const struct sigalg_lookup_st **shared_sigalgs;
1919
    size_t shared_sigalgslen;
1920
1921
#ifndef OPENSSL_NO_COMP_ALG
1922
    /* certificate compression preferences */
1923
    int cert_comp_prefs[TLSEXT_comp_cert_limit];
1924
#endif
1925
1926
    /* Certificate Type stuff - for RPK vs X.509 */
1927
    unsigned char *client_cert_type;
1928
    size_t client_cert_type_len;
1929
    unsigned char *server_cert_type;
1930
    size_t server_cert_type_len;
1931
};
1932
1933
/*
1934
 * Structure containing table entry of values associated with the signature
1935
 * algorithms (signature scheme) extension
1936
 */
1937
typedef struct sigalg_lookup_st {
1938
    /* TLS 1.3 signature scheme name */
1939
    const char *name;
1940
    /* TLS 1.2 signature scheme name */
1941
    const char *name12;
1942
    /* Raw value used in extension */
1943
    uint16_t sigalg;
1944
    /* NID of hash algorithm or NID_undef if no hash */
1945
    int hash;
1946
    /* Index of hash algorithm or -1 if no hash algorithm */
1947
    int hash_idx;
1948
    /* NID of signature algorithm */
1949
    int sig;
1950
    /* Index of signature algorithm */
1951
    int sig_idx;
1952
    /* Combined hash and signature NID, if any */
1953
    int sigandhash;
1954
    /* Required public key curve (ECDSA only) */
1955
    int curve;
1956
    /* Whether this signature algorithm is actually available for use */
1957
    int available;
1958
    /* Whether this signature algorithm is by default advertised */
1959
    int advertise;
1960
    /* Supported protocol ranges */
1961
    int mintls;
1962
    int maxtls;
1963
    int mindtls;
1964
    int maxdtls;
1965
} SIGALG_LOOKUP;
1966
1967
/* DTLS structures */
1968
1969
#ifndef OPENSSL_NO_SCTP
1970
#define DTLS1_SCTP_AUTH_LABEL "EXPORTER_DTLS_OVER_SCTP"
1971
#endif
1972
1973
/* Max MTU overhead we know about so far is 40 for IPv6 + 8 for UDP */
1974
0
#define DTLS1_MAX_MTU_OVERHEAD 48
1975
1976
struct dtls1_retransmit_state {
1977
    const OSSL_RECORD_METHOD *wrlmethod;
1978
    OSSL_RECORD_LAYER *wrl;
1979
};
1980
1981
struct hm_header_st {
1982
    unsigned char type;
1983
    size_t msg_len;
1984
    unsigned short seq;
1985
    size_t frag_off;
1986
    size_t frag_len;
1987
    unsigned int is_ccs;
1988
    struct dtls1_retransmit_state saved_retransmit_state;
1989
};
1990
1991
typedef struct hm_fragment_st {
1992
    struct hm_header_st msg_header;
1993
    unsigned char *fragment;
1994
    unsigned char *reassembly;
1995
} hm_fragment;
1996
1997
typedef struct pqueue_st pqueue;
1998
typedef struct pitem_st pitem;
1999
2000
struct pitem_st {
2001
    unsigned char priority[8]; /* 64-bit value in big-endian encoding */
2002
    void *data;
2003
    pitem *next;
2004
};
2005
2006
typedef struct pitem_st *piterator;
2007
2008
pitem *pitem_new(unsigned char *prio64be, void *data);
2009
void pitem_free(pitem *item);
2010
pqueue *pqueue_new(void);
2011
void pqueue_free(pqueue *pq);
2012
pitem *pqueue_insert(pqueue *pq, pitem *item);
2013
pitem *pqueue_peek(pqueue *pq);
2014
pitem *pqueue_pop(pqueue *pq);
2015
pitem *pqueue_find(pqueue *pq, unsigned char *prio64be);
2016
pitem *pqueue_iterator(pqueue *pq);
2017
pitem *pqueue_next(piterator *iter);
2018
size_t pqueue_size(pqueue *pq);
2019
2020
typedef struct dtls1_state_st {
2021
    unsigned char cookie[DTLS1_COOKIE_LENGTH];
2022
    size_t cookie_len;
2023
    unsigned int cookie_verified;
2024
    /* handshake message numbers */
2025
    unsigned short handshake_write_seq;
2026
    unsigned short next_handshake_write_seq;
2027
    unsigned short handshake_read_seq;
2028
    /* Buffered handshake messages */
2029
    pqueue *buffered_messages;
2030
    /* Buffered (sent) handshake records */
2031
    pqueue *sent_messages;
2032
    size_t link_mtu; /* max on-the-wire DTLS packet size */
2033
    size_t mtu; /* max DTLS packet size */
2034
    struct hm_header_st w_msg_hdr;
2035
    struct hm_header_st r_msg_hdr;
2036
    /* Number of alerts received so far */
2037
    unsigned int timeout_num_alerts;
2038
    /*
2039
     * Indicates when the last handshake msg sent will timeout
2040
     */
2041
    OSSL_TIME next_timeout;
2042
    /* Timeout duration */
2043
    unsigned int timeout_duration_us;
2044
2045
    unsigned int retransmitting;
2046
    unsigned int has_change_cipher_spec;
2047
#ifndef OPENSSL_NO_SCTP
2048
    int shutdown_received;
2049
#endif
2050
2051
    DTLS_timer_cb timer_cb;
2052
2053
} DTLS1_STATE;
2054
2055
/*
2056
 * From ECC-TLS draft, used in encoding the curve type in ECParameters
2057
 */
2058
#define EXPLICIT_PRIME_CURVE_TYPE 1
2059
#define EXPLICIT_CHAR2_CURVE_TYPE 2
2060
0
#define NAMED_CURVE_TYPE 3
2061
2062
#ifndef OPENSSL_NO_COMP_ALG
2063
struct ossl_comp_cert_st {
2064
    unsigned char *data;
2065
    size_t len;
2066
    size_t orig_len;
2067
    CRYPTO_REF_COUNT references;
2068
    int alg;
2069
};
2070
typedef struct ossl_comp_cert_st OSSL_COMP_CERT;
2071
2072
void OSSL_COMP_CERT_free(OSSL_COMP_CERT *c);
2073
int OSSL_COMP_CERT_up_ref(OSSL_COMP_CERT *c);
2074
#endif
2075
2076
struct cert_pkey_st {
2077
    X509 *x509;
2078
    EVP_PKEY *privatekey;
2079
    /* Chain for this certificate */
2080
    STACK_OF(X509) *chain;
2081
    /*-
2082
     * serverinfo data for this certificate.  The data is in TLS Extension
2083
     * wire format, specifically it's a series of records like:
2084
     *   uint16_t extension_type; // (RFC 5246, 7.4.1.4, Extension)
2085
     *   uint16_t length;
2086
     *   uint8_t data[length];
2087
     */
2088
    unsigned char *serverinfo;
2089
    size_t serverinfo_length;
2090
#ifndef OPENSSL_NO_COMP_ALG
2091
    /* Compressed certificate data - index 0 is unused */
2092
    OSSL_COMP_CERT *comp_cert[TLSEXT_comp_cert_limit];
2093
    int cert_comp_used;
2094
#endif
2095
};
2096
/* Retrieve Suite B flags */
2097
0
#define tls1_suiteb(s) (s->cert->cert_flags & SSL_CERT_FLAG_SUITEB_128_LOS)
2098
/* Uses to check strict mode: suite B modes are always strict */
2099
#define SSL_CERT_FLAGS_CHECK_TLS_STRICT \
2100
0
    (SSL_CERT_FLAG_SUITEB_128_LOS | SSL_CERT_FLAG_TLS_STRICT)
2101
2102
typedef enum {
2103
    ENDPOINT_CLIENT = 0,
2104
    ENDPOINT_SERVER,
2105
    ENDPOINT_BOTH
2106
} ENDPOINT;
2107
2108
typedef struct {
2109
    unsigned short ext_type;
2110
    ENDPOINT role;
2111
    /* The context which this extension applies to */
2112
    unsigned int context;
2113
    /*
2114
     * Per-connection flags relating to this extension type: not used if
2115
     * part of an SSL_CTX structure.
2116
     */
2117
    uint32_t ext_flags;
2118
    SSL_custom_ext_add_cb_ex add_cb;
2119
    SSL_custom_ext_free_cb_ex free_cb;
2120
    void *add_arg;
2121
    SSL_custom_ext_parse_cb_ex parse_cb;
2122
    void *parse_arg;
2123
} custom_ext_method;
2124
2125
/* ext_flags values */
2126
2127
/*
2128
 * Indicates an extension has been received. Used to check for unsolicited or
2129
 * duplicate extensions.
2130
 */
2131
0
#define SSL_EXT_FLAG_RECEIVED 0x1
2132
/*
2133
 * Indicates an extension has been sent: used to enable sending of
2134
 * corresponding ServerHello extension.
2135
 */
2136
0
#define SSL_EXT_FLAG_SENT 0x2
2137
/*
2138
 * Indicates an extension that was set on SSL object and needs to be
2139
 * preserved when switching SSL contexts.
2140
 */
2141
0
#define SSL_EXT_FLAG_CONN 0x4
2142
2143
typedef struct {
2144
    custom_ext_method *meths;
2145
    size_t meths_count;
2146
} custom_ext_methods;
2147
2148
typedef struct cert_st {
2149
    /* Current active set */
2150
    /*
2151
     * ALWAYS points to an element of the pkeys array
2152
     * Probably it would make more sense to store
2153
     * an index, not a pointer.
2154
     */
2155
    CERT_PKEY *key;
2156
2157
    EVP_PKEY *dh_tmp;
2158
    DH *(*dh_tmp_cb)(SSL *ssl, int is_export, int keysize);
2159
    int dh_tmp_auto;
2160
    /* Flags related to certificates */
2161
    uint32_t cert_flags;
2162
    CERT_PKEY *pkeys;
2163
    size_t ssl_pkey_num;
2164
    /* Custom certificate types sent in certificate request message. */
2165
    uint8_t *ctype;
2166
    size_t ctype_len;
2167
    /*
2168
     * supported signature algorithms. When set on a client this is sent in
2169
     * the client hello as the supported signature algorithms extension. For
2170
     * servers it represents the signature algorithms we are willing to use.
2171
     */
2172
    uint16_t *conf_sigalgs;
2173
    /* Size of above array */
2174
    size_t conf_sigalgslen;
2175
    /*
2176
     * Client authentication signature algorithms, if not set then uses
2177
     * conf_sigalgs. On servers these will be the signature algorithms sent
2178
     * to the client in a certificate request for TLS 1.2. On a client this
2179
     * represents the signature algorithms we are willing to use for client
2180
     * authentication.
2181
     */
2182
    uint16_t *client_sigalgs;
2183
    /* Size of above array */
2184
    size_t client_sigalgslen;
2185
    /*
2186
     * Certificate setup callback: if set is called whenever a certificate
2187
     * may be required (client or server). the callback can then examine any
2188
     * appropriate parameters and setup any certificates required. This
2189
     * allows advanced applications to select certificates on the fly: for
2190
     * example based on supported signature algorithms or curves.
2191
     */
2192
    int (*cert_cb)(SSL *ssl, void *arg);
2193
    void *cert_cb_arg;
2194
    /*
2195
     * Optional X509_STORE for chain building or certificate validation If
2196
     * NULL the parent SSL_CTX store is used instead.
2197
     */
2198
    X509_STORE *chain_store;
2199
    X509_STORE *verify_store;
2200
    /* Custom extensions */
2201
    custom_ext_methods custext;
2202
    /* Security callback */
2203
    int (*sec_cb)(const SSL *s, const SSL_CTX *ctx, int op, int bits, int nid,
2204
        void *other, void *ex);
2205
    /* Security level */
2206
    int sec_level;
2207
    void *sec_ex;
2208
#ifndef OPENSSL_NO_PSK
2209
    /* If not NULL psk identity hint to use for servers */
2210
    char *psk_identity_hint;
2211
#endif
2212
    CRYPTO_REF_COUNT references; /* >1 only if SSL_copy_session_id is used */
2213
} CERT;
2214
2215
/*
2216
 * This is for the TLSv1.0 differences in crypto/hash stuff.
2217
 */
2218
typedef struct ssl3_enc_method {
2219
    int (*setup_key_block)(SSL_CONNECTION *);
2220
    int (*generate_master_secret)(SSL_CONNECTION *, unsigned char *,
2221
        unsigned char *, size_t, size_t *);
2222
    int (*change_cipher_state)(SSL_CONNECTION *, int);
2223
    size_t (*final_finish_mac)(SSL_CONNECTION *, const char *, size_t,
2224
        unsigned char *);
2225
    const char *client_finished_label;
2226
    size_t client_finished_label_len;
2227
    const char *server_finished_label;
2228
    size_t server_finished_label_len;
2229
    int (*alert_value)(int);
2230
    int (*export_keying_material)(SSL_CONNECTION *, unsigned char *, size_t,
2231
        const char *, size_t,
2232
        const unsigned char *, size_t,
2233
        int use_context);
2234
    /* Various flags indicating protocol version requirements */
2235
    uint32_t enc_flags;
2236
    /* Set the handshake header */
2237
    int (*set_handshake_header)(SSL_CONNECTION *s, WPACKET *pkt, int type);
2238
    /* Close construction of the handshake message */
2239
    int (*close_construct_packet)(SSL_CONNECTION *s, WPACKET *pkt, int htype);
2240
    /* Write out handshake message */
2241
    int (*do_write)(SSL_CONNECTION *s);
2242
} SSL3_ENC_METHOD;
2243
2244
#define ssl_set_handshake_header(s, pkt, htype) \
2245
0
    SSL_CONNECTION_GET_SSL(s)->method->ssl3_enc->set_handshake_header((s), (pkt), (htype))
2246
#define ssl_close_construct_packet(s, pkt, htype) \
2247
0
    SSL_CONNECTION_GET_SSL(s)->method->ssl3_enc->close_construct_packet((s), (pkt), (htype))
2248
0
#define ssl_do_write(s) SSL_CONNECTION_GET_SSL(s)->method->ssl3_enc->do_write(s)
2249
2250
/* Values for enc_flags */
2251
2252
/* Uses signature algorithms extension */
2253
0
#define SSL_ENC_FLAG_SIGALGS 0x2
2254
/* Uses SHA256 default PRF */
2255
0
#define SSL_ENC_FLAG_SHA256_PRF 0x4
2256
/* Is DTLS */
2257
0
#define SSL_ENC_FLAG_DTLS 0x8
2258
/*
2259
 * Allow TLS 1.2 ciphersuites: applies to DTLS 1.2 as well as TLS 1.2: may
2260
 * apply to others in future.
2261
 */
2262
0
#define SSL_ENC_FLAG_TLS1_2_CIPHERS 0x10
2263
2264
typedef enum downgrade_en {
2265
    DOWNGRADE_NONE,
2266
    DOWNGRADE_TO_1_2,
2267
    DOWNGRADE_TO_1_1
2268
} DOWNGRADE;
2269
2270
/*
2271
 * Dummy status type for the status_type extension. Indicates no status type
2272
 * set
2273
 */
2274
0
#define TLSEXT_STATUSTYPE_nothing -1
2275
2276
/* Known PSK key exchange modes */
2277
0
#define TLSEXT_KEX_MODE_KE 0x00
2278
0
#define TLSEXT_KEX_MODE_KE_DHE 0x01
2279
2280
/*
2281
 * Internal representations of key exchange modes
2282
 */
2283
0
#define TLSEXT_KEX_MODE_FLAG_NONE 0
2284
0
#define TLSEXT_KEX_MODE_FLAG_KE 1
2285
0
#define TLSEXT_KEX_MODE_FLAG_KE_DHE 2
2286
2287
0
#define SSL_USE_PSS(s) (s->s3.tmp.peer_sigalg != NULL && s->s3.tmp.peer_sigalg->sig == EVP_PKEY_RSA_PSS)
2288
2289
/* TLSv1.3 downgrade protection sentinel values */
2290
extern const unsigned char tls11downgrade[8];
2291
extern const unsigned char tls12downgrade[8];
2292
2293
extern const SSL3_ENC_METHOD ssl3_undef_enc_method;
2294
2295
__owur const SSL_METHOD *tlsv1_method(void);
2296
__owur const SSL_METHOD *tlsv1_server_method(void);
2297
__owur const SSL_METHOD *tlsv1_client_method(void);
2298
__owur const SSL_METHOD *tlsv1_1_method(void);
2299
__owur const SSL_METHOD *tlsv1_1_server_method(void);
2300
__owur const SSL_METHOD *tlsv1_1_client_method(void);
2301
__owur const SSL_METHOD *tlsv1_2_method(void);
2302
__owur const SSL_METHOD *tlsv1_2_server_method(void);
2303
__owur const SSL_METHOD *tlsv1_2_client_method(void);
2304
__owur const SSL_METHOD *tlsv1_3_method(void);
2305
__owur const SSL_METHOD *tlsv1_3_server_method(void);
2306
__owur const SSL_METHOD *tlsv1_3_client_method(void);
2307
__owur const SSL_METHOD *dtlsv1_method(void);
2308
__owur const SSL_METHOD *dtlsv1_server_method(void);
2309
__owur const SSL_METHOD *dtlsv1_client_method(void);
2310
__owur const SSL_METHOD *dtls_bad_ver_client_method(void);
2311
__owur const SSL_METHOD *dtlsv1_2_method(void);
2312
__owur const SSL_METHOD *dtlsv1_2_server_method(void);
2313
__owur const SSL_METHOD *dtlsv1_2_client_method(void);
2314
2315
extern const SSL3_ENC_METHOD TLSv1_enc_data;
2316
extern const SSL3_ENC_METHOD TLSv1_1_enc_data;
2317
extern const SSL3_ENC_METHOD TLSv1_2_enc_data;
2318
extern const SSL3_ENC_METHOD TLSv1_3_enc_data;
2319
extern const SSL3_ENC_METHOD DTLSv1_enc_data;
2320
extern const SSL3_ENC_METHOD DTLSv1_2_enc_data;
2321
2322
/*
2323
 * Flags for SSL methods
2324
 */
2325
#define SSL_METHOD_NO_FIPS (1U << 0)
2326
0
#define SSL_METHOD_NO_SUITEB (1U << 1)
2327
2328
#define IMPLEMENT_tls_meth_func(version, flags, mask, func_name, s_accept, \
2329
    s_connect, enc_data)                                                   \
2330
    const SSL_METHOD *func_name(void)                                      \
2331
0
    {                                                                      \
2332
0
        static const SSL_METHOD func_name##_data = {                       \
2333
0
            version,                                                       \
2334
0
            flags,                                                         \
2335
0
            mask,                                                          \
2336
0
            ossl_ssl_connection_new,                                       \
2337
0
            ossl_ssl_connection_free,                                      \
2338
0
            ossl_ssl_connection_reset,                                     \
2339
0
            tls1_new,                                                      \
2340
0
            tls1_clear,                                                    \
2341
0
            tls1_free,                                                     \
2342
0
            s_accept,                                                      \
2343
0
            s_connect,                                                     \
2344
0
            ssl3_read,                                                     \
2345
0
            ssl3_peek,                                                     \
2346
0
            ssl3_write,                                                    \
2347
0
            ssl3_shutdown,                                                 \
2348
0
            ssl3_renegotiate,                                              \
2349
0
            ssl3_renegotiate_check,                                        \
2350
0
            ssl3_read_bytes,                                               \
2351
0
            ssl3_write_bytes,                                              \
2352
0
            ssl3_dispatch_alert,                                           \
2353
0
            ssl3_ctrl,                                                     \
2354
0
            ssl3_ctx_ctrl,                                                 \
2355
0
            ssl3_get_cipher_by_char,                                       \
2356
0
            ssl3_put_cipher_by_char,                                       \
2357
0
            ssl3_pending,                                                  \
2358
0
            ssl3_num_ciphers,                                              \
2359
0
            ssl3_get_cipher,                                               \
2360
0
            tls1_default_timeout,                                          \
2361
0
            &enc_data,                                                     \
2362
0
            ssl_undefined_void_function,                                   \
2363
0
            ssl3_callback_ctrl,                                            \
2364
0
            ssl3_ctx_callback_ctrl,                                        \
2365
0
        };                                                                 \
2366
0
        return &func_name##_data;                                          \
2367
0
    }
Unexecuted instantiation: TLS_method
Unexecuted instantiation: tlsv1_3_method
Unexecuted instantiation: tlsv1_2_method
Unexecuted instantiation: tlsv1_1_method
Unexecuted instantiation: tlsv1_method
Unexecuted instantiation: TLS_server_method
Unexecuted instantiation: tlsv1_3_server_method
Unexecuted instantiation: tlsv1_2_server_method
Unexecuted instantiation: tlsv1_1_server_method
Unexecuted instantiation: tlsv1_server_method
Unexecuted instantiation: TLS_client_method
Unexecuted instantiation: tlsv1_3_client_method
Unexecuted instantiation: tlsv1_2_client_method
Unexecuted instantiation: tlsv1_1_client_method
Unexecuted instantiation: tlsv1_client_method
2368
2369
#define IMPLEMENT_dtls1_meth_func(version, flags, mask, func_name, s_accept, \
2370
    s_connect, enc_data)                                                     \
2371
    const SSL_METHOD *func_name(void)                                        \
2372
0
    {                                                                        \
2373
0
        static const SSL_METHOD func_name##_data = {                         \
2374
0
            version,                                                         \
2375
0
            flags,                                                           \
2376
0
            mask,                                                            \
2377
0
            ossl_ssl_connection_new,                                         \
2378
0
            ossl_ssl_connection_free,                                        \
2379
0
            ossl_ssl_connection_reset,                                       \
2380
0
            dtls1_new,                                                       \
2381
0
            dtls1_clear,                                                     \
2382
0
            dtls1_free,                                                      \
2383
0
            s_accept,                                                        \
2384
0
            s_connect,                                                       \
2385
0
            ssl3_read,                                                       \
2386
0
            ssl3_peek,                                                       \
2387
0
            ssl3_write,                                                      \
2388
0
            dtls1_shutdown,                                                  \
2389
0
            ssl3_renegotiate,                                                \
2390
0
            ssl3_renegotiate_check,                                          \
2391
0
            dtls1_read_bytes,                                                \
2392
0
            dtls1_write_app_data_bytes,                                      \
2393
0
            dtls1_dispatch_alert,                                            \
2394
0
            dtls1_ctrl,                                                      \
2395
0
            ssl3_ctx_ctrl,                                                   \
2396
0
            ssl3_get_cipher_by_char,                                         \
2397
0
            ssl3_put_cipher_by_char,                                         \
2398
0
            ssl3_pending,                                                    \
2399
0
            ssl3_num_ciphers,                                                \
2400
0
            ssl3_get_cipher,                                                 \
2401
0
            dtls1_default_timeout,                                           \
2402
0
            &enc_data,                                                       \
2403
0
            ssl_undefined_void_function,                                     \
2404
0
            ssl3_callback_ctrl,                                              \
2405
0
            ssl3_ctx_callback_ctrl,                                          \
2406
0
        };                                                                   \
2407
0
        return &func_name##_data;                                            \
2408
0
    }
Unexecuted instantiation: dtlsv1_method
Unexecuted instantiation: dtlsv1_2_method
Unexecuted instantiation: DTLS_method
Unexecuted instantiation: dtlsv1_server_method
Unexecuted instantiation: dtlsv1_2_server_method
Unexecuted instantiation: DTLS_server_method
Unexecuted instantiation: dtlsv1_client_method
Unexecuted instantiation: dtls_bad_ver_client_method
Unexecuted instantiation: dtlsv1_2_client_method
Unexecuted instantiation: DTLS_client_method
2409
2410
struct openssl_ssl_test_functions {
2411
    int (*p_ssl_init_wbio_buffer)(SSL_CONNECTION *s);
2412
};
2413
2414
const char *ssl_protocol_to_string(int version);
2415
2416
static ossl_inline int tls12_rpk_and_privkey(const SSL_CONNECTION *sc, int idx)
2417
0
{
2418
    /*
2419
     * This is to check for special cases when using RPK with just
2420
     * a private key, and NO CERTIFICATE
2421
     */
2422
0
    return ((sc->server && sc->ext.server_cert_type == TLSEXT_cert_type_rpk)
2423
0
               || (!sc->server && sc->ext.client_cert_type == TLSEXT_cert_type_rpk))
2424
0
        && sc->cert->pkeys[idx].privatekey != NULL
2425
0
        && sc->cert->pkeys[idx].x509 == NULL;
2426
0
}
Unexecuted instantiation: methods.c:tls12_rpk_and_privkey
Unexecuted instantiation: s3_lib.c:tls12_rpk_and_privkey
Unexecuted instantiation: s3_msg.c:tls12_rpk_and_privkey
Unexecuted instantiation: ssl_cert.c:tls12_rpk_and_privkey
Unexecuted instantiation: ssl_ciph.c:tls12_rpk_and_privkey
Unexecuted instantiation: ssl_init.c:tls12_rpk_and_privkey
Unexecuted instantiation: ssl_lib.c:tls12_rpk_and_privkey
Unexecuted instantiation: ssl_mcnf.c:tls12_rpk_and_privkey
Unexecuted instantiation: ssl_rsa.c:tls12_rpk_and_privkey
Unexecuted instantiation: ssl_sess.c:tls12_rpk_and_privkey
Unexecuted instantiation: ssl_stat.c:tls12_rpk_and_privkey
Unexecuted instantiation: t1_lib.c:tls12_rpk_and_privkey
Unexecuted instantiation: tls13_enc.c:tls12_rpk_and_privkey
Unexecuted instantiation: tls_depr.c:tls12_rpk_and_privkey
Unexecuted instantiation: tls_srp.c:tls12_rpk_and_privkey
Unexecuted instantiation: quic_impl.c:tls12_rpk_and_privkey
Unexecuted instantiation: quic_method.c:tls12_rpk_and_privkey
Unexecuted instantiation: quic_obj.c:tls12_rpk_and_privkey
Unexecuted instantiation: quic_port.c:tls12_rpk_and_privkey
Unexecuted instantiation: quic_record_rx.c:tls12_rpk_and_privkey
Unexecuted instantiation: quic_record_shared.c:tls12_rpk_and_privkey
Unexecuted instantiation: quic_record_tx.c:tls12_rpk_and_privkey
Unexecuted instantiation: quic_record_util.c:tls12_rpk_and_privkey
Unexecuted instantiation: quic_thread_assist.c:tls12_rpk_and_privkey
Unexecuted instantiation: quic_tls.c:tls12_rpk_and_privkey
Unexecuted instantiation: rec_layer_d1.c:tls12_rpk_and_privkey
Unexecuted instantiation: rec_layer_s3.c:tls12_rpk_and_privkey
Unexecuted instantiation: dtls_meth.c:tls12_rpk_and_privkey
Unexecuted instantiation: tls1_meth.c:tls12_rpk_and_privkey
Unexecuted instantiation: tls_common.c:tls12_rpk_and_privkey
Unexecuted instantiation: tls_multib.c:tls12_rpk_and_privkey
Unexecuted instantiation: tlsany_meth.c:tls12_rpk_and_privkey
Unexecuted instantiation: extensions.c:tls12_rpk_and_privkey
Unexecuted instantiation: extensions_clnt.c:tls12_rpk_and_privkey
Unexecuted instantiation: extensions_cust.c:tls12_rpk_and_privkey
Unexecuted instantiation: extensions_srvr.c:tls12_rpk_and_privkey
Unexecuted instantiation: statem.c:tls12_rpk_and_privkey
Unexecuted instantiation: statem_clnt.c:tls12_rpk_and_privkey
Unexecuted instantiation: statem_dtls.c:tls12_rpk_and_privkey
Unexecuted instantiation: statem_lib.c:tls12_rpk_and_privkey
Unexecuted instantiation: statem_srvr.c:tls12_rpk_and_privkey
Unexecuted instantiation: ech_helper.c:tls12_rpk_and_privkey
Unexecuted instantiation: ech_internal.c:tls12_rpk_and_privkey
Unexecuted instantiation: ech_store.c:tls12_rpk_and_privkey
Unexecuted instantiation: d1_lib.c:tls12_rpk_and_privkey
Unexecuted instantiation: d1_msg.c:tls12_rpk_and_privkey
Unexecuted instantiation: d1_srtp.c:tls12_rpk_and_privkey
Unexecuted instantiation: pqueue.c:tls12_rpk_and_privkey
Unexecuted instantiation: s3_enc.c:tls12_rpk_and_privkey
Unexecuted instantiation: ssl_asn1.c:tls12_rpk_and_privkey
Unexecuted instantiation: ssl_conf.c:tls12_rpk_and_privkey
Unexecuted instantiation: t1_enc.c:tls12_rpk_and_privkey
Unexecuted instantiation: quic_channel.c:tls12_rpk_and_privkey
Unexecuted instantiation: quic_engine.c:tls12_rpk_and_privkey
Unexecuted instantiation: quic_rx_depack.c:tls12_rpk_and_privkey
Unexecuted instantiation: tls13_meth.c:tls12_rpk_and_privkey
2427
2428
static ossl_inline int ssl_has_cert_type(const SSL_CONNECTION *sc, unsigned char ct)
2429
0
{
2430
0
    unsigned char *ptr;
2431
0
    size_t len;
2432
2433
0
    if (sc->server) {
2434
0
        ptr = sc->server_cert_type;
2435
0
        len = sc->server_cert_type_len;
2436
0
    } else {
2437
0
        ptr = sc->client_cert_type;
2438
0
        len = sc->client_cert_type_len;
2439
0
    }
2440
2441
0
    if (ptr == NULL)
2442
0
        return 0;
2443
2444
0
    return memchr(ptr, ct, len) != NULL;
2445
0
}
Unexecuted instantiation: methods.c:ssl_has_cert_type
Unexecuted instantiation: s3_lib.c:ssl_has_cert_type
Unexecuted instantiation: s3_msg.c:ssl_has_cert_type
Unexecuted instantiation: ssl_cert.c:ssl_has_cert_type
Unexecuted instantiation: ssl_ciph.c:ssl_has_cert_type
Unexecuted instantiation: ssl_init.c:ssl_has_cert_type
Unexecuted instantiation: ssl_lib.c:ssl_has_cert_type
Unexecuted instantiation: ssl_mcnf.c:ssl_has_cert_type
Unexecuted instantiation: ssl_rsa.c:ssl_has_cert_type
Unexecuted instantiation: ssl_sess.c:ssl_has_cert_type
Unexecuted instantiation: ssl_stat.c:ssl_has_cert_type
Unexecuted instantiation: t1_lib.c:ssl_has_cert_type
Unexecuted instantiation: tls13_enc.c:ssl_has_cert_type
Unexecuted instantiation: tls_depr.c:ssl_has_cert_type
Unexecuted instantiation: tls_srp.c:ssl_has_cert_type
Unexecuted instantiation: quic_impl.c:ssl_has_cert_type
Unexecuted instantiation: quic_method.c:ssl_has_cert_type
Unexecuted instantiation: quic_obj.c:ssl_has_cert_type
Unexecuted instantiation: quic_port.c:ssl_has_cert_type
Unexecuted instantiation: quic_record_rx.c:ssl_has_cert_type
Unexecuted instantiation: quic_record_shared.c:ssl_has_cert_type
Unexecuted instantiation: quic_record_tx.c:ssl_has_cert_type
Unexecuted instantiation: quic_record_util.c:ssl_has_cert_type
Unexecuted instantiation: quic_thread_assist.c:ssl_has_cert_type
Unexecuted instantiation: quic_tls.c:ssl_has_cert_type
Unexecuted instantiation: rec_layer_d1.c:ssl_has_cert_type
Unexecuted instantiation: rec_layer_s3.c:ssl_has_cert_type
Unexecuted instantiation: dtls_meth.c:ssl_has_cert_type
Unexecuted instantiation: tls1_meth.c:ssl_has_cert_type
Unexecuted instantiation: tls_common.c:ssl_has_cert_type
Unexecuted instantiation: tls_multib.c:ssl_has_cert_type
Unexecuted instantiation: tlsany_meth.c:ssl_has_cert_type
Unexecuted instantiation: extensions.c:ssl_has_cert_type
Unexecuted instantiation: extensions_clnt.c:ssl_has_cert_type
Unexecuted instantiation: extensions_cust.c:ssl_has_cert_type
Unexecuted instantiation: extensions_srvr.c:ssl_has_cert_type
Unexecuted instantiation: statem.c:ssl_has_cert_type
Unexecuted instantiation: statem_clnt.c:ssl_has_cert_type
Unexecuted instantiation: statem_dtls.c:ssl_has_cert_type
Unexecuted instantiation: statem_lib.c:ssl_has_cert_type
Unexecuted instantiation: statem_srvr.c:ssl_has_cert_type
Unexecuted instantiation: ech_helper.c:ssl_has_cert_type
Unexecuted instantiation: ech_internal.c:ssl_has_cert_type
Unexecuted instantiation: ech_store.c:ssl_has_cert_type
Unexecuted instantiation: d1_lib.c:ssl_has_cert_type
Unexecuted instantiation: d1_msg.c:ssl_has_cert_type
Unexecuted instantiation: d1_srtp.c:ssl_has_cert_type
Unexecuted instantiation: pqueue.c:ssl_has_cert_type
Unexecuted instantiation: s3_enc.c:ssl_has_cert_type
Unexecuted instantiation: ssl_asn1.c:ssl_has_cert_type
Unexecuted instantiation: ssl_conf.c:ssl_has_cert_type
Unexecuted instantiation: t1_enc.c:ssl_has_cert_type
Unexecuted instantiation: quic_channel.c:ssl_has_cert_type
Unexecuted instantiation: quic_engine.c:ssl_has_cert_type
Unexecuted instantiation: quic_rx_depack.c:ssl_has_cert_type
Unexecuted instantiation: tls13_meth.c:ssl_has_cert_type
2446
2447
/* Returns true if certificate and private key for 'idx' are present */
2448
static ossl_inline int ssl_has_cert(const SSL_CONNECTION *s, int idx)
2449
0
{
2450
0
    if (idx < 0 || idx >= (int)s->ssl_pkey_num)
2451
0
        return 0;
2452
2453
    /* If RPK is enabled for this SSL... only require private key */
2454
0
    if (ssl_has_cert_type(s, TLSEXT_cert_type_rpk))
2455
0
        return s->cert->pkeys[idx].privatekey != NULL;
2456
2457
0
    return s->cert->pkeys[idx].x509 != NULL
2458
0
        && s->cert->pkeys[idx].privatekey != NULL;
2459
0
}
Unexecuted instantiation: methods.c:ssl_has_cert
Unexecuted instantiation: s3_lib.c:ssl_has_cert
Unexecuted instantiation: s3_msg.c:ssl_has_cert
Unexecuted instantiation: ssl_cert.c:ssl_has_cert
Unexecuted instantiation: ssl_ciph.c:ssl_has_cert
Unexecuted instantiation: ssl_init.c:ssl_has_cert
Unexecuted instantiation: ssl_lib.c:ssl_has_cert
Unexecuted instantiation: ssl_mcnf.c:ssl_has_cert
Unexecuted instantiation: ssl_rsa.c:ssl_has_cert
Unexecuted instantiation: ssl_sess.c:ssl_has_cert
Unexecuted instantiation: ssl_stat.c:ssl_has_cert
Unexecuted instantiation: t1_lib.c:ssl_has_cert
Unexecuted instantiation: tls13_enc.c:ssl_has_cert
Unexecuted instantiation: tls_depr.c:ssl_has_cert
Unexecuted instantiation: tls_srp.c:ssl_has_cert
Unexecuted instantiation: quic_impl.c:ssl_has_cert
Unexecuted instantiation: quic_method.c:ssl_has_cert
Unexecuted instantiation: quic_obj.c:ssl_has_cert
Unexecuted instantiation: quic_port.c:ssl_has_cert
Unexecuted instantiation: quic_record_rx.c:ssl_has_cert
Unexecuted instantiation: quic_record_shared.c:ssl_has_cert
Unexecuted instantiation: quic_record_tx.c:ssl_has_cert
Unexecuted instantiation: quic_record_util.c:ssl_has_cert
Unexecuted instantiation: quic_thread_assist.c:ssl_has_cert
Unexecuted instantiation: quic_tls.c:ssl_has_cert
Unexecuted instantiation: rec_layer_d1.c:ssl_has_cert
Unexecuted instantiation: rec_layer_s3.c:ssl_has_cert
Unexecuted instantiation: dtls_meth.c:ssl_has_cert
Unexecuted instantiation: tls1_meth.c:ssl_has_cert
Unexecuted instantiation: tls_common.c:ssl_has_cert
Unexecuted instantiation: tls_multib.c:ssl_has_cert
Unexecuted instantiation: tlsany_meth.c:ssl_has_cert
Unexecuted instantiation: extensions.c:ssl_has_cert
Unexecuted instantiation: extensions_clnt.c:ssl_has_cert
Unexecuted instantiation: extensions_cust.c:ssl_has_cert
Unexecuted instantiation: extensions_srvr.c:ssl_has_cert
Unexecuted instantiation: statem.c:ssl_has_cert
Unexecuted instantiation: statem_clnt.c:ssl_has_cert
Unexecuted instantiation: statem_dtls.c:ssl_has_cert
Unexecuted instantiation: statem_lib.c:ssl_has_cert
Unexecuted instantiation: statem_srvr.c:ssl_has_cert
Unexecuted instantiation: ech_helper.c:ssl_has_cert
Unexecuted instantiation: ech_internal.c:ssl_has_cert
Unexecuted instantiation: ech_store.c:ssl_has_cert
Unexecuted instantiation: d1_lib.c:ssl_has_cert
Unexecuted instantiation: d1_msg.c:ssl_has_cert
Unexecuted instantiation: d1_srtp.c:ssl_has_cert
Unexecuted instantiation: pqueue.c:ssl_has_cert
Unexecuted instantiation: s3_enc.c:ssl_has_cert
Unexecuted instantiation: ssl_asn1.c:ssl_has_cert
Unexecuted instantiation: ssl_conf.c:ssl_has_cert
Unexecuted instantiation: t1_enc.c:ssl_has_cert
Unexecuted instantiation: quic_channel.c:ssl_has_cert
Unexecuted instantiation: quic_engine.c:ssl_has_cert
Unexecuted instantiation: quic_rx_depack.c:ssl_has_cert
Unexecuted instantiation: tls13_meth.c:ssl_has_cert
2460
2461
static ossl_inline void tls1_get_peer_groups(SSL_CONNECTION *s,
2462
    const uint16_t **pgroups,
2463
    size_t *pgroupslen)
2464
0
{
2465
0
    *pgroups = s->ext.peer_supportedgroups;
2466
0
    *pgroupslen = s->ext.peer_supportedgroups_len;
2467
0
}
Unexecuted instantiation: methods.c:tls1_get_peer_groups
Unexecuted instantiation: s3_lib.c:tls1_get_peer_groups
Unexecuted instantiation: s3_msg.c:tls1_get_peer_groups
Unexecuted instantiation: ssl_cert.c:tls1_get_peer_groups
Unexecuted instantiation: ssl_ciph.c:tls1_get_peer_groups
Unexecuted instantiation: ssl_init.c:tls1_get_peer_groups
Unexecuted instantiation: ssl_lib.c:tls1_get_peer_groups
Unexecuted instantiation: ssl_mcnf.c:tls1_get_peer_groups
Unexecuted instantiation: ssl_rsa.c:tls1_get_peer_groups
Unexecuted instantiation: ssl_sess.c:tls1_get_peer_groups
Unexecuted instantiation: ssl_stat.c:tls1_get_peer_groups
Unexecuted instantiation: t1_lib.c:tls1_get_peer_groups
Unexecuted instantiation: tls13_enc.c:tls1_get_peer_groups
Unexecuted instantiation: tls_depr.c:tls1_get_peer_groups
Unexecuted instantiation: tls_srp.c:tls1_get_peer_groups
Unexecuted instantiation: quic_impl.c:tls1_get_peer_groups
Unexecuted instantiation: quic_method.c:tls1_get_peer_groups
Unexecuted instantiation: quic_obj.c:tls1_get_peer_groups
Unexecuted instantiation: quic_port.c:tls1_get_peer_groups
Unexecuted instantiation: quic_record_rx.c:tls1_get_peer_groups
Unexecuted instantiation: quic_record_shared.c:tls1_get_peer_groups
Unexecuted instantiation: quic_record_tx.c:tls1_get_peer_groups
Unexecuted instantiation: quic_record_util.c:tls1_get_peer_groups
Unexecuted instantiation: quic_thread_assist.c:tls1_get_peer_groups
Unexecuted instantiation: quic_tls.c:tls1_get_peer_groups
Unexecuted instantiation: rec_layer_d1.c:tls1_get_peer_groups
Unexecuted instantiation: rec_layer_s3.c:tls1_get_peer_groups
Unexecuted instantiation: dtls_meth.c:tls1_get_peer_groups
Unexecuted instantiation: tls1_meth.c:tls1_get_peer_groups
Unexecuted instantiation: tls_common.c:tls1_get_peer_groups
Unexecuted instantiation: tls_multib.c:tls1_get_peer_groups
Unexecuted instantiation: tlsany_meth.c:tls1_get_peer_groups
Unexecuted instantiation: extensions.c:tls1_get_peer_groups
Unexecuted instantiation: extensions_clnt.c:tls1_get_peer_groups
Unexecuted instantiation: extensions_cust.c:tls1_get_peer_groups
Unexecuted instantiation: extensions_srvr.c:tls1_get_peer_groups
Unexecuted instantiation: statem.c:tls1_get_peer_groups
Unexecuted instantiation: statem_clnt.c:tls1_get_peer_groups
Unexecuted instantiation: statem_dtls.c:tls1_get_peer_groups
Unexecuted instantiation: statem_lib.c:tls1_get_peer_groups
Unexecuted instantiation: statem_srvr.c:tls1_get_peer_groups
Unexecuted instantiation: ech_helper.c:tls1_get_peer_groups
Unexecuted instantiation: ech_internal.c:tls1_get_peer_groups
Unexecuted instantiation: ech_store.c:tls1_get_peer_groups
Unexecuted instantiation: d1_lib.c:tls1_get_peer_groups
Unexecuted instantiation: d1_msg.c:tls1_get_peer_groups
Unexecuted instantiation: d1_srtp.c:tls1_get_peer_groups
Unexecuted instantiation: pqueue.c:tls1_get_peer_groups
Unexecuted instantiation: s3_enc.c:tls1_get_peer_groups
Unexecuted instantiation: ssl_asn1.c:tls1_get_peer_groups
Unexecuted instantiation: ssl_conf.c:tls1_get_peer_groups
Unexecuted instantiation: t1_enc.c:tls1_get_peer_groups
Unexecuted instantiation: quic_channel.c:tls1_get_peer_groups
Unexecuted instantiation: quic_engine.c:tls1_get_peer_groups
Unexecuted instantiation: quic_rx_depack.c:tls1_get_peer_groups
Unexecuted instantiation: tls13_meth.c:tls1_get_peer_groups
2468
2469
#ifndef OPENSSL_UNIT_TEST
2470
2471
__owur int ossl_ssl_init(SSL *ssl, SSL_CTX *ctx, const SSL_METHOD *method,
2472
    int type);
2473
__owur SSL *ossl_ssl_connection_new_int(SSL_CTX *ctx, SSL *user_ssl,
2474
    const SSL_METHOD *method);
2475
__owur SSL *ossl_ssl_connection_new(SSL_CTX *ctx);
2476
void ossl_ssl_connection_free(SSL *ssl);
2477
__owur int ossl_ssl_connection_reset(SSL *ssl);
2478
2479
__owur int ssl_read_internal(SSL *s, void *buf, size_t num, size_t *readbytes);
2480
__owur int ssl_write_internal(SSL *s, const void *buf, size_t num,
2481
    uint64_t flags, size_t *written);
2482
int ssl_clear_bad_session(SSL_CONNECTION *s);
2483
__owur CERT *ssl_cert_new(size_t ssl_pkey_num);
2484
__owur CERT *ssl_cert_dup(CERT *cert);
2485
void ssl_cert_clear_certs(CERT *c);
2486
void ssl_cert_free(CERT *c);
2487
__owur int ssl_generate_session_id(SSL_CONNECTION *s, SSL_SESSION *ss);
2488
__owur int ssl_get_new_session(SSL_CONNECTION *s, int session);
2489
__owur SSL_SESSION *lookup_sess_in_cache(SSL_CONNECTION *s,
2490
    const unsigned char *sess_id,
2491
    size_t sess_id_len);
2492
__owur int ssl_get_prev_session(SSL_CONNECTION *s, CLIENTHELLO_MSG *hello);
2493
__owur SSL_SESSION *ssl_session_dup(const SSL_SESSION *src, int ticket);
2494
__owur int ssl_cipher_id_cmp(const SSL_CIPHER *a, const SSL_CIPHER *b);
2495
DECLARE_OBJ_BSEARCH_GLOBAL_CMP_FN(SSL_CIPHER, SSL_CIPHER, ssl_cipher_id);
2496
__owur int ssl_cipher_ptr_id_cmp(const SSL_CIPHER *const *ap,
2497
    const SSL_CIPHER *const *bp);
2498
__owur STACK_OF(SSL_CIPHER) *ssl_create_cipher_list(SSL_CTX *ctx,
2499
    STACK_OF(SSL_CIPHER) *tls13_ciphersuites,
2500
    STACK_OF(SSL_CIPHER) **cipher_list,
2501
    STACK_OF(SSL_CIPHER) **cipher_list_by_id,
2502
    const char *rule_str,
2503
    CERT *c);
2504
__owur int ssl_cache_cipherlist(SSL_CONNECTION *s, PACKET *cipher_suites);
2505
__owur int ossl_bytes_to_cipher_list(SSL_CONNECTION *s, PACKET *cipher_suites,
2506
    STACK_OF(SSL_CIPHER) **skp,
2507
    STACK_OF(SSL_CIPHER) **scsvs,
2508
    int fatal);
2509
void ssl_update_cache(SSL_CONNECTION *s, int mode);
2510
__owur int ssl_cipher_get_evp_cipher(SSL_CTX *ctx, const SSL_CIPHER *sslc,
2511
    const EVP_CIPHER **enc);
2512
__owur int ssl_cipher_get_evp_md_mac(SSL_CTX *ctx, const SSL_CIPHER *sslc,
2513
    const EVP_MD **md,
2514
    int *mac_pkey_type, size_t *mac_secret_size);
2515
__owur int ssl_cipher_get_evp(SSL_CTX *ctxc, const SSL_SESSION *s,
2516
    const EVP_CIPHER **enc, const EVP_MD **md,
2517
    int *mac_pkey_type, size_t *mac_secret_size,
2518
    SSL_COMP **comp, int use_etm);
2519
__owur int ssl_cipher_get_overhead(const SSL_CIPHER *c, size_t *mac_overhead,
2520
    size_t *int_overhead, size_t *blocksize,
2521
    size_t *ext_overhead);
2522
__owur int ssl_cert_is_disabled(SSL_CTX *ctx, size_t idx);
2523
__owur const SSL_CIPHER *ssl_get_cipher_by_char(SSL_CONNECTION *ssl,
2524
    const unsigned char *ptr,
2525
    int all);
2526
__owur int ssl_cert_set0_chain(SSL_CONNECTION *s, SSL_CTX *ctx,
2527
    STACK_OF(X509) *chain);
2528
__owur int ssl_cert_set1_chain(SSL_CONNECTION *s, SSL_CTX *ctx,
2529
    STACK_OF(X509) *chain);
2530
__owur int ssl_cert_add0_chain_cert(SSL_CONNECTION *s, SSL_CTX *ctx, X509 *x);
2531
__owur int ssl_cert_add1_chain_cert(SSL_CONNECTION *s, SSL_CTX *ctx, X509 *x);
2532
__owur int ssl_cert_select_current(CERT *c, X509 *x);
2533
__owur int ssl_cert_set_current(CERT *c, long arg);
2534
void ssl_cert_set_cert_cb(CERT *c, int (*cb)(SSL *ssl, void *arg), void *arg);
2535
2536
__owur int ssl_verify_cert_chain(SSL_CONNECTION *s, STACK_OF(X509) *sk);
2537
__owur int ssl_verify_rpk(SSL_CONNECTION *s, EVP_PKEY *rpk);
2538
__owur int ssl_build_cert_chain(SSL_CONNECTION *s, SSL_CTX *ctx, int flags);
2539
__owur int ssl_cert_set_cert_store(CERT *c, X509_STORE *store, int chain,
2540
    int ref);
2541
__owur int ssl_cert_get_cert_store(CERT *c, X509_STORE **pstore, int chain);
2542
2543
__owur int ssl_security(const SSL_CONNECTION *s, int op, int bits, int nid,
2544
    void *other);
2545
__owur int ssl_ctx_security(const SSL_CTX *ctx, int op, int bits, int nid,
2546
    void *other);
2547
int ssl_get_security_level_bits(const SSL *s, const SSL_CTX *ctx, int *levelp);
2548
2549
__owur int ssl_cert_lookup_by_nid(int nid, size_t *pidx, SSL_CTX *ctx);
2550
__owur const SSL_CERT_LOOKUP *ssl_cert_lookup_by_pkey(const EVP_PKEY *pk,
2551
    size_t *pidx,
2552
    SSL_CTX *ctx);
2553
__owur const SSL_CERT_LOOKUP *ssl_cert_lookup_by_idx(size_t idx, SSL_CTX *ctx);
2554
2555
int ssl_undefined_function(SSL *s);
2556
__owur int ssl_undefined_void_function(void);
2557
__owur int ssl_get_server_cert_serverinfo(SSL_CONNECTION *s,
2558
    const unsigned char **serverinfo,
2559
    size_t *serverinfo_length);
2560
void ssl_set_masks(SSL_CONNECTION *s);
2561
__owur STACK_OF(SSL_CIPHER) *ssl_get_ciphers_by_id(SSL_CONNECTION *sc);
2562
__owur int ssl_x509err2alert(int type);
2563
void ssl_sort_cipher_list(void);
2564
int ssl_load_ciphers(SSL_CTX *ctx);
2565
int ssl_cipher_list_to_bytes(SSL_CONNECTION *s, STACK_OF(SSL_CIPHER) *sk,
2566
    WPACKET *pkt);
2567
uint16_t ossl_grease_value(SSL_CONNECTION *s, int index);
2568
static ossl_inline int ossl_is_grease_value(uint16_t val)
2569
0
{
2570
0
    return (val & 0x0f0f) == 0x0a0a && (val >> 8) == (val & 0xff);
2571
0
}
Unexecuted instantiation: methods.c:ossl_is_grease_value
Unexecuted instantiation: s3_lib.c:ossl_is_grease_value
Unexecuted instantiation: s3_msg.c:ossl_is_grease_value
Unexecuted instantiation: ssl_cert.c:ossl_is_grease_value
Unexecuted instantiation: ssl_ciph.c:ossl_is_grease_value
Unexecuted instantiation: ssl_init.c:ossl_is_grease_value
Unexecuted instantiation: ssl_lib.c:ossl_is_grease_value
Unexecuted instantiation: ssl_mcnf.c:ossl_is_grease_value
Unexecuted instantiation: ssl_rsa.c:ossl_is_grease_value
Unexecuted instantiation: ssl_sess.c:ossl_is_grease_value
Unexecuted instantiation: ssl_stat.c:ossl_is_grease_value
Unexecuted instantiation: t1_lib.c:ossl_is_grease_value
Unexecuted instantiation: tls13_enc.c:ossl_is_grease_value
Unexecuted instantiation: tls_depr.c:ossl_is_grease_value
Unexecuted instantiation: tls_srp.c:ossl_is_grease_value
Unexecuted instantiation: quic_impl.c:ossl_is_grease_value
Unexecuted instantiation: quic_method.c:ossl_is_grease_value
Unexecuted instantiation: quic_obj.c:ossl_is_grease_value
Unexecuted instantiation: quic_port.c:ossl_is_grease_value
Unexecuted instantiation: quic_record_rx.c:ossl_is_grease_value
Unexecuted instantiation: quic_record_shared.c:ossl_is_grease_value
Unexecuted instantiation: quic_record_tx.c:ossl_is_grease_value
Unexecuted instantiation: quic_record_util.c:ossl_is_grease_value
Unexecuted instantiation: quic_thread_assist.c:ossl_is_grease_value
Unexecuted instantiation: quic_tls.c:ossl_is_grease_value
Unexecuted instantiation: rec_layer_d1.c:ossl_is_grease_value
Unexecuted instantiation: rec_layer_s3.c:ossl_is_grease_value
Unexecuted instantiation: dtls_meth.c:ossl_is_grease_value
Unexecuted instantiation: tls1_meth.c:ossl_is_grease_value
Unexecuted instantiation: tls_common.c:ossl_is_grease_value
Unexecuted instantiation: tls_multib.c:ossl_is_grease_value
Unexecuted instantiation: tlsany_meth.c:ossl_is_grease_value
Unexecuted instantiation: extensions.c:ossl_is_grease_value
Unexecuted instantiation: extensions_clnt.c:ossl_is_grease_value
Unexecuted instantiation: extensions_cust.c:ossl_is_grease_value
Unexecuted instantiation: extensions_srvr.c:ossl_is_grease_value
Unexecuted instantiation: statem.c:ossl_is_grease_value
Unexecuted instantiation: statem_clnt.c:ossl_is_grease_value
Unexecuted instantiation: statem_dtls.c:ossl_is_grease_value
Unexecuted instantiation: statem_lib.c:ossl_is_grease_value
Unexecuted instantiation: statem_srvr.c:ossl_is_grease_value
Unexecuted instantiation: ech_helper.c:ossl_is_grease_value
Unexecuted instantiation: ech_internal.c:ossl_is_grease_value
Unexecuted instantiation: ech_store.c:ossl_is_grease_value
Unexecuted instantiation: d1_lib.c:ossl_is_grease_value
Unexecuted instantiation: d1_msg.c:ossl_is_grease_value
Unexecuted instantiation: d1_srtp.c:ossl_is_grease_value
Unexecuted instantiation: pqueue.c:ossl_is_grease_value
Unexecuted instantiation: s3_enc.c:ossl_is_grease_value
Unexecuted instantiation: ssl_asn1.c:ossl_is_grease_value
Unexecuted instantiation: ssl_conf.c:ossl_is_grease_value
Unexecuted instantiation: t1_enc.c:ossl_is_grease_value
Unexecuted instantiation: quic_channel.c:ossl_is_grease_value
Unexecuted instantiation: quic_engine.c:ossl_is_grease_value
Unexecuted instantiation: quic_rx_depack.c:ossl_is_grease_value
Unexecuted instantiation: tls13_meth.c:ossl_is_grease_value
2572
__owur int ssl_setup_sigalgs(SSL_CTX *ctx);
2573
int ssl_load_groups(SSL_CTX *ctx);
2574
int ssl_load_sigalgs(SSL_CTX *ctx);
2575
__owur int ssl_fill_hello_random(SSL_CONNECTION *s, int server,
2576
    unsigned char *field, size_t len,
2577
    DOWNGRADE dgrd);
2578
__owur int ssl_generate_master_secret(SSL_CONNECTION *s, unsigned char *pms,
2579
    size_t pmslen, int free_pms);
2580
__owur EVP_PKEY *ssl_generate_pkey(SSL_CONNECTION *s, EVP_PKEY *pm);
2581
__owur int ssl_gensecret(SSL_CONNECTION *s, unsigned char *pms, size_t pmslen);
2582
__owur int ssl_derive(SSL_CONNECTION *s, EVP_PKEY *privkey, EVP_PKEY *pubkey,
2583
    int genmaster);
2584
__owur int ssl_decapsulate(SSL_CONNECTION *s, EVP_PKEY *privkey,
2585
    const unsigned char *ct, size_t ctlen,
2586
    int gensecret);
2587
__owur int ssl_encapsulate(SSL_CONNECTION *s, EVP_PKEY *pubkey,
2588
    unsigned char **ctp, size_t *ctlenp,
2589
    int gensecret);
2590
__owur EVP_PKEY *ssl_dh_to_pkey(DH *dh);
2591
__owur int ssl_set_tmp_ecdh_groups(uint16_t **pext, size_t *pextlen,
2592
    uint16_t **ksext, size_t *ksextlen,
2593
    size_t **tplext, size_t *tplextlen,
2594
    void *key);
2595
__owur unsigned int ssl_get_max_send_fragment(const SSL_CONNECTION *sc);
2596
__owur unsigned int ssl_get_split_send_fragment(const SSL_CONNECTION *sc);
2597
2598
__owur const SSL_CIPHER *ssl3_get_cipher_by_id(uint32_t id);
2599
__owur const SSL_CIPHER *ssl3_get_cipher_by_std_name(const char *stdname);
2600
__owur const SSL_CIPHER *ssl3_get_tls13_cipher_by_std_name(const char *stdname);
2601
__owur const SSL_CIPHER *ssl3_get_cipher_by_char(const unsigned char *p);
2602
__owur int ssl3_put_cipher_by_char(const SSL_CIPHER *c, WPACKET *pkt,
2603
    size_t *len);
2604
int ssl3_init_finished_mac(SSL_CONNECTION *s);
2605
void ssl3_cleanup_key_block(SSL_CONNECTION *s);
2606
__owur int ssl3_do_write(SSL_CONNECTION *s, uint8_t type);
2607
int ssl3_send_alert(SSL_CONNECTION *s, int level, int desc);
2608
__owur int ssl3_get_req_cert_type(SSL_CONNECTION *s, WPACKET *pkt);
2609
__owur int ssl3_num_ciphers(void);
2610
__owur const SSL_CIPHER *ssl3_get_cipher(unsigned int u);
2611
int ssl3_renegotiate(SSL *ssl);
2612
int ssl3_renegotiate_check(SSL *ssl, int initok);
2613
__owur int ssl3_dispatch_alert(SSL *s);
2614
__owur int ssl3_finish_mac(SSL_CONNECTION *s, const unsigned char *buf,
2615
    size_t len);
2616
void ssl3_free_digest_list(SSL_CONNECTION *s);
2617
__owur unsigned long ssl3_output_cert_chain(SSL_CONNECTION *s, WPACKET *pkt,
2618
    CERT_PKEY *cpk, int for_comp);
2619
__owur const SSL_CIPHER *ssl3_choose_cipher(SSL_CONNECTION *s,
2620
    STACK_OF(SSL_CIPHER) *clnt,
2621
    STACK_OF(SSL_CIPHER) *srvr);
2622
__owur int ssl3_digest_cached_records(SSL_CONNECTION *s, int keep);
2623
__owur int ssl3_new(SSL *s);
2624
void ssl3_free(SSL *s);
2625
__owur int ssl3_read(SSL *s, void *buf, size_t len, size_t *readbytes);
2626
__owur int ssl3_peek(SSL *s, void *buf, size_t len, size_t *readbytes);
2627
__owur int ssl3_write(SSL *s, const void *buf, size_t len, size_t *written);
2628
__owur int ssl3_shutdown(SSL *s);
2629
int ssl3_clear(SSL *s);
2630
__owur long ssl3_ctrl(SSL *s, int cmd, long larg, void *parg);
2631
__owur long ssl3_ctx_ctrl(SSL_CTX *s, int cmd, long larg, void *parg);
2632
__owur long ssl3_callback_ctrl(SSL *s, int cmd, void (*fp)(void));
2633
__owur long ssl3_ctx_callback_ctrl(SSL_CTX *s, int cmd, void (*fp)(void));
2634
2635
__owur int ssl3_do_change_cipher_spec(SSL_CONNECTION *s);
2636
2637
__owur int ssl3_set_handshake_header(SSL_CONNECTION *s, WPACKET *pkt,
2638
    int htype);
2639
__owur int tls_close_construct_packet(SSL_CONNECTION *s, WPACKET *pkt, int htype);
2640
__owur int tls_setup_handshake(SSL_CONNECTION *s);
2641
__owur int dtls1_set_handshake_header(SSL_CONNECTION *s, WPACKET *pkt, int htype);
2642
__owur int dtls1_close_construct_packet(SSL_CONNECTION *s, WPACKET *pkt, int htype);
2643
__owur int ssl3_handshake_write(SSL_CONNECTION *s);
2644
2645
__owur int ssl_allow_compression(SSL_CONNECTION *s);
2646
2647
__owur int ssl_version_cmp(const SSL_CONNECTION *s, int versiona, int versionb);
2648
__owur int ssl_version_supported(const SSL_CONNECTION *s, int version,
2649
    const SSL_METHOD **meth);
2650
2651
__owur int ssl_set_client_hello_version(SSL_CONNECTION *s);
2652
__owur int ssl_check_version_downgrade(SSL_CONNECTION *s);
2653
__owur int ssl_set_version_bound(int method_version, int version, int *bound);
2654
__owur int ssl_choose_server_version(SSL_CONNECTION *s, CLIENTHELLO_MSG *hello,
2655
    DOWNGRADE *dgrd);
2656
__owur int ssl_choose_client_version(SSL_CONNECTION *s, int version,
2657
    RAW_EXTENSION *extensions);
2658
__owur int ssl_get_min_max_version(const SSL_CONNECTION *s, int *min_version,
2659
    int *max_version, int *real_max);
2660
2661
__owur OSSL_TIME tls1_default_timeout(void);
2662
__owur int dtls1_do_write(SSL_CONNECTION *s, uint8_t type);
2663
void dtls1_set_message_header(SSL_CONNECTION *s,
2664
    unsigned char mt,
2665
    size_t len,
2666
    size_t frag_off, size_t frag_len);
2667
2668
int dtls1_write_app_data_bytes(SSL *s, uint8_t type, const void *buf_,
2669
    size_t len, size_t *written);
2670
2671
__owur int dtls1_read_failed(SSL_CONNECTION *s, int code);
2672
__owur int dtls1_buffer_message(SSL_CONNECTION *s, int ccs);
2673
__owur int dtls1_retransmit_message(SSL_CONNECTION *s, unsigned short seq,
2674
    int *found);
2675
__owur int dtls1_get_queue_priority(unsigned short seq, int is_ccs);
2676
int dtls1_retransmit_buffered_messages(SSL_CONNECTION *s);
2677
void dtls1_clear_received_buffer(SSL_CONNECTION *s);
2678
void dtls1_clear_sent_buffer(SSL_CONNECTION *s);
2679
void dtls1_get_message_header(const unsigned char *data,
2680
    struct hm_header_st *msg_hdr);
2681
__owur OSSL_TIME dtls1_default_timeout(void);
2682
__owur int dtls1_get_timeout(const SSL_CONNECTION *s, OSSL_TIME *timeleft);
2683
__owur int dtls1_check_timeout_num(SSL_CONNECTION *s);
2684
__owur int dtls1_handle_timeout(SSL_CONNECTION *s);
2685
void dtls1_start_timer(SSL_CONNECTION *s);
2686
void dtls1_stop_timer(SSL_CONNECTION *s);
2687
__owur int dtls1_is_timer_expired(SSL_CONNECTION *s);
2688
__owur int dtls_raw_hello_verify_request(WPACKET *pkt, unsigned char *cookie,
2689
    size_t cookie_len);
2690
__owur size_t dtls1_min_mtu(SSL_CONNECTION *s);
2691
void dtls1_hm_fragment_free(hm_fragment *frag);
2692
__owur int dtls1_query_mtu(SSL_CONNECTION *s);
2693
2694
__owur int tls1_new(SSL *s);
2695
void tls1_free(SSL *s);
2696
int tls1_clear(SSL *s);
2697
2698
__owur int dtls1_new(SSL *s);
2699
void dtls1_free(SSL *s);
2700
int dtls1_clear(SSL *s);
2701
long dtls1_ctrl(SSL *s, int cmd, long larg, void *parg);
2702
__owur int dtls1_shutdown(SSL *s);
2703
2704
__owur int dtls1_dispatch_alert(SSL *s);
2705
2706
__owur int ssl_init_wbio_buffer(SSL_CONNECTION *s);
2707
int ssl_free_wbio_buffer(SSL_CONNECTION *s);
2708
2709
__owur int tls1_change_cipher_state(SSL_CONNECTION *s, int which);
2710
__owur int tls1_setup_key_block(SSL_CONNECTION *s);
2711
__owur size_t tls1_final_finish_mac(SSL_CONNECTION *s, const char *str,
2712
    size_t slen, unsigned char *p);
2713
__owur int tls1_generate_master_secret(SSL_CONNECTION *s, unsigned char *out,
2714
    unsigned char *p, size_t len,
2715
    size_t *secret_size);
2716
__owur int tls13_setup_key_block(SSL_CONNECTION *s);
2717
__owur size_t tls13_final_finish_mac(SSL_CONNECTION *s, const char *str, size_t slen,
2718
    unsigned char *p);
2719
__owur int tls13_store_handshake_traffic_hash(SSL_CONNECTION *s);
2720
__owur int tls13_store_server_finished_hash(SSL_CONNECTION *s);
2721
__owur int tls13_change_cipher_state(SSL_CONNECTION *s, int which);
2722
__owur int tls13_update_key(SSL_CONNECTION *s, int send);
2723
__owur int tls13_hkdf_expand(SSL_CONNECTION *s,
2724
    const EVP_MD *md,
2725
    const unsigned char *secret,
2726
    const unsigned char *label, size_t labellen,
2727
    const unsigned char *data, size_t datalen,
2728
    unsigned char *out, size_t outlen, int fatal);
2729
__owur int tls13_hkdf_expand_ex(OSSL_LIB_CTX *libctx, const char *propq,
2730
    const EVP_MD *md,
2731
    const unsigned char *secret,
2732
    const unsigned char *label, size_t labellen,
2733
    const unsigned char *data, size_t datalen,
2734
    unsigned char *out, size_t outlen,
2735
    int raise_error);
2736
__owur int tls13_derive_key(SSL_CONNECTION *s, const EVP_MD *md,
2737
    const unsigned char *secret, unsigned char *key,
2738
    size_t keylen);
2739
__owur int tls13_derive_iv(SSL_CONNECTION *s, const EVP_MD *md,
2740
    const unsigned char *secret, unsigned char *iv,
2741
    size_t ivlen);
2742
__owur int tls13_derive_finishedkey(SSL_CONNECTION *s, const EVP_MD *md,
2743
    const unsigned char *secret,
2744
    unsigned char *fin, size_t finlen);
2745
int tls13_generate_secret(SSL_CONNECTION *s, const EVP_MD *md,
2746
    const unsigned char *prevsecret,
2747
    const unsigned char *insecret,
2748
    size_t insecretlen,
2749
    unsigned char *outsecret);
2750
__owur int tls13_generate_handshake_secret(SSL_CONNECTION *s,
2751
    const unsigned char *insecret,
2752
    size_t insecretlen);
2753
__owur int tls13_generate_master_secret(SSL_CONNECTION *s, unsigned char *out,
2754
    unsigned char *prev, size_t prevlen,
2755
    size_t *secret_size);
2756
__owur int tls1_export_keying_material(SSL_CONNECTION *s,
2757
    unsigned char *out, size_t olen,
2758
    const char *label, size_t llen,
2759
    const unsigned char *p, size_t plen,
2760
    int use_context);
2761
__owur int tls13_export_keying_material(SSL_CONNECTION *s,
2762
    unsigned char *out, size_t olen,
2763
    const char *label, size_t llen,
2764
    const unsigned char *context,
2765
    size_t contextlen, int use_context);
2766
__owur int tls13_export_keying_material_early(SSL_CONNECTION *s,
2767
    unsigned char *out, size_t olen,
2768
    const char *label, size_t llen,
2769
    const unsigned char *context,
2770
    size_t contextlen);
2771
__owur int tls1_alert_code(int code);
2772
__owur int tls13_alert_code(int code);
2773
2774
__owur int ssl_check_srvr_ecc_cert_and_alg(X509 *x, SSL_CONNECTION *s);
2775
2776
SSL_COMP *ssl3_comp_find(STACK_OF(SSL_COMP) *sk, int n);
2777
2778
0
#define TLS1_GROUPS_RETURN_NUMBER -1
2779
0
#define TLS1_GROUPS_RETURN_TMP_ID -2
2780
0
#define TLS1_GROUPS_FFDHE_GROUPS 0
2781
0
#define TLS1_GROUPS_NON_FFDHE_GROUPS 1
2782
0
#define TLS1_GROUPS_ALL_GROUPS 2
2783
2784
__owur const TLS_GROUP_INFO *tls1_group_id_lookup(SSL_CTX *ctx, uint16_t curve_id);
2785
__owur const char *tls1_group_id2name(SSL_CTX *ctx, uint16_t group_id);
2786
__owur int tls1_group_id2nid(uint16_t group_id, int include_unknown);
2787
__owur uint16_t tls1_nid2group_id(int nid);
2788
__owur int tls1_check_group_id(SSL_CONNECTION *s, uint16_t group_id,
2789
    int check_own_curves);
2790
__owur int tls1_get0_implemented_groups(int min_proto_version,
2791
    int max_proto_version,
2792
    TLS_GROUP_INFO *grps,
2793
    size_t num, long all,
2794
    STACK_OF(OPENSSL_CSTRING) *out);
2795
__owur uint16_t tls1_shared_group(SSL_CONNECTION *s, int nmatch, int groups);
2796
__owur int tls1_set_groups(uint16_t **grpext, size_t *grpextlen,
2797
    uint16_t **ksext, size_t *ksextlen,
2798
    size_t **tplext, size_t *tplextlen,
2799
    int *curves, size_t ncurves);
2800
__owur int tls1_set_groups_list(SSL_CTX *ctx,
2801
    uint16_t **grpext, size_t *grpextlen,
2802
    uint16_t **ksext, size_t *ksextlen,
2803
    size_t **tplext, size_t *tplextlen,
2804
    const char *str);
2805
__owur EVP_PKEY *ssl_generate_pkey_group(SSL_CONNECTION *s, uint16_t id);
2806
__owur int tls_valid_group(SSL_CONNECTION *s, uint16_t group_id, int minversion,
2807
    int maxversion, int *okfortls13, const TLS_GROUP_INFO **giptr);
2808
__owur EVP_PKEY *ssl_generate_param_group(SSL_CONNECTION *s, uint16_t id);
2809
void tls1_get_formatlist(SSL_CONNECTION *s, const unsigned char **pformats,
2810
    size_t *num_formats);
2811
__owur int tls1_check_ffdhe_tmp_key(SSL_CONNECTION *s, unsigned long id);
2812
__owur int tls1_check_ec_tmp_key(SSL_CONNECTION *s, unsigned long id);
2813
2814
__owur int tls_group_allowed(SSL_CONNECTION *s, uint16_t curve, int op);
2815
void tls1_get_supported_groups(SSL_CONNECTION *s, const uint16_t **pgroups,
2816
    size_t *pgroupslen);
2817
void tls1_get_requested_keyshare_groups(SSL_CONNECTION *s, const uint16_t **pgroups,
2818
    size_t *pgroupslen);
2819
void tls1_get_group_tuples(SSL_CONNECTION *s, const size_t **ptuples,
2820
    size_t *ptupleslen);
2821
2822
__owur int tls1_set_server_sigalgs(SSL_CONNECTION *s);
2823
2824
__owur SSL_TICKET_STATUS tls_get_ticket_from_client(SSL_CONNECTION *s,
2825
    CLIENTHELLO_MSG *hello,
2826
    SSL_SESSION **ret);
2827
__owur SSL_TICKET_STATUS tls_decrypt_ticket(SSL_CONNECTION *s,
2828
    const unsigned char *etick,
2829
    size_t eticklen,
2830
    const unsigned char *sess_id,
2831
    size_t sesslen, SSL_SESSION **psess);
2832
2833
__owur int tls_use_ticket(SSL_CONNECTION *s);
2834
2835
void ssl_set_sig_mask(uint32_t *pmask_a, SSL_CONNECTION *s, int op);
2836
2837
__owur int tls1_set_sigalgs_list(SSL_CTX *ctx, CERT *c, const char *str, int client);
2838
__owur int tls1_set_raw_sigalgs(CERT *c, const uint16_t *psigs, size_t salglen,
2839
    int client);
2840
__owur int tls1_set_sigalgs(CERT *c, const int *salg, size_t salglen,
2841
    int client);
2842
int tls1_check_chain(SSL_CONNECTION *s, X509 *x, EVP_PKEY *pk,
2843
    STACK_OF(X509) *chain, int idx);
2844
void tls1_set_cert_validity(SSL_CONNECTION *s);
2845
2846
#ifndef OPENSSL_NO_CT
2847
__owur int ssl_validate_ct(SSL_CONNECTION *s);
2848
#endif
2849
2850
__owur EVP_PKEY *ssl_get_auto_dh(SSL_CONNECTION *s);
2851
2852
__owur int ssl_security_cert(SSL_CONNECTION *s, SSL_CTX *ctx, X509 *x, int is_ee);
2853
__owur int ssl_security_cert_chain(SSL_CONNECTION *s, STACK_OF(X509) *sk,
2854
    X509 *ex);
2855
2856
int tls_choose_sigalg(SSL_CONNECTION *s, int fatalerrs);
2857
2858
__owur long ssl_get_algorithm2(SSL_CONNECTION *s);
2859
__owur int tls12_copy_sigalgs(SSL_CONNECTION *s, WPACKET *pkt,
2860
    const uint16_t *psig, size_t psiglen);
2861
__owur int tls1_save_u16(PACKET *pkt, uint16_t **pdest, size_t *pdestlen, size_t maxnum);
2862
__owur int tls1_save_sigalgs(SSL_CONNECTION *s, PACKET *pkt, int cert);
2863
__owur int tls1_process_sigalgs(SSL_CONNECTION *s);
2864
__owur int tls1_set_peer_legacy_sigalg(SSL_CONNECTION *s, const EVP_PKEY *pkey);
2865
__owur int tls1_lookup_md(SSL_CTX *ctx, const SIGALG_LOOKUP *lu,
2866
    const EVP_MD **pmd);
2867
__owur size_t tls12_get_psigalgs(SSL_CONNECTION *s, int sent,
2868
    const uint16_t **psigs);
2869
__owur int tls_check_sigalg_curve(const SSL_CONNECTION *s, int curve);
2870
__owur int tls12_check_peer_sigalg(SSL_CONNECTION *s, uint16_t, EVP_PKEY *pkey);
2871
__owur int ssl_set_client_disabled(SSL_CONNECTION *s);
2872
__owur int ssl_cipher_disabled(const SSL_CONNECTION *s, const SSL_CIPHER *c,
2873
    int op);
2874
2875
__owur int ssl_handshake_hash(SSL_CONNECTION *s,
2876
    unsigned char *out, size_t outlen,
2877
    size_t *hashlen);
2878
__owur const EVP_MD *ssl_md(SSL_CTX *ctx, int idx);
2879
int ssl_get_md_idx(int md_nid);
2880
__owur const EVP_MD *ssl_handshake_md(SSL_CONNECTION *s);
2881
__owur const EVP_MD *ssl_prf_md(SSL_CONNECTION *s);
2882
2883
__owur int ossl_adjust_domain_flags(uint64_t domain_flags,
2884
    uint64_t *p_domain_flags);
2885
2886
/*
2887
 * ssl_log_rsa_client_key_exchange logs |premaster| to the SSL_CTX associated
2888
 * with |ssl|, if logging is enabled. It returns one on success and zero on
2889
 * failure. The entry is identified by the first 8 bytes of
2890
 * |encrypted_premaster|.
2891
 */
2892
__owur int ssl_log_rsa_client_key_exchange(SSL_CONNECTION *s,
2893
    const uint8_t *encrypted_premaster,
2894
    size_t encrypted_premaster_len,
2895
    const uint8_t *premaster,
2896
    size_t premaster_len);
2897
2898
/*
2899
 * ssl_log_secret logs |secret| to the SSL_CTX associated with |ssl|, if
2900
 * logging is available. It returns one on success and zero on failure. It tags
2901
 * the entry with |label|.
2902
 */
2903
__owur int ssl_log_secret(SSL_CONNECTION *s, const char *label,
2904
    const uint8_t *secret, size_t secret_len);
2905
2906
0
#define MASTER_SECRET_LABEL "CLIENT_RANDOM"
2907
0
#define CLIENT_EARLY_LABEL "CLIENT_EARLY_TRAFFIC_SECRET"
2908
0
#define CLIENT_HANDSHAKE_LABEL "CLIENT_HANDSHAKE_TRAFFIC_SECRET"
2909
0
#define SERVER_HANDSHAKE_LABEL "SERVER_HANDSHAKE_TRAFFIC_SECRET"
2910
0
#define CLIENT_APPLICATION_LABEL "CLIENT_TRAFFIC_SECRET_0"
2911
0
#define CLIENT_APPLICATION_N_LABEL "CLIENT_TRAFFIC_SECRET_N"
2912
0
#define SERVER_APPLICATION_LABEL "SERVER_TRAFFIC_SECRET_0"
2913
0
#define SERVER_APPLICATION_N_LABEL "SERVER_TRAFFIC_SECRET_N"
2914
0
#define EARLY_EXPORTER_SECRET_LABEL "EARLY_EXPORTER_SECRET"
2915
0
#define EXPORTER_SECRET_LABEL "EXPORTER_SECRET"
2916
2917
__owur int srp_generate_server_master_secret(SSL_CONNECTION *s);
2918
__owur int srp_generate_client_master_secret(SSL_CONNECTION *s);
2919
__owur int srp_verify_server_param(SSL_CONNECTION *s);
2920
2921
/* statem/statem_srvr.c */
2922
2923
__owur int send_certificate_request(SSL_CONNECTION *s);
2924
2925
OCSP_RESPONSE *ossl_get_ocsp_response(SSL_CONNECTION *s, int chainidx);
2926
2927
/* statem/extensions_cust.c */
2928
2929
custom_ext_method *custom_ext_find(const custom_ext_methods *exts,
2930
    ENDPOINT role, unsigned int ext_type,
2931
    size_t *idx);
2932
2933
void custom_ext_init(custom_ext_methods *meths);
2934
2935
int ossl_tls_add_custom_ext_intern(SSL_CTX *ctx, custom_ext_methods *exts,
2936
    ENDPOINT role, unsigned int ext_type,
2937
    unsigned int context,
2938
    SSL_custom_ext_add_cb_ex add_cb,
2939
    SSL_custom_ext_free_cb_ex free_cb,
2940
    void *add_arg,
2941
    SSL_custom_ext_parse_cb_ex parse_cb,
2942
    void *parse_arg);
2943
__owur int custom_ext_parse(SSL_CONNECTION *s, unsigned int context,
2944
    unsigned int ext_type,
2945
    const unsigned char *ext_data, size_t ext_size,
2946
    X509 *x, size_t chainidx);
2947
__owur int custom_ext_add(SSL_CONNECTION *s, int context, WPACKET *pkt, X509 *x,
2948
    size_t chainidx, int maxversion);
2949
2950
__owur int custom_exts_copy(custom_ext_methods *dst,
2951
    const custom_ext_methods *src);
2952
__owur int custom_exts_copy_conn(custom_ext_methods *dst,
2953
    const custom_ext_methods *src);
2954
__owur int custom_exts_copy_flags(custom_ext_methods *dst,
2955
    const custom_ext_methods *src);
2956
void custom_exts_free(custom_ext_methods *exts);
2957
2958
/* ssl_mcnf.c */
2959
int ssl_ctx_system_config(SSL_CTX *ctx);
2960
2961
const EVP_CIPHER *ssl_evp_cipher_fetch(OSSL_LIB_CTX *libctx,
2962
    const char *name,
2963
    const char *properties);
2964
int ssl_evp_cipher_up_ref(const EVP_CIPHER *cipher);
2965
void ssl_evp_cipher_free(const EVP_CIPHER *cipher);
2966
int ssl_evp_md_up_ref(const EVP_MD *md);
2967
void ssl_evp_md_free(const EVP_MD *md);
2968
2969
SSL_HMAC *ssl_hmac_old_construct(SSL_HMAC *ret);
2970
void ssl_hmac_old_destruct(SSL_HMAC *ctx);
2971
int ssl_hmac_old_init(SSL_HMAC *ctx, void *key, size_t len, char *md);
2972
int ssl_hmac_old_update(SSL_HMAC *ctx, const unsigned char *data, size_t len);
2973
int ssl_hmac_old_final(SSL_HMAC *ctx, unsigned char *md, size_t *len);
2974
size_t ssl_hmac_old_size(const SSL_HMAC *ctx);
2975
2976
int ssl_ctx_srp_ctx_free_intern(SSL_CTX *ctx);
2977
int ssl_ctx_srp_ctx_init_intern(SSL_CTX *ctx);
2978
int ssl_srp_ctx_free_intern(SSL_CONNECTION *s);
2979
int ssl_srp_ctx_init_intern(SSL_CONNECTION *s);
2980
2981
int ssl_srp_calc_a_param_intern(SSL_CONNECTION *s);
2982
int ssl_srp_server_param_with_username_intern(SSL_CONNECTION *s, int *ad);
2983
2984
void ssl_session_calculate_timeout(SSL_SESSION *ss);
2985
2986
#else /* OPENSSL_UNIT_TEST */
2987
2988
#define ssl_init_wbio_buffer SSL_test_functions()->p_ssl_init_wbio_buffer
2989
2990
#endif
2991
2992
/* Some helper routines to support TSAN operations safely */
2993
static ossl_unused ossl_inline int ssl_tsan_lock(const SSL_CTX *ctx)
2994
0
{
2995
#ifdef TSAN_REQUIRES_LOCKING
2996
    if (!CRYPTO_THREAD_write_lock(ctx->tsan_lock))
2997
        return 0;
2998
#endif
2999
0
    return 1;
3000
0
}
Unexecuted instantiation: methods.c:ssl_tsan_lock
Unexecuted instantiation: s3_lib.c:ssl_tsan_lock
Unexecuted instantiation: s3_msg.c:ssl_tsan_lock
Unexecuted instantiation: ssl_cert.c:ssl_tsan_lock
Unexecuted instantiation: ssl_ciph.c:ssl_tsan_lock
Unexecuted instantiation: ssl_init.c:ssl_tsan_lock
Unexecuted instantiation: ssl_lib.c:ssl_tsan_lock
Unexecuted instantiation: ssl_mcnf.c:ssl_tsan_lock
Unexecuted instantiation: ssl_rsa.c:ssl_tsan_lock
Unexecuted instantiation: ssl_sess.c:ssl_tsan_lock
Unexecuted instantiation: ssl_stat.c:ssl_tsan_lock
Unexecuted instantiation: t1_lib.c:ssl_tsan_lock
Unexecuted instantiation: tls13_enc.c:ssl_tsan_lock
Unexecuted instantiation: tls_depr.c:ssl_tsan_lock
Unexecuted instantiation: tls_srp.c:ssl_tsan_lock
Unexecuted instantiation: quic_impl.c:ssl_tsan_lock
Unexecuted instantiation: quic_method.c:ssl_tsan_lock
Unexecuted instantiation: quic_obj.c:ssl_tsan_lock
Unexecuted instantiation: quic_port.c:ssl_tsan_lock
Unexecuted instantiation: quic_record_rx.c:ssl_tsan_lock
Unexecuted instantiation: quic_record_shared.c:ssl_tsan_lock
Unexecuted instantiation: quic_record_tx.c:ssl_tsan_lock
Unexecuted instantiation: quic_record_util.c:ssl_tsan_lock
Unexecuted instantiation: quic_thread_assist.c:ssl_tsan_lock
Unexecuted instantiation: quic_tls.c:ssl_tsan_lock
Unexecuted instantiation: rec_layer_d1.c:ssl_tsan_lock
Unexecuted instantiation: rec_layer_s3.c:ssl_tsan_lock
Unexecuted instantiation: dtls_meth.c:ssl_tsan_lock
Unexecuted instantiation: tls1_meth.c:ssl_tsan_lock
Unexecuted instantiation: tls_common.c:ssl_tsan_lock
Unexecuted instantiation: tls_multib.c:ssl_tsan_lock
Unexecuted instantiation: tlsany_meth.c:ssl_tsan_lock
Unexecuted instantiation: extensions.c:ssl_tsan_lock
Unexecuted instantiation: extensions_clnt.c:ssl_tsan_lock
Unexecuted instantiation: extensions_cust.c:ssl_tsan_lock
Unexecuted instantiation: extensions_srvr.c:ssl_tsan_lock
Unexecuted instantiation: statem.c:ssl_tsan_lock
Unexecuted instantiation: statem_clnt.c:ssl_tsan_lock
Unexecuted instantiation: statem_dtls.c:ssl_tsan_lock
Unexecuted instantiation: statem_lib.c:ssl_tsan_lock
Unexecuted instantiation: statem_srvr.c:ssl_tsan_lock
Unexecuted instantiation: ech_helper.c:ssl_tsan_lock
Unexecuted instantiation: ech_internal.c:ssl_tsan_lock
Unexecuted instantiation: ech_store.c:ssl_tsan_lock
Unexecuted instantiation: d1_lib.c:ssl_tsan_lock
Unexecuted instantiation: d1_msg.c:ssl_tsan_lock
Unexecuted instantiation: d1_srtp.c:ssl_tsan_lock
Unexecuted instantiation: pqueue.c:ssl_tsan_lock
Unexecuted instantiation: s3_enc.c:ssl_tsan_lock
Unexecuted instantiation: ssl_asn1.c:ssl_tsan_lock
Unexecuted instantiation: ssl_conf.c:ssl_tsan_lock
Unexecuted instantiation: t1_enc.c:ssl_tsan_lock
Unexecuted instantiation: quic_channel.c:ssl_tsan_lock
Unexecuted instantiation: quic_engine.c:ssl_tsan_lock
Unexecuted instantiation: quic_rx_depack.c:ssl_tsan_lock
Unexecuted instantiation: tls13_meth.c:ssl_tsan_lock
3001
3002
static ossl_unused ossl_inline void ssl_tsan_unlock(const SSL_CTX *ctx)
3003
0
{
3004
#ifdef TSAN_REQUIRES_LOCKING
3005
    CRYPTO_THREAD_unlock(ctx->tsan_lock);
3006
#endif
3007
0
}
Unexecuted instantiation: methods.c:ssl_tsan_unlock
Unexecuted instantiation: s3_lib.c:ssl_tsan_unlock
Unexecuted instantiation: s3_msg.c:ssl_tsan_unlock
Unexecuted instantiation: ssl_cert.c:ssl_tsan_unlock
Unexecuted instantiation: ssl_ciph.c:ssl_tsan_unlock
Unexecuted instantiation: ssl_init.c:ssl_tsan_unlock
Unexecuted instantiation: ssl_lib.c:ssl_tsan_unlock
Unexecuted instantiation: ssl_mcnf.c:ssl_tsan_unlock
Unexecuted instantiation: ssl_rsa.c:ssl_tsan_unlock
Unexecuted instantiation: ssl_sess.c:ssl_tsan_unlock
Unexecuted instantiation: ssl_stat.c:ssl_tsan_unlock
Unexecuted instantiation: t1_lib.c:ssl_tsan_unlock
Unexecuted instantiation: tls13_enc.c:ssl_tsan_unlock
Unexecuted instantiation: tls_depr.c:ssl_tsan_unlock
Unexecuted instantiation: tls_srp.c:ssl_tsan_unlock
Unexecuted instantiation: quic_impl.c:ssl_tsan_unlock
Unexecuted instantiation: quic_method.c:ssl_tsan_unlock
Unexecuted instantiation: quic_obj.c:ssl_tsan_unlock
Unexecuted instantiation: quic_port.c:ssl_tsan_unlock
Unexecuted instantiation: quic_record_rx.c:ssl_tsan_unlock
Unexecuted instantiation: quic_record_shared.c:ssl_tsan_unlock
Unexecuted instantiation: quic_record_tx.c:ssl_tsan_unlock
Unexecuted instantiation: quic_record_util.c:ssl_tsan_unlock
Unexecuted instantiation: quic_thread_assist.c:ssl_tsan_unlock
Unexecuted instantiation: quic_tls.c:ssl_tsan_unlock
Unexecuted instantiation: rec_layer_d1.c:ssl_tsan_unlock
Unexecuted instantiation: rec_layer_s3.c:ssl_tsan_unlock
Unexecuted instantiation: dtls_meth.c:ssl_tsan_unlock
Unexecuted instantiation: tls1_meth.c:ssl_tsan_unlock
Unexecuted instantiation: tls_common.c:ssl_tsan_unlock
Unexecuted instantiation: tls_multib.c:ssl_tsan_unlock
Unexecuted instantiation: tlsany_meth.c:ssl_tsan_unlock
Unexecuted instantiation: extensions.c:ssl_tsan_unlock
Unexecuted instantiation: extensions_clnt.c:ssl_tsan_unlock
Unexecuted instantiation: extensions_cust.c:ssl_tsan_unlock
Unexecuted instantiation: extensions_srvr.c:ssl_tsan_unlock
Unexecuted instantiation: statem.c:ssl_tsan_unlock
Unexecuted instantiation: statem_clnt.c:ssl_tsan_unlock
Unexecuted instantiation: statem_dtls.c:ssl_tsan_unlock
Unexecuted instantiation: statem_lib.c:ssl_tsan_unlock
Unexecuted instantiation: statem_srvr.c:ssl_tsan_unlock
Unexecuted instantiation: ech_helper.c:ssl_tsan_unlock
Unexecuted instantiation: ech_internal.c:ssl_tsan_unlock
Unexecuted instantiation: ech_store.c:ssl_tsan_unlock
Unexecuted instantiation: d1_lib.c:ssl_tsan_unlock
Unexecuted instantiation: d1_msg.c:ssl_tsan_unlock
Unexecuted instantiation: d1_srtp.c:ssl_tsan_unlock
Unexecuted instantiation: pqueue.c:ssl_tsan_unlock
Unexecuted instantiation: s3_enc.c:ssl_tsan_unlock
Unexecuted instantiation: ssl_asn1.c:ssl_tsan_unlock
Unexecuted instantiation: ssl_conf.c:ssl_tsan_unlock
Unexecuted instantiation: t1_enc.c:ssl_tsan_unlock
Unexecuted instantiation: quic_channel.c:ssl_tsan_unlock
Unexecuted instantiation: quic_engine.c:ssl_tsan_unlock
Unexecuted instantiation: quic_rx_depack.c:ssl_tsan_unlock
Unexecuted instantiation: tls13_meth.c:ssl_tsan_unlock
3008
3009
static ossl_unused ossl_inline void ssl_tsan_counter(const SSL_CTX *ctx,
3010
    TSAN_QUALIFIER int *stat)
3011
0
{
3012
0
    if (ssl_tsan_lock(ctx)) {
3013
0
        tsan_counter(stat);
3014
0
        ssl_tsan_unlock(ctx);
3015
0
    }
3016
0
}
Unexecuted instantiation: methods.c:ssl_tsan_counter
Unexecuted instantiation: s3_lib.c:ssl_tsan_counter
Unexecuted instantiation: s3_msg.c:ssl_tsan_counter
Unexecuted instantiation: ssl_cert.c:ssl_tsan_counter
Unexecuted instantiation: ssl_ciph.c:ssl_tsan_counter
Unexecuted instantiation: ssl_init.c:ssl_tsan_counter
Unexecuted instantiation: ssl_lib.c:ssl_tsan_counter
Unexecuted instantiation: ssl_mcnf.c:ssl_tsan_counter
Unexecuted instantiation: ssl_rsa.c:ssl_tsan_counter
Unexecuted instantiation: ssl_sess.c:ssl_tsan_counter
Unexecuted instantiation: ssl_stat.c:ssl_tsan_counter
Unexecuted instantiation: t1_lib.c:ssl_tsan_counter
Unexecuted instantiation: tls13_enc.c:ssl_tsan_counter
Unexecuted instantiation: tls_depr.c:ssl_tsan_counter
Unexecuted instantiation: tls_srp.c:ssl_tsan_counter
Unexecuted instantiation: quic_impl.c:ssl_tsan_counter
Unexecuted instantiation: quic_method.c:ssl_tsan_counter
Unexecuted instantiation: quic_obj.c:ssl_tsan_counter
Unexecuted instantiation: quic_port.c:ssl_tsan_counter
Unexecuted instantiation: quic_record_rx.c:ssl_tsan_counter
Unexecuted instantiation: quic_record_shared.c:ssl_tsan_counter
Unexecuted instantiation: quic_record_tx.c:ssl_tsan_counter
Unexecuted instantiation: quic_record_util.c:ssl_tsan_counter
Unexecuted instantiation: quic_thread_assist.c:ssl_tsan_counter
Unexecuted instantiation: quic_tls.c:ssl_tsan_counter
Unexecuted instantiation: rec_layer_d1.c:ssl_tsan_counter
Unexecuted instantiation: rec_layer_s3.c:ssl_tsan_counter
Unexecuted instantiation: dtls_meth.c:ssl_tsan_counter
Unexecuted instantiation: tls1_meth.c:ssl_tsan_counter
Unexecuted instantiation: tls_common.c:ssl_tsan_counter
Unexecuted instantiation: tls_multib.c:ssl_tsan_counter
Unexecuted instantiation: tlsany_meth.c:ssl_tsan_counter
Unexecuted instantiation: extensions.c:ssl_tsan_counter
Unexecuted instantiation: extensions_clnt.c:ssl_tsan_counter
Unexecuted instantiation: extensions_cust.c:ssl_tsan_counter
Unexecuted instantiation: extensions_srvr.c:ssl_tsan_counter
Unexecuted instantiation: statem.c:ssl_tsan_counter
Unexecuted instantiation: statem_clnt.c:ssl_tsan_counter
Unexecuted instantiation: statem_dtls.c:ssl_tsan_counter
Unexecuted instantiation: statem_lib.c:ssl_tsan_counter
Unexecuted instantiation: statem_srvr.c:ssl_tsan_counter
Unexecuted instantiation: ech_helper.c:ssl_tsan_counter
Unexecuted instantiation: ech_internal.c:ssl_tsan_counter
Unexecuted instantiation: ech_store.c:ssl_tsan_counter
Unexecuted instantiation: d1_lib.c:ssl_tsan_counter
Unexecuted instantiation: d1_msg.c:ssl_tsan_counter
Unexecuted instantiation: d1_srtp.c:ssl_tsan_counter
Unexecuted instantiation: pqueue.c:ssl_tsan_counter
Unexecuted instantiation: s3_enc.c:ssl_tsan_counter
Unexecuted instantiation: ssl_asn1.c:ssl_tsan_counter
Unexecuted instantiation: ssl_conf.c:ssl_tsan_counter
Unexecuted instantiation: t1_enc.c:ssl_tsan_counter
Unexecuted instantiation: quic_channel.c:ssl_tsan_counter
Unexecuted instantiation: quic_engine.c:ssl_tsan_counter
Unexecuted instantiation: quic_rx_depack.c:ssl_tsan_counter
Unexecuted instantiation: tls13_meth.c:ssl_tsan_counter
3017
3018
int ossl_comp_has_alg(int a);
3019
size_t ossl_calculate_comp_expansion(int alg, size_t length);
3020
3021
void ossl_ssl_set_custom_record_layer(SSL_CONNECTION *s,
3022
    const OSSL_RECORD_METHOD *meth,
3023
    void *rlarg);
3024
3025
long ossl_ctrl_internal(SSL *s, int cmd, long larg, void *parg, int no_quic);
3026
3027
/*
3028
 * Options which no longer have any effect, but which can be implemented
3029
 * as no-ops for QUIC.
3030
 */
3031
#define OSSL_LEGACY_SSL_OPTIONS \
3032
0
    (SSL_OP_NETSCAPE_REUSE_CIPHER_CHANGE_BUG | SSL_OP_MICROSOFT_BIG_SSLV3_BUFFER | SSL_OP_SSLEAY_080_CLIENT_DH_BUG | SSL_OP_TLS_D5_BUG | SSL_OP_TLS_BLOCK_PADDING_BUG | SSL_OP_MSIE_SSLV2_RSA_PADDING | SSL_OP_SSLREF2_REUSE_CERT_TYPE_BUG | SSL_OP_MICROSOFT_SESS_ID_BUG | SSL_OP_NETSCAPE_CHALLENGE_BUG | SSL_OP_PKCS1_CHECK_1 | SSL_OP_PKCS1_CHECK_2 | SSL_OP_SINGLE_DH_USE | SSL_OP_SINGLE_ECDH_USE | SSL_OP_EPHEMERAL_RSA)
3033
3034
/* This option is undefined in public headers with no-dtls1-method. */
3035
#ifndef SSL_OP_CISCO_ANYCONNECT
3036
#define SSL_OP_CISCO_ANYCONNECT 0
3037
#endif
3038
/*
3039
 * Options which are no-ops under QUIC or TLSv1.3 and which are therefore
3040
 * allowed but ignored under QUIC.
3041
 */
3042
#define OSSL_TLS1_2_OPTIONS \
3043
0
    (SSL_OP_CRYPTOPRO_TLSEXT_BUG | SSL_OP_DONT_INSERT_EMPTY_FRAGMENTS | SSL_OP_ALLOW_CLIENT_RENEGOTIATION | SSL_OP_ALLOW_UNSAFE_LEGACY_RENEGOTIATION | SSL_OP_NO_COMPRESSION | SSL_OP_NO_TLSv1 | SSL_OP_NO_TLSv1_1 | SSL_OP_NO_TLSv1_2 | SSL_OP_NO_DTLSv1 | SSL_OP_NO_DTLSv1_2 | SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION | SSL_OP_CISCO_ANYCONNECT | SSL_OP_NO_RENEGOTIATION | SSL_OP_NO_EXTENDED_MASTER_SECRET | SSL_OP_NO_ENCRYPT_THEN_MAC | SSL_OP_COOKIE_EXCHANGE | SSL_OP_LEGACY_SERVER_CONNECT | SSL_OP_IGNORE_UNEXPECTED_EOF)
3044
3045
/* Total mask of connection-level options permitted or ignored under QUIC. */
3046
#define OSSL_QUIC_PERMITTED_OPTIONS_CONN \
3047
0
    (OSSL_LEGACY_SSL_OPTIONS | OSSL_TLS1_2_OPTIONS | SSL_OP_SERVER_PREFERENCE | SSL_OP_DISABLE_TLSEXT_CA_NAMES | SSL_OP_NO_TX_CERTIFICATE_COMPRESSION | SSL_OP_NO_RX_CERTIFICATE_COMPRESSION | SSL_OP_PRIORITIZE_CHACHA | SSL_OP_NO_QUERY_MTU | SSL_OP_NO_TICKET | SSL_OP_NO_ANTI_REPLAY)
3048
3049
/* Total mask of stream-level options permitted or ignored under QUIC. */
3050
#define OSSL_QUIC_PERMITTED_OPTIONS_STREAM \
3051
0
    (OSSL_LEGACY_SSL_OPTIONS | OSSL_TLS1_2_OPTIONS | SSL_OP_CLEANSE_PLAINTEXT)
3052
3053
/* Total mask of options permitted on either connections or streams. */
3054
#define OSSL_QUIC_PERMITTED_OPTIONS \
3055
0
    (OSSL_QUIC_PERMITTED_OPTIONS_CONN | OSSL_QUIC_PERMITTED_OPTIONS_STREAM)
3056
3057
/* Total mask of domain flags supported on a QUIC SSL_CTX. */
3058
#define OSSL_QUIC_SUPPORTED_DOMAIN_FLAGS \
3059
0
    (SSL_DOMAIN_FLAG_SINGLE_THREAD | SSL_DOMAIN_FLAG_MULTI_THREAD | SSL_DOMAIN_FLAG_THREAD_ASSISTED | SSL_DOMAIN_FLAG_BLOCKING | SSL_DOMAIN_FLAG_LEGACY_BLOCKING)
3060
3061
#endif