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