Coverage Report

Created: 2025-12-31 06:58

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