Coverage Report

Created: 2026-04-22 06:14

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