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