]> git.ipfire.org Git - thirdparty/openssl.git/blame - ssl/ssl_lib.c
QUIC SSL: Restrict SSL_CTX_set_ssl_version, SSL_set_ssl_method
[thirdparty/openssl.git] / ssl / ssl_lib.c
CommitLineData
0f113f3e 1/*
3c95ef22 2 * Copyright 1995-2023 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.
bf21446a 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
bf21446a 10 */
846e33c7 11
d02b48c6 12#include <stdio.h>
706457b7 13#include "ssl_local.h"
d5f9166b 14#include "internal/e_os.h"
ec577822 15#include <openssl/objects.h>
bb7cd4e3 16#include <openssl/x509v3.h>
6434abbf 17#include <openssl/rand.h>
67c8e7f4 18#include <openssl/ocsp.h>
3c27208f
RS
19#include <openssl/dh.h>
20#include <openssl/engine.h>
07bbc92c 21#include <openssl/async.h>
3c27208f 22#include <openssl/ct.h>
77359d22 23#include <openssl/trace.h>
4566dae7 24#include <openssl/core_names.h>
67dc995e 25#include "internal/cryptlib.h"
f2a6f838 26#include "internal/nelem.h"
cd420b0b 27#include "internal/refcount.h"
50ec7505 28#include "internal/ktls.h"
03bacce8 29#include "quic/quic_local.h"
0f113f3e 30
38b051a1 31static int ssl_undefined_function_3(SSL_CONNECTION *sc, unsigned char *r,
fce78bd4
BE
32 unsigned char *s, size_t t, size_t *u)
33{
38b051a1 34 return ssl_undefined_function(SSL_CONNECTION_GET_SSL(sc));
fce78bd4
BE
35}
36
38b051a1 37static int ssl_undefined_function_4(SSL_CONNECTION *sc, int r)
fce78bd4 38{
38b051a1 39 return ssl_undefined_function(SSL_CONNECTION_GET_SSL(sc));
fce78bd4
BE
40}
41
38b051a1
TM
42static size_t ssl_undefined_function_5(SSL_CONNECTION *sc, const char *r,
43 size_t s, unsigned char *t)
fce78bd4 44{
38b051a1 45 return ssl_undefined_function(SSL_CONNECTION_GET_SSL(sc));
fce78bd4
BE
46}
47
48static int ssl_undefined_function_6(int r)
49{
fce78bd4
BE
50 return ssl_undefined_function(NULL);
51}
52
38b051a1
TM
53static int ssl_undefined_function_7(SSL_CONNECTION *sc, unsigned char *r,
54 size_t s, const char *t, size_t u,
fce78bd4
BE
55 const unsigned char *v, size_t w, int x)
56{
38b051a1
TM
57 return ssl_undefined_function(SSL_CONNECTION_GET_SSL(sc));
58}
59
60static int ssl_undefined_function_8(SSL_CONNECTION *sc)
61{
62 return ssl_undefined_function(SSL_CONNECTION_GET_SSL(sc));
fce78bd4
BE
63}
64
0f113f3e 65SSL3_ENC_METHOD ssl3_undef_enc_method = {
38b051a1 66 ssl_undefined_function_8,
fce78bd4
BE
67 ssl_undefined_function_3,
68 ssl_undefined_function_4,
69 ssl_undefined_function_5,
0f113f3e
MC
70 NULL, /* client_finished_label */
71 0, /* client_finished_label_len */
72 NULL, /* server_finished_label */
73 0, /* server_finished_label_len */
fce78bd4
BE
74 ssl_undefined_function_6,
75 ssl_undefined_function_7,
0f113f3e 76};
d02b48c6 77
07bbc92c
MC
78struct ssl_async_args {
79 SSL *s;
80 void *buf;
348240c6 81 size_t num;
a230b26e 82 enum { READFUNC, WRITEFUNC, OTHERFUNC } type;
add2f5ca 83 union {
eda75751 84 int (*func_read) (SSL *, void *, size_t, size_t *);
7ee8627f 85 int (*func_write) (SSL *, const void *, size_t, size_t *);
a230b26e 86 int (*func_other) (SSL *);
add2f5ca 87 } f;
07bbc92c
MC
88};
89
919ba009
VD
90static const struct {
91 uint8_t mtype;
92 uint8_t ord;
a230b26e 93 int nid;
919ba009 94} dane_mds[] = {
a230b26e
EK
95 {
96 DANETLS_MATCHING_FULL, 0, NID_undef
97 },
98 {
99 DANETLS_MATCHING_2256, 1, NID_sha256
100 },
101 {
102 DANETLS_MATCHING_2512, 2, NID_sha512
103 },
919ba009
VD
104};
105
106static int dane_ctx_enable(struct dane_ctx_st *dctx)
107{
108 const EVP_MD **mdevp;
109 uint8_t *mdord;
110 uint8_t mdmax = DANETLS_MATCHING_LAST;
a230b26e 111 int n = ((int)mdmax) + 1; /* int to handle PrivMatch(255) */
919ba009
VD
112 size_t i;
113
5ae4ceb9
VD
114 if (dctx->mdevp != NULL)
115 return 1;
116
919ba009
VD
117 mdevp = OPENSSL_zalloc(n * sizeof(*mdevp));
118 mdord = OPENSSL_zalloc(n * sizeof(*mdord));
119
120 if (mdord == NULL || mdevp == NULL) {
b3bd3d5a 121 OPENSSL_free(mdord);
919ba009 122 OPENSSL_free(mdevp);
919ba009
VD
123 return 0;
124 }
125
126 /* Install default entries */
127 for (i = 0; i < OSSL_NELEM(dane_mds); ++i) {
128 const EVP_MD *md;
129
130 if (dane_mds[i].nid == NID_undef ||
131 (md = EVP_get_digestbynid(dane_mds[i].nid)) == NULL)
132 continue;
133 mdevp[dane_mds[i].mtype] = md;
134 mdord[dane_mds[i].mtype] = dane_mds[i].ord;
135 }
136
137 dctx->mdevp = mdevp;
138 dctx->mdord = mdord;
139 dctx->mdmax = mdmax;
140
141 return 1;
142}
143
144static void dane_ctx_final(struct dane_ctx_st *dctx)
145{
146 OPENSSL_free(dctx->mdevp);
147 dctx->mdevp = NULL;
148
149 OPENSSL_free(dctx->mdord);
150 dctx->mdord = NULL;
151 dctx->mdmax = 0;
152}
153
154static void tlsa_free(danetls_record *t)
155{
156 if (t == NULL)
157 return;
158 OPENSSL_free(t->data);
159 EVP_PKEY_free(t->spki);
160 OPENSSL_free(t);
161}
162
b9aec69a 163static void dane_final(SSL_DANE *dane)
919ba009
VD
164{
165 sk_danetls_record_pop_free(dane->trecs, tlsa_free);
166 dane->trecs = NULL;
167
79b2a2f2 168 OSSL_STACK_OF_X509_free(dane->certs);
919ba009
VD
169 dane->certs = NULL;
170
171 X509_free(dane->mcert);
172 dane->mcert = NULL;
173 dane->mtlsa = NULL;
174 dane->mdpth = -1;
175 dane->pdpth = -1;
176}
177
178/*
179 * dane_copy - Copy dane configuration, sans verification state.
180 */
38b051a1 181static int ssl_dane_dup(SSL_CONNECTION *to, SSL_CONNECTION *from)
919ba009
VD
182{
183 int num;
184 int i;
185
186 if (!DANETLS_ENABLED(&from->dane))
187 return 1;
188
e431363f 189 num = sk_danetls_record_num(from->dane.trecs);
919ba009 190 dane_final(&to->dane);
5ae4ceb9 191 to->dane.flags = from->dane.flags;
38b051a1 192 to->dane.dctx = &SSL_CONNECTION_GET_CTX(to)->dane;
7a908204 193 to->dane.trecs = sk_danetls_record_new_reserve(NULL, num);
9f6b22b8
VD
194
195 if (to->dane.trecs == NULL) {
e077455e 196 ERR_raise(ERR_LIB_SSL, ERR_R_CRYPTO_LIB);
9f6b22b8
VD
197 return 0;
198 }
919ba009 199
919ba009
VD
200 for (i = 0; i < num; ++i) {
201 danetls_record *t = sk_danetls_record_value(from->dane.trecs, i);
9f6b22b8 202
38b051a1
TM
203 if (SSL_dane_tlsa_add(SSL_CONNECTION_GET_SSL(to), t->usage,
204 t->selector, t->mtype, t->data, t->dlen) <= 0)
919ba009
VD
205 return 0;
206 }
207 return 1;
208}
209
a230b26e
EK
210static int dane_mtype_set(struct dane_ctx_st *dctx,
211 const EVP_MD *md, uint8_t mtype, uint8_t ord)
919ba009
VD
212{
213 int i;
214
215 if (mtype == DANETLS_MATCHING_FULL && md != NULL) {
6849b73c 216 ERR_raise(ERR_LIB_SSL, SSL_R_DANE_CANNOT_OVERRIDE_MTYPE_FULL);
919ba009
VD
217 return 0;
218 }
219
220 if (mtype > dctx->mdmax) {
221 const EVP_MD **mdevp;
222 uint8_t *mdord;
a230b26e 223 int n = ((int)mtype) + 1;
919ba009
VD
224
225 mdevp = OPENSSL_realloc(dctx->mdevp, n * sizeof(*mdevp));
e077455e 226 if (mdevp == NULL)
919ba009 227 return -1;
919ba009
VD
228 dctx->mdevp = mdevp;
229
230 mdord = OPENSSL_realloc(dctx->mdord, n * sizeof(*mdord));
e077455e 231 if (mdord == NULL)
919ba009 232 return -1;
919ba009
VD
233 dctx->mdord = mdord;
234
235 /* Zero-fill any gaps */
a230b26e 236 for (i = dctx->mdmax + 1; i < mtype; ++i) {
919ba009
VD
237 mdevp[i] = NULL;
238 mdord[i] = 0;
239 }
240
241 dctx->mdmax = mtype;
242 }
243
244 dctx->mdevp[mtype] = md;
245 /* Coerce ordinal of disabled matching types to 0 */
246 dctx->mdord[mtype] = (md == NULL) ? 0 : ord;
247
248 return 1;
249}
250
b9aec69a 251static const EVP_MD *tlsa_md_get(SSL_DANE *dane, uint8_t mtype)
919ba009
VD
252{
253 if (mtype > dane->dctx->mdmax)
254 return NULL;
255 return dane->dctx->mdevp[mtype];
256}
257
a230b26e
EK
258static int dane_tlsa_add(SSL_DANE *dane,
259 uint8_t usage,
260 uint8_t selector,
6d4313f0 261 uint8_t mtype, const unsigned char *data, size_t dlen)
919ba009
VD
262{
263 danetls_record *t;
264 const EVP_MD *md = NULL;
265 int ilen = (int)dlen;
266 int i;
9f6b22b8 267 int num;
919ba009
VD
268
269 if (dane->trecs == NULL) {
6849b73c 270 ERR_raise(ERR_LIB_SSL, SSL_R_DANE_NOT_ENABLED);
919ba009
VD
271 return -1;
272 }
273
274 if (ilen < 0 || dlen != (size_t)ilen) {
6849b73c 275 ERR_raise(ERR_LIB_SSL, SSL_R_DANE_TLSA_BAD_DATA_LENGTH);
919ba009
VD
276 return 0;
277 }
278
279 if (usage > DANETLS_USAGE_LAST) {
6849b73c 280 ERR_raise(ERR_LIB_SSL, SSL_R_DANE_TLSA_BAD_CERTIFICATE_USAGE);
919ba009
VD
281 return 0;
282 }
283
284 if (selector > DANETLS_SELECTOR_LAST) {
6849b73c 285 ERR_raise(ERR_LIB_SSL, SSL_R_DANE_TLSA_BAD_SELECTOR);
919ba009
VD
286 return 0;
287 }
288
289 if (mtype != DANETLS_MATCHING_FULL) {
290 md = tlsa_md_get(dane, mtype);
291 if (md == NULL) {
6849b73c 292 ERR_raise(ERR_LIB_SSL, SSL_R_DANE_TLSA_BAD_MATCHING_TYPE);
919ba009
VD
293 return 0;
294 }
295 }
296
ed576acd 297 if (md != NULL && dlen != (size_t)EVP_MD_get_size(md)) {
6849b73c 298 ERR_raise(ERR_LIB_SSL, SSL_R_DANE_TLSA_BAD_DIGEST_LENGTH);
919ba009
VD
299 return 0;
300 }
301 if (!data) {
6849b73c 302 ERR_raise(ERR_LIB_SSL, SSL_R_DANE_TLSA_NULL_DATA);
919ba009
VD
303 return 0;
304 }
305
e077455e 306 if ((t = OPENSSL_zalloc(sizeof(*t))) == NULL)
919ba009 307 return -1;
919ba009
VD
308
309 t->usage = usage;
310 t->selector = selector;
311 t->mtype = mtype;
348240c6 312 t->data = OPENSSL_malloc(dlen);
919ba009
VD
313 if (t->data == NULL) {
314 tlsa_free(t);
919ba009
VD
315 return -1;
316 }
348240c6
MC
317 memcpy(t->data, data, dlen);
318 t->dlen = dlen;
919ba009
VD
319
320 /* Validate and cache full certificate or public key */
321 if (mtype == DANETLS_MATCHING_FULL) {
322 const unsigned char *p = data;
323 X509 *cert = NULL;
324 EVP_PKEY *pkey = NULL;
325
326 switch (selector) {
327 case DANETLS_SELECTOR_CERT:
348240c6 328 if (!d2i_X509(&cert, &p, ilen) || p < data ||
919ba009
VD
329 dlen != (size_t)(p - data)) {
330 tlsa_free(t);
6849b73c 331 ERR_raise(ERR_LIB_SSL, SSL_R_DANE_TLSA_BAD_CERTIFICATE);
919ba009
VD
332 return 0;
333 }
334 if (X509_get0_pubkey(cert) == NULL) {
335 tlsa_free(t);
6849b73c 336 ERR_raise(ERR_LIB_SSL, SSL_R_DANE_TLSA_BAD_CERTIFICATE);
919ba009
VD
337 return 0;
338 }
339
340 if ((DANETLS_USAGE_BIT(usage) & DANETLS_TA_MASK) == 0) {
341 X509_free(cert);
342 break;
343 }
344
345 /*
346 * For usage DANE-TA(2), we support authentication via "2 0 0" TLSA
347 * records that contain full certificates of trust-anchors that are
348 * not present in the wire chain. For usage PKIX-TA(0), we augment
349 * the chain with untrusted Full(0) certificates from DNS, in case
350 * they are missing from the chain.
351 */
352 if ((dane->certs == NULL &&
353 (dane->certs = sk_X509_new_null()) == NULL) ||
354 !sk_X509_push(dane->certs, cert)) {
e077455e 355 ERR_raise(ERR_LIB_SSL, ERR_R_CRYPTO_LIB);
919ba009
VD
356 X509_free(cert);
357 tlsa_free(t);
358 return -1;
359 }
360 break;
361
362 case DANETLS_SELECTOR_SPKI:
348240c6 363 if (!d2i_PUBKEY(&pkey, &p, ilen) || p < data ||
919ba009
VD
364 dlen != (size_t)(p - data)) {
365 tlsa_free(t);
6849b73c 366 ERR_raise(ERR_LIB_SSL, SSL_R_DANE_TLSA_BAD_PUBLIC_KEY);
919ba009
VD
367 return 0;
368 }
369
370 /*
371 * For usage DANE-TA(2), we support authentication via "2 1 0" TLSA
372 * records that contain full bare keys of trust-anchors that are
373 * not present in the wire chain.
374 */
375 if (usage == DANETLS_USAGE_DANE_TA)
376 t->spki = pkey;
377 else
378 EVP_PKEY_free(pkey);
379 break;
380 }
381 }
382
383 /*-
384 * Find the right insertion point for the new record.
385 *
386 * See crypto/x509/x509_vfy.c. We sort DANE-EE(3) records first, so that
387 * they can be processed first, as they require no chain building, and no
388 * expiration or hostname checks. Because DANE-EE(3) is numerically
389 * largest, this is accomplished via descending sort by "usage".
390 *
391 * We also sort in descending order by matching ordinal to simplify
392 * the implementation of digest agility in the verification code.
393 *
394 * The choice of order for the selector is not significant, so we
395 * use the same descending order for consistency.
396 */
9f6b22b8
VD
397 num = sk_danetls_record_num(dane->trecs);
398 for (i = 0; i < num; ++i) {
919ba009 399 danetls_record *rec = sk_danetls_record_value(dane->trecs, i);
9f6b22b8 400
919ba009
VD
401 if (rec->usage > usage)
402 continue;
403 if (rec->usage < usage)
404 break;
405 if (rec->selector > selector)
406 continue;
407 if (rec->selector < selector)
408 break;
409 if (dane->dctx->mdord[rec->mtype] > dane->dctx->mdord[mtype])
410 continue;
411 break;
412 }
413
414 if (!sk_danetls_record_insert(dane->trecs, t, i)) {
415 tlsa_free(t);
e077455e 416 ERR_raise(ERR_LIB_SSL, ERR_R_CRYPTO_LIB);
919ba009
VD
417 return -1;
418 }
419 dane->umask |= DANETLS_USAGE_BIT(usage);
420
421 return 1;
422}
423
c8feba72
BK
424/*
425 * Return 0 if there is only one version configured and it was disabled
426 * at configure time. Return 1 otherwise.
427 */
0eecf841
HL
428static int ssl_check_allowed_versions(int min_version, int max_version,
429 int is_quic)
c8feba72
BK
430{
431 int minisdtls = 0, maxisdtls = 0;
432
433 /* Figure out if we're doing DTLS versions or TLS versions */
434 if (min_version == DTLS1_BAD_VER
435 || min_version >> 8 == DTLS1_VERSION_MAJOR)
436 minisdtls = 1;
437 if (max_version == DTLS1_BAD_VER
438 || max_version >> 8 == DTLS1_VERSION_MAJOR)
439 maxisdtls = 1;
440 /* A wildcard version of 0 could be DTLS or TLS. */
441 if ((minisdtls && !maxisdtls && max_version != 0)
442 || (maxisdtls && !minisdtls && min_version != 0)) {
443 /* Mixing DTLS and TLS versions will lead to sadness; deny it. */
444 return 0;
445 }
446
447 if (minisdtls || maxisdtls) {
448 /* Do DTLS version checks. */
449 if (min_version == 0)
450 /* Ignore DTLS1_BAD_VER */
451 min_version = DTLS1_VERSION;
452 if (max_version == 0)
453 max_version = DTLS1_2_VERSION;
454#ifdef OPENSSL_NO_DTLS1_2
455 if (max_version == DTLS1_2_VERSION)
456 max_version = DTLS1_VERSION;
457#endif
458#ifdef OPENSSL_NO_DTLS1
459 if (min_version == DTLS1_VERSION)
460 min_version = DTLS1_2_VERSION;
461#endif
79b4444d
DMSP
462 /* Done massaging versions; do the check. */
463 if (0
c8feba72
BK
464#ifdef OPENSSL_NO_DTLS1
465 || (DTLS_VERSION_GE(min_version, DTLS1_VERSION)
466 && DTLS_VERSION_GE(DTLS1_VERSION, max_version))
467#endif
468#ifdef OPENSSL_NO_DTLS1_2
469 || (DTLS_VERSION_GE(min_version, DTLS1_2_VERSION)
470 && DTLS_VERSION_GE(DTLS1_2_VERSION, max_version))
471#endif
472 )
473 return 0;
474 } else {
475 /* Regular TLS version checks. */
79b4444d 476 if (min_version == 0)
0eecf841 477 min_version = is_quic ? TLS1_3_VERSION : SSL3_VERSION;
79b4444d
DMSP
478 if (max_version == 0)
479 max_version = TLS1_3_VERSION;
c8feba72 480#ifdef OPENSSL_NO_TLS1_3
79b4444d
DMSP
481 if (max_version == TLS1_3_VERSION)
482 max_version = TLS1_2_VERSION;
c8feba72
BK
483#endif
484#ifdef OPENSSL_NO_TLS1_2
79b4444d
DMSP
485 if (max_version == TLS1_2_VERSION)
486 max_version = TLS1_1_VERSION;
c8feba72
BK
487#endif
488#ifdef OPENSSL_NO_TLS1_1
79b4444d
DMSP
489 if (max_version == TLS1_1_VERSION)
490 max_version = TLS1_VERSION;
c8feba72
BK
491#endif
492#ifdef OPENSSL_NO_TLS1
79b4444d
DMSP
493 if (max_version == TLS1_VERSION)
494 max_version = SSL3_VERSION;
c8feba72
BK
495#endif
496#ifdef OPENSSL_NO_SSL3
79b4444d
DMSP
497 if (min_version == SSL3_VERSION)
498 min_version = TLS1_VERSION;
c8feba72
BK
499#endif
500#ifdef OPENSSL_NO_TLS1
79b4444d
DMSP
501 if (min_version == TLS1_VERSION)
502 min_version = TLS1_1_VERSION;
c8feba72
BK
503#endif
504#ifdef OPENSSL_NO_TLS1_1
79b4444d
DMSP
505 if (min_version == TLS1_1_VERSION)
506 min_version = TLS1_2_VERSION;
c8feba72
BK
507#endif
508#ifdef OPENSSL_NO_TLS1_2
79b4444d
DMSP
509 if (min_version == TLS1_2_VERSION)
510 min_version = TLS1_3_VERSION;
c8feba72 511#endif
79b4444d
DMSP
512 /* Done massaging versions; do the check. */
513 if (0
c8feba72
BK
514#ifdef OPENSSL_NO_SSL3
515 || (min_version <= SSL3_VERSION && SSL3_VERSION <= max_version)
516#endif
517#ifdef OPENSSL_NO_TLS1
518 || (min_version <= TLS1_VERSION && TLS1_VERSION <= max_version)
519#endif
520#ifdef OPENSSL_NO_TLS1_1
521 || (min_version <= TLS1_1_VERSION && TLS1_1_VERSION <= max_version)
522#endif
523#ifdef OPENSSL_NO_TLS1_2
524 || (min_version <= TLS1_2_VERSION && TLS1_2_VERSION <= max_version)
525#endif
526#ifdef OPENSSL_NO_TLS1_3
527 || (min_version <= TLS1_3_VERSION && TLS1_3_VERSION <= max_version)
528#endif
529 )
530 return 0;
531 }
532 return 1;
533}
534
08073700
RB
535#if defined(__TANDEM) && defined(OPENSSL_VPROC)
536/*
537 * Define a VPROC function for HP NonStop build ssl library.
538 * This is used by platform version identification tools.
539 * Do not inline this procedure or make it static.
540 */
541# define OPENSSL_VPROC_STRING_(x) x##_SSL
542# define OPENSSL_VPROC_STRING(x) OPENSSL_VPROC_STRING_(x)
543# define OPENSSL_VPROC_FUNC OPENSSL_VPROC_STRING(OPENSSL_VPROC)
544void OPENSSL_VPROC_FUNC(void) {}
545#endif
546
6d814fd6 547static int clear_record_layer(SSL_CONNECTION *s)
d31fb0b5 548{
6d814fd6
MC
549 int ret;
550
551 /* We try and reset both record layers even if one fails */
552
553 ret = ssl_set_new_record_layer(s,
554 SSL_CONNECTION_IS_DTLS(s) ? DTLS_ANY_VERSION
555 : TLS_ANY_VERSION,
556 OSSL_RECORD_DIRECTION_READ,
3f9175c7 557 OSSL_RECORD_PROTECTION_LEVEL_NONE, NULL, 0,
6d814fd6 558 NULL, 0, NULL, 0, NULL, 0, NULL, 0,
3f9175c7 559 NID_undef, NULL, NULL, NULL);
6d814fd6
MC
560
561 ret &= ssl_set_new_record_layer(s,
562 SSL_CONNECTION_IS_DTLS(s) ? DTLS_ANY_VERSION
563 : TLS_ANY_VERSION,
564 OSSL_RECORD_DIRECTION_WRITE,
3f9175c7 565 OSSL_RECORD_PROTECTION_LEVEL_NONE, NULL, 0,
6d814fd6 566 NULL, 0, NULL, 0, NULL, 0, NULL, 0,
3f9175c7
MC
567 NID_undef, NULL, NULL, NULL);
568
6d814fd6
MC
569 /* SSLfatal already called in the event of failure */
570 return ret;
d31fb0b5
RS
571}
572
4f43d0e7 573int SSL_clear(SSL *s)
0f113f3e 574{
0f113f3e 575 if (s->method == NULL) {
6849b73c 576 ERR_raise(ERR_LIB_SSL, SSL_R_NO_METHOD_SPECIFIED);
a89325e4 577 return 0;
0f113f3e 578 }
d02b48c6 579
38b051a1
TM
580 return s->method->ssl_reset(s);
581}
582
583int ossl_ssl_connection_reset(SSL *s)
584{
585 SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
586
587 if (sc == NULL)
588 return 0;
589
590 if (ssl_clear_bad_session(sc)) {
591 SSL_SESSION_free(sc->session);
592 sc->session = NULL;
0f113f3e 593 }
38b051a1
TM
594 SSL_SESSION_free(sc->psksession);
595 sc->psksession = NULL;
596 OPENSSL_free(sc->psksession_id);
597 sc->psksession_id = NULL;
598 sc->psksession_id_len = 0;
599 sc->hello_retry_request = 0;
600 sc->sent_tickets = 0;
d62bfb39 601
38b051a1
TM
602 sc->error = 0;
603 sc->hit = 0;
604 sc->shutdown = 0;
d02b48c6 605
38b051a1 606 if (sc->renegotiate) {
6849b73c 607 ERR_raise(ERR_LIB_SSL, ERR_R_INTERNAL_ERROR);
0f113f3e
MC
608 return 0;
609 }
d02b48c6 610
38b051a1 611 ossl_statem_clear(sc);
413c4f45 612
38b051a1
TM
613 /* TODO(QUIC): Version handling not yet clear */
614 sc->version = s->method->version;
615 sc->client_version = sc->version;
616 sc->rwstate = SSL_NOTHING;
d02b48c6 617
38b051a1
TM
618 BUF_MEM_free(sc->init_buf);
619 sc->init_buf = NULL;
38b051a1 620 sc->first_packet = 0;
d02b48c6 621
38b051a1 622 sc->key_update = SSL_KEY_UPDATE_NONE;
b67cb09f
TS
623 memset(sc->ext.compress_certificate_from_peer, 0,
624 sizeof(sc->ext.compress_certificate_from_peer));
625 sc->ext.compress_certificate_sent = 0;
44c04a2e 626
38b051a1
TM
627 EVP_MD_CTX_free(sc->pha_dgst);
628 sc->pha_dgst = NULL;
88834998 629
919ba009 630 /* Reset DANE verification result state */
38b051a1
TM
631 sc->dane.mdpth = -1;
632 sc->dane.pdpth = -1;
633 X509_free(sc->dane.mcert);
634 sc->dane.mcert = NULL;
635 sc->dane.mtlsa = NULL;
919ba009
VD
636
637 /* Clear the verification result peername */
38b051a1 638 X509_VERIFY_PARAM_move_peername(sc->param, NULL);
919ba009 639
29948ac8 640 /* Clear any shared connection state */
38b051a1
TM
641 OPENSSL_free(sc->shared_sigalgs);
642 sc->shared_sigalgs = NULL;
643 sc->shared_sigalgslen = 0;
29948ac8 644
0f113f3e
MC
645 /*
646 * Check to see if we were changed into a different method, if so, revert
24252537 647 * back.
0f113f3e 648 */
a7f41885 649 if (s->method != s->defltmeth) {
38b051a1 650 s->method->ssl_deinit(s);
a7f41885 651 s->method = s->defltmeth;
38b051a1 652 if (!s->method->ssl_init(s))
a89325e4 653 return 0;
b77f3ed1
MC
654 } else {
655 if (!s->method->ssl_clear(s))
656 return 0;
657 }
33d23b87 658
38b051a1 659 RECORD_LAYER_clear(&sc->rlayer);
cffafb5f
MC
660 BIO_free(sc->rlayer.rrlnext);
661 sc->rlayer.rrlnext = NULL;
33d23b87 662
6d814fd6 663 if (!clear_record_layer(sc))
2b71b042 664 return 0;
aedbb71b 665
a89325e4 666 return 1;
0f113f3e 667}
d02b48c6 668
dd0164e7 669#ifndef OPENSSL_NO_DEPRECATED_3_0
4f43d0e7 670/** Used to change an SSL_CTXs default SSL method type */
0f113f3e
MC
671int SSL_CTX_set_ssl_version(SSL_CTX *ctx, const SSL_METHOD *meth)
672{
673 STACK_OF(SSL_CIPHER) *sk;
674
3ea30e76
HL
675 if (IS_QUIC_CTX(ctx)) {
676 ERR_raise(ERR_LIB_SSL, SSL_R_WRONG_SSL_VERSION);
677 return 0;
678 }
679
0f113f3e
MC
680 ctx->method = meth;
681
5d120511 682 if (!SSL_CTX_set_ciphersuites(ctx, OSSL_default_ciphersuites())) {
6849b73c 683 ERR_raise(ERR_LIB_SSL, SSL_R_SSL_LIBRARY_HAS_NO_CIPHERS);
2340ed27
BK
684 return 0;
685 }
a68eee67 686 sk = ssl_create_cipher_list(ctx,
f865b081
MC
687 ctx->tls13_ciphersuites,
688 &(ctx->cipher_list),
0f113f3e 689 &(ctx->cipher_list_by_id),
5d120511 690 OSSL_default_cipher_list(), ctx->cert);
0f113f3e 691 if ((sk == NULL) || (sk_SSL_CIPHER_num(sk) <= 0)) {
6849b73c 692 ERR_raise(ERR_LIB_SSL, SSL_R_SSL_LIBRARY_HAS_NO_CIPHERS);
26a7d938 693 return 0;
0f113f3e 694 }
208fb891 695 return 1;
0f113f3e 696}
dd0164e7 697#endif
d02b48c6 698
4f43d0e7 699SSL *SSL_new(SSL_CTX *ctx)
0f113f3e 700{
0f113f3e 701 if (ctx == NULL) {
6849b73c 702 ERR_raise(ERR_LIB_SSL, SSL_R_NULL_SSL_CTX);
26a7d938 703 return NULL;
0f113f3e
MC
704 }
705 if (ctx->method == NULL) {
6849b73c 706 ERR_raise(ERR_LIB_SSL, SSL_R_SSL_CTX_HAS_NO_DEFAULT_SSL_VERSION);
26a7d938 707 return NULL;
0f113f3e 708 }
38b051a1
TM
709 return ctx->method->ssl_new(ctx);
710}
711
a7f41885 712int ossl_ssl_init(SSL *ssl, SSL_CTX *ctx, const SSL_METHOD *method, int type)
38b051a1
TM
713{
714 ssl->type = type;
715
38b051a1
TM
716 ssl->lock = CRYPTO_THREAD_lock_new();
717 if (ssl->lock == NULL)
718 return 0;
719
43a07d6d
P
720 if (!CRYPTO_NEW_REF(&ssl->references, 1)) {
721 CRYPTO_THREAD_lock_free(ssl->lock);
722 return 0;
723 }
724
c10ded8c
TS
725 if (!CRYPTO_new_ex_data(CRYPTO_EX_INDEX_SSL, ssl, &ssl->ex_data)) {
726 CRYPTO_THREAD_lock_free(ssl->lock);
43a07d6d 727 CRYPTO_FREE_REF(&ssl->references);
c10ded8c
TS
728 ssl->lock = NULL;
729 return 0;
730 }
731
38b051a1
TM
732 SSL_CTX_up_ref(ctx);
733 ssl->ctx = ctx;
734
a7f41885 735 ssl->defltmeth = ssl->method = method;
38b051a1 736
38b051a1
TM
737 return 1;
738}
739
a7f41885 740SSL *ossl_ssl_connection_new_int(SSL_CTX *ctx, const SSL_METHOD *method)
38b051a1
TM
741{
742 SSL_CONNECTION *s;
743 SSL *ssl;
0f113f3e 744
b51bce94 745 s = OPENSSL_zalloc(sizeof(*s));
0f113f3e 746 if (s == NULL)
38b051a1 747 return NULL;
0f113f3e 748
38b051a1 749 ssl = &s->ssl;
a7f41885 750 if (!ossl_ssl_init(ssl, ctx, method, SSL_TYPE_SSL_CONNECTION)) {
e6b10c34
BE
751 OPENSSL_free(s);
752 s = NULL;
c4a44e7b 753 ssl = NULL;
e077455e 754 goto sslerr;
e6b10c34 755 }
ae3947de 756
c036e210 757 RECORD_LAYER_init(&s->rlayer, s);
28d59af8 758
0f113f3e 759 s->options = ctx->options;
f0d9757c 760
5ae4ceb9 761 s->dane.flags = ctx->dane.flags;
4f373a97
TM
762 if (method->version == ctx->method->version) {
763 s->min_proto_version = ctx->min_proto_version;
764 s->max_proto_version = ctx->max_proto_version;
765 }
0eecf841
HL
766
767 s->min_proto_version = ctx->min_proto_version;
768 if (IS_QUIC_CTX(ctx) && s->min_proto_version < TLS1_3_VERSION)
769 s->min_proto_version = TLS1_3_VERSION;
770
771 s->max_proto_version = ctx->max_proto_version;
772 if (IS_QUIC_CTX(ctx) && s->max_proto_version < TLS1_3_VERSION)
773 s->max_proto_version = 0;
774
0f113f3e
MC
775 s->mode = ctx->mode;
776 s->max_cert_list = ctx->max_cert_list;
82a2beca
HL
777
778 if (!IS_QUIC_CTX(ctx)) {
779 s->max_early_data = ctx->max_early_data;
780 s->recv_max_early_data = ctx->recv_max_early_data;
781 }
782
9d0a8bb7 783 s->num_tickets = ctx->num_tickets;
e97be718 784 s->pha_enabled = ctx->pha_enabled;
0f113f3e 785
f865b081
MC
786 /* Shallow copy of the ciphersuites stack */
787 s->tls13_ciphersuites = sk_SSL_CIPHER_dup(ctx->tls13_ciphersuites);
788 if (s->tls13_ciphersuites == NULL)
e077455e 789 goto cerr;
f865b081 790
2c382349
KR
791 /*
792 * Earlier library versions used to copy the pointer to the CERT, not
793 * its contents; only when setting new parameters for the per-SSL
794 * copy, ssl_cert_new would be called (and the direct reference to
795 * the per-SSL_CTX settings would be lost, but those still were
796 * indirectly accessed for various purposes, and for that reason they
797 * used to be known as s->ctx->default_cert). Now we don't look at the
798 * SSL_CTX's CERT after having duplicated it once.
799 */
800 s->cert = ssl_cert_dup(ctx->cert);
801 if (s->cert == NULL)
e077455e 802 goto sslerr;
0f113f3e 803
52e1d7b1 804 RECORD_LAYER_set_read_ahead(&s->rlayer, ctx->read_ahead);
0f113f3e
MC
805 s->msg_callback = ctx->msg_callback;
806 s->msg_callback_arg = ctx->msg_callback_arg;
807 s->verify_mode = ctx->verify_mode;
808 s->not_resumable_session_cb = ctx->not_resumable_session_cb;
d0638fd5
HL
809 if (!IS_QUIC_CTX(ctx)) {
810 s->rlayer.record_padding_cb = ctx->record_padding_cb;
811 s->rlayer.record_padding_arg = ctx->record_padding_arg;
812 s->rlayer.block_padding = ctx->block_padding;
813 }
0f113f3e 814 s->sid_ctx_length = ctx->sid_ctx_length;
cbe29648 815 if (!ossl_assert(s->sid_ctx_length <= sizeof(s->sid_ctx)))
380a522f 816 goto err;
0f113f3e
MC
817 memcpy(&s->sid_ctx, &ctx->sid_ctx, sizeof(s->sid_ctx));
818 s->verify_callback = ctx->default_verify_callback;
819 s->generate_session_id = ctx->generate_session_id;
820
821 s->param = X509_VERIFY_PARAM_new();
a71edf3b 822 if (s->param == NULL)
e077455e 823 goto asn1err;
0f113f3e 824 X509_VERIFY_PARAM_inherit(s->param, ctx->param);
0f113f3e 825 s->quiet_shutdown = ctx->quiet_shutdown;
cf72c757 826
82a2beca 827 if (!IS_QUIC_CTX(ctx))
d0638fd5
HL
828 s->ext.max_fragment_len_mode = ctx->ext.max_fragment_len_mode;
829
0f113f3e 830 s->max_send_fragment = ctx->max_send_fragment;
d102d9df
MC
831 s->split_send_fragment = ctx->split_send_fragment;
832 s->max_pipelines = ctx->max_pipelines;
cffafb5f 833 s->rlayer.default_read_buf_len = ctx->default_read_buf_len;
bf21446a 834
aff8c126
RS
835 s->ext.debug_cb = 0;
836 s->ext.debug_arg = NULL;
837 s->ext.ticket_expected = 0;
838 s->ext.status_type = ctx->ext.status_type;
839 s->ext.status_expected = 0;
840 s->ext.ocsp.ids = NULL;
841 s->ext.ocsp.exts = NULL;
842 s->ext.ocsp.resp = NULL;
843 s->ext.ocsp.resp_len = 0;
16203f7b 844 SSL_CTX_up_ref(ctx);
222da979 845 s->session_ctx = ctx;
aff8c126
RS
846 if (ctx->ext.ecpointformats) {
847 s->ext.ecpointformats =
848 OPENSSL_memdup(ctx->ext.ecpointformats,
849 ctx->ext.ecpointformats_len);
39a14059
MC
850 if (!s->ext.ecpointformats) {
851 s->ext.ecpointformats_len = 0;
0f113f3e 852 goto err;
39a14059 853 }
aff8c126
RS
854 s->ext.ecpointformats_len =
855 ctx->ext.ecpointformats_len;
856 }
857 if (ctx->ext.supportedgroups) {
858 s->ext.supportedgroups =
859 OPENSSL_memdup(ctx->ext.supportedgroups,
9e84a42d 860 ctx->ext.supportedgroups_len
b92d7b62 861 * sizeof(*ctx->ext.supportedgroups));
39a14059
MC
862 if (!s->ext.supportedgroups) {
863 s->ext.supportedgroups_len = 0;
0f113f3e 864 goto err;
39a14059 865 }
aff8c126 866 s->ext.supportedgroups_len = ctx->ext.supportedgroups_len;
0f113f3e 867 }
dbc6268f 868
a230b26e 869#ifndef OPENSSL_NO_NEXTPROTONEG
aff8c126 870 s->ext.npn = NULL;
a230b26e 871#endif
6f017a8f 872
38b051a1
TM
873 if (ctx->ext.alpn != NULL) {
874 s->ext.alpn = OPENSSL_malloc(ctx->ext.alpn_len);
39a14059
MC
875 if (s->ext.alpn == NULL) {
876 s->ext.alpn_len = 0;
0f113f3e 877 goto err;
39a14059 878 }
38b051a1
TM
879 memcpy(s->ext.alpn, ctx->ext.alpn, ctx->ext.alpn_len);
880 s->ext.alpn_len = ctx->ext.alpn_len;
0f113f3e 881 }
d02b48c6 882
696178ed 883 s->verified_chain = NULL;
0f113f3e 884 s->verify_result = X509_V_OK;
d02b48c6 885
a974e64a
MC
886 s->default_passwd_callback = ctx->default_passwd_callback;
887 s->default_passwd_callback_userdata = ctx->default_passwd_callback_userdata;
888
44c04a2e
MC
889 s->key_update = SSL_KEY_UPDATE_NONE;
890
82a2beca
HL
891 if (!IS_QUIC_CTX(ctx)) {
892 s->allow_early_data_cb = ctx->allow_early_data_cb;
893 s->allow_early_data_cb_data = ctx->allow_early_data_cb_data;
894 }
c9598459 895
a7f41885 896 if (!method->ssl_init(ssl))
e077455e 897 goto sslerr;
d02b48c6 898
a7f41885 899 s->server = (method->ssl_accept == ssl_undefined_function) ? 0 : 1;
bf21446a 900
a7f41885 901 if (!method->ssl_reset(ssl))
e077455e 902 goto sslerr;
58964a49 903
ddac1974 904#ifndef OPENSSL_NO_PSK
0f113f3e
MC
905 s->psk_client_callback = ctx->psk_client_callback;
906 s->psk_server_callback = ctx->psk_server_callback;
ddac1974 907#endif
f46184bd
MC
908 s->psk_find_session_cb = ctx->psk_find_session_cb;
909 s->psk_use_session_cb = ctx->psk_use_session_cb;
ddac1974 910
9f5a87fd
PY
911 s->async_cb = ctx->async_cb;
912 s->async_cb_arg = ctx->async_cb_arg;
913
07bbc92c
MC
914 s->job = NULL;
915
b67cb09f
TS
916#ifndef OPENSSL_NO_COMP_ALG
917 memcpy(s->cert_comp_prefs, ctx->cert_comp_prefs, sizeof(s->cert_comp_prefs));
918#endif
3c95ef22
TS
919 if (ctx->client_cert_type != NULL) {
920 s->client_cert_type = OPENSSL_memdup(ctx->client_cert_type,
921 ctx->client_cert_type_len);
922 if (s->client_cert_type == NULL)
923 goto sslerr;
924 s->client_cert_type_len = ctx->client_cert_type_len;
925 }
926 if (ctx->server_cert_type != NULL) {
927 s->server_cert_type = OPENSSL_memdup(ctx->server_cert_type,
928 ctx->server_cert_type_len);
929 if (s->server_cert_type == NULL)
930 goto sslerr;
931 s->server_cert_type_len = ctx->server_cert_type_len;
932 }
b67cb09f 933
ed29e82a 934#ifndef OPENSSL_NO_CT
38b051a1 935 if (!SSL_set_ct_validation_callback(ssl, ctx->ct_validation_callback,
a230b26e 936 ctx->ct_validation_callback_arg))
e077455e 937 goto sslerr;
ed29e82a
RP
938#endif
939
ee58915c 940 s->ssl_pkey_num = SSL_PKEY_NUM + ctx->sigalg_list_len;
38b051a1 941 return ssl;
e077455e
RL
942 cerr:
943 ERR_raise(ERR_LIB_SSL, ERR_R_CRYPTO_LIB);
944 goto err;
945 asn1err:
946 ERR_raise(ERR_LIB_SSL, ERR_R_ASN1_LIB);
947 goto err;
948 sslerr:
949 ERR_raise(ERR_LIB_SSL, ERR_R_SSL_LIB);
0f113f3e 950 err:
38b051a1 951 SSL_free(ssl);
16203f7b 952 return NULL;
0f113f3e 953}
d02b48c6 954
a7f41885
MC
955SSL *ossl_ssl_connection_new(SSL_CTX *ctx)
956{
957 return ossl_ssl_connection_new_int(ctx, ctx->method);
958}
959
e417070c
RS
960int SSL_is_dtls(const SSL *s)
961{
38b051a1
TM
962 SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
963
50769b15 964#ifndef OPENSSL_NO_QUIC
f8636c7e 965 if (s->type == SSL_TYPE_QUIC_CONNECTION || s->type == SSL_TYPE_QUIC_XSO)
50769b15
MC
966 return 0;
967#endif
968
38b051a1
TM
969 if (sc == NULL)
970 return 0;
971
972 return SSL_CONNECTION_IS_DTLS(sc) ? 1 : 0;
e417070c
RS
973}
974
50769b15
MC
975int SSL_is_tls(const SSL *s)
976{
977 SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
978
979#ifndef OPENSSL_NO_QUIC
f8636c7e 980 if (s->type == SSL_TYPE_QUIC_CONNECTION || s->type == SSL_TYPE_QUIC_XSO)
50769b15
MC
981 return 0;
982#endif
983
984 if (sc == NULL)
985 return 0;
986
987 return SSL_CONNECTION_IS_DTLS(sc) ? 0 : 1;
988}
989
990int SSL_is_quic(const SSL *s)
991{
992#ifndef OPENSSL_NO_QUIC
f8636c7e 993 if (s->type == SSL_TYPE_QUIC_CONNECTION || s->type == SSL_TYPE_QUIC_XSO)
50769b15
MC
994 return 1;
995#endif
996 return 0;
997}
998
c5ebfcab 999int SSL_up_ref(SSL *s)
a18a31e4 1000{
16203f7b 1001 int i;
c5ebfcab 1002
43a07d6d 1003 if (CRYPTO_UP_REF(&s->references, &i) <= 0)
c5ebfcab
F
1004 return 0;
1005
1006 REF_PRINT_COUNT("SSL", s);
1007 REF_ASSERT_ISNT(i < 2);
1008 return ((i > 1) ? 1 : 0);
a18a31e4
MC
1009}
1010
0f113f3e
MC
1011int SSL_CTX_set_session_id_context(SSL_CTX *ctx, const unsigned char *sid_ctx,
1012 unsigned int sid_ctx_len)
1013{
fe9edc9d 1014 if (sid_ctx_len > SSL_MAX_SID_CTX_LENGTH) {
6849b73c 1015 ERR_raise(ERR_LIB_SSL, SSL_R_SSL_SESSION_ID_CONTEXT_TOO_LONG);
0f113f3e
MC
1016 return 0;
1017 }
1018 ctx->sid_ctx_length = sid_ctx_len;
1019 memcpy(ctx->sid_ctx, sid_ctx, sid_ctx_len);
4eb77b26
BM
1020
1021 return 1;
0f113f3e 1022}
4eb77b26 1023
0f113f3e
MC
1024int SSL_set_session_id_context(SSL *ssl, const unsigned char *sid_ctx,
1025 unsigned int sid_ctx_len)
1026{
38b051a1
TM
1027 SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(ssl);
1028
1029 if (sc == NULL)
1030 return 0;
1031
0f113f3e 1032 if (sid_ctx_len > SSL_MAX_SID_CTX_LENGTH) {
6849b73c 1033 ERR_raise(ERR_LIB_SSL, SSL_R_SSL_SESSION_ID_CONTEXT_TOO_LONG);
0f113f3e
MC
1034 return 0;
1035 }
38b051a1
TM
1036 sc->sid_ctx_length = sid_ctx_len;
1037 memcpy(sc->sid_ctx, sid_ctx, sid_ctx_len);
b4cadc6e
BL
1038
1039 return 1;
0f113f3e 1040}
b4cadc6e 1041
dc644fe2 1042int SSL_CTX_set_generate_session_id(SSL_CTX *ctx, GEN_SESSION_CB cb)
0f113f3e 1043{
cd3f8c1b
RS
1044 if (!CRYPTO_THREAD_write_lock(ctx->lock))
1045 return 0;
0f113f3e 1046 ctx->generate_session_id = cb;
16203f7b 1047 CRYPTO_THREAD_unlock(ctx->lock);
0f113f3e
MC
1048 return 1;
1049}
dc644fe2
GT
1050
1051int SSL_set_generate_session_id(SSL *ssl, GEN_SESSION_CB cb)
0f113f3e 1052{
38b051a1
TM
1053 SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(ssl);
1054
1055 if (sc == NULL || !CRYPTO_THREAD_write_lock(ssl->lock))
cd3f8c1b 1056 return 0;
38b051a1 1057 sc->generate_session_id = cb;
16203f7b 1058 CRYPTO_THREAD_unlock(ssl->lock);
0f113f3e
MC
1059 return 1;
1060}
dc644fe2 1061
f85c9904 1062int SSL_has_matching_session_id(const SSL *ssl, const unsigned char *id,
0f113f3e
MC
1063 unsigned int id_len)
1064{
1065 /*
1066 * A quick examination of SSL_SESSION_hash and SSL_SESSION_cmp shows how
69687aa8 1067 * we can "construct" a session to give us the desired check - i.e. to
0f113f3e
MC
1068 * find if there's a session in the hash table that would conflict with
1069 * any new session built out of this id/id_len and the ssl_version in use
1070 * by this SSL.
1071 */
1072 SSL_SESSION r, *p;
38b051a1 1073 const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(ssl);
0f113f3e 1074
38b051a1 1075 if (sc == NULL || id_len > sizeof(r.session_id))
0f113f3e
MC
1076 return 0;
1077
38b051a1 1078 r.ssl_version = sc->version;
0f113f3e
MC
1079 r.session_id_length = id_len;
1080 memcpy(r.session_id, id, id_len);
1081
38b051a1 1082 if (!CRYPTO_THREAD_read_lock(sc->session_ctx->lock))
cd3f8c1b 1083 return 0;
38b051a1
TM
1084 p = lh_SSL_SESSION_retrieve(sc->session_ctx->sessions, &r);
1085 CRYPTO_THREAD_unlock(sc->session_ctx->lock);
0f113f3e
MC
1086 return (p != NULL);
1087}
dc644fe2 1088
bb7cd4e3 1089int SSL_CTX_set_purpose(SSL_CTX *s, int purpose)
0f113f3e
MC
1090{
1091 return X509_VERIFY_PARAM_set_purpose(s->param, purpose);
1092}
bb7cd4e3
DSH
1093
1094int SSL_set_purpose(SSL *s, int purpose)
0f113f3e 1095{
38b051a1
TM
1096 SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
1097
1098 if (sc == NULL)
1099 return 0;
1100
1101 return X509_VERIFY_PARAM_set_purpose(sc->param, purpose);
0f113f3e 1102}
926a56bf 1103
bb7cd4e3 1104int SSL_CTX_set_trust(SSL_CTX *s, int trust)
0f113f3e
MC
1105{
1106 return X509_VERIFY_PARAM_set_trust(s->param, trust);
1107}
bb7cd4e3
DSH
1108
1109int SSL_set_trust(SSL *s, int trust)
0f113f3e 1110{
38b051a1
TM
1111 SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
1112
1113 if (sc == NULL)
1114 return 0;
1115
1116 return X509_VERIFY_PARAM_set_trust(sc->param, trust);
0f113f3e 1117}
bb7cd4e3 1118
919ba009
VD
1119int SSL_set1_host(SSL *s, const char *hostname)
1120{
38b051a1
TM
1121 SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
1122
1123 if (sc == NULL)
1124 return 0;
1125
c832840e
DW
1126 /* If a hostname is provided and parses as an IP address,
1127 * treat it as such. */
38b051a1
TM
1128 if (hostname != NULL
1129 && X509_VERIFY_PARAM_set1_ip_asc(sc->param, hostname) == 1)
c832840e
DW
1130 return 1;
1131
38b051a1 1132 return X509_VERIFY_PARAM_set1_host(sc->param, hostname, 0);
919ba009
VD
1133}
1134
1135int SSL_add1_host(SSL *s, const char *hostname)
1136{
38b051a1
TM
1137 SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
1138
1139 if (sc == NULL)
1140 return 0;
1141
c832840e
DW
1142 /* If a hostname is provided and parses as an IP address,
1143 * treat it as such. */
892a9e4c
DW
1144 if (hostname)
1145 {
1146 ASN1_OCTET_STRING *ip;
1147 char *old_ip;
1148
1149 ip = a2i_IPADDRESS(hostname);
1150 if (ip) {
1151 /* We didn't want it; only to check if it *is* an IP address */
1152 ASN1_OCTET_STRING_free(ip);
1153
38b051a1 1154 old_ip = X509_VERIFY_PARAM_get1_ip_asc(sc->param);
892a9e4c
DW
1155 if (old_ip)
1156 {
f2bfc53b 1157 OPENSSL_free(old_ip);
892a9e4c
DW
1158 /* There can be only one IP address */
1159 return 0;
1160 }
1161
38b051a1 1162 return X509_VERIFY_PARAM_set1_ip_asc(sc->param, hostname);
892a9e4c
DW
1163 }
1164 }
c832840e 1165
38b051a1 1166 return X509_VERIFY_PARAM_add1_host(sc->param, hostname, 0);
919ba009
VD
1167}
1168
1169void SSL_set_hostflags(SSL *s, unsigned int flags)
1170{
38b051a1
TM
1171 SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
1172
1173 if (sc == NULL)
1174 return;
1175
1176 X509_VERIFY_PARAM_set_hostflags(sc->param, flags);
919ba009
VD
1177}
1178
4588cb44 1179const char *SSL_get0_peername(SSL *s)
919ba009 1180{
38b051a1
TM
1181 SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
1182
1183 if (sc == NULL)
1184 return NULL;
1185
1186 return X509_VERIFY_PARAM_get0_peername(sc->param);
919ba009
VD
1187}
1188
1189int SSL_CTX_dane_enable(SSL_CTX *ctx)
1190{
1191 return dane_ctx_enable(&ctx->dane);
1192}
1193
5ae4ceb9
VD
1194unsigned long SSL_CTX_dane_set_flags(SSL_CTX *ctx, unsigned long flags)
1195{
1196 unsigned long orig = ctx->dane.flags;
1197
1198 ctx->dane.flags |= flags;
1199 return orig;
1200}
1201
1202unsigned long SSL_CTX_dane_clear_flags(SSL_CTX *ctx, unsigned long flags)
1203{
1204 unsigned long orig = ctx->dane.flags;
1205
1206 ctx->dane.flags &= ~flags;
1207 return orig;
1208}
1209
919ba009
VD
1210int SSL_dane_enable(SSL *s, const char *basedomain)
1211{
38b051a1
TM
1212 SSL_DANE *dane;
1213 SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
919ba009 1214
38b051a1
TM
1215 if (sc == NULL)
1216 return 0;
1217
1218 dane = &sc->dane;
919ba009 1219 if (s->ctx->dane.mdmax == 0) {
6849b73c 1220 ERR_raise(ERR_LIB_SSL, SSL_R_CONTEXT_NOT_DANE_ENABLED);
919ba009
VD
1221 return 0;
1222 }
1223 if (dane->trecs != NULL) {
6849b73c 1224 ERR_raise(ERR_LIB_SSL, SSL_R_DANE_ALREADY_ENABLED);
919ba009
VD
1225 return 0;
1226 }
1227
8d887efa
VD
1228 /*
1229 * Default SNI name. This rejects empty names, while set1_host below
9929c817 1230 * accepts them and disables hostname checks. To avoid side-effects with
8d887efa
VD
1231 * invalid input, set the SNI name first.
1232 */
38b051a1 1233 if (sc->ext.hostname == NULL) {
dccd20d1 1234 if (!SSL_set_tlsext_host_name(s, basedomain)) {
6849b73c 1235 ERR_raise(ERR_LIB_SSL, SSL_R_ERROR_SETTING_TLSA_BASE_DOMAIN);
dccd20d1 1236 return -1;
8d887efa
VD
1237 }
1238 }
1239
919ba009 1240 /* Primary RFC6125 reference identifier */
38b051a1 1241 if (!X509_VERIFY_PARAM_set1_host(sc->param, basedomain, 0)) {
6849b73c 1242 ERR_raise(ERR_LIB_SSL, SSL_R_ERROR_SETTING_TLSA_BASE_DOMAIN);
919ba009
VD
1243 return -1;
1244 }
1245
919ba009
VD
1246 dane->mdpth = -1;
1247 dane->pdpth = -1;
1248 dane->dctx = &s->ctx->dane;
1249 dane->trecs = sk_danetls_record_new_null();
1250
1251 if (dane->trecs == NULL) {
e077455e 1252 ERR_raise(ERR_LIB_SSL, ERR_R_CRYPTO_LIB);
919ba009
VD
1253 return -1;
1254 }
1255 return 1;
1256}
1257
5ae4ceb9
VD
1258unsigned long SSL_dane_set_flags(SSL *ssl, unsigned long flags)
1259{
38b051a1
TM
1260 unsigned long orig;
1261 SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(ssl);
1262
1263 if (sc == NULL)
1264 return 0;
1265
1266 orig = sc->dane.flags;
5ae4ceb9 1267
38b051a1 1268 sc->dane.flags |= flags;
5ae4ceb9
VD
1269 return orig;
1270}
1271
1272unsigned long SSL_dane_clear_flags(SSL *ssl, unsigned long flags)
1273{
38b051a1
TM
1274 unsigned long orig;
1275 SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(ssl);
5ae4ceb9 1276
38b051a1
TM
1277 if (sc == NULL)
1278 return 0;
1279
1280 orig = sc->dane.flags;
1281
1282 sc->dane.flags &= ~flags;
5ae4ceb9
VD
1283 return orig;
1284}
1285
919ba009
VD
1286int SSL_get0_dane_authority(SSL *s, X509 **mcert, EVP_PKEY **mspki)
1287{
38b051a1
TM
1288 SSL_DANE *dane;
1289 SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
919ba009 1290
38b051a1
TM
1291 if (sc == NULL)
1292 return -1;
1293
1294 dane = &sc->dane;
1295
1296 if (!DANETLS_ENABLED(dane) || sc->verify_result != X509_V_OK)
919ba009
VD
1297 return -1;
1298 if (dane->mtlsa) {
1299 if (mcert)
1300 *mcert = dane->mcert;
1301 if (mspki)
1302 *mspki = (dane->mcert == NULL) ? dane->mtlsa->spki : NULL;
1303 }
1304 return dane->mdpth;
1305}
1306
1307int SSL_get0_dane_tlsa(SSL *s, uint8_t *usage, uint8_t *selector,
6d4313f0 1308 uint8_t *mtype, const unsigned char **data, size_t *dlen)
919ba009 1309{
38b051a1
TM
1310 SSL_DANE *dane;
1311 SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
919ba009 1312
38b051a1
TM
1313 if (sc == NULL)
1314 return -1;
1315
1316 dane = &sc->dane;
1317
1318 if (!DANETLS_ENABLED(dane) || sc->verify_result != X509_V_OK)
919ba009
VD
1319 return -1;
1320 if (dane->mtlsa) {
1321 if (usage)
1322 *usage = dane->mtlsa->usage;
1323 if (selector)
1324 *selector = dane->mtlsa->selector;
1325 if (mtype)
1326 *mtype = dane->mtlsa->mtype;
1327 if (data)
1328 *data = dane->mtlsa->data;
1329 if (dlen)
1330 *dlen = dane->mtlsa->dlen;
1331 }
1332 return dane->mdpth;
1333}
1334
b9aec69a 1335SSL_DANE *SSL_get0_dane(SSL *s)
919ba009 1336{
38b051a1
TM
1337 SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
1338
1339 if (sc == NULL)
1340 return NULL;
1341
1342 return &sc->dane;
919ba009
VD
1343}
1344
1345int SSL_dane_tlsa_add(SSL *s, uint8_t usage, uint8_t selector,
6d4313f0 1346 uint8_t mtype, const unsigned char *data, size_t dlen)
919ba009 1347{
38b051a1
TM
1348 SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
1349
1350 if (sc == NULL)
1351 return 0;
1352
1353 return dane_tlsa_add(&sc->dane, usage, selector, mtype, data, dlen);
919ba009
VD
1354}
1355
a230b26e
EK
1356int SSL_CTX_dane_mtype_set(SSL_CTX *ctx, const EVP_MD *md, uint8_t mtype,
1357 uint8_t ord)
919ba009
VD
1358{
1359 return dane_mtype_set(&ctx->dane, md, mtype, ord);
1360}
1361
ccf11751 1362int SSL_CTX_set1_param(SSL_CTX *ctx, X509_VERIFY_PARAM *vpm)
0f113f3e
MC
1363{
1364 return X509_VERIFY_PARAM_set1(ctx->param, vpm);
1365}
ccf11751
DSH
1366
1367int SSL_set1_param(SSL *ssl, X509_VERIFY_PARAM *vpm)
0f113f3e 1368{
38b051a1
TM
1369 SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(ssl);
1370
1371 if (sc == NULL)
1372 return 0;
1373
1374 return X509_VERIFY_PARAM_set1(sc->param, vpm);
0f113f3e 1375}
ccf11751 1376
7af31968 1377X509_VERIFY_PARAM *SSL_CTX_get0_param(SSL_CTX *ctx)
0f113f3e
MC
1378{
1379 return ctx->param;
1380}
7af31968
DSH
1381
1382X509_VERIFY_PARAM *SSL_get0_param(SSL *ssl)
0f113f3e 1383{
38b051a1
TM
1384 SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(ssl);
1385
1386 if (sc == NULL)
1387 return NULL;
1388
1389 return sc->param;
0f113f3e 1390}
7af31968 1391
a5ee80b9 1392void SSL_certs_clear(SSL *s)
0f113f3e 1393{
38b051a1
TM
1394 SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
1395
1396 if (sc == NULL)
1397 return;
1398
1399 ssl_cert_clear_certs(sc->cert);
0f113f3e 1400}
a5ee80b9 1401
4f43d0e7 1402void SSL_free(SSL *s)
0f113f3e
MC
1403{
1404 int i;
58964a49 1405
e6e9170d
RS
1406 if (s == NULL)
1407 return;
43a07d6d 1408 CRYPTO_DOWN_REF(&s->references, &i);
f3f1cf84 1409 REF_PRINT_COUNT("SSL", s);
0f113f3e
MC
1410 if (i > 0)
1411 return;
f3f1cf84 1412 REF_ASSERT_ISNT(i < 0);
d02b48c6 1413
38b051a1
TM
1414 CRYPTO_free_ex_data(CRYPTO_EX_INDEX_SSL, s, &s->ex_data);
1415
1416 if (s->method != NULL)
1417 s->method->ssl_free(s);
1418
1419 SSL_CTX_free(s->ctx);
1420 CRYPTO_THREAD_lock_free(s->lock);
43a07d6d 1421 CRYPTO_FREE_REF(&s->references);
38b051a1
TM
1422
1423 OPENSSL_free(s);
1424}
1425
1426void ossl_ssl_connection_free(SSL *ssl)
1427{
1428 SSL_CONNECTION *s;
1429
1430 s = SSL_CONNECTION_FROM_SSL_ONLY(ssl);
1431 if (s == NULL)
1432 return;
1433
222561fe 1434 X509_VERIFY_PARAM_free(s->param);
919ba009 1435 dane_final(&s->dane);
0f113f3e 1436
b77f3ed1 1437 /* Ignore return value */
2e7dc7cd
MC
1438 ssl_free_wbio_buffer(s);
1439
9ff51954
MC
1440 RECORD_LAYER_clear(&s->rlayer);
1441
25aaa98a 1442 BUF_MEM_free(s->init_buf);
0f113f3e
MC
1443
1444 /* add extra stuff */
25aaa98a
RS
1445 sk_SSL_CIPHER_free(s->cipher_list);
1446 sk_SSL_CIPHER_free(s->cipher_list_by_id);
f865b081 1447 sk_SSL_CIPHER_free(s->tls13_ciphersuites);
eee2a6a7 1448 sk_SSL_CIPHER_free(s->peer_ciphers);
0f113f3e
MC
1449
1450 /* Make the next call work :-) */
1451 if (s->session != NULL) {
1452 ssl_clear_bad_session(s);
1453 SSL_SESSION_free(s->session);
1454 }
9368f865 1455 SSL_SESSION_free(s->psksession);
add8d0e9 1456 OPENSSL_free(s->psksession_id);
0f113f3e 1457
e0e920b1 1458 ssl_cert_free(s->cert);
29948ac8 1459 OPENSSL_free(s->shared_sigalgs);
0f113f3e 1460 /* Free up if allocated */
d02b48c6 1461
aff8c126 1462 OPENSSL_free(s->ext.hostname);
222da979 1463 SSL_CTX_free(s->session_ctx);
aff8c126 1464 OPENSSL_free(s->ext.ecpointformats);
cd0fb43c 1465 OPENSSL_free(s->ext.peer_ecpointformats);
aff8c126 1466 OPENSSL_free(s->ext.supportedgroups);
45436e61 1467 OPENSSL_free(s->ext.peer_supportedgroups);
aff8c126 1468 sk_X509_EXTENSION_pop_free(s->ext.ocsp.exts, X509_EXTENSION_free);
3e41ac35 1469#ifndef OPENSSL_NO_OCSP
aff8c126 1470 sk_OCSP_RESPID_pop_free(s->ext.ocsp.ids, OCSP_RESPID_free);
3e41ac35 1471#endif
ed29e82a
RP
1472#ifndef OPENSSL_NO_CT
1473 SCT_LIST_free(s->scts);
aff8c126 1474 OPENSSL_free(s->ext.scts);
ed29e82a 1475#endif
aff8c126
RS
1476 OPENSSL_free(s->ext.ocsp.resp);
1477 OPENSSL_free(s->ext.alpn);
cfef5027 1478 OPENSSL_free(s->ext.tls13_cookie);
94941cad
MK
1479 if (s->clienthello != NULL)
1480 OPENSSL_free(s->clienthello->pre_proc_exts);
6b1bb98f 1481 OPENSSL_free(s->clienthello);
9d75dce3
TS
1482 OPENSSL_free(s->pha_context);
1483 EVP_MD_CTX_free(s->pha_dgst);
0f113f3e 1484
fa7c2637 1485 sk_X509_NAME_pop_free(s->ca_names, X509_NAME_free);
98732979 1486 sk_X509_NAME_pop_free(s->client_ca_names, X509_NAME_free);
0f113f3e 1487
3c95ef22
TS
1488 OPENSSL_free(s->client_cert_type);
1489 OPENSSL_free(s->server_cert_type);
1490
79b2a2f2 1491 OSSL_STACK_OF_X509_free(s->verified_chain);
696178ed 1492
38b051a1
TM
1493 if (ssl->method != NULL)
1494 ssl->method->ssl_deinit(ssl);
7c3908dd 1495
ff75a257
MC
1496 ASYNC_WAIT_CTX_free(s->waitctx);
1497
e481f9b9 1498#if !defined(OPENSSL_NO_NEXTPROTONEG)
aff8c126 1499 OPENSSL_free(s->ext.npn);
ee2ffc27
BL
1500#endif
1501
e783bae2 1502#ifndef OPENSSL_NO_SRTP
25aaa98a 1503 sk_SRTP_PROTECTION_PROFILE_free(s->srtp_profiles);
0f113f3e 1504#endif
cd6e89b6
MC
1505
1506 /*
1507 * We do this late. We want to ensure that any other references we held to
1508 * these BIOs are freed first *before* we call BIO_free_all(), because
1509 * BIO_free_all() will only free each BIO in the chain if the number of
1510 * references to the first BIO have dropped to 0
1511 */
1512 BIO_free_all(s->wbio);
1513 s->wbio = NULL;
1514 BIO_free_all(s->rbio);
1515 s->rbio = NULL;
ee58915c 1516 OPENSSL_free(s->s3.tmp.valid_flags);
0f113f3e
MC
1517}
1518
65e2d672 1519void SSL_set0_rbio(SSL *s, BIO *rbio)
3ffbe008 1520{
38b051a1 1521 SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
03bacce8 1522
6d495cc4
HL
1523#ifndef OPENSSL_NO_QUIC
1524 if (IS_QUIC(s)) {
1525 ossl_quic_conn_set0_net_rbio(s, rbio);
03bacce8
HL
1526 return;
1527 }
1528#endif
38b051a1
TM
1529
1530 if (sc == NULL)
1531 return;
1532
1533 BIO_free_all(sc->rbio);
1534 sc->rbio = rbio;
cffafb5f 1535 sc->rlayer.rrlmethod->set1_bio(sc->rlayer.rrl, sc->rbio);
3ffbe008
MC
1536}
1537
65e2d672 1538void SSL_set0_wbio(SSL *s, BIO *wbio)
0f113f3e 1539{
38b051a1 1540 SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
03bacce8 1541
6d495cc4
HL
1542#ifndef OPENSSL_NO_QUIC
1543 if (IS_QUIC(s)) {
1544 ossl_quic_conn_set0_net_wbio(s, wbio);
03bacce8
HL
1545 return;
1546 }
1547#endif
38b051a1
TM
1548
1549 if (sc == NULL)
1550 return;
1551
0f113f3e
MC
1552 /*
1553 * If the output buffering BIO is still in place, remove it
1554 */
38b051a1
TM
1555 if (sc->bbio != NULL)
1556 sc->wbio = BIO_pop(sc->wbio);
2e7dc7cd 1557
38b051a1
TM
1558 BIO_free_all(sc->wbio);
1559 sc->wbio = wbio;
2e7dc7cd
MC
1560
1561 /* Re-attach |bbio| to the new |wbio|. */
38b051a1
TM
1562 if (sc->bbio != NULL)
1563 sc->wbio = BIO_push(sc->bbio, sc->wbio);
b5cf81f7
MC
1564
1565 sc->rlayer.wrlmethod->set1_bio(sc->rlayer.wrl, sc->wbio);
0f113f3e 1566}
d02b48c6 1567
3ffbe008
MC
1568void SSL_set_bio(SSL *s, BIO *rbio, BIO *wbio)
1569{
65e2d672
MC
1570 /*
1571 * For historical reasons, this function has many different cases in
1572 * ownership handling.
1573 */
1574
1575 /* If nothing has changed, do nothing */
1576 if (rbio == SSL_get_rbio(s) && wbio == SSL_get_wbio(s))
1577 return;
1578
1579 /*
1580 * If the two arguments are equal then one fewer reference is granted by the
1581 * caller than we want to take
1582 */
1583 if (rbio != NULL && rbio == wbio)
1584 BIO_up_ref(rbio);
1585
1586 /*
1587 * If only the wbio is changed only adopt one reference.
1588 */
1589 if (rbio == SSL_get_rbio(s)) {
1590 SSL_set0_wbio(s, wbio);
1591 return;
1592 }
1593 /*
1594 * There is an asymmetry here for historical reasons. If only the rbio is
1595 * changed AND the rbio and wbio were originally different, then we only
1596 * adopt one reference.
1597 */
1598 if (wbio == SSL_get_wbio(s) && SSL_get_rbio(s) != SSL_get_wbio(s)) {
1599 SSL_set0_rbio(s, rbio);
1600 return;
1601 }
1602
1603 /* Otherwise, adopt both references. */
1604 SSL_set0_rbio(s, rbio);
1605 SSL_set0_wbio(s, wbio);
3ffbe008
MC
1606}
1607
0821bcd4 1608BIO *SSL_get_rbio(const SSL *s)
0f113f3e 1609{
38b051a1 1610 const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(s);
03bacce8 1611
6d495cc4
HL
1612#ifndef OPENSSL_NO_QUIC
1613 if (IS_QUIC(s))
1614 return ossl_quic_conn_get_net_rbio(s);
03bacce8 1615#endif
38b051a1
TM
1616
1617 if (sc == NULL)
1618 return NULL;
1619
1620 return sc->rbio;
0f113f3e 1621}
d02b48c6 1622
0821bcd4 1623BIO *SSL_get_wbio(const SSL *s)
0f113f3e 1624{
38b051a1 1625 const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(s);
03bacce8 1626
6d495cc4
HL
1627#ifndef OPENSSL_NO_QUIC
1628 if (IS_QUIC(s))
1629 return ossl_quic_conn_get_net_wbio(s);
03bacce8 1630#endif
38b051a1
TM
1631
1632 if (sc == NULL)
1633 return NULL;
1634
1635 if (sc->bbio != NULL) {
2e7dc7cd
MC
1636 /*
1637 * If |bbio| is active, the true caller-configured BIO is its
1638 * |next_bio|.
1639 */
38b051a1 1640 return BIO_next(sc->bbio);
2e7dc7cd 1641 }
38b051a1 1642 return sc->wbio;
0f113f3e 1643}
d02b48c6 1644
0821bcd4 1645int SSL_get_fd(const SSL *s)
0f113f3e 1646{
2e7dc7cd 1647 return SSL_get_rfd(s);
0f113f3e 1648}
24cbf3ef 1649
0821bcd4 1650int SSL_get_rfd(const SSL *s)
0f113f3e
MC
1651{
1652 int ret = -1;
1653 BIO *b, *r;
1654
1655 b = SSL_get_rbio(s);
1656 r = BIO_find_type(b, BIO_TYPE_DESCRIPTOR);
1657 if (r != NULL)
1658 BIO_get_fd(r, &ret);
26a7d938 1659 return ret;
0f113f3e 1660}
d02b48c6 1661
0821bcd4 1662int SSL_get_wfd(const SSL *s)
0f113f3e
MC
1663{
1664 int ret = -1;
1665 BIO *b, *r;
1666
1667 b = SSL_get_wbio(s);
1668 r = BIO_find_type(b, BIO_TYPE_DESCRIPTOR);
1669 if (r != NULL)
1670 BIO_get_fd(r, &ret);
26a7d938 1671 return ret;
0f113f3e 1672}
24cbf3ef 1673
bc36ee62 1674#ifndef OPENSSL_NO_SOCK
0f113f3e
MC
1675int SSL_set_fd(SSL *s, int fd)
1676{
1677 int ret = 0;
1678 BIO *bio = NULL;
1679
5e6015af 1680 bio = BIO_new(IS_QUIC_SSL(s) ? BIO_s_datagram() : BIO_s_socket());
0f113f3e
MC
1681
1682 if (bio == NULL) {
6849b73c 1683 ERR_raise(ERR_LIB_SSL, ERR_R_BUF_LIB);
0f113f3e
MC
1684 goto err;
1685 }
1686 BIO_set_fd(bio, fd, BIO_NOCLOSE);
1687 SSL_set_bio(s, bio, bio);
50ec7505
BP
1688#ifndef OPENSSL_NO_KTLS
1689 /*
1690 * The new socket is created successfully regardless of ktls_enable.
1691 * ktls_enable doesn't change any functionality of the socket, except
1692 * changing the setsockopt to enable the processing of ktls_start.
1693 * Thus, it is not a problem to call it for non-TLS sockets.
1694 */
1695 ktls_enable(fd);
1696#endif /* OPENSSL_NO_KTLS */
0f113f3e
MC
1697 ret = 1;
1698 err:
26a7d938 1699 return ret;
0f113f3e 1700}
d02b48c6 1701
0f113f3e
MC
1702int SSL_set_wfd(SSL *s, int fd)
1703{
2e7dc7cd 1704 BIO *rbio = SSL_get_rbio(s);
5e6015af 1705 int desired_type = IS_QUIC_SSL(s) ? BIO_TYPE_DGRAM : BIO_TYPE_SOCKET;
0f113f3e 1706
5e6015af 1707 if (rbio == NULL || BIO_method_type(rbio) != desired_type
2e7dc7cd 1708 || (int)BIO_get_fd(rbio, NULL) != fd) {
5e6015af 1709 BIO *bio = BIO_new(IS_QUIC_SSL(s) ? BIO_s_datagram() : BIO_s_socket());
0f113f3e
MC
1710
1711 if (bio == NULL) {
6849b73c 1712 ERR_raise(ERR_LIB_SSL, ERR_R_BUF_LIB);
2e7dc7cd 1713 return 0;
0f113f3e
MC
1714 }
1715 BIO_set_fd(bio, fd, BIO_NOCLOSE);
65e2d672 1716 SSL_set0_wbio(s, bio);
50ec7505
BP
1717#ifndef OPENSSL_NO_KTLS
1718 /*
1719 * The new socket is created successfully regardless of ktls_enable.
1720 * ktls_enable doesn't change any functionality of the socket, except
1721 * changing the setsockopt to enable the processing of ktls_start.
1722 * Thus, it is not a problem to call it for non-TLS sockets.
1723 */
1724 ktls_enable(fd);
1725#endif /* OPENSSL_NO_KTLS */
2e7dc7cd 1726 } else {
65e2d672
MC
1727 BIO_up_ref(rbio);
1728 SSL_set0_wbio(s, rbio);
2e7dc7cd
MC
1729 }
1730 return 1;
0f113f3e
MC
1731}
1732
1733int SSL_set_rfd(SSL *s, int fd)
1734{
2e7dc7cd 1735 BIO *wbio = SSL_get_wbio(s);
5e6015af 1736 int desired_type = IS_QUIC_SSL(s) ? BIO_TYPE_DGRAM : BIO_TYPE_SOCKET;
0f113f3e 1737
5e6015af 1738 if (wbio == NULL || BIO_method_type(wbio) != desired_type
2e7dc7cd 1739 || ((int)BIO_get_fd(wbio, NULL) != fd)) {
5e6015af 1740 BIO *bio = BIO_new(IS_QUIC_SSL(s) ? BIO_s_datagram() : BIO_s_socket());
0f113f3e
MC
1741
1742 if (bio == NULL) {
6849b73c 1743 ERR_raise(ERR_LIB_SSL, ERR_R_BUF_LIB);
2e7dc7cd 1744 return 0;
0f113f3e
MC
1745 }
1746 BIO_set_fd(bio, fd, BIO_NOCLOSE);
65e2d672 1747 SSL_set0_rbio(s, bio);
2e7dc7cd 1748 } else {
65e2d672
MC
1749 BIO_up_ref(wbio);
1750 SSL_set0_rbio(s, wbio);
2e7dc7cd
MC
1751 }
1752
1753 return 1;
0f113f3e
MC
1754}
1755#endif
ca03109c
BM
1756
1757/* return length of latest Finished message we sent, copy to 'buf' */
0821bcd4 1758size_t SSL_get_finished(const SSL *s, void *buf, size_t count)
0f113f3e
MC
1759{
1760 size_t ret = 0;
38b051a1
TM
1761 const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(s);
1762
1763 if (sc == NULL)
1764 return 0;
0f113f3e 1765
38b051a1 1766 ret = sc->s3.tmp.finish_md_len;
555cbb32
TS
1767 if (count > ret)
1768 count = ret;
38b051a1 1769 memcpy(buf, sc->s3.tmp.finish_md, count);
0f113f3e
MC
1770 return ret;
1771}
ca03109c
BM
1772
1773/* return length of latest Finished message we expected, copy to 'buf' */
0821bcd4 1774size_t SSL_get_peer_finished(const SSL *s, void *buf, size_t count)
0f113f3e
MC
1775{
1776 size_t ret = 0;
38b051a1 1777 const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(s);
ca03109c 1778
38b051a1
TM
1779 if (sc == NULL)
1780 return 0;
1781
1782 ret = sc->s3.tmp.peer_finish_md_len;
555cbb32
TS
1783 if (count > ret)
1784 count = ret;
38b051a1 1785 memcpy(buf, sc->s3.tmp.peer_finish_md, count);
0f113f3e
MC
1786 return ret;
1787}
ca03109c 1788
0821bcd4 1789int SSL_get_verify_mode(const SSL *s)
0f113f3e 1790{
38b051a1
TM
1791 const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(s);
1792
1793 if (sc == NULL)
1794 return 0;
1795
1796 return sc->verify_mode;
0f113f3e 1797}
d02b48c6 1798
0821bcd4 1799int SSL_get_verify_depth(const SSL *s)
0f113f3e 1800{
38b051a1
TM
1801 const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(s);
1802
1803 if (sc == NULL)
1804 return 0;
1805
1806 return X509_VERIFY_PARAM_get_depth(sc->param);
0f113f3e 1807}
7f89714e 1808
0f113f3e 1809int (*SSL_get_verify_callback(const SSL *s)) (int, X509_STORE_CTX *) {
38b051a1
TM
1810 const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(s);
1811
1812 if (sc == NULL)
1813 return NULL;
1814
1815 return sc->verify_callback;
0f113f3e 1816}
d02b48c6 1817
0821bcd4 1818int SSL_CTX_get_verify_mode(const SSL_CTX *ctx)
0f113f3e 1819{
26a7d938 1820 return ctx->verify_mode;
0f113f3e 1821}
d02b48c6 1822
0821bcd4 1823int SSL_CTX_get_verify_depth(const SSL_CTX *ctx)
0f113f3e
MC
1824{
1825 return X509_VERIFY_PARAM_get_depth(ctx->param);
1826}
1827
1828int (*SSL_CTX_get_verify_callback(const SSL_CTX *ctx)) (int, X509_STORE_CTX *) {
26a7d938 1829 return ctx->default_verify_callback;
0f113f3e
MC
1830}
1831
1832void SSL_set_verify(SSL *s, int mode,
1833 int (*callback) (int ok, X509_STORE_CTX *ctx))
1834{
38b051a1
TM
1835 SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
1836
1837 if (sc == NULL)
1838 return;
1839
1840 sc->verify_mode = mode;
0f113f3e 1841 if (callback != NULL)
38b051a1 1842 sc->verify_callback = callback;
0f113f3e
MC
1843}
1844
1845void SSL_set_verify_depth(SSL *s, int depth)
1846{
38b051a1
TM
1847 SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
1848
1849 if (sc == NULL)
1850 return;
1851
1852 X509_VERIFY_PARAM_set_depth(sc->param, depth);
0f113f3e
MC
1853}
1854
1855void SSL_set_read_ahead(SSL *s, int yes)
1856{
38b051a1 1857 SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
4566dae7 1858 OSSL_PARAM options[2], *opts = options;
38b051a1 1859
d0638fd5 1860 if (sc == NULL || IS_QUIC_SSL(s))
38b051a1
TM
1861 return;
1862
1863 RECORD_LAYER_set_read_ahead(&sc->rlayer, yes);
4566dae7
MC
1864
1865 *opts++ = OSSL_PARAM_construct_int(OSSL_LIBSSL_RECORD_LAYER_PARAM_READ_AHEAD,
1866 &sc->rlayer.read_ahead);
1867 *opts = OSSL_PARAM_construct_end();
1868
1869 /* Ignore return value */
1870 sc->rlayer.rrlmethod->set_options(sc->rlayer.rrl, options);
0f113f3e 1871}
d02b48c6 1872
0821bcd4 1873int SSL_get_read_ahead(const SSL *s)
0f113f3e 1874{
38b051a1
TM
1875 const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(s);
1876
d0638fd5 1877 if (sc == NULL || IS_QUIC_SSL(s))
38b051a1
TM
1878 return 0;
1879
1880 return RECORD_LAYER_get_read_ahead(&sc->rlayer);
0f113f3e 1881}
d02b48c6 1882
0821bcd4 1883int SSL_pending(const SSL *s)
0f113f3e 1884{
8b0e934a
MC
1885 size_t pending = s->method->ssl_pending(s);
1886
0f113f3e
MC
1887 /*
1888 * SSL_pending cannot work properly if read-ahead is enabled
1889 * (SSL_[CTX_]ctrl(..., SSL_CTRL_SET_READ_AHEAD, 1, NULL)), and it is
1890 * impossible to fix since SSL_pending cannot report errors that may be
1891 * observed while scanning the new data. (Note that SSL_pending() is
1892 * often used as a boolean value, so we'd better not return -1.)
8b0e934a
MC
1893 *
1894 * SSL_pending also cannot work properly if the value >INT_MAX. In that case
1895 * we just return INT_MAX.
0f113f3e 1896 */
348240c6 1897 return pending < INT_MAX ? (int)pending : INT_MAX;
0f113f3e 1898}
d02b48c6 1899
49580f25
MC
1900int SSL_has_pending(const SSL *s)
1901{
9280d26a
HL
1902#ifndef OPENSSL_NO_QUIC
1903 const QUIC_CONNECTION *qc = QUIC_CONNECTION_FROM_SSL(s);
1904#endif
1905
49580f25
MC
1906 /*
1907 * Similar to SSL_pending() but returns a 1 to indicate that we have
6d6b295a
MC
1908 * processed or unprocessed data available or 0 otherwise (as opposed to the
1909 * number of bytes available). Unlike SSL_pending() this will take into
1910 * account read_ahead data. A 1 return simply indicates that we have data.
1911 * That data may not result in any application data, or we may fail to parse
1912 * the records for some reason.
49580f25 1913 */
560470b5 1914 const SSL_CONNECTION *sc;
560470b5 1915
22b1a96f
HL
1916#ifndef OPENSSL_NO_QUIC
1917 if (IS_QUIC(s))
6d495cc4 1918 return ossl_quic_has_pending(s);
560470b5
MC
1919#endif
1920
560470b5 1921 sc = SSL_CONNECTION_FROM_CONST_SSL(s);
38b051a1 1922
9280d26a
HL
1923#ifndef OPENSSL_NO_QUIC
1924 if (qc != NULL)
1925 return ossl_quic_has_pending(qc);
1926#endif
1927
6d6b295a
MC
1928 /* Check buffered app data if any first */
1929 if (SSL_CONNECTION_IS_DTLS(sc)) {
eddb067e 1930 TLS_RECORD *rdata;
6d6b295a
MC
1931 pitem *item, *iter;
1932
1933 iter = pqueue_iterator(sc->rlayer.d->buffered_app_data.q);
1934 while ((item = pqueue_next(&iter)) != NULL) {
1935 rdata = item->data;
eddb067e 1936 if (rdata->length > 0)
6d6b295a
MC
1937 return 1;
1938 }
1939 }
38b051a1
TM
1940
1941 if (RECORD_LAYER_processed_read_pending(&sc->rlayer))
49580f25
MC
1942 return 1;
1943
38b051a1 1944 return RECORD_LAYER_read_pending(&sc->rlayer);
49580f25
MC
1945}
1946
8c2bfd25 1947X509 *SSL_get1_peer_certificate(const SSL *s)
0f113f3e 1948{
8c2bfd25 1949 X509 *r = SSL_get0_peer_certificate(s);
d02b48c6 1950
8c2bfd25
TS
1951 if (r != NULL)
1952 X509_up_ref(r);
0f113f3e 1953
26a7d938 1954 return r;
0f113f3e 1955}
d02b48c6 1956
8c2bfd25
TS
1957X509 *SSL_get0_peer_certificate(const SSL *s)
1958{
38b051a1
TM
1959 const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(s);
1960
1961 if (sc == NULL)
1962 return NULL;
1963
1964 if (sc->session == NULL)
8c2bfd25
TS
1965 return NULL;
1966 else
38b051a1 1967 return sc->session->peer;
8c2bfd25
TS
1968}
1969
0821bcd4 1970STACK_OF(X509) *SSL_get_peer_cert_chain(const SSL *s)
0f113f3e
MC
1971{
1972 STACK_OF(X509) *r;
38b051a1 1973 const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(s);
0f113f3e 1974
38b051a1
TM
1975 if (sc == NULL)
1976 return NULL;
1977
1978 if (sc->session == NULL)
0f113f3e
MC
1979 r = NULL;
1980 else
38b051a1 1981 r = sc->session->peer_chain;
0f113f3e
MC
1982
1983 /*
1984 * If we are a client, cert_chain includes the peer's own certificate; if
1985 * we are a server, it does not.
1986 */
1987
26a7d938 1988 return r;
0f113f3e
MC
1989}
1990
1991/*
1992 * Now in theory, since the calling process own 't' it should be safe to
1993 * modify. We need to be able to read f without being hassled
1994 */
17dd65e6 1995int SSL_copy_session_id(SSL *t, const SSL *f)
0f113f3e 1996{
16203f7b 1997 int i;
3ea30e76 1998 /* TODO(QUIC): Not allowed for QUIC currently. */
38b051a1
TM
1999 SSL_CONNECTION *tsc = SSL_CONNECTION_FROM_SSL_ONLY(t);
2000 const SSL_CONNECTION *fsc = SSL_CONNECTION_FROM_CONST_SSL_ONLY(f);
2001
2002 if (tsc == NULL || fsc == NULL)
2003 return 0;
2004
3e6a0d57 2005 /* Do we need to do SSL locking? */
61986d32 2006 if (!SSL_set_session(t, SSL_get_session(f))) {
17dd65e6 2007 return 0;
69f68237 2008 }
0f113f3e
MC
2009
2010 /*
87d9cafa 2011 * what if we are setup for one protocol version but want to talk another
0f113f3e
MC
2012 */
2013 if (t->method != f->method) {
38b051a1 2014 t->method->ssl_deinit(t);
919ba009 2015 t->method = f->method;
38b051a1 2016 if (t->method->ssl_init(t) == 0)
919ba009 2017 return 0;
0f113f3e
MC
2018 }
2019
43a07d6d 2020 CRYPTO_UP_REF(&fsc->cert->references, &i);
38b051a1
TM
2021 ssl_cert_free(tsc->cert);
2022 tsc->cert = fsc->cert;
2023 if (!SSL_set_session_id_context(t, fsc->sid_ctx, (int)fsc->sid_ctx_length)) {
17dd65e6 2024 return 0;
69f68237 2025 }
17dd65e6
MC
2026
2027 return 1;
0f113f3e 2028}
d02b48c6 2029
58964a49 2030/* Fix this so it checks all the valid key/cert options */
0821bcd4 2031int SSL_CTX_check_private_key(const SSL_CTX *ctx)
0f113f3e 2032{
a230b26e 2033 if ((ctx == NULL) || (ctx->cert->key->x509 == NULL)) {
6849b73c 2034 ERR_raise(ERR_LIB_SSL, SSL_R_NO_CERTIFICATE_ASSIGNED);
26a7d938 2035 return 0;
0f113f3e
MC
2036 }
2037 if (ctx->cert->key->privatekey == NULL) {
6849b73c 2038 ERR_raise(ERR_LIB_SSL, SSL_R_NO_PRIVATE_KEY_ASSIGNED);
26a7d938 2039 return 0;
0f113f3e 2040 }
26a7d938
K
2041 return X509_check_private_key
2042 (ctx->cert->key->x509, ctx->cert->key->privatekey);
0f113f3e 2043}
d02b48c6 2044
58964a49 2045/* Fix this function so that it takes an optional type parameter */
0821bcd4 2046int SSL_check_private_key(const SSL *ssl)
0f113f3e 2047{
38b051a1
TM
2048 const SSL_CONNECTION *sc;
2049
2050 if ((sc = SSL_CONNECTION_FROM_CONST_SSL(ssl)) == NULL) {
6849b73c 2051 ERR_raise(ERR_LIB_SSL, ERR_R_PASSED_NULL_PARAMETER);
26a7d938 2052 return 0;
0f113f3e 2053 }
38b051a1 2054 if (sc->cert->key->x509 == NULL) {
6849b73c 2055 ERR_raise(ERR_LIB_SSL, SSL_R_NO_CERTIFICATE_ASSIGNED);
26a7d938 2056 return 0;
0f113f3e 2057 }
38b051a1 2058 if (sc->cert->key->privatekey == NULL) {
6849b73c 2059 ERR_raise(ERR_LIB_SSL, SSL_R_NO_PRIVATE_KEY_ASSIGNED);
26a7d938 2060 return 0;
0f113f3e 2061 }
38b051a1
TM
2062 return X509_check_private_key(sc->cert->key->x509,
2063 sc->cert->key->privatekey);
0f113f3e 2064}
d02b48c6 2065
07bbc92c
MC
2066int SSL_waiting_for_async(SSL *s)
2067{
38b051a1
TM
2068 SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
2069
2070 if (sc == NULL)
2071 return 0;
2072
2073 if (sc->job)
82676094
MC
2074 return 1;
2075
07bbc92c
MC
2076 return 0;
2077}
2078
ff75a257 2079int SSL_get_all_async_fds(SSL *s, OSSL_ASYNC_FD *fds, size_t *numfds)
f4da39d2 2080{
38b051a1
TM
2081 ASYNC_WAIT_CTX *ctx;
2082 SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
ff75a257 2083
38b051a1
TM
2084 if (sc == NULL)
2085 return 0;
2086
2087 if ((ctx = sc->waitctx) == NULL)
ff75a257
MC
2088 return 0;
2089 return ASYNC_WAIT_CTX_get_all_fds(ctx, fds, numfds);
2090}
f4da39d2 2091
ff75a257
MC
2092int SSL_get_changed_async_fds(SSL *s, OSSL_ASYNC_FD *addfd, size_t *numaddfds,
2093 OSSL_ASYNC_FD *delfd, size_t *numdelfds)
2094{
38b051a1
TM
2095 ASYNC_WAIT_CTX *ctx;
2096 SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
ff75a257 2097
38b051a1
TM
2098 if (sc == NULL)
2099 return 0;
2100
2101 if ((ctx = sc->waitctx) == NULL)
ff75a257
MC
2102 return 0;
2103 return ASYNC_WAIT_CTX_get_changed_fds(ctx, addfd, numaddfds, delfd,
2104 numdelfds);
f4da39d2
MC
2105}
2106
9f5a87fd
PY
2107int SSL_CTX_set_async_callback(SSL_CTX *ctx, SSL_async_callback_fn callback)
2108{
2109 ctx->async_cb = callback;
2110 return 1;
2111}
2112
2113int SSL_CTX_set_async_callback_arg(SSL_CTX *ctx, void *arg)
2114{
2115 ctx->async_cb_arg = arg;
2116 return 1;
2117}
2118
2119int SSL_set_async_callback(SSL *s, SSL_async_callback_fn callback)
2120{
38b051a1
TM
2121 SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
2122
2123 if (sc == NULL)
2124 return 0;
2125
2126 sc->async_cb = callback;
9f5a87fd
PY
2127 return 1;
2128}
2129
2130int SSL_set_async_callback_arg(SSL *s, void *arg)
2131{
38b051a1
TM
2132 SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
2133
2134 if (sc == NULL)
2135 return 0;
2136
2137 sc->async_cb_arg = arg;
9f5a87fd
PY
2138 return 1;
2139}
2140
2141int SSL_get_async_status(SSL *s, int *status)
2142{
38b051a1
TM
2143 ASYNC_WAIT_CTX *ctx;
2144 SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
9f5a87fd 2145
38b051a1
TM
2146 if (sc == NULL)
2147 return 0;
2148
2149 if ((ctx = sc->waitctx) == NULL)
9f5a87fd
PY
2150 return 0;
2151 *status = ASYNC_WAIT_CTX_get_status(ctx);
2152 return 1;
2153}
2154
4f43d0e7 2155int SSL_accept(SSL *s)
0f113f3e 2156{
38b051a1 2157 SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
03bacce8 2158
6d495cc4
HL
2159#ifndef OPENSSL_NO_QUIC
2160 if (IS_QUIC(s))
03bacce8 2161 return s->method->ssl_accept(s);
6292519c 2162#endif
38b051a1
TM
2163
2164 if (sc == NULL)
2165 return 0;
2166
2167 if (sc->handshake_func == NULL) {
0f113f3e
MC
2168 /* Not properly initialized yet */
2169 SSL_set_accept_state(s);
07bbc92c 2170 }
add2f5ca
MC
2171
2172 return SSL_do_handshake(s);
0f113f3e 2173}
d02b48c6 2174
4f43d0e7 2175int SSL_connect(SSL *s)
0f113f3e 2176{
38b051a1 2177 SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
03bacce8 2178
6d495cc4
HL
2179#ifndef OPENSSL_NO_QUIC
2180 if (IS_QUIC(s))
03bacce8 2181 return s->method->ssl_connect(s);
6292519c 2182#endif
38b051a1
TM
2183
2184 if (sc == NULL)
2185 return 0;
2186
2187 if (sc->handshake_func == NULL) {
0f113f3e
MC
2188 /* Not properly initialized yet */
2189 SSL_set_connect_state(s);
add2f5ca 2190 }
b31b04d9 2191
add2f5ca 2192 return SSL_do_handshake(s);
0f113f3e 2193}
d02b48c6 2194
0821bcd4 2195long SSL_get_default_timeout(const SSL *s)
0f113f3e 2196{
f0131dc0 2197 return (long int)ossl_time2seconds(s->method->get_timeout());
0f113f3e
MC
2198}
2199
9f5a87fd
PY
2200static int ssl_async_wait_ctx_cb(void *arg)
2201{
2202 SSL *s = (SSL *)arg;
38b051a1 2203 SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
9f5a87fd 2204
38b051a1
TM
2205 if (sc == NULL)
2206 return 0;
2207
2208 return sc->async_cb(s, sc->async_cb_arg);
9f5a87fd
PY
2209}
2210
7fecbf6f 2211static int ssl_start_async_job(SSL *s, struct ssl_async_args *args,
a230b26e
EK
2212 int (*func) (void *))
2213{
add2f5ca 2214 int ret;
38b051a1
TM
2215 SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
2216
2217 if (sc == NULL)
2218 return 0;
2219
2220 if (sc->waitctx == NULL) {
2221 sc->waitctx = ASYNC_WAIT_CTX_new();
2222 if (sc->waitctx == NULL)
ff75a257 2223 return -1;
38b051a1 2224 if (sc->async_cb != NULL
9f5a87fd 2225 && !ASYNC_WAIT_CTX_set_callback
38b051a1 2226 (sc->waitctx, ssl_async_wait_ctx_cb, s))
9f5a87fd 2227 return -1;
ff75a257 2228 }
07f620e3 2229
38b051a1
TM
2230 sc->rwstate = SSL_NOTHING;
2231 switch (ASYNC_start_job(&sc->job, sc->waitctx, &ret, func, args,
a230b26e 2232 sizeof(struct ssl_async_args))) {
add2f5ca 2233 case ASYNC_ERR:
38b051a1 2234 sc->rwstate = SSL_NOTHING;
6849b73c 2235 ERR_raise(ERR_LIB_SSL, SSL_R_FAILED_TO_INIT_ASYNC);
add2f5ca
MC
2236 return -1;
2237 case ASYNC_PAUSE:
38b051a1 2238 sc->rwstate = SSL_ASYNC_PAUSED;
add2f5ca 2239 return -1;
fc7f190c 2240 case ASYNC_NO_JOBS:
38b051a1 2241 sc->rwstate = SSL_ASYNC_NO_JOBS;
fc7f190c 2242 return -1;
add2f5ca 2243 case ASYNC_FINISH:
38b051a1 2244 sc->job = NULL;
add2f5ca
MC
2245 return ret;
2246 default:
38b051a1 2247 sc->rwstate = SSL_NOTHING;
6849b73c 2248 ERR_raise(ERR_LIB_SSL, ERR_R_INTERNAL_ERROR);
add2f5ca
MC
2249 /* Shouldn't happen */
2250 return -1;
2251 }
2252}
07bbc92c 2253
add2f5ca 2254static int ssl_io_intern(void *vargs)
07bbc92c
MC
2255{
2256 struct ssl_async_args *args;
2257 SSL *s;
2258 void *buf;
348240c6 2259 size_t num;
38b051a1 2260 SSL_CONNECTION *sc;
07bbc92c
MC
2261
2262 args = (struct ssl_async_args *)vargs;
2263 s = args->s;
2264 buf = args->buf;
2265 num = args->num;
38b051a1
TM
2266 if ((sc = SSL_CONNECTION_FROM_SSL(s)) == NULL)
2267 return -1;
2268
ec447924
MC
2269 switch (args->type) {
2270 case READFUNC:
38b051a1 2271 return args->f.func_read(s, buf, num, &sc->asyncrw);
ec447924 2272 case WRITEFUNC:
38b051a1 2273 return args->f.func_write(s, buf, num, &sc->asyncrw);
ec447924
MC
2274 case OTHERFUNC:
2275 return args->f.func_other(s);
2276 }
2277 return -1;
07bbc92c
MC
2278}
2279
4ee7d3f9 2280int ssl_read_internal(SSL *s, void *buf, size_t num, size_t *readbytes)
0f113f3e 2281{
38b051a1 2282 SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
03bacce8 2283
6d495cc4
HL
2284#ifndef OPENSSL_NO_QUIC
2285 if (IS_QUIC(s))
03bacce8 2286 return s->method->ssl_read(s, buf, num, readbytes);
6292519c 2287#endif
38b051a1
TM
2288
2289 if (sc == NULL)
2290 return -1;
2291
2292 if (sc->handshake_func == NULL) {
6849b73c 2293 ERR_raise(ERR_LIB_SSL, SSL_R_UNINITIALIZED);
0f113f3e
MC
2294 return -1;
2295 }
2296
38b051a1
TM
2297 if (sc->shutdown & SSL_RECEIVED_SHUTDOWN) {
2298 sc->rwstate = SSL_NOTHING;
4ee7d3f9 2299 return 0;
0f113f3e 2300 }
07bbc92c 2301
38b051a1
TM
2302 if (sc->early_data_state == SSL_EARLY_DATA_CONNECT_RETRY
2303 || sc->early_data_state == SSL_EARLY_DATA_ACCEPT_RETRY) {
6849b73c 2304 ERR_raise(ERR_LIB_SSL, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
0a5ece5b
MC
2305 return 0;
2306 }
564547e4
MC
2307 /*
2308 * If we are a client and haven't received the ServerHello etc then we
2309 * better do that
2310 */
38b051a1 2311 ossl_statem_check_finish_init(sc, 0);
0a5ece5b 2312
38b051a1 2313 if ((sc->mode & SSL_MODE_ASYNC) && ASYNC_get_current_job() == NULL) {
add2f5ca 2314 struct ssl_async_args args;
eda75751 2315 int ret;
add2f5ca
MC
2316
2317 args.s = s;
2318 args.buf = buf;
2319 args.num = num;
ec447924
MC
2320 args.type = READFUNC;
2321 args.f.func_read = s->method->ssl_read;
add2f5ca 2322
eda75751 2323 ret = ssl_start_async_job(s, &args, ssl_io_intern);
38b051a1 2324 *readbytes = sc->asyncrw;
eda75751 2325 return ret;
07bbc92c 2326 } else {
54105ddd 2327 return s->method->ssl_read(s, buf, num, readbytes);
07bbc92c 2328 }
0f113f3e
MC
2329}
2330
4ee7d3f9 2331int SSL_read(SSL *s, void *buf, int num)
eda75751
MC
2332{
2333 int ret;
54105ddd 2334 size_t readbytes;
eda75751
MC
2335
2336 if (num < 0) {
6849b73c 2337 ERR_raise(ERR_LIB_SSL, SSL_R_BAD_LENGTH);
eda75751
MC
2338 return -1;
2339 }
2340
4ee7d3f9 2341 ret = ssl_read_internal(s, buf, (size_t)num, &readbytes);
eda75751
MC
2342
2343 /*
2344 * The cast is safe here because ret should be <= INT_MAX because num is
2345 * <= INT_MAX
2346 */
2347 if (ret > 0)
54105ddd 2348 ret = (int)readbytes;
eda75751
MC
2349
2350 return ret;
2351}
2352
4ee7d3f9
KR
2353int SSL_read_ex(SSL *s, void *buf, size_t num, size_t *readbytes)
2354{
2355 int ret = ssl_read_internal(s, buf, num, readbytes);
2356
2357 if (ret < 0)
2358 ret = 0;
2359 return ret;
2360}
2361
f533fbd4 2362int SSL_read_early_data(SSL *s, void *buf, size_t num, size_t *readbytes)
d781d247
MC
2363{
2364 int ret;
38b051a1
TM
2365 SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL_ONLY(s);
2366
38b051a1
TM
2367 if (sc == NULL)
2368 return 0;
d781d247 2369
38b051a1 2370 if (!sc->server) {
6849b73c 2371 ERR_raise(ERR_LIB_SSL, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
f533fbd4 2372 return SSL_READ_EARLY_DATA_ERROR;
d781d247
MC
2373 }
2374
38b051a1 2375 switch (sc->early_data_state) {
d781d247
MC
2376 case SSL_EARLY_DATA_NONE:
2377 if (!SSL_in_before(s)) {
6849b73c 2378 ERR_raise(ERR_LIB_SSL, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
f533fbd4 2379 return SSL_READ_EARLY_DATA_ERROR;
d781d247
MC
2380 }
2381 /* fall through */
2382
2383 case SSL_EARLY_DATA_ACCEPT_RETRY:
38b051a1 2384 sc->early_data_state = SSL_EARLY_DATA_ACCEPTING;
d781d247
MC
2385 ret = SSL_accept(s);
2386 if (ret <= 0) {
2387 /* NBIO or error */
38b051a1 2388 sc->early_data_state = SSL_EARLY_DATA_ACCEPT_RETRY;
f533fbd4 2389 return SSL_READ_EARLY_DATA_ERROR;
d781d247
MC
2390 }
2391 /* fall through */
2392
2393 case SSL_EARLY_DATA_READ_RETRY:
38b051a1
TM
2394 if (sc->ext.early_data == SSL_EARLY_DATA_ACCEPTED) {
2395 sc->early_data_state = SSL_EARLY_DATA_READING;
d781d247
MC
2396 ret = SSL_read_ex(s, buf, num, readbytes);
2397 /*
ef6c191b
MC
2398 * State machine will update early_data_state to
2399 * SSL_EARLY_DATA_FINISHED_READING if we get an EndOfEarlyData
2400 * message
d781d247 2401 */
38b051a1 2402 if (ret > 0 || (ret <= 0 && sc->early_data_state
d781d247 2403 != SSL_EARLY_DATA_FINISHED_READING)) {
38b051a1 2404 sc->early_data_state = SSL_EARLY_DATA_READ_RETRY;
f533fbd4
MC
2405 return ret > 0 ? SSL_READ_EARLY_DATA_SUCCESS
2406 : SSL_READ_EARLY_DATA_ERROR;
d781d247
MC
2407 }
2408 } else {
38b051a1 2409 sc->early_data_state = SSL_EARLY_DATA_FINISHED_READING;
d781d247
MC
2410 }
2411 *readbytes = 0;
f533fbd4 2412 return SSL_READ_EARLY_DATA_FINISH;
d781d247
MC
2413
2414 default:
6849b73c 2415 ERR_raise(ERR_LIB_SSL, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
f533fbd4 2416 return SSL_READ_EARLY_DATA_ERROR;
d781d247
MC
2417 }
2418}
2419
f5b519c4 2420int SSL_get_early_data_status(const SSL *s)
1ea4d09a 2421{
38b051a1
TM
2422 const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL_ONLY(s);
2423
38b051a1
TM
2424 if (sc == NULL)
2425 return 0;
2426
2427 return sc->ext.early_data;
1ea4d09a
MC
2428}
2429
4ee7d3f9 2430static int ssl_peek_internal(SSL *s, void *buf, size_t num, size_t *readbytes)
0f113f3e 2431{
38b051a1 2432 SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
03bacce8 2433
6d495cc4
HL
2434#ifndef OPENSSL_NO_QUIC
2435 if (IS_QUIC(s))
03bacce8 2436 return s->method->ssl_peek(s, buf, num, readbytes);
6292519c 2437#endif
38b051a1
TM
2438
2439 if (sc == NULL)
2440 return 0;
2441
2442 if (sc->handshake_func == NULL) {
6849b73c 2443 ERR_raise(ERR_LIB_SSL, SSL_R_UNINITIALIZED);
0f113f3e
MC
2444 return -1;
2445 }
2446
38b051a1 2447 if (sc->shutdown & SSL_RECEIVED_SHUTDOWN) {
4ee7d3f9 2448 return 0;
0f113f3e 2449 }
38b051a1 2450 if ((sc->mode & SSL_MODE_ASYNC) && ASYNC_get_current_job() == NULL) {
add2f5ca 2451 struct ssl_async_args args;
eda75751 2452 int ret;
0f113f3e 2453
add2f5ca
MC
2454 args.s = s;
2455 args.buf = buf;
2456 args.num = num;
ec447924
MC
2457 args.type = READFUNC;
2458 args.f.func_read = s->method->ssl_peek;
07bbc92c 2459
eda75751 2460 ret = ssl_start_async_job(s, &args, ssl_io_intern);
38b051a1 2461 *readbytes = sc->asyncrw;
eda75751 2462 return ret;
add2f5ca 2463 } else {
54105ddd 2464 return s->method->ssl_peek(s, buf, num, readbytes);
add2f5ca 2465 }
07bbc92c
MC
2466}
2467
4ee7d3f9 2468int SSL_peek(SSL *s, void *buf, int num)
7ee8627f
MC
2469{
2470 int ret;
4ee7d3f9 2471 size_t readbytes;
7ee8627f
MC
2472
2473 if (num < 0) {
6849b73c 2474 ERR_raise(ERR_LIB_SSL, SSL_R_BAD_LENGTH);
7ee8627f
MC
2475 return -1;
2476 }
2477
4ee7d3f9 2478 ret = ssl_peek_internal(s, buf, (size_t)num, &readbytes);
7ee8627f
MC
2479
2480 /*
2481 * The cast is safe here because ret should be <= INT_MAX because num is
2482 * <= INT_MAX
2483 */
2484 if (ret > 0)
4ee7d3f9 2485 ret = (int)readbytes;
7ee8627f
MC
2486
2487 return ret;
2488}
2489
4ee7d3f9
KR
2490
2491int SSL_peek_ex(SSL *s, void *buf, size_t num, size_t *readbytes)
2492{
2493 int ret = ssl_peek_internal(s, buf, num, readbytes);
2494
2495 if (ret < 0)
2496 ret = 0;
2497 return ret;
2498}
2499
2500int ssl_write_internal(SSL *s, const void *buf, size_t num, size_t *written)
0f113f3e 2501{
38b051a1 2502 SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
03bacce8 2503
6d495cc4
HL
2504#ifndef OPENSSL_NO_QUIC
2505 if (IS_QUIC(s))
03bacce8 2506 return s->method->ssl_write(s, buf, num, written);
6292519c 2507#endif
38b051a1
TM
2508
2509 if (sc == NULL)
2510 return 0;
2511
2512 if (sc->handshake_func == NULL) {
6849b73c 2513 ERR_raise(ERR_LIB_SSL, SSL_R_UNINITIALIZED);
0f113f3e
MC
2514 return -1;
2515 }
2516
38b051a1
TM
2517 if (sc->shutdown & SSL_SENT_SHUTDOWN) {
2518 sc->rwstate = SSL_NOTHING;
6849b73c 2519 ERR_raise(ERR_LIB_SSL, SSL_R_PROTOCOL_IS_SHUTDOWN);
4ee7d3f9 2520 return -1;
0f113f3e 2521 }
07bbc92c 2522
38b051a1
TM
2523 if (sc->early_data_state == SSL_EARLY_DATA_CONNECT_RETRY
2524 || sc->early_data_state == SSL_EARLY_DATA_ACCEPT_RETRY
2525 || sc->early_data_state == SSL_EARLY_DATA_READ_RETRY) {
6849b73c 2526 ERR_raise(ERR_LIB_SSL, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
49e7fe12 2527 return 0;
0a5ece5b 2528 }
564547e4 2529 /* If we are a client and haven't sent the Finished we better do that */
38b051a1 2530 ossl_statem_check_finish_init(sc, 1);
49e7fe12 2531
38b051a1 2532 if ((sc->mode & SSL_MODE_ASYNC) && ASYNC_get_current_job() == NULL) {
7ee8627f 2533 int ret;
add2f5ca
MC
2534 struct ssl_async_args args;
2535
2536 args.s = s;
2537 args.buf = (void *)buf;
2538 args.num = num;
ec447924
MC
2539 args.type = WRITEFUNC;
2540 args.f.func_write = s->method->ssl_write;
add2f5ca 2541
7ee8627f 2542 ret = ssl_start_async_job(s, &args, ssl_io_intern);
38b051a1 2543 *written = sc->asyncrw;
7ee8627f 2544 return ret;
07bbc92c 2545 } else {
7ee8627f 2546 return s->method->ssl_write(s, buf, num, written);
07bbc92c 2547 }
0f113f3e 2548}
d02b48c6 2549
7c3a7561
BP
2550ossl_ssize_t SSL_sendfile(SSL *s, int fd, off_t offset, size_t size, int flags)
2551{
2552 ossl_ssize_t ret;
38b051a1 2553 SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL_ONLY(s);
7c3a7561 2554
38b051a1
TM
2555 if (sc == NULL)
2556 return 0;
2557
2558 if (sc->handshake_func == NULL) {
6849b73c 2559 ERR_raise(ERR_LIB_SSL, SSL_R_UNINITIALIZED);
7c3a7561
BP
2560 return -1;
2561 }
2562
38b051a1
TM
2563 if (sc->shutdown & SSL_SENT_SHUTDOWN) {
2564 sc->rwstate = SSL_NOTHING;
6849b73c 2565 ERR_raise(ERR_LIB_SSL, SSL_R_PROTOCOL_IS_SHUTDOWN);
7c3a7561
BP
2566 return -1;
2567 }
2568
38b051a1 2569 if (!BIO_get_ktls_send(sc->wbio)) {
6849b73c 2570 ERR_raise(ERR_LIB_SSL, SSL_R_UNINITIALIZED);
7c3a7561
BP
2571 return -1;
2572 }
2573
2574 /* If we have an alert to send, lets send it */
73243502 2575 if (sc->s3.alert_dispatch > 0) {
7c3a7561
BP
2576 ret = (ossl_ssize_t)s->method->ssl_dispatch_alert(s);
2577 if (ret <= 0) {
2578 /* SSLfatal() already called if appropriate */
2579 return ret;
2580 }
2581 /* if it went, fall through and send more stuff */
2582 }
2583
38b051a1
TM
2584 sc->rwstate = SSL_WRITING;
2585 if (BIO_flush(sc->wbio) <= 0) {
2586 if (!BIO_should_retry(sc->wbio)) {
2587 sc->rwstate = SSL_NOTHING;
7c3a7561
BP
2588 } else {
2589#ifdef EAGAIN
2590 set_sys_error(EAGAIN);
2591#endif
2592 }
2593 return -1;
2594 }
2595
712c0942 2596#ifdef OPENSSL_NO_KTLS
fa7a8074
RL
2597 ERR_raise_data(ERR_LIB_SSL, ERR_R_INTERNAL_ERROR,
2598 "can't call ktls_sendfile(), ktls disabled");
712c0942 2599 return -1;
7c3a7561 2600#else
712c0942 2601 ret = ktls_sendfile(SSL_get_wfd(s), fd, offset, size, flags);
7c3a7561
BP
2602 if (ret < 0) {
2603#if defined(EAGAIN) && defined(EINTR) && defined(EBUSY)
2604 if ((get_last_sys_error() == EAGAIN) ||
2605 (get_last_sys_error() == EINTR) ||
2606 (get_last_sys_error() == EBUSY))
38b051a1 2607 BIO_set_retry_write(sc->wbio);
7c3a7561
BP
2608 else
2609#endif
6849b73c 2610 ERR_raise(ERR_LIB_SSL, SSL_R_UNINITIALIZED);
7c3a7561
BP
2611 return ret;
2612 }
38b051a1 2613 sc->rwstate = SSL_NOTHING;
7c3a7561 2614 return ret;
712c0942 2615#endif
7c3a7561
BP
2616}
2617
4ee7d3f9
KR
2618int SSL_write(SSL *s, const void *buf, int num)
2619{
2620 int ret;
2621 size_t written;
2622
2623 if (num < 0) {
6849b73c 2624 ERR_raise(ERR_LIB_SSL, SSL_R_BAD_LENGTH);
4ee7d3f9
KR
2625 return -1;
2626 }
2627
2628 ret = ssl_write_internal(s, buf, (size_t)num, &written);
2629
2630 /*
2631 * The cast is safe here because ret should be <= INT_MAX because num is
2632 * <= INT_MAX
2633 */
2634 if (ret > 0)
2635 ret = (int)written;
2636
2637 return ret;
2638}
2639
2640int SSL_write_ex(SSL *s, const void *buf, size_t num, size_t *written)
2641{
2642 int ret = ssl_write_internal(s, buf, num, written);
2643
2644 if (ret < 0)
2645 ret = 0;
2646 return ret;
2647}
2648
0665b4ed 2649int SSL_write_early_data(SSL *s, const void *buf, size_t num, size_t *written)
49e7fe12 2650{
a0cb628b 2651 int ret, early_data_state;
2a8db717 2652 size_t writtmp;
f7414b08 2653 uint32_t partialwrite;
38b051a1
TM
2654 SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL_ONLY(s);
2655
2656 /* TODO(QUIC): This will need special handling for QUIC */
2657 if (sc == NULL)
2658 return 0;
49e7fe12 2659
38b051a1 2660 switch (sc->early_data_state) {
49e7fe12 2661 case SSL_EARLY_DATA_NONE:
38b051a1 2662 if (sc->server
09f28874 2663 || !SSL_in_before(s)
38b051a1
TM
2664 || ((sc->session == NULL || sc->session->ext.max_early_data == 0)
2665 && (sc->psk_use_session_cb == NULL))) {
6849b73c 2666 ERR_raise(ERR_LIB_SSL, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
49e7fe12
MC
2667 return 0;
2668 }
2669 /* fall through */
2670
2671 case SSL_EARLY_DATA_CONNECT_RETRY:
38b051a1 2672 sc->early_data_state = SSL_EARLY_DATA_CONNECTING;
49e7fe12
MC
2673 ret = SSL_connect(s);
2674 if (ret <= 0) {
2675 /* NBIO or error */
38b051a1 2676 sc->early_data_state = SSL_EARLY_DATA_CONNECT_RETRY;
49e7fe12
MC
2677 return 0;
2678 }
2679 /* fall through */
2680
2681 case SSL_EARLY_DATA_WRITE_RETRY:
38b051a1 2682 sc->early_data_state = SSL_EARLY_DATA_WRITING;
f7414b08
MC
2683 /*
2684 * We disable partial write for early data because we don't keep track
2685 * of how many bytes we've written between the SSL_write_ex() call and
2686 * the flush if the flush needs to be retried)
2687 */
38b051a1
TM
2688 partialwrite = sc->mode & SSL_MODE_ENABLE_PARTIAL_WRITE;
2689 sc->mode &= ~SSL_MODE_ENABLE_PARTIAL_WRITE;
2a8db717 2690 ret = SSL_write_ex(s, buf, num, &writtmp);
38b051a1 2691 sc->mode |= partialwrite;
2a8db717 2692 if (!ret) {
38b051a1 2693 sc->early_data_state = SSL_EARLY_DATA_WRITE_RETRY;
2a8db717
MC
2694 return ret;
2695 }
38b051a1 2696 sc->early_data_state = SSL_EARLY_DATA_WRITE_FLUSH;
2a8db717
MC
2697 /* fall through */
2698
2699 case SSL_EARLY_DATA_WRITE_FLUSH:
2700 /* The buffering BIO is still in place so we need to flush it */
38b051a1 2701 if (statem_flush(sc) != 1)
2a8db717 2702 return 0;
2a8db717 2703 *written = num;
38b051a1 2704 sc->early_data_state = SSL_EARLY_DATA_WRITE_RETRY;
2a8db717 2705 return 1;
49e7fe12 2706
116d0da5 2707 case SSL_EARLY_DATA_FINISHED_READING:
a0cb628b 2708 case SSL_EARLY_DATA_READ_RETRY:
38b051a1 2709 early_data_state = sc->early_data_state;
09f28874 2710 /* We are a server writing to an unauthenticated client */
38b051a1 2711 sc->early_data_state = SSL_EARLY_DATA_UNAUTH_WRITING;
09f28874 2712 ret = SSL_write_ex(s, buf, num, written);
5fe37157
MC
2713 /* The buffering BIO is still in place */
2714 if (ret)
38b051a1
TM
2715 (void)BIO_flush(sc->wbio);
2716 sc->early_data_state = early_data_state;
09f28874
MC
2717 return ret;
2718
49e7fe12 2719 default:
6849b73c 2720 ERR_raise(ERR_LIB_SSL, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
49e7fe12
MC
2721 return 0;
2722 }
2723}
2724
4f43d0e7 2725int SSL_shutdown(SSL *s)
0f113f3e
MC
2726{
2727 /*
2728 * Note that this function behaves differently from what one might
2729 * expect. Return values are 0 for no success (yet), 1 for success; but
2730 * calling it once is usually not enough, even if blocking I/O is used
2731 * (see ssl3_shutdown).
2732 */
38b051a1 2733 SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
e8043229 2734
22b1a96f
HL
2735#ifndef OPENSSL_NO_QUIC
2736 if (IS_QUIC(s))
6d495cc4 2737 return ossl_quic_conn_shutdown(s, 0, NULL, 0);
e8043229 2738#endif
0f113f3e 2739
38b051a1
TM
2740 if (sc == NULL)
2741 return -1;
2742
2743 if (sc->handshake_func == NULL) {
6849b73c 2744 ERR_raise(ERR_LIB_SSL, SSL_R_UNINITIALIZED);
0f113f3e
MC
2745 return -1;
2746 }
2747
64f9f406 2748 if (!SSL_in_init(s)) {
38b051a1 2749 if ((sc->mode & SSL_MODE_ASYNC) && ASYNC_get_current_job() == NULL) {
64f9f406 2750 struct ssl_async_args args;
ec447924 2751
09134f18 2752 memset(&args, 0, sizeof(args));
64f9f406
MC
2753 args.s = s;
2754 args.type = OTHERFUNC;
2755 args.f.func_other = s->method->ssl_shutdown;
ec447924 2756
64f9f406
MC
2757 return ssl_start_async_job(s, &args, ssl_io_intern);
2758 } else {
2759 return s->method->ssl_shutdown(s);
2760 }
ec447924 2761 } else {
6849b73c 2762 ERR_raise(ERR_LIB_SSL, SSL_R_SHUTDOWN_WHILE_IN_INIT);
64f9f406 2763 return -1;
ec447924 2764 }
0f113f3e 2765}
d02b48c6 2766
4fbfe86a 2767int SSL_key_update(SSL *s, int updatetype)
44c04a2e 2768{
38b051a1
TM
2769 SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
2770
2525109f
HL
2771#ifndef OPENSSL_NO_QUIC
2772 if (IS_QUIC(s))
2773 return ossl_quic_key_update(s, updatetype);
2774#endif
2775
38b051a1
TM
2776 if (sc == NULL)
2777 return 0;
2778
2779 if (!SSL_CONNECTION_IS_TLS13(sc)) {
6849b73c 2780 ERR_raise(ERR_LIB_SSL, SSL_R_WRONG_SSL_VERSION);
44c04a2e
MC
2781 return 0;
2782 }
2783
2784 if (updatetype != SSL_KEY_UPDATE_NOT_REQUESTED
2785 && updatetype != SSL_KEY_UPDATE_REQUESTED) {
6849b73c 2786 ERR_raise(ERR_LIB_SSL, SSL_R_INVALID_KEY_UPDATE_TYPE);
44c04a2e
MC
2787 return 0;
2788 }
2789
2790 if (!SSL_is_init_finished(s)) {
6849b73c 2791 ERR_raise(ERR_LIB_SSL, SSL_R_STILL_IN_INIT);
44c04a2e
MC
2792 return 0;
2793 }
2794
38b051a1 2795 if (RECORD_LAYER_write_pending(&sc->rlayer)) {
3bec4851
MC
2796 ERR_raise(ERR_LIB_SSL, SSL_R_BAD_WRITE_RETRY);
2797 return 0;
2798 }
2799
38b051a1
TM
2800 ossl_statem_set_in_init(sc, 1);
2801 sc->key_update = updatetype;
44c04a2e
MC
2802 return 1;
2803}
2804
3499327b 2805int SSL_get_key_update_type(const SSL *s)
53d1d07d 2806{
38b051a1
TM
2807 const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(s);
2808
2525109f
HL
2809#ifndef OPENSSL_NO_QUIC
2810 if (IS_QUIC(s))
2811 return ossl_quic_get_key_update_type(s);
2812#endif
2813
38b051a1
TM
2814 if (sc == NULL)
2815 return 0;
2816
2817 return sc->key_update;
53d1d07d
MC
2818}
2819
55373bfd
RS
2820/*
2821 * Can we accept a renegotiation request? If yes, set the flag and
2822 * return 1 if yes. If not, raise error and return 0.
2823 */
38b051a1 2824static int can_renegotiate(const SSL_CONNECTION *sc)
0f113f3e 2825{
38b051a1 2826 if (SSL_CONNECTION_IS_TLS13(sc)) {
6849b73c 2827 ERR_raise(ERR_LIB_SSL, SSL_R_WRONG_SSL_VERSION);
2c0980d2 2828 return 0;
44c04a2e 2829 }
cda6b998 2830
38b051a1 2831 if ((sc->options & SSL_OP_NO_RENEGOTIATION) != 0) {
6849b73c 2832 ERR_raise(ERR_LIB_SSL, SSL_R_NO_RENEGOTIATION);
db0f35dd
TS
2833 return 0;
2834 }
44959ee4 2835
55373bfd
RS
2836 return 1;
2837}
2838
2839int SSL_renegotiate(SSL *s)
2840{
38b051a1
TM
2841 SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL_ONLY(s);
2842
2843 if (sc == NULL)
55373bfd
RS
2844 return 0;
2845
38b051a1
TM
2846 if (!can_renegotiate(sc))
2847 return 0;
2848
2849 sc->renegotiate = 1;
2850 sc->new_session = 1;
26a7d938 2851 return s->method->ssl_renegotiate(s);
0f113f3e 2852}
d02b48c6 2853
44959ee4 2854int SSL_renegotiate_abbreviated(SSL *s)
0f113f3e 2855{
38b051a1
TM
2856 SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL_ONLY(s);
2857
2858 if (sc == NULL)
2859 return 0;
2860
2861 if (!can_renegotiate(sc))
2c0980d2 2862 return 0;
c519e89f 2863
38b051a1
TM
2864 sc->renegotiate = 1;
2865 sc->new_session = 0;
26a7d938 2866 return s->method->ssl_renegotiate(s);
0f113f3e 2867}
44959ee4 2868
3499327b 2869int SSL_renegotiate_pending(const SSL *s)
0f113f3e 2870{
38b051a1
TM
2871 SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL_ONLY(s);
2872
2873 if (sc == NULL)
2874 return 0;
2875
0f113f3e
MC
2876 /*
2877 * becomes true when negotiation is requested; false again once a
2878 * handshake has finished
2879 */
38b051a1 2880 return (sc->renegotiate != 0);
0f113f3e
MC
2881}
2882
3bfacb5f
BK
2883int SSL_new_session_ticket(SSL *s)
2884{
38b051a1
TM
2885 SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
2886
2887 if (sc == NULL)
2888 return 0;
2889
7c73fefe 2890 /* If we are in init because we're sending tickets, okay to send more. */
38b051a1
TM
2891 if ((SSL_in_init(s) && sc->ext.extra_tickets_expected == 0)
2892 || SSL_IS_FIRST_HANDSHAKE(sc) || !sc->server
2893 || !SSL_CONNECTION_IS_TLS13(sc))
35774d55 2894 return 0;
38b051a1
TM
2895 sc->ext.extra_tickets_expected++;
2896 if (!RECORD_LAYER_write_pending(&sc->rlayer) && !SSL_in_init(s))
2897 ossl_statem_set_in_init(sc, 1);
35774d55 2898 return 1;
3bfacb5f
BK
2899}
2900
0f113f3e
MC
2901long SSL_ctrl(SSL *s, int cmd, long larg, void *parg)
2902{
2903 long l;
38b051a1
TM
2904 SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
2905
2906 /* TODO(QUIC): Special handling for some ctrls will be needed */
2907 if (sc == NULL)
2908 return 0;
0f113f3e
MC
2909
2910 switch (cmd) {
2911 case SSL_CTRL_GET_READ_AHEAD:
d0638fd5
HL
2912 if (IS_QUIC_SSL(s))
2913 return 0;
38b051a1 2914 return RECORD_LAYER_get_read_ahead(&sc->rlayer);
0f113f3e 2915 case SSL_CTRL_SET_READ_AHEAD:
d0638fd5
HL
2916 if (IS_QUIC_SSL(s))
2917 return 0;
38b051a1
TM
2918 l = RECORD_LAYER_get_read_ahead(&sc->rlayer);
2919 RECORD_LAYER_set_read_ahead(&sc->rlayer, larg);
26a7d938 2920 return l;
0f113f3e 2921
0f113f3e 2922 case SSL_CTRL_MODE:
4566dae7
MC
2923 {
2924 OSSL_PARAM options[2], *opts = options;
2925
2926 sc->mode |= larg;
2927
2928 *opts++ = OSSL_PARAM_construct_uint32(OSSL_LIBSSL_RECORD_LAYER_PARAM_MODE,
2929 &sc->mode);
2930 *opts = OSSL_PARAM_construct_end();
2931
2932 /* Ignore return value */
2933 sc->rlayer.rrlmethod->set_options(sc->rlayer.rrl, options);
2934
2935 return sc->mode;
2936 }
0f113f3e 2937 case SSL_CTRL_CLEAR_MODE:
38b051a1 2938 return (sc->mode &= ~larg);
0f113f3e 2939 case SSL_CTRL_GET_MAX_CERT_LIST:
38b051a1 2940 return (long)sc->max_cert_list;
0f113f3e 2941 case SSL_CTRL_SET_MAX_CERT_LIST:
348240c6
MC
2942 if (larg < 0)
2943 return 0;
38b051a1
TM
2944 l = (long)sc->max_cert_list;
2945 sc->max_cert_list = (size_t)larg;
348240c6 2946 return l;
0f113f3e 2947 case SSL_CTRL_SET_MAX_SEND_FRAGMENT:
38c0ff1f 2948 if (larg < 512 || larg > SSL3_RT_MAX_PLAIN_LENGTH || IS_QUIC_SSL(s))
0f113f3e 2949 return 0;
50ec7505 2950#ifndef OPENSSL_NO_KTLS
38b051a1 2951 if (sc->wbio != NULL && BIO_get_ktls_send(sc->wbio))
50ec7505
BP
2952 return 0;
2953#endif /* OPENSSL_NO_KTLS */
38b051a1
TM
2954 sc->max_send_fragment = larg;
2955 if (sc->max_send_fragment < sc->split_send_fragment)
2956 sc->split_send_fragment = sc->max_send_fragment;
435d88d7 2957 sc->rlayer.wrlmethod->set_max_frag_len(sc->rlayer.wrl, larg);
d102d9df
MC
2958 return 1;
2959 case SSL_CTRL_SET_SPLIT_SEND_FRAGMENT:
38c0ff1f 2960 if ((size_t)larg > sc->max_send_fragment || larg == 0 || IS_QUIC_SSL(s))
d102d9df 2961 return 0;
38b051a1 2962 sc->split_send_fragment = larg;
0f113f3e 2963 return 1;
d102d9df 2964 case SSL_CTRL_SET_MAX_PIPELINES:
38c0ff1f 2965 if (larg < 1 || larg > SSL_MAX_PIPELINES || IS_QUIC_SSL(s))
d102d9df 2966 return 0;
38b051a1 2967 sc->max_pipelines = larg;
cffafb5f
MC
2968 if (sc->rlayer.rrlmethod->set_max_pipelines != NULL)
2969 sc->rlayer.rrlmethod->set_max_pipelines(sc->rlayer.rrl, (size_t)larg);
07077415 2970 return 1;
0f113f3e 2971 case SSL_CTRL_GET_RI_SUPPORT:
38b051a1 2972 return sc->s3.send_connection_binding;
dfb39f73 2973 case SSL_CTRL_SET_RETRY_VERIFY:
38b051a1 2974 sc->rwstate = SSL_RETRY_VERIFY;
dfb39f73 2975 return 1;
0f113f3e 2976 case SSL_CTRL_CERT_FLAGS:
38b051a1 2977 return (sc->cert->cert_flags |= larg);
0f113f3e 2978 case SSL_CTRL_CLEAR_CERT_FLAGS:
38b051a1 2979 return (sc->cert->cert_flags &= ~larg);
0f113f3e
MC
2980
2981 case SSL_CTRL_GET_RAW_CIPHERLIST:
2982 if (parg) {
38b051a1 2983 if (sc->s3.tmp.ciphers_raw == NULL)
0f113f3e 2984 return 0;
38b051a1
TM
2985 *(unsigned char **)parg = sc->s3.tmp.ciphers_raw;
2986 return (int)sc->s3.tmp.ciphers_rawlen;
e9fa092e
EK
2987 } else {
2988 return TLS_CIPHER_LEN;
2989 }
c5364614 2990 case SSL_CTRL_GET_EXTMS_SUPPORT:
38b051a1 2991 if (!sc->session || SSL_in_init(s) || ossl_statem_get_in_handshake(sc))
a230b26e 2992 return -1;
38b051a1 2993 if (sc->session->flags & SSL_SESS_FLAG_EXTMS)
c5364614
DSH
2994 return 1;
2995 else
2996 return 0;
7946ab33 2997 case SSL_CTRL_SET_MIN_PROTO_VERSION:
0eecf841
HL
2998 return ssl_check_allowed_versions(larg, sc->max_proto_version,
2999 IS_QUIC_SSL(s))
a7f41885 3000 && ssl_set_version_bound(s->defltmeth->version, (int)larg,
38b051a1 3001 &sc->min_proto_version);
3edabd3c 3002 case SSL_CTRL_GET_MIN_PROTO_VERSION:
38b051a1 3003 return sc->min_proto_version;
7946ab33 3004 case SSL_CTRL_SET_MAX_PROTO_VERSION:
0eecf841
HL
3005 if (IS_QUIC_SSL(s) && larg < TLS1_3_VERSION)
3006 return 0;
3007 return ssl_check_allowed_versions(sc->min_proto_version, larg,
3008 IS_QUIC_SSL(s))
a7f41885 3009 && ssl_set_version_bound(s->defltmeth->version, (int)larg,
38b051a1 3010 &sc->max_proto_version);
3edabd3c 3011 case SSL_CTRL_GET_MAX_PROTO_VERSION:
38b051a1 3012 return sc->max_proto_version;
0f113f3e 3013 default:
26a7d938 3014 return s->method->ssl_ctrl(s, cmd, larg, parg);
0f113f3e
MC
3015 }
3016}
3017
3018long SSL_callback_ctrl(SSL *s, int cmd, void (*fp) (void))
3019{
63dfde87 3020 return s->method->ssl_callback_ctrl(s, cmd, fp);
0f113f3e 3021}
d3442bc7 3022
3c1d6bbc 3023LHASH_OF(SSL_SESSION) *SSL_CTX_sessions(SSL_CTX *ctx)
0f113f3e
MC
3024{
3025 return ctx->sessions;
3026}
3027
acce0557
P
3028static int ssl_tsan_load(SSL_CTX *ctx, TSAN_QUALIFIER int *stat)
3029{
3030 int res = 0;
3031
3032 if (ssl_tsan_lock(ctx)) {
3033 res = tsan_load(stat);
3034 ssl_tsan_unlock(ctx);
3035 }
3036 return res;
3037}
3038
0f113f3e
MC
3039long SSL_CTX_ctrl(SSL_CTX *ctx, int cmd, long larg, void *parg)
3040{
3041 long l;
3042 /* For some cases with ctx == NULL perform syntax checks */
3043 if (ctx == NULL) {
3044 switch (cmd) {
de4d764e 3045 case SSL_CTRL_SET_GROUPS_LIST:
260009d8 3046 return tls1_set_groups_list(ctx, NULL, NULL, parg);
0f113f3e
MC
3047 case SSL_CTRL_SET_SIGALGS_LIST:
3048 case SSL_CTRL_SET_CLIENT_SIGALGS_LIST:
3049 return tls1_set_sigalgs_list(NULL, parg, 0);
3050 default:
3051 return 0;
3052 }
3053 }
3054
3055 switch (cmd) {
3056 case SSL_CTRL_GET_READ_AHEAD:
26a7d938 3057 return ctx->read_ahead;
0f113f3e
MC
3058 case SSL_CTRL_SET_READ_AHEAD:
3059 l = ctx->read_ahead;
3060 ctx->read_ahead = larg;
26a7d938 3061 return l;
0f113f3e
MC
3062
3063 case SSL_CTRL_SET_MSG_CALLBACK_ARG:
3064 ctx->msg_callback_arg = parg;
3065 return 1;
3066
3067 case SSL_CTRL_GET_MAX_CERT_LIST:
26a7d938 3068 return (long)ctx->max_cert_list;
0f113f3e 3069 case SSL_CTRL_SET_MAX_CERT_LIST:
348240c6
MC
3070 if (larg < 0)
3071 return 0;
3072 l = (long)ctx->max_cert_list;
3073 ctx->max_cert_list = (size_t)larg;
3074 return l;
0f113f3e
MC
3075
3076 case SSL_CTRL_SET_SESS_CACHE_SIZE:
348240c6
MC
3077 if (larg < 0)
3078 return 0;
3079 l = (long)ctx->session_cache_size;
3080 ctx->session_cache_size = (size_t)larg;
3081 return l;
0f113f3e 3082 case SSL_CTRL_GET_SESS_CACHE_SIZE:
26a7d938 3083 return (long)ctx->session_cache_size;
0f113f3e
MC
3084 case SSL_CTRL_SET_SESS_CACHE_MODE:
3085 l = ctx->session_cache_mode;
3086 ctx->session_cache_mode = larg;
26a7d938 3087 return l;
0f113f3e 3088 case SSL_CTRL_GET_SESS_CACHE_MODE:
26a7d938 3089 return ctx->session_cache_mode;
0f113f3e
MC
3090
3091 case SSL_CTRL_SESS_NUMBER:
26a7d938 3092 return lh_SSL_SESSION_num_items(ctx->sessions);
0f113f3e 3093 case SSL_CTRL_SESS_CONNECT:
acce0557 3094 return ssl_tsan_load(ctx, &ctx->stats.sess_connect);
0f113f3e 3095 case SSL_CTRL_SESS_CONNECT_GOOD:
acce0557 3096 return ssl_tsan_load(ctx, &ctx->stats.sess_connect_good);
0f113f3e 3097 case SSL_CTRL_SESS_CONNECT_RENEGOTIATE:
acce0557 3098 return ssl_tsan_load(ctx, &ctx->stats.sess_connect_renegotiate);
0f113f3e 3099 case SSL_CTRL_SESS_ACCEPT:
acce0557 3100 return ssl_tsan_load(ctx, &ctx->stats.sess_accept);
0f113f3e 3101 case SSL_CTRL_SESS_ACCEPT_GOOD:
acce0557 3102 return ssl_tsan_load(ctx, &ctx->stats.sess_accept_good);
0f113f3e 3103 case SSL_CTRL_SESS_ACCEPT_RENEGOTIATE:
acce0557 3104 return ssl_tsan_load(ctx, &ctx->stats.sess_accept_renegotiate);
0f113f3e 3105 case SSL_CTRL_SESS_HIT:
acce0557 3106 return ssl_tsan_load(ctx, &ctx->stats.sess_hit);
0f113f3e 3107 case SSL_CTRL_SESS_CB_HIT:
acce0557 3108 return ssl_tsan_load(ctx, &ctx->stats.sess_cb_hit);
0f113f3e 3109 case SSL_CTRL_SESS_MISSES:
acce0557 3110 return ssl_tsan_load(ctx, &ctx->stats.sess_miss);
0f113f3e 3111 case SSL_CTRL_SESS_TIMEOUTS:
acce0557 3112 return ssl_tsan_load(ctx, &ctx->stats.sess_timeout);
0f113f3e 3113 case SSL_CTRL_SESS_CACHE_FULL:
acce0557 3114 return ssl_tsan_load(ctx, &ctx->stats.sess_cache_full);
0f113f3e
MC
3115 case SSL_CTRL_MODE:
3116 return (ctx->mode |= larg);
3117 case SSL_CTRL_CLEAR_MODE:
3118 return (ctx->mode &= ~larg);
3119 case SSL_CTRL_SET_MAX_SEND_FRAGMENT:
3120 if (larg < 512 || larg > SSL3_RT_MAX_PLAIN_LENGTH)
3121 return 0;
3122 ctx->max_send_fragment = larg;
d102d9df 3123 if (ctx->max_send_fragment < ctx->split_send_fragment)
bfb155c1 3124 ctx->split_send_fragment = ctx->max_send_fragment;
0f113f3e 3125 return 1;
d102d9df 3126 case SSL_CTRL_SET_SPLIT_SEND_FRAGMENT:
7ee8627f 3127 if ((size_t)larg > ctx->max_send_fragment || larg == 0)
d102d9df
MC
3128 return 0;
3129 ctx->split_send_fragment = larg;
3130 return 1;
3131 case SSL_CTRL_SET_MAX_PIPELINES:
3132 if (larg < 1 || larg > SSL_MAX_PIPELINES)
3133 return 0;
3134 ctx->max_pipelines = larg;
07077415 3135 return 1;
0f113f3e
MC
3136 case SSL_CTRL_CERT_FLAGS:
3137 return (ctx->cert->cert_flags |= larg);
3138 case SSL_CTRL_CLEAR_CERT_FLAGS:
3139 return (ctx->cert->cert_flags &= ~larg);
7946ab33 3140 case SSL_CTRL_SET_MIN_PROTO_VERSION:
0eecf841 3141 return ssl_check_allowed_versions(larg, ctx->max_proto_version, 0)
c8feba72
BK
3142 && ssl_set_version_bound(ctx->method->version, (int)larg,
3143 &ctx->min_proto_version);
3edabd3c
CH
3144 case SSL_CTRL_GET_MIN_PROTO_VERSION:
3145 return ctx->min_proto_version;
7946ab33 3146 case SSL_CTRL_SET_MAX_PROTO_VERSION:
0eecf841 3147 return ssl_check_allowed_versions(ctx->min_proto_version, larg, 0)
c8feba72
BK
3148 && ssl_set_version_bound(ctx->method->version, (int)larg,
3149 &ctx->max_proto_version);
3edabd3c
CH
3150 case SSL_CTRL_GET_MAX_PROTO_VERSION:
3151 return ctx->max_proto_version;
0f113f3e 3152 default:
26a7d938 3153 return ctx->method->ssl_ctx_ctrl(ctx, cmd, larg, parg);
0f113f3e
MC
3154 }
3155}
3156
3157long SSL_CTX_callback_ctrl(SSL_CTX *ctx, int cmd, void (*fp) (void))
3158{
3159 switch (cmd) {
3160 case SSL_CTRL_SET_MSG_CALLBACK:
3161 ctx->msg_callback = (void (*)
3162 (int write_p, int version, int content_type,
3163 const void *buf, size_t len, SSL *ssl,
3164 void *arg))(fp);
3165 return 1;
3166
3167 default:
26a7d938 3168 return ctx->method->ssl_ctx_callback_ctrl(ctx, cmd, fp);
0f113f3e
MC
3169 }
3170}
d3442bc7 3171
ccd86b68 3172int ssl_cipher_id_cmp(const SSL_CIPHER *a, const SSL_CIPHER *b)
0f113f3e 3173{
90d9e49a
DSH
3174 if (a->id > b->id)
3175 return 1;
3176 if (a->id < b->id)
3177 return -1;
3178 return 0;
0f113f3e
MC
3179}
3180
3181int ssl_cipher_ptr_id_cmp(const SSL_CIPHER *const *ap,
3182 const SSL_CIPHER *const *bp)
3183{
90d9e49a
DSH
3184 if ((*ap)->id > (*bp)->id)
3185 return 1;
3186 if ((*ap)->id < (*bp)->id)
3187 return -1;
3188 return 0;
0f113f3e 3189}
d02b48c6 3190
38b051a1
TM
3191/*
3192 * return a STACK of the ciphers available for the SSL and in order of
3193 * preference
3194 */
0821bcd4 3195STACK_OF(SSL_CIPHER) *SSL_get_ciphers(const SSL *s)
0f113f3e 3196{
38b051a1
TM
3197 const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(s);
3198
3199 if (sc != NULL) {
3200 if (sc->cipher_list != NULL) {
3201 return sc->cipher_list;
0f113f3e 3202 } else if ((s->ctx != NULL) && (s->ctx->cipher_list != NULL)) {
26a7d938 3203 return s->ctx->cipher_list;
0f113f3e
MC
3204 }
3205 }
26a7d938 3206 return NULL;
0f113f3e
MC
3207}
3208
831eef2c
NM
3209STACK_OF(SSL_CIPHER) *SSL_get_client_ciphers(const SSL *s)
3210{
38b051a1
TM
3211 const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(s);
3212
3213 if (sc == NULL || !sc->server)
831eef2c 3214 return NULL;
38b051a1 3215 return sc->peer_ciphers;
831eef2c
NM
3216}
3217
8b8e5bed 3218STACK_OF(SSL_CIPHER) *SSL_get1_supported_ciphers(SSL *s)
0f113f3e
MC
3219{
3220 STACK_OF(SSL_CIPHER) *sk = NULL, *ciphers;
3221 int i;
38b051a1
TM
3222 SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
3223
3224 if (sc == NULL)
3225 return NULL;
1d0c08b4 3226
0f113f3e
MC
3227 ciphers = SSL_get_ciphers(s);
3228 if (!ciphers)
3229 return NULL;
38b051a1 3230 if (!ssl_set_client_disabled(sc))
1d0c08b4 3231 return NULL;
0f113f3e
MC
3232 for (i = 0; i < sk_SSL_CIPHER_num(ciphers); i++) {
3233 const SSL_CIPHER *c = sk_SSL_CIPHER_value(ciphers, i);
38b051a1 3234 if (!ssl_cipher_disabled(sc, c, SSL_SECOP_CIPHER_SUPPORTED, 0)) {
0f113f3e
MC
3235 if (!sk)
3236 sk = sk_SSL_CIPHER_new_null();
3237 if (!sk)
3238 return NULL;
3239 if (!sk_SSL_CIPHER_push(sk, c)) {
3240 sk_SSL_CIPHER_free(sk);
3241 return NULL;
3242 }
3243 }
3244 }
3245 return sk;
3246}
8b8e5bed 3247
4f43d0e7 3248/** return a STACK of the ciphers available for the SSL and in order of
d02b48c6 3249 * algorithm id */
38b051a1 3250STACK_OF(SSL_CIPHER) *ssl_get_ciphers_by_id(SSL_CONNECTION *s)
0f113f3e
MC
3251{
3252 if (s != NULL) {
38b051a1 3253 if (s->cipher_list_by_id != NULL)
26a7d938 3254 return s->cipher_list_by_id;
38b051a1
TM
3255 else if (s->ssl.ctx != NULL
3256 && s->ssl.ctx->cipher_list_by_id != NULL)
3257 return s->ssl.ctx->cipher_list_by_id;
0f113f3e 3258 }
26a7d938 3259 return NULL;
0f113f3e 3260}
d02b48c6 3261
4f43d0e7 3262/** The old interface to get the same thing as SSL_get_ciphers() */
0f113f3e
MC
3263const char *SSL_get_cipher_list(const SSL *s, int n)
3264{
4a640fb6 3265 const SSL_CIPHER *c;
0f113f3e
MC
3266 STACK_OF(SSL_CIPHER) *sk;
3267
3268 if (s == NULL)
26a7d938 3269 return NULL;
0f113f3e
MC
3270 sk = SSL_get_ciphers(s);
3271 if ((sk == NULL) || (sk_SSL_CIPHER_num(sk) <= n))
26a7d938 3272 return NULL;
0f113f3e
MC
3273 c = sk_SSL_CIPHER_value(sk, n);
3274 if (c == NULL)
26a7d938
K
3275 return NULL;
3276 return c->name;
0f113f3e 3277}
d02b48c6 3278
9d5ac953
KY
3279/** return a STACK of the ciphers available for the SSL_CTX and in order of
3280 * preference */
3281STACK_OF(SSL_CIPHER) *SSL_CTX_get_ciphers(const SSL_CTX *ctx)
3282{
3283 if (ctx != NULL)
3284 return ctx->cipher_list;
3285 return NULL;
3286}
3287
3c83c5ba
SR
3288/*
3289 * Distinguish between ciphers controlled by set_ciphersuite() and
3290 * set_cipher_list() when counting.
3291 */
3292static int cipher_list_tls12_num(STACK_OF(SSL_CIPHER) *sk)
3293{
3294 int i, num = 0;
3295 const SSL_CIPHER *c;
3296
3297 if (sk == NULL)
3298 return 0;
3299 for (i = 0; i < sk_SSL_CIPHER_num(sk); ++i) {
3300 c = sk_SSL_CIPHER_value(sk, i);
3301 if (c->min_tls >= TLS1_3_VERSION)
3302 continue;
3303 num++;
3304 }
3305 return num;
3306}
3307
25f923dd 3308/** specify the ciphers to be used by default by the SSL_CTX */
018e57c7 3309int SSL_CTX_set_cipher_list(SSL_CTX *ctx, const char *str)
0f113f3e
MC
3310{
3311 STACK_OF(SSL_CIPHER) *sk;
3312
a68eee67 3313 sk = ssl_create_cipher_list(ctx, ctx->tls13_ciphersuites,
f865b081
MC
3314 &ctx->cipher_list, &ctx->cipher_list_by_id, str,
3315 ctx->cert);
0f113f3e
MC
3316 /*
3317 * ssl_create_cipher_list may return an empty stack if it was unable to
3318 * find a cipher matching the given rule string (for example if the rule
3319 * string specifies a cipher which has been disabled). This is not an
3320 * error as far as ssl_create_cipher_list is concerned, and hence
3321 * ctx->cipher_list and ctx->cipher_list_by_id has been updated.
3322 */
3323 if (sk == NULL)
3324 return 0;
3c83c5ba 3325 else if (cipher_list_tls12_num(sk) == 0) {
6849b73c 3326 ERR_raise(ERR_LIB_SSL, SSL_R_NO_CIPHER_MATCH);
0f113f3e
MC
3327 return 0;
3328 }
3329 return 1;
3330}
d02b48c6 3331
4f43d0e7 3332/** specify the ciphers to be used by the SSL */
0f113f3e
MC
3333int SSL_set_cipher_list(SSL *s, const char *str)
3334{
3335 STACK_OF(SSL_CIPHER) *sk;
38b051a1 3336 SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
0f113f3e 3337
38b051a1
TM
3338 if (sc == NULL)
3339 return 0;
3340
3341 sk = ssl_create_cipher_list(s->ctx, sc->tls13_ciphersuites,
3342 &sc->cipher_list, &sc->cipher_list_by_id, str,
3343 sc->cert);
0f113f3e
MC
3344 /* see comment in SSL_CTX_set_cipher_list */
3345 if (sk == NULL)
3346 return 0;
3c83c5ba 3347 else if (cipher_list_tls12_num(sk) == 0) {
6849b73c 3348 ERR_raise(ERR_LIB_SSL, SSL_R_NO_CIPHER_MATCH);
0f113f3e
MC
3349 return 0;
3350 }
3351 return 1;
3352}
d02b48c6 3353
a216df59 3354char *SSL_get_shared_ciphers(const SSL *s, char *buf, int size)
0f113f3e
MC
3355{
3356 char *p;
a216df59 3357 STACK_OF(SSL_CIPHER) *clntsk, *srvrsk;
4a640fb6 3358 const SSL_CIPHER *c;
0f113f3e 3359 int i;
38b051a1
TM
3360 const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(s);
3361
3362 if (sc == NULL)
3363 return NULL;
0f113f3e 3364
38b051a1
TM
3365 if (!sc->server
3366 || sc->peer_ciphers == NULL
a216df59 3367 || size < 2)
26a7d938 3368 return NULL;
0f113f3e
MC
3369
3370 p = buf;
38b051a1 3371 clntsk = sc->peer_ciphers;
a216df59
MC
3372 srvrsk = SSL_get_ciphers(s);
3373 if (clntsk == NULL || srvrsk == NULL)
3374 return NULL;
0f113f3e 3375
a216df59 3376 if (sk_SSL_CIPHER_num(clntsk) == 0 || sk_SSL_CIPHER_num(srvrsk) == 0)
0f113f3e
MC
3377 return NULL;
3378
a216df59 3379 for (i = 0; i < sk_SSL_CIPHER_num(clntsk); i++) {
0f113f3e
MC
3380 int n;
3381
a216df59
MC
3382 c = sk_SSL_CIPHER_value(clntsk, i);
3383 if (sk_SSL_CIPHER_find(srvrsk, c) < 0)
3384 continue;
3385
0f113f3e 3386 n = strlen(c->name);
a216df59 3387 if (n + 1 > size) {
0f113f3e
MC
3388 if (p != buf)
3389 --p;
3390 *p = '\0';
3391 return buf;
3392 }
4cacc9d5 3393 strcpy(p, c->name);
0f113f3e
MC
3394 p += n;
3395 *(p++) = ':';
a216df59 3396 size -= n + 1;
0f113f3e
MC
3397 }
3398 p[-1] = '\0';
26a7d938 3399 return buf;
0f113f3e
MC
3400}
3401
7955c1f1
MC
3402/**
3403 * Return the requested servername (SNI) value. Note that the behaviour varies
3404 * depending on:
3405 * - whether this is called by the client or the server,
3406 * - if we are before or during/after the handshake,
3407 * - if a resumption or normal handshake is being attempted/has occurred
3408 * - whether we have negotiated TLSv1.2 (or below) or TLSv1.3
38b051a1 3409 *
7955c1f1 3410 * Note that only the host_name type is defined (RFC 3546).
ed3883d2 3411 */
f1fd4544 3412const char *SSL_get_servername(const SSL *s, const int type)
0f113f3e 3413{
38b051a1
TM
3414 const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(s);
3415 int server;
3416
3417 if (sc == NULL)
3418 return NULL;
3419
7955c1f1
MC
3420 /*
3421 * If we don't know if we are the client or the server yet then we assume
3422 * client.
3423 */
38b051a1
TM
3424 server = sc->handshake_func == NULL ? 0 : sc->server;
3425
0f113f3e
MC
3426 if (type != TLSEXT_NAMETYPE_host_name)
3427 return NULL;
a13c20f6 3428
7955c1f1
MC
3429 if (server) {
3430 /**
3431 * Server side
3432 * In TLSv1.3 on the server SNI is not associated with the session
3433 * but in TLSv1.2 or below it is.
3434 *
3435 * Before the handshake:
3436 * - return NULL
3437 *
3438 * During/after the handshake (TLSv1.2 or below resumption occurred):
3439 * - If a servername was accepted by the server in the original
3440 * handshake then it will return that servername, or NULL otherwise.
3441 *
3442 * During/after the handshake (TLSv1.2 or below resumption did not occur):
3443 * - The function will return the servername requested by the client in
3444 * this handshake or NULL if none was requested.
3445 */
38b051a1
TM
3446 if (sc->hit && !SSL_CONNECTION_IS_TLS13(sc))
3447 return sc->session->ext.hostname;
7955c1f1
MC
3448 } else {
3449 /**
3450 * Client side
3451 *
3452 * Before the handshake:
3453 * - If a servername has been set via a call to
3454 * SSL_set_tlsext_host_name() then it will return that servername
3455 * - If one has not been set, but a TLSv1.2 resumption is being
3456 * attempted and the session from the original handshake had a
3457 * servername accepted by the server then it will return that
3458 * servername
3459 * - Otherwise it returns NULL
3460 *
3461 * During/after the handshake (TLSv1.2 or below resumption occurred):
9f7505ab 3462 * - If the session from the original handshake had a servername accepted
7955c1f1
MC
3463 * by the server then it will return that servername.
3464 * - Otherwise it returns the servername set via
3465 * SSL_set_tlsext_host_name() (or NULL if it was not called).
3466 *
3467 * During/after the handshake (TLSv1.2 or below resumption did not occur):
3468 * - It will return the servername set via SSL_set_tlsext_host_name()
3469 * (or NULL if it was not called).
3470 */
3471 if (SSL_in_before(s)) {
38b051a1
TM
3472 if (sc->ext.hostname == NULL
3473 && sc->session != NULL
3474 && sc->session->ssl_version != TLS1_3_VERSION)
3475 return sc->session->ext.hostname;
7955c1f1 3476 } else {
38b051a1
TM
3477 if (!SSL_CONNECTION_IS_TLS13(sc) && sc->hit
3478 && sc->session->ext.hostname != NULL)
3479 return sc->session->ext.hostname;
7955c1f1
MC
3480 }
3481 }
3482
38b051a1 3483 return sc->ext.hostname;
0f113f3e 3484}
ed3883d2 3485
f1fd4544 3486int SSL_get_servername_type(const SSL *s)
0f113f3e 3487{
7955c1f1 3488 if (SSL_get_servername(s, TLSEXT_NAMETYPE_host_name) != NULL)
0f113f3e
MC
3489 return TLSEXT_NAMETYPE_host_name;
3490 return -1;
3491}
ee2ffc27 3492
0f113f3e
MC
3493/*
3494 * SSL_select_next_proto implements the standard protocol selection. It is
ee2ffc27 3495 * expected that this function is called from the callback set by
0f113f3e
MC
3496 * SSL_CTX_set_next_proto_select_cb. The protocol data is assumed to be a
3497 * vector of 8-bit, length prefixed byte strings. The length byte itself is
3498 * not included in the length. A byte string of length 0 is invalid. No byte
3499 * string may be truncated. The current, but experimental algorithm for
3500 * selecting the protocol is: 1) If the server doesn't support NPN then this
3501 * is indicated to the callback. In this case, the client application has to
3502 * abort the connection or have a default application level protocol. 2) If
3503 * the server supports NPN, but advertises an empty list then the client
f430ba31 3504 * selects the first protocol in its list, but indicates via the API that this
0f113f3e
MC
3505 * fallback case was enacted. 3) Otherwise, the client finds the first
3506 * protocol in the server's list that it supports and selects this protocol.
3507 * This is because it's assumed that the server has better information about
3508 * which protocol a client should use. 4) If the client doesn't support any
3509 * of the server's advertised protocols, then this is treated the same as
3510 * case 2. It returns either OPENSSL_NPN_NEGOTIATED if a common protocol was
3511 * found, or OPENSSL_NPN_NO_OVERLAP if the fallback case was reached.
ee2ffc27 3512 */
0f113f3e
MC
3513int SSL_select_next_proto(unsigned char **out, unsigned char *outlen,
3514 const unsigned char *server,
3515 unsigned int server_len,
a230b26e 3516 const unsigned char *client, unsigned int client_len)
0f113f3e
MC
3517{
3518 unsigned int i, j;
3519 const unsigned char *result;
3520 int status = OPENSSL_NPN_UNSUPPORTED;
3521
3522 /*
3523 * For each protocol in server preference order, see if we support it.
3524 */
3525 for (i = 0; i < server_len;) {
3526 for (j = 0; j < client_len;) {
3527 if (server[i] == client[j] &&
3528 memcmp(&server[i + 1], &client[j + 1], server[i]) == 0) {
3529 /* We found a match */
3530 result = &server[i];
3531 status = OPENSSL_NPN_NEGOTIATED;
3532 goto found;
3533 }
3534 j += client[j];
3535 j++;
3536 }
3537 i += server[i];
3538 i++;
3539 }
3540
3541 /* There's no overlap between our protocols and the server's list. */
3542 result = client;
3543 status = OPENSSL_NPN_NO_OVERLAP;
3544
3545 found:
3546 *out = (unsigned char *)result + 1;
3547 *outlen = result[0];
3548 return status;
3549}
ee2ffc27 3550
e481f9b9 3551#ifndef OPENSSL_NO_NEXTPROTONEG
0f113f3e
MC
3552/*
3553 * SSL_get0_next_proto_negotiated sets *data and *len to point to the
3554 * client's requested protocol for this connection and returns 0. If the
3555 * client didn't request any protocol, then *data is set to NULL. Note that
3556 * the client can request any protocol it chooses. The value returned from
3557 * this function need not be a member of the list of supported protocols
ee2ffc27
BL
3558 * provided by the callback.
3559 */
0f113f3e
MC
3560void SSL_get0_next_proto_negotiated(const SSL *s, const unsigned char **data,
3561 unsigned *len)
3562{
38b051a1
TM
3563 const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(s);
3564
3565 if (sc == NULL) {
3566 /* We have no other way to indicate error */
3567 *data = NULL;
3568 *len = 0;
3569 return;
3570 }
3571
3572 *data = sc->ext.npn;
12a765a5 3573 if (*data == NULL) {
0f113f3e
MC
3574 *len = 0;
3575 } else {
38b051a1 3576 *len = (unsigned int)sc->ext.npn_len;
0f113f3e
MC
3577 }
3578}
3579
3580/*
aff8c126 3581 * SSL_CTX_set_npn_advertised_cb sets a callback that is called when
0f113f3e
MC
3582 * a TLS server needs a list of supported protocols for Next Protocol
3583 * Negotiation. The returned list must be in wire format. The list is
3584 * returned by setting |out| to point to it and |outlen| to its length. This
3585 * memory will not be modified, but one should assume that the SSL* keeps a
3586 * reference to it. The callback should return SSL_TLSEXT_ERR_OK if it
3587 * wishes to advertise. Otherwise, no such extension will be included in the
3588 * ServerHello.
3589 */
aff8c126 3590void SSL_CTX_set_npn_advertised_cb(SSL_CTX *ctx,
8cbfcc70 3591 SSL_CTX_npn_advertised_cb_func cb,
aff8c126 3592 void *arg)
0f113f3e 3593{
68dbff4c
HL
3594 if (IS_QUIC_CTX(ctx))
3595 /* NPN not allowed for QUIC */
3596 return;
3597
aff8c126
RS
3598 ctx->ext.npn_advertised_cb = cb;
3599 ctx->ext.npn_advertised_cb_arg = arg;
0f113f3e
MC
3600}
3601
3602/*
3603 * SSL_CTX_set_next_proto_select_cb sets a callback that is called when a
ee2ffc27
BL
3604 * client needs to select a protocol from the server's provided list. |out|
3605 * must be set to point to the selected protocol (which may be within |in|).
0f113f3e
MC
3606 * The length of the protocol name must be written into |outlen|. The
3607 * server's advertised protocols are provided in |in| and |inlen|. The
3608 * callback can assume that |in| is syntactically valid. The client must
3609 * select a protocol. It is fatal to the connection if this callback returns
3610 * a value other than SSL_TLSEXT_ERR_OK.
ee2ffc27 3611 */
aff8c126 3612void SSL_CTX_set_npn_select_cb(SSL_CTX *ctx,
8cbfcc70 3613 SSL_CTX_npn_select_cb_func cb,
aff8c126 3614 void *arg)
0f113f3e 3615{
68dbff4c
HL
3616 if (IS_QUIC_CTX(ctx))
3617 /* NPN not allowed for QUIC */
3618 return;
3619
aff8c126
RS
3620 ctx->ext.npn_select_cb = cb;
3621 ctx->ext.npn_select_cb_arg = arg;
0f113f3e 3622}
e481f9b9 3623#endif
a398f821 3624
feba11cf
TS
3625static int alpn_value_ok(const unsigned char *protos, unsigned int protos_len)
3626{
3627 unsigned int idx;
3628
3629 if (protos_len < 2 || protos == NULL)
3630 return 0;
3631
3632 for (idx = 0; idx < protos_len; idx += protos[idx] + 1) {
3633 if (protos[idx] == 0)
3634 return 0;
3635 }
3636 return idx == protos_len;
3637}
0f113f3e
MC
3638/*
3639 * SSL_CTX_set_alpn_protos sets the ALPN protocol list on |ctx| to |protos|.
6f017a8f 3640 * |protos| must be in wire-format (i.e. a series of non-empty, 8-bit
0f113f3e
MC
3641 * length-prefixed strings). Returns 0 on success.
3642 */
3643int SSL_CTX_set_alpn_protos(SSL_CTX *ctx, const unsigned char *protos,
817cd0d5 3644 unsigned int protos_len)
0f113f3e 3645{
feba11cf
TS
3646 unsigned char *alpn;
3647
3648 if (protos_len == 0 || protos == NULL) {
3649 OPENSSL_free(ctx->ext.alpn);
3650 ctx->ext.alpn = NULL;
39a14059 3651 ctx->ext.alpn_len = 0;
feba11cf
TS
3652 return 0;
3653 }
3654 /* Not valid per RFC */
3655 if (!alpn_value_ok(protos, protos_len))
3656 return 1;
3657
3658 alpn = OPENSSL_memdup(protos, protos_len);
e077455e 3659 if (alpn == NULL)
0f113f3e 3660 return 1;
feba11cf
TS
3661 OPENSSL_free(ctx->ext.alpn);
3662 ctx->ext.alpn = alpn;
aff8c126 3663 ctx->ext.alpn_len = protos_len;
0f113f3e
MC
3664
3665 return 0;
3666}
3667
3668/*
3669 * SSL_set_alpn_protos sets the ALPN protocol list on |ssl| to |protos|.
6f017a8f 3670 * |protos| must be in wire-format (i.e. a series of non-empty, 8-bit
0f113f3e
MC
3671 * length-prefixed strings). Returns 0 on success.
3672 */
3673int SSL_set_alpn_protos(SSL *ssl, const unsigned char *protos,
817cd0d5 3674 unsigned int protos_len)
0f113f3e 3675{
feba11cf 3676 unsigned char *alpn;
38b051a1
TM
3677 SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(ssl);
3678
3679 if (sc == NULL)
3680 return 1;
feba11cf
TS
3681
3682 if (protos_len == 0 || protos == NULL) {
38b051a1
TM
3683 OPENSSL_free(sc->ext.alpn);
3684 sc->ext.alpn = NULL;
3685 sc->ext.alpn_len = 0;
feba11cf
TS
3686 return 0;
3687 }
3688 /* Not valid per RFC */
3689 if (!alpn_value_ok(protos, protos_len))
3690 return 1;
3691
3692 alpn = OPENSSL_memdup(protos, protos_len);
e077455e 3693 if (alpn == NULL)
0f113f3e 3694 return 1;
38b051a1
TM
3695 OPENSSL_free(sc->ext.alpn);
3696 sc->ext.alpn = alpn;
3697 sc->ext.alpn_len = protos_len;
0f113f3e
MC
3698
3699 return 0;
3700}
3701
3702/*
3703 * SSL_CTX_set_alpn_select_cb sets a callback function on |ctx| that is
3704 * called during ClientHello processing in order to select an ALPN protocol
3705 * from the client's list of offered protocols.
3706 */
3707void SSL_CTX_set_alpn_select_cb(SSL_CTX *ctx,
8cbfcc70
RS
3708 SSL_CTX_alpn_select_cb_func cb,
3709 void *arg)
0f113f3e 3710{
aff8c126
RS
3711 ctx->ext.alpn_select_cb = cb;
3712 ctx->ext.alpn_select_cb_arg = arg;
0f113f3e
MC
3713}
3714
3715/*
69687aa8
F
3716 * SSL_get0_alpn_selected gets the selected ALPN protocol (if any) from |ssl|.
3717 * On return it sets |*data| to point to |*len| bytes of protocol name
0f113f3e
MC
3718 * (not including the leading length-prefix byte). If the server didn't
3719 * respond with a negotiated protocol then |*len| will be zero.
3720 */
6f017a8f 3721void SSL_get0_alpn_selected(const SSL *ssl, const unsigned char **data,
817cd0d5 3722 unsigned int *len)
0f113f3e 3723{
38b051a1
TM
3724 const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(ssl);
3725
3726 if (sc == NULL) {
3727 /* We have no other way to indicate error */
3728 *data = NULL;
3729 *len = 0;
3730 return;
3731 }
3732
3733 *data = sc->s3.alpn_selected;
0f113f3e
MC
3734 if (*data == NULL)
3735 *len = 0;
3736 else
38b051a1 3737 *len = (unsigned int)sc->s3.alpn_selected_len;
0f113f3e
MC
3738}
3739
74b4b494 3740int SSL_export_keying_material(SSL *s, unsigned char *out, size_t olen,
0f113f3e 3741 const char *label, size_t llen,
23cec1f4 3742 const unsigned char *context, size_t contextlen,
0f113f3e
MC
3743 int use_context)
3744{
38b051a1
TM
3745 SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
3746
3747 if (sc == NULL)
3748 return -1;
3749
3750 if (sc->session == NULL
3751 || (sc->version < TLS1_VERSION && sc->version != DTLS1_BAD_VER))
0f113f3e 3752 return -1;
e0af0405 3753
38b051a1 3754 return s->method->ssl3_enc->export_keying_material(sc, out, olen, label,
23cec1f4
MC
3755 llen, context,
3756 contextlen, use_context);
0f113f3e 3757}
e0af0405 3758
b38ede80
TT
3759int SSL_export_keying_material_early(SSL *s, unsigned char *out, size_t olen,
3760 const char *label, size_t llen,
3761 const unsigned char *context,
3762 size_t contextlen)
3763{
38b051a1
TM
3764 SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
3765
3766 if (sc == NULL)
3767 return -1;
3768
3769 if (sc->version != TLS1_3_VERSION)
b38ede80
TT
3770 return 0;
3771
38b051a1 3772 return tls13_export_keying_material_early(sc, out, olen, label, llen,
b38ede80
TT
3773 context, contextlen);
3774}
3775
3c1d6bbc 3776static unsigned long ssl_session_hash(const SSL_SESSION *a)
0f113f3e 3777{
bd5d27c1 3778 const unsigned char *session_id = a->session_id;
0f113f3e 3779 unsigned long l;
bd5d27c1
DB
3780 unsigned char tmp_storage[4];
3781
3782 if (a->session_id_length < sizeof(tmp_storage)) {
3783 memset(tmp_storage, 0, sizeof(tmp_storage));
3784 memcpy(tmp_storage, a->session_id, a->session_id_length);
3785 session_id = tmp_storage;
3786 }
0f113f3e
MC
3787
3788 l = (unsigned long)
bd5d27c1
DB
3789 ((unsigned long)session_id[0]) |
3790 ((unsigned long)session_id[1] << 8L) |
3791 ((unsigned long)session_id[2] << 16L) |
3792 ((unsigned long)session_id[3] << 24L);
26a7d938 3793 return l;
0f113f3e
MC
3794}
3795
3796/*
3797 * NB: If this function (or indeed the hash function which uses a sort of
dc644fe2 3798 * coarser function than this one) is changed, ensure
0f113f3e
MC
3799 * SSL_CTX_has_matching_session_id() is checked accordingly. It relies on
3800 * being able to construct an SSL_SESSION that will collide with any existing
3801 * session with a matching session ID.
3802 */
3803static int ssl_session_cmp(const SSL_SESSION *a, const SSL_SESSION *b)
3804{
3805 if (a->ssl_version != b->ssl_version)
208fb891 3806 return 1;
0f113f3e 3807 if (a->session_id_length != b->session_id_length)
208fb891 3808 return 1;
26a7d938 3809 return memcmp(a->session_id, b->session_id, a->session_id_length);
0f113f3e
MC
3810}
3811
3812/*
3813 * These wrapper functions should remain rather than redeclaring
d0fa136c 3814 * SSL_SESSION_hash and SSL_SESSION_cmp for void* types and casting each
0f113f3e
MC
3815 * variable. The reason is that the functions aren't static, they're exposed
3816 * via ssl.h.
3817 */
97b17195 3818
b4250010 3819SSL_CTX *SSL_CTX_new_ex(OSSL_LIB_CTX *libctx, const char *propq,
d8652be0 3820 const SSL_METHOD *meth)
0f113f3e
MC
3821{
3822 SSL_CTX *ret = NULL;
b67cb09f
TS
3823#ifndef OPENSSL_NO_COMP_ALG
3824 int i;
3825#endif
0f113f3e
MC
3826
3827 if (meth == NULL) {
6849b73c 3828 ERR_raise(ERR_LIB_SSL, SSL_R_NULL_SSL_METHOD_PASSED);
26a7d938 3829 return NULL;
0f113f3e
MC
3830 }
3831
0fc32b07
MC
3832 if (!OPENSSL_init_ssl(OPENSSL_INIT_LOAD_SSL_STRINGS, NULL))
3833 return NULL;
7fa792d1 3834
97beb77f 3835 /* Doing this for the run once effect */
0f113f3e 3836 if (SSL_get_ex_data_X509_STORE_CTX_idx() < 0) {
6849b73c 3837 ERR_raise(ERR_LIB_SSL, SSL_R_X509_VERIFICATION_SETUP_PROBLEMS);
0f113f3e
MC
3838 goto err;
3839 }
43a07d6d 3840
b51bce94 3841 ret = OPENSSL_zalloc(sizeof(*ret));
0f113f3e 3842 if (ret == NULL)
97beb77f 3843 return NULL;
0f113f3e 3844
045a8930 3845 /* Init the reference counting before any call to SSL_CTX_free */
97beb77f
P
3846 if (!CRYPTO_NEW_REF(&ret->references, 1)) {
3847 OPENSSL_free(ret);
3848 return NULL;
3849 }
43a07d6d 3850
045a8930
F
3851 ret->lock = CRYPTO_THREAD_lock_new();
3852 if (ret->lock == NULL) {
e077455e
RL
3853 ERR_raise(ERR_LIB_SSL, ERR_R_CRYPTO_LIB);
3854 goto err;
045a8930
F
3855 }
3856
acce0557
P
3857#ifdef TSAN_REQUIRES_LOCKING
3858 ret->tsan_lock = CRYPTO_THREAD_lock_new();
3859 if (ret->tsan_lock == NULL) {
e077455e 3860 ERR_raise(ERR_LIB_SSL, ERR_R_CRYPTO_LIB);
acce0557
P
3861 goto err;
3862 }
3863#endif
3864
ba18627e
MC
3865 ret->libctx = libctx;
3866 if (propq != NULL) {
3867 ret->propq = OPENSSL_strdup(propq);
3868 if (ret->propq == NULL)
3869 goto err;
3870 }
3871
0f113f3e 3872 ret->method = meth;
7946ab33
KR
3873 ret->min_proto_version = 0;
3874 ret->max_proto_version = 0;
693cf80c 3875 ret->mode = SSL_MODE_AUTO_RETRY;
0f113f3e
MC
3876 ret->session_cache_mode = SSL_SESS_CACHE_SERVER;
3877 ret->session_cache_size = SSL_SESSION_CACHE_MAX_SIZE_DEFAULT;
64b25758 3878 /* We take the system default. */
0f113f3e 3879 ret->session_timeout = meth->get_timeout();
0f113f3e 3880 ret->max_cert_list = SSL_MAX_CERT_LIST_DEFAULT;
0f113f3e 3881 ret->verify_mode = SSL_VERIFY_NONE;
0f113f3e 3882
62d0577e 3883 ret->sessions = lh_SSL_SESSION_new(ssl_session_hash, ssl_session_cmp);
e077455e
RL
3884 if (ret->sessions == NULL) {
3885 ERR_raise(ERR_LIB_SSL, ERR_R_CRYPTO_LIB);
0f113f3e 3886 goto err;
e077455e 3887 }
0f113f3e 3888 ret->cert_store = X509_STORE_new();
e077455e
RL
3889 if (ret->cert_store == NULL) {
3890 ERR_raise(ERR_LIB_SSL, ERR_R_X509_LIB);
0f113f3e 3891 goto err;
e077455e 3892 }
ed29e82a 3893#ifndef OPENSSL_NO_CT
d8652be0 3894 ret->ctlog_store = CTLOG_STORE_new_ex(libctx, propq);
e077455e
RL
3895 if (ret->ctlog_store == NULL) {
3896 ERR_raise(ERR_LIB_SSL, ERR_R_CT_LIB);
ed29e82a 3897 goto err;
e077455e 3898 }
ed29e82a 3899#endif
f865b081 3900
c8f6c28a 3901 /* initialize cipher/digest methods table */
ee58915c
MB
3902 if (!ssl_load_ciphers(ret)) {
3903 ERR_raise(ERR_LIB_SSL, ERR_R_SSL_LIB);
e077455e 3904 goto err;
ee58915c
MB
3905 }
3906
3907 if (!ssl_load_groups(ret)) {
3908 ERR_raise(ERR_LIB_SSL, ERR_R_SSL_LIB);
3909 goto err;
3910 }
3911
3912 /* load provider sigalgs */
3913 if (!ssl_load_sigalgs(ret)) {
3914 ERR_raise(ERR_LIB_SSL, ERR_R_SSL_LIB);
e077455e 3915 goto err;
ee58915c 3916 }
c8f6c28a 3917
ee58915c
MB
3918 /* initialise sig algs */
3919 if (!ssl_setup_sigalgs(ret)) {
3920 ERR_raise(ERR_LIB_SSL, ERR_R_SSL_LIB);
e077455e 3921 goto err;
ee58915c 3922 }
9d2d857f 3923
e077455e
RL
3924 if (!SSL_CTX_set_ciphersuites(ret, OSSL_default_ciphersuites())) {
3925 ERR_raise(ERR_LIB_SSL, ERR_R_SSL_LIB);
f865b081 3926 goto err;
e077455e 3927 }
f865b081 3928
ee58915c
MB
3929 if ((ret->cert = ssl_cert_new(SSL_PKEY_NUM + ret->sigalg_list_len)) == NULL) {
3930 ERR_raise(ERR_LIB_SSL, ERR_R_SSL_LIB);
3931 goto err;
3932 }
3933
a68eee67 3934 if (!ssl_create_cipher_list(ret,
f865b081 3935 ret->tls13_ciphersuites,
a230b26e 3936 &ret->cipher_list, &ret->cipher_list_by_id,
5d120511 3937 OSSL_default_cipher_list(), ret->cert)
a230b26e 3938 || sk_SSL_CIPHER_num(ret->cipher_list) <= 0) {
6849b73c 3939 ERR_raise(ERR_LIB_SSL, SSL_R_LIBRARY_HAS_NO_CIPHERS);
e077455e 3940 goto err;
0f113f3e
MC
3941 }
3942
3943 ret->param = X509_VERIFY_PARAM_new();
e077455e
RL
3944 if (ret->param == NULL) {
3945 ERR_raise(ERR_LIB_SSL, ERR_R_X509_LIB);
0f113f3e 3946 goto err;
e077455e 3947 }
0f113f3e 3948
c8f6c28a
MC
3949 /*
3950 * If these aren't available from the provider we'll get NULL returns.
3951 * That's fine but will cause errors later if SSLv3 is negotiated
3952 */
3953 ret->md5 = ssl_evp_md_fetch(libctx, NID_md5, propq);
3954 ret->sha1 = ssl_evp_md_fetch(libctx, NID_sha1, propq);
0f113f3e 3955
e077455e
RL
3956 if ((ret->ca_names = sk_X509_NAME_new_null()) == NULL) {
3957 ERR_raise(ERR_LIB_SSL, ERR_R_CRYPTO_LIB);
0f113f3e 3958 goto err;
e077455e 3959 }
0f113f3e 3960
e077455e
RL
3961 if ((ret->client_ca_names = sk_X509_NAME_new_null()) == NULL) {
3962 ERR_raise(ERR_LIB_SSL, ERR_R_CRYPTO_LIB);
98732979 3963 goto err;
e077455e 3964 }
98732979 3965
e077455e
RL
3966 if (!CRYPTO_new_ex_data(CRYPTO_EX_INDEX_SSL_CTX, ret, &ret->ex_data)) {
3967 ERR_raise(ERR_LIB_SSL, ERR_R_CRYPTO_LIB);
25a807bc 3968 goto err;
e077455e 3969 }
0f113f3e 3970
4bfb96f2
TS
3971 if ((ret->ext.secure = OPENSSL_secure_zalloc(sizeof(*ret->ext.secure))) == NULL)
3972 goto err;
3973
0f113f3e
MC
3974 /* No compression for DTLS */
3975 if (!(meth->ssl3_enc->enc_flags & SSL_ENC_FLAG_DTLS))
3976 ret->comp_methods = SSL_COMP_get_compression_methods();
3977
3978 ret->max_send_fragment = SSL3_RT_MAX_PLAIN_LENGTH;
d102d9df 3979 ret->split_send_fragment = SSL3_RT_MAX_PLAIN_LENGTH;
566dda07 3980
4e2e1ec9 3981 /* Setup RFC5077 ticket keys */
8f21260b 3982 if ((RAND_bytes_ex(libctx, ret->ext.tick_key_name,
0f8815aa 3983 sizeof(ret->ext.tick_key_name), 0) <= 0)
8f21260b 3984 || (RAND_priv_bytes_ex(libctx, ret->ext.secure->tick_hmac_key,
0f8815aa 3985 sizeof(ret->ext.secure->tick_hmac_key), 0) <= 0)
8f21260b 3986 || (RAND_priv_bytes_ex(libctx, ret->ext.secure->tick_aes_key,
0f8815aa 3987 sizeof(ret->ext.secure->tick_aes_key), 0) <= 0))
0f113f3e 3988 ret->options |= SSL_OP_NO_TICKET;
6434abbf 3989
8f21260b 3990 if (RAND_priv_bytes_ex(libctx, ret->ext.cookie_hmac_key,
e077455e
RL
3991 sizeof(ret->ext.cookie_hmac_key), 0) <= 0) {
3992 ERR_raise(ERR_LIB_SSL, ERR_R_RAND_LIB);
43054d3d 3993 goto err;
e077455e 3994 }
43054d3d 3995
edc032b5 3996#ifndef OPENSSL_NO_SRP
e077455e
RL
3997 if (!ssl_ctx_srp_ctx_init_intern(ret)) {
3998 ERR_raise(ERR_LIB_SSL, ERR_R_SSL_LIB);
69f68237 3999 goto err;
e077455e 4000 }
edc032b5 4001#endif
4db9677b 4002#ifndef OPENSSL_NO_ENGINE
0f113f3e
MC
4003# ifdef OPENSSL_SSL_CLIENT_ENGINE_AUTO
4004# define eng_strx(x) #x
4005# define eng_str(x) eng_strx(x)
4006 /* Use specific client engine automatically... ignore errors */
4007 {
4008 ENGINE *eng;
4009 eng = ENGINE_by_id(eng_str(OPENSSL_SSL_CLIENT_ENGINE_AUTO));
4010 if (!eng) {
4011 ERR_clear_error();
4012 ENGINE_load_builtin_engines();
4013 eng = ENGINE_by_id(eng_str(OPENSSL_SSL_CLIENT_ENGINE_AUTO));
4014 }
4015 if (!eng || !SSL_CTX_set_client_cert_engine(ret, eng))
4016 ERR_clear_error();
4017 }
4018# endif
b67cb09f
TS
4019#endif
4020
4021#ifndef OPENSSL_NO_COMP_ALG
4022 /*
4023 * Set the default order: brotli, zlib, zstd
4024 * Including only those enabled algorithms
4025 */
4026 memset(ret->cert_comp_prefs, 0, sizeof(ret->cert_comp_prefs));
4027 i = 0;
4028 if (ossl_comp_has_alg(TLSEXT_comp_cert_brotli))
4029 ret->cert_comp_prefs[i++] = TLSEXT_comp_cert_brotli;
4030 if (ossl_comp_has_alg(TLSEXT_comp_cert_zlib))
4031 ret->cert_comp_prefs[i++] = TLSEXT_comp_cert_zlib;
4032 if (ossl_comp_has_alg(TLSEXT_comp_cert_zstd))
4033 ret->cert_comp_prefs[i++] = TLSEXT_comp_cert_zstd;
0f113f3e 4034#endif
dc5744cb
EK
4035 /*
4036 * Disable compression by default to prevent CRIME. Applications can
4037 * re-enable compression by configuring
4038 * SSL_CTX_clear_options(ctx, SSL_OP_NO_COMPRESSION);
a5816a5a
MC
4039 * or by using the SSL_CONF library. Similarly we also enable TLSv1.3
4040 * middlebox compatibility by default. This may be disabled by default in
4041 * a later OpenSSL version.
dc5744cb 4042 */
a5816a5a 4043 ret->options |= SSL_OP_NO_COMPRESSION | SSL_OP_ENABLE_MIDDLEBOX_COMPAT;
0f113f3e 4044
aff8c126 4045 ret->ext.status_type = TLSEXT_STATUSTYPE_nothing;
ba261f71 4046
bfa9a9af 4047 /*
c39e4048
BK
4048 * We cannot usefully set a default max_early_data here (which gets
4049 * propagated in SSL_new(), for the following reason: setting the
4050 * SSL field causes tls_construct_stoc_early_data() to tell the
4051 * client that early data will be accepted when constructing a TLS 1.3
4052 * session ticket, and the client will accordingly send us early data
4053 * when using that ticket (if the client has early data to send).
4054 * However, in order for the early data to actually be consumed by
4055 * the application, the application must also have calls to
4056 * SSL_read_early_data(); otherwise we'll just skip past the early data
4057 * and ignore it. So, since the application must add calls to
4058 * SSL_read_early_data(), we also require them to add
4059 * calls to SSL_CTX_set_max_early_data() in order to use early data,
4060 * eliminating the bandwidth-wasting early data in the case described
4061 * above.
bfa9a9af 4062 */
c39e4048 4063 ret->max_early_data = 0;
bfa9a9af 4064
4e8548e8
MC
4065 /*
4066 * Default recv_max_early_data is a fully loaded single record. Could be
4067 * split across multiple records in practice. We set this differently to
4068 * max_early_data so that, in the default case, we do not advertise any
4069 * support for early_data, but if a client were to send us some (e.g.
4070 * because of an old, stale ticket) then we will tolerate it and skip over
4071 * it.
4072 */
4073 ret->recv_max_early_data = SSL3_RT_MAX_PLAIN_LENGTH;
4074
36ff232c
MC
4075 /* By default we send two session tickets automatically in TLSv1.3 */
4076 ret->num_tickets = 2;
9d0a8bb7 4077
8a5ed9dc
TM
4078 ssl_ctx_system_config(ret);
4079
16203f7b 4080 return ret;
0f113f3e 4081 err:
e0e920b1 4082 SSL_CTX_free(ret);
16203f7b 4083 return NULL;
0f113f3e 4084}
d02b48c6 4085
ba18627e
MC
4086SSL_CTX *SSL_CTX_new(const SSL_METHOD *meth)
4087{
d8652be0 4088 return SSL_CTX_new_ex(NULL, NULL, meth);
ba18627e
MC
4089}
4090
c5ebfcab 4091int SSL_CTX_up_ref(SSL_CTX *ctx)
a18a31e4 4092{
16203f7b 4093 int i;
c5ebfcab 4094
43a07d6d 4095 if (CRYPTO_UP_REF(&ctx->references, &i) <= 0)
c5ebfcab
F
4096 return 0;
4097
4098 REF_PRINT_COUNT("SSL_CTX", ctx);
4099 REF_ASSERT_ISNT(i < 2);
4100 return ((i > 1) ? 1 : 0);
a18a31e4
MC
4101}
4102
4f43d0e7 4103void SSL_CTX_free(SSL_CTX *a)
0f113f3e
MC
4104{
4105 int i;
9d2d857f 4106 size_t j;
d02b48c6 4107
0f113f3e
MC
4108 if (a == NULL)
4109 return;
d02b48c6 4110
43a07d6d 4111 CRYPTO_DOWN_REF(&a->references, &i);
f3f1cf84 4112 REF_PRINT_COUNT("SSL_CTX", a);
0f113f3e
MC
4113 if (i > 0)
4114 return;
f3f1cf84 4115 REF_ASSERT_ISNT(i < 0);
0f113f3e 4116
222561fe 4117 X509_VERIFY_PARAM_free(a->param);
919ba009 4118 dane_ctx_final(&a->dane);
0f113f3e
MC
4119
4120 /*
4121 * Free internal session cache. However: the remove_cb() may reference
4122 * the ex_data of SSL_CTX, thus the ex_data store can only be removed
4123 * after the sessions were flushed.
4124 * As the ex_data handling routines might also touch the session cache,
4125 * the most secure solution seems to be: empty (flush) the cache, then
4126 * free ex_data, then finally free the cache.
4127 * (See ticket [openssl.org #212].)
4128 */
4129 if (a->sessions != NULL)
4130 SSL_CTX_flush_sessions(a, 0);
4131
4132 CRYPTO_free_ex_data(CRYPTO_EX_INDEX_SSL_CTX, a, &a->ex_data);
25aaa98a 4133 lh_SSL_SESSION_free(a->sessions);
222561fe 4134 X509_STORE_free(a->cert_store);
ed29e82a
RP
4135#ifndef OPENSSL_NO_CT
4136 CTLOG_STORE_free(a->ctlog_store);
4137#endif
25aaa98a
RS
4138 sk_SSL_CIPHER_free(a->cipher_list);
4139 sk_SSL_CIPHER_free(a->cipher_list_by_id);
f865b081 4140 sk_SSL_CIPHER_free(a->tls13_ciphersuites);
e0e920b1 4141 ssl_cert_free(a->cert);
fa7c2637 4142 sk_X509_NAME_pop_free(a->ca_names, X509_NAME_free);
98732979 4143 sk_X509_NAME_pop_free(a->client_ca_names, X509_NAME_free);
79b2a2f2 4144 OSSL_STACK_OF_X509_free(a->extra_certs);
0f113f3e 4145 a->comp_methods = NULL;
e783bae2 4146#ifndef OPENSSL_NO_SRTP
25aaa98a 4147 sk_SRTP_PROTECTION_PROFILE_free(a->srtp_profiles);
e783bae2 4148#endif
edc032b5 4149#ifndef OPENSSL_NO_SRP
76cb077f 4150 ssl_ctx_srp_ctx_free_intern(a);
edc032b5 4151#endif
bdfe932d 4152#ifndef OPENSSL_NO_ENGINE
301fcb28 4153 tls_engine_finish(a->client_cert_engine);
ddac1974 4154#endif
8671b898 4155
aff8c126 4156 OPENSSL_free(a->ext.ecpointformats);
187753e0 4157 OPENSSL_free(a->ext.supportedgroups);
ddf8f1ce 4158 OPENSSL_free(a->ext.supported_groups_default);
aff8c126 4159 OPENSSL_free(a->ext.alpn);
4bfb96f2 4160 OPENSSL_secure_free(a->ext.secure);
8671b898 4161
c8f6c28a
MC
4162 ssl_evp_md_free(a->md5);
4163 ssl_evp_md_free(a->sha1);
4164
9d2d857f
MC
4165 for (j = 0; j < SSL_ENC_NUM_IDX; j++)
4166 ssl_evp_cipher_free(a->ssl_cipher_methods[j]);
4167 for (j = 0; j < SSL_MD_NUM_IDX; j++)
4168 ssl_evp_md_free(a->ssl_digest_methods[j]);
4169 for (j = 0; j < a->group_list_len; j++) {
4170 OPENSSL_free(a->group_list[j].tlsname);
4171 OPENSSL_free(a->group_list[j].realname);
4172 OPENSSL_free(a->group_list[j].algorithm);
4173 }
4174 OPENSSL_free(a->group_list);
ee58915c
MB
4175 for (j = 0; j < a->sigalg_list_len; j++) {
4176 OPENSSL_free(a->sigalg_list[j].name);
4177 OPENSSL_free(a->sigalg_list[j].sigalg_name);
4178 OPENSSL_free(a->sigalg_list[j].sigalg_oid);
4179 OPENSSL_free(a->sigalg_list[j].sig_name);
4180 OPENSSL_free(a->sigalg_list[j].sig_oid);
4181 OPENSSL_free(a->sigalg_list[j].hash_name);
4182 OPENSSL_free(a->sigalg_list[j].hash_oid);
4183 OPENSSL_free(a->sigalg_list[j].keytype);
4184 OPENSSL_free(a->sigalg_list[j].keytype_oid);
4185 }
4186 OPENSSL_free(a->sigalg_list);
4187 OPENSSL_free(a->ssl_cert_info);
c8f6c28a 4188
263ff2c9 4189 OPENSSL_free(a->sigalg_lookup_cache);
ee58915c 4190 OPENSSL_free(a->tls12_sigalgs);
263ff2c9 4191
3c95ef22
TS
4192 OPENSSL_free(a->client_cert_type);
4193 OPENSSL_free(a->server_cert_type);
4194
16203f7b 4195 CRYPTO_THREAD_lock_free(a->lock);
43a07d6d 4196 CRYPTO_FREE_REF(&a->references);
acce0557
P
4197#ifdef TSAN_REQUIRES_LOCKING
4198 CRYPTO_THREAD_lock_free(a->tsan_lock);
4199#endif
16203f7b 4200
ba18627e
MC
4201 OPENSSL_free(a->propq);
4202
0f113f3e
MC
4203 OPENSSL_free(a);
4204}
d02b48c6 4205
3ae76679 4206void SSL_CTX_set_default_passwd_cb(SSL_CTX *ctx, pem_password_cb *cb)
0f113f3e
MC
4207{
4208 ctx->default_passwd_callback = cb;
4209}
4210
4211void SSL_CTX_set_default_passwd_cb_userdata(SSL_CTX *ctx, void *u)
4212{
4213 ctx->default_passwd_callback_userdata = u;
4214}
4215
0c452abc
CH
4216pem_password_cb *SSL_CTX_get_default_passwd_cb(SSL_CTX *ctx)
4217{
4218 return ctx->default_passwd_callback;
4219}
4220
4221void *SSL_CTX_get_default_passwd_cb_userdata(SSL_CTX *ctx)
4222{
4223 return ctx->default_passwd_callback_userdata;
4224}
4225
a974e64a
MC
4226void SSL_set_default_passwd_cb(SSL *s, pem_password_cb *cb)
4227{
38b051a1
TM
4228 SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
4229
4230 if (sc == NULL)
4231 return;
4232
4233 sc->default_passwd_callback = cb;
a974e64a
MC
4234}
4235
4236void SSL_set_default_passwd_cb_userdata(SSL *s, void *u)
4237{
38b051a1
TM
4238 SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
4239
4240 if (sc == NULL)
4241 return;
4242
4243 sc->default_passwd_callback_userdata = u;
a974e64a
MC
4244}
4245
0c452abc
CH
4246pem_password_cb *SSL_get_default_passwd_cb(SSL *s)
4247{
38b051a1
TM
4248 SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
4249
4250 if (sc == NULL)
4251 return NULL;
4252
4253 return sc->default_passwd_callback;
0c452abc
CH
4254}
4255
4256void *SSL_get_default_passwd_cb_userdata(SSL *s)
4257{
38b051a1
TM
4258 SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
4259
4260 if (sc == NULL)
4261 return NULL;
4262
4263 return sc->default_passwd_callback_userdata;
0c452abc
CH
4264}
4265
0f113f3e
MC
4266void SSL_CTX_set_cert_verify_callback(SSL_CTX *ctx,
4267 int (*cb) (X509_STORE_CTX *, void *),
4268 void *arg)
4269{
4270 ctx->app_verify_callback = cb;
4271 ctx->app_verify_arg = arg;
4272}
4273
4274void SSL_CTX_set_verify(SSL_CTX *ctx, int mode,
4275 int (*cb) (int, X509_STORE_CTX *))
4276{
4277 ctx->verify_mode = mode;
4278 ctx->default_verify_callback = cb;
4279}
4280
4281void SSL_CTX_set_verify_depth(SSL_CTX *ctx, int depth)
4282{
4283 X509_VERIFY_PARAM_set_depth(ctx->param, depth);
4284}
4285
a230b26e 4286void SSL_CTX_set_cert_cb(SSL_CTX *c, int (*cb) (SSL *ssl, void *arg), void *arg)
0f113f3e
MC
4287{
4288 ssl_cert_set_cert_cb(c->cert, cb, arg);
4289}
4290
4291void SSL_set_cert_cb(SSL *s, int (*cb) (SSL *ssl, void *arg), void *arg)
4292{
38b051a1
TM
4293 SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
4294
4295 if (sc == NULL)
4296 return;
4297
4298 ssl_cert_set_cert_cb(sc->cert, cb, arg);
0f113f3e 4299}
18d71588 4300
38b051a1 4301void ssl_set_masks(SSL_CONNECTION *s)
0f113f3e 4302{
6383d316 4303 CERT *c = s->cert;
555cbb32 4304 uint32_t *pvalid = s->s3.tmp.valid_flags;
bc71f910 4305 int rsa_enc, rsa_sign, dh_tmp, dsa_sign;
361a1191 4306 unsigned long mask_k, mask_a;
361a1191 4307 int have_ecc_cert, ecdsa_ok;
462f4f4b 4308
0f113f3e
MC
4309 if (c == NULL)
4310 return;
d02b48c6 4311
13c45372 4312 dh_tmp = (c->dh_tmp != NULL
13c45372 4313 || c->dh_tmp_cb != NULL
13c45372 4314 || c->dh_tmp_auto);
d02b48c6 4315
d0ff28f8 4316 rsa_enc = pvalid[SSL_PKEY_RSA] & CERT_PKEY_VALID;
38e8f3cd
DSH
4317 rsa_sign = pvalid[SSL_PKEY_RSA] & CERT_PKEY_VALID;
4318 dsa_sign = pvalid[SSL_PKEY_DSA_SIGN] & CERT_PKEY_VALID;
6383d316 4319 have_ecc_cert = pvalid[SSL_PKEY_ECC] & CERT_PKEY_VALID;
0f113f3e
MC
4320 mask_k = 0;
4321 mask_a = 0;
0e1dba93 4322
77359d22
RL
4323 OSSL_TRACE4(TLS_CIPHER, "dh_tmp=%d rsa_enc=%d rsa_sign=%d dsa_sign=%d\n",
4324 dh_tmp, rsa_enc, rsa_sign, dsa_sign);
0f113f3e 4325
2a9b9654 4326#ifndef OPENSSL_NO_GOST
4020c0b3 4327 if (ssl_has_cert(s, SSL_PKEY_GOST12_512)) {
5a5530a2 4328 mask_k |= SSL_kGOST | SSL_kGOST18;
e44380a9
DB
4329 mask_a |= SSL_aGOST12;
4330 }
4020c0b3 4331 if (ssl_has_cert(s, SSL_PKEY_GOST12_256)) {
5a5530a2 4332 mask_k |= SSL_kGOST | SSL_kGOST18;
e44380a9
DB
4333 mask_a |= SSL_aGOST12;
4334 }
4020c0b3 4335 if (ssl_has_cert(s, SSL_PKEY_GOST01)) {
0f113f3e
MC
4336 mask_k |= SSL_kGOST;
4337 mask_a |= SSL_aGOST01;
4338 }
2a9b9654 4339#endif
0f113f3e 4340
361a1191 4341 if (rsa_enc)
0f113f3e 4342 mask_k |= SSL_kRSA;
d02b48c6 4343
0f113f3e
MC
4344 if (dh_tmp)
4345 mask_k |= SSL_kDHE;
d02b48c6 4346
6aaa29fb
DSH
4347 /*
4348 * If we only have an RSA-PSS certificate allow RSA authentication
4349 * if TLS 1.2 and peer supports it.
4350 */
4351
4352 if (rsa_enc || rsa_sign || (ssl_has_cert(s, SSL_PKEY_RSA_PSS_SIGN)
4353 && pvalid[SSL_PKEY_RSA_PSS_SIGN] & CERT_PKEY_EXPLICIT_SIGN
38b051a1 4354 && TLS1_get_version(&s->ssl) == TLS1_2_VERSION))
0f113f3e 4355 mask_a |= SSL_aRSA;
d02b48c6 4356
0f113f3e
MC
4357 if (dsa_sign) {
4358 mask_a |= SSL_aDSS;
0f113f3e 4359 }
d02b48c6 4360
0f113f3e 4361 mask_a |= SSL_aNULL;
d02b48c6 4362
3c95ef22
TS
4363 /*
4364 * You can do anything with an RPK key, since there's no cert to restrict it
4365 * But we need to check for private keys
4366 */
4367 if (pvalid[SSL_PKEY_RSA] & CERT_PKEY_RPK) {
4368 mask_a |= SSL_aRSA;
4369 mask_k |= SSL_kRSA;
4370 }
4371 if (pvalid[SSL_PKEY_ECC] & CERT_PKEY_RPK)
4372 mask_a |= SSL_aECDSA;
4373 if (TLS1_get_version(&s->ssl) == TLS1_2_VERSION) {
4374 if (pvalid[SSL_PKEY_RSA_PSS_SIGN] & CERT_PKEY_RPK)
4375 mask_a |= SSL_aRSA;
4376 if (pvalid[SSL_PKEY_ED25519] & CERT_PKEY_RPK
4377 || pvalid[SSL_PKEY_ED448] & CERT_PKEY_RPK)
4378 mask_a |= SSL_aECDSA;
4379 }
4380
0f113f3e
MC
4381 /*
4382 * An ECC certificate may be usable for ECDH and/or ECDSA cipher suites
4383 * depending on the key usage extension.
4384 */
0f113f3e 4385 if (have_ecc_cert) {
a8d8e06b 4386 uint32_t ex_kusage;
4020c0b3 4387 ex_kusage = X509_get_key_usage(c->pkeys[SSL_PKEY_ECC].x509);
a8d8e06b 4388 ecdsa_ok = ex_kusage & X509v3_KU_DIGITAL_SIGNATURE;
6383d316 4389 if (!(pvalid[SSL_PKEY_ECC] & CERT_PKEY_SIGN))
0f113f3e 4390 ecdsa_ok = 0;
c7c46256 4391 if (ecdsa_ok)
0f113f3e 4392 mask_a |= SSL_aECDSA;
0f113f3e 4393 }
b2021556
DSH
4394 /* Allow Ed25519 for TLS 1.2 if peer supports it */
4395 if (!(mask_a & SSL_aECDSA) && ssl_has_cert(s, SSL_PKEY_ED25519)
4396 && pvalid[SSL_PKEY_ED25519] & CERT_PKEY_EXPLICIT_SIGN
38b051a1 4397 && TLS1_get_version(&s->ssl) == TLS1_2_VERSION)
b2021556 4398 mask_a |= SSL_aECDSA;
0e1d6ecf
MC
4399
4400 /* Allow Ed448 for TLS 1.2 if peer supports it */
4401 if (!(mask_a & SSL_aECDSA) && ssl_has_cert(s, SSL_PKEY_ED448)
4402 && pvalid[SSL_PKEY_ED448] & CERT_PKEY_EXPLICIT_SIGN
38b051a1 4403 && TLS1_get_version(&s->ssl) == TLS1_2_VERSION)
0e1d6ecf 4404 mask_a |= SSL_aECDSA;
ea262260 4405
fe6ef247 4406 mask_k |= SSL_kECDHE;
ddac1974
NL
4407
4408#ifndef OPENSSL_NO_PSK
0f113f3e
MC
4409 mask_k |= SSL_kPSK;
4410 mask_a |= SSL_aPSK;
526f94ad
DSH
4411 if (mask_k & SSL_kRSA)
4412 mask_k |= SSL_kRSAPSK;
4413 if (mask_k & SSL_kDHE)
4414 mask_k |= SSL_kDHEPSK;
4415 if (mask_k & SSL_kECDHE)
4416 mask_k |= SSL_kECDHEPSK;
ddac1974
NL
4417#endif
4418
555cbb32
TS
4419 s->s3.tmp.mask_k = mask_k;
4420 s->s3.tmp.mask_a = mask_a;
0f113f3e 4421}
d02b48c6 4422
38b051a1 4423int ssl_check_srvr_ecc_cert_and_alg(X509 *x, SSL_CONNECTION *s)
0f113f3e 4424{
555cbb32 4425 if (s->s3.tmp.new_cipher->algorithm_auth & SSL_aECDSA) {
0f113f3e 4426 /* key usage, if present, must allow signing */
ce0c1f2b 4427 if (!(X509_get_key_usage(x) & X509v3_KU_DIGITAL_SIGNATURE)) {
6849b73c 4428 ERR_raise(ERR_LIB_SSL, SSL_R_ECC_CERT_NOT_FOR_SIGNING);
0f113f3e
MC
4429 return 0;
4430 }
4431 }
0f113f3e
MC
4432 return 1; /* all checks are ok */
4433}
ea262260 4434
38b051a1
TM
4435int ssl_get_server_cert_serverinfo(SSL_CONNECTION *s,
4436 const unsigned char **serverinfo,
0f113f3e
MC
4437 size_t *serverinfo_length)
4438{
555cbb32 4439 CERT_PKEY *cpk = s->s3.tmp.cert;
0f113f3e
MC
4440 *serverinfo_length = 0;
4441
a497cf25 4442 if (cpk == NULL || cpk->serverinfo == NULL)
0f113f3e
MC
4443 return 0;
4444
a497cf25
DSH
4445 *serverinfo = cpk->serverinfo;
4446 *serverinfo_length = cpk->serverinfo_length;
0f113f3e
MC
4447 return 1;
4448}
0f113f3e 4449
38b051a1 4450void ssl_update_cache(SSL_CONNECTION *s, int mode)
0f113f3e
MC
4451{
4452 int i;
4453
4454 /*
4455 * If the session_id_length is 0, we are not supposed to cache it, and it
4456 * would be rather hard to do anyway :-)
4457 */
4458 if (s->session->session_id_length == 0)
4459 return;
4460
d316cdcf
BK
4461 /*
4462 * If sid_ctx_length is 0 there is no specific application context
4463 * associated with this session, so when we try to resume it and
c4fa1f7f
BK
4464 * SSL_VERIFY_PEER is requested to verify the client identity, we have no
4465 * indication that this is actually a session for the proper application
4466 * context, and the *handshake* will fail, not just the resumption attempt.
4467 * Do not cache (on the server) these sessions that are not resumable
4468 * (clients can set SSL_VERIFY_PEER without needing a sid_ctx set).
d316cdcf 4469 */
c4fa1f7f 4470 if (s->server && s->session->sid_ctx_length == 0
d316cdcf
BK
4471 && (s->verify_mode & SSL_VERIFY_PEER) != 0)
4472 return;
4473
0f113f3e 4474 i = s->session_ctx->session_cache_mode;
5d61491c 4475 if ((i & mode) != 0
38b051a1 4476 && (!s->hit || SSL_CONNECTION_IS_TLS13(s))) {
ee94ec2e
MC
4477 /*
4478 * Add the session to the internal cache. In server side TLSv1.3 we
6cc0b3c2
MC
4479 * normally don't do this because by default it's a full stateless ticket
4480 * with only a dummy session id so there is no reason to cache it,
4481 * unless:
ee94ec2e
MC
4482 * - we are doing early_data, in which case we cache so that we can
4483 * detect replays
4484 * - the application has set a remove_session_cb so needs to know about
4485 * session timeout events
6cc0b3c2 4486 * - SSL_OP_NO_TICKET is set in which case it is a stateful ticket
ee94ec2e
MC
4487 */
4488 if ((i & SSL_SESS_CACHE_NO_INTERNAL_STORE) == 0
38b051a1 4489 && (!SSL_CONNECTION_IS_TLS13(s)
ee94ec2e 4490 || !s->server
5d263fb7
MC
4491 || (s->max_early_data > 0
4492 && (s->options & SSL_OP_NO_ANTI_REPLAY) == 0)
6cc0b3c2
MC
4493 || s->session_ctx->remove_session_cb != NULL
4494 || (s->options & SSL_OP_NO_TICKET) != 0))
ee94ec2e
MC
4495 SSL_CTX_add_session(s->session_ctx, s->session);
4496
4497 /*
4498 * Add the session to the external cache. We do this even in server side
4499 * TLSv1.3 without early data because some applications just want to
4500 * know about the creation of a session and aren't doing a full cache.
4501 */
4502 if (s->session_ctx->new_session_cb != NULL) {
4503 SSL_SESSION_up_ref(s->session);
38b051a1
TM
4504 if (!s->session_ctx->new_session_cb(SSL_CONNECTION_GET_SSL(s),
4505 s->session))
ee94ec2e
MC
4506 SSL_SESSION_free(s->session);
4507 }
0f113f3e
MC
4508 }
4509
4510 /* auto flush every 255 connections */
4511 if ((!(i & SSL_SESS_CACHE_NO_AUTO_CLEAR)) && ((i & mode) == mode)) {
9ef9088c 4512 TSAN_QUALIFIER int *stat;
acce0557 4513
1fcb4e4d
BK
4514 if (mode & SSL_SESS_CACHE_CLIENT)
4515 stat = &s->session_ctx->stats.sess_connect_good;
4516 else
4517 stat = &s->session_ctx->stats.sess_accept_good;
acce0557 4518 if ((ssl_tsan_load(s->session_ctx, stat) & 0xff) == 0xff)
0f113f3e 4519 SSL_CTX_flush_sessions(s->session_ctx, (unsigned long)time(NULL));
0f113f3e
MC
4520 }
4521}
d02b48c6 4522
3499327b 4523const SSL_METHOD *SSL_CTX_get_ssl_method(const SSL_CTX *ctx)
0f113f3e
MC
4524{
4525 return ctx->method;
4526}
ba168244 4527
3499327b 4528const SSL_METHOD *SSL_get_ssl_method(const SSL *s)
0f113f3e 4529{
26a7d938 4530 return s->method;
0f113f3e 4531}
d02b48c6 4532
4ebb342f 4533int SSL_set_ssl_method(SSL *s, const SSL_METHOD *meth)
0f113f3e 4534{
0f113f3e 4535 int ret = 1;
38b051a1
TM
4536 SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
4537
3ea30e76 4538 /* Not allowed for QUIC */
38b051a1 4539 if (sc == NULL
3ea30e76
HL
4540 || (s->type != SSL_TYPE_SSL_CONNECTION && s->method != meth)
4541 || (s->type == SSL_TYPE_SSL_CONNECTION && IS_QUIC_METHOD(meth)))
38b051a1 4542 return 0;
0f113f3e
MC
4543
4544 if (s->method != meth) {
919ba009 4545 const SSL_METHOD *sm = s->method;
38b051a1 4546 int (*hf) (SSL *) = sc->handshake_func;
0f113f3e 4547
919ba009 4548 if (sm->version == meth->version)
0f113f3e
MC
4549 s->method = meth;
4550 else {
38b051a1 4551 sm->ssl_deinit(s);
0f113f3e 4552 s->method = meth;
38b051a1 4553 ret = s->method->ssl_init(s);
0f113f3e
MC
4554 }
4555
919ba009 4556 if (hf == sm->ssl_connect)
38b051a1 4557 sc->handshake_func = meth->ssl_connect;
919ba009 4558 else if (hf == sm->ssl_accept)
38b051a1 4559 sc->handshake_func = meth->ssl_accept;
0f113f3e 4560 }
26a7d938 4561 return ret;
0f113f3e
MC
4562}
4563
4564int SSL_get_error(const SSL *s, int i)
4565{
4566 int reason;
4567 unsigned long l;
4568 BIO *bio;
38b051a1 4569 const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(s);
0f113f3e
MC
4570
4571 if (i > 0)
26a7d938 4572 return SSL_ERROR_NONE;
0f113f3e 4573
e30c502a 4574#ifndef OPENSSL_NO_QUIC
6d495cc4
HL
4575 if (IS_QUIC(s)) {
4576 reason = ossl_quic_get_error(s, i);
e30c502a
HL
4577 if (reason != SSL_ERROR_NONE)
4578 return reason;
4579 }
4580#endif
4581
38b051a1
TM
4582 if (sc == NULL)
4583 return SSL_ERROR_SSL;
4584
0f113f3e
MC
4585 /*
4586 * Make things return SSL_ERROR_SYSCALL when doing SSL_do_handshake etc,
4587 * where we do encode the error
4588 */
4589 if ((l = ERR_peek_error()) != 0) {
4590 if (ERR_GET_LIB(l) == ERR_LIB_SYS)
26a7d938 4591 return SSL_ERROR_SYSCALL;
0f113f3e 4592 else
26a7d938 4593 return SSL_ERROR_SSL;
0f113f3e
MC
4594 }
4595
03bacce8 4596#ifndef OPENSSL_NO_QUIC
6d495cc4 4597 if (!IS_QUIC(s))
03bacce8
HL
4598#endif
4599 {
4600 if (SSL_want_read(s)) {
4601 bio = SSL_get_rbio(s);
4602 if (BIO_should_read(bio))
4603 return SSL_ERROR_WANT_READ;
4604 else if (BIO_should_write(bio))
4605 /*
4606 * This one doesn't make too much sense ... We never try to
4607 * write to the rbio, and an application program where rbio and
4608 * wbio are separate couldn't even know what it should wait for.
4609 * However if we ever set s->rwstate incorrectly (so that we
4610 * have SSL_want_read(s) instead of SSL_want_write(s)) and rbio
4611 * and wbio *are* the same, this test works around that bug; so
4612 * it might be safer to keep it.
4613 */
4614 return SSL_ERROR_WANT_WRITE;
4615 else if (BIO_should_io_special(bio)) {
4616 reason = BIO_get_retry_reason(bio);
4617 if (reason == BIO_RR_CONNECT)
4618 return SSL_ERROR_WANT_CONNECT;
4619 else if (reason == BIO_RR_ACCEPT)
4620 return SSL_ERROR_WANT_ACCEPT;
4621 else
4622 return SSL_ERROR_SYSCALL; /* unknown */
4623 }
4624 }
4625
4626 if (SSL_want_write(s)) {
2e7dc7cd 4627 /*
03bacce8
HL
4628 * Access wbio directly - in order to use the buffered bio if
4629 * present
2e7dc7cd 4630 */
03bacce8
HL
4631 bio = sc->wbio;
4632 if (BIO_should_write(bio))
4633 return SSL_ERROR_WANT_WRITE;
4634 else if (BIO_should_read(bio))
4635 /*
4636 * See above (SSL_want_read(s) with BIO_should_write(bio))
4637 */
4638 return SSL_ERROR_WANT_READ;
4639 else if (BIO_should_io_special(bio)) {
4640 reason = BIO_get_retry_reason(bio);
4641 if (reason == BIO_RR_CONNECT)
4642 return SSL_ERROR_WANT_CONNECT;
4643 else if (reason == BIO_RR_ACCEPT)
4644 return SSL_ERROR_WANT_ACCEPT;
4645 else
4646 return SSL_ERROR_SYSCALL;
4647 }
0f113f3e 4648 }
07bbc92c 4649 }
03bacce8 4650
6b1bb98f 4651 if (SSL_want_x509_lookup(s))
26a7d938 4652 return SSL_ERROR_WANT_X509_LOOKUP;
0c3eb279
DDO
4653 if (SSL_want_retry_verify(s))
4654 return SSL_ERROR_WANT_RETRY_VERIFY;
6b1bb98f 4655 if (SSL_want_async(s))
8051ab2b 4656 return SSL_ERROR_WANT_ASYNC;
6b1bb98f 4657 if (SSL_want_async_job(s))
8051ab2b 4658 return SSL_ERROR_WANT_ASYNC_JOB;
a9c0d8be
DB
4659 if (SSL_want_client_hello_cb(s))
4660 return SSL_ERROR_WANT_CLIENT_HELLO_CB;
8051ab2b 4661
38b051a1
TM
4662 if ((sc->shutdown & SSL_RECEIVED_SHUTDOWN) &&
4663 (sc->s3.warn_alert == SSL_AD_CLOSE_NOTIFY))
26a7d938 4664 return SSL_ERROR_ZERO_RETURN;
8051ab2b 4665
26a7d938 4666 return SSL_ERROR_SYSCALL;
0f113f3e 4667}
d02b48c6 4668
add2f5ca
MC
4669static int ssl_do_handshake_intern(void *vargs)
4670{
38b051a1
TM
4671 struct ssl_async_args *args = (struct ssl_async_args *)vargs;
4672 SSL *s = args->s;
4673 SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
add2f5ca 4674
38b051a1
TM
4675 if (sc == NULL)
4676 return -1;
add2f5ca 4677
38b051a1 4678 return sc->handshake_func(s);
add2f5ca
MC
4679}
4680
4f43d0e7 4681int SSL_do_handshake(SSL *s)
0f113f3e
MC
4682{
4683 int ret = 1;
38b051a1
TM
4684 SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
4685
6d495cc4
HL
4686#ifndef OPENSSL_NO_QUIC
4687 if (IS_QUIC(s))
4688 return ossl_quic_do_handshake(s);
03bacce8 4689#endif
0f113f3e 4690
38b051a1 4691 if (sc->handshake_func == NULL) {
6849b73c 4692 ERR_raise(ERR_LIB_SSL, SSL_R_CONNECTION_TYPE_NOT_SET);
add2f5ca 4693 return -1;
0f113f3e
MC
4694 }
4695
38b051a1 4696 ossl_statem_check_finish_init(sc, -1);
49e7fe12 4697
c7f47786 4698 s->method->ssl_renegotiate_check(s, 0);
0f113f3e
MC
4699
4700 if (SSL_in_init(s) || SSL_in_before(s)) {
38b051a1 4701 if ((sc->mode & SSL_MODE_ASYNC) && ASYNC_get_current_job() == NULL) {
add2f5ca
MC
4702 struct ssl_async_args args;
4703
09134f18 4704 memset(&args, 0, sizeof(args));
add2f5ca
MC
4705 args.s = s;
4706
7fecbf6f 4707 ret = ssl_start_async_job(s, &args, ssl_do_handshake_intern);
add2f5ca 4708 } else {
38b051a1 4709 ret = sc->handshake_func(s);
add2f5ca 4710 }
0f113f3e 4711 }
add2f5ca 4712 return ret;
0f113f3e
MC
4713}
4714
4f43d0e7 4715void SSL_set_accept_state(SSL *s)
0f113f3e 4716{
03bacce8 4717 SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL_ONLY(s);
38b051a1 4718
6d495cc4
HL
4719#ifndef OPENSSL_NO_QUIC
4720 if (IS_QUIC(s)) {
4721 ossl_quic_set_accept_state(s);
38b051a1 4722 return;
03bacce8
HL
4723 }
4724#endif
38b051a1
TM
4725
4726 sc->server = 1;
4727 sc->shutdown = 0;
4728 ossl_statem_clear(sc);
4729 sc->handshake_func = s->method->ssl_accept;
6d814fd6
MC
4730 /* Ignore return value. Its a void public API function */
4731 clear_record_layer(sc);
0f113f3e 4732}
d02b48c6 4733
4f43d0e7 4734void SSL_set_connect_state(SSL *s)
0f113f3e 4735{
03bacce8 4736 SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL_ONLY(s);
38b051a1 4737
6d495cc4
HL
4738#ifndef OPENSSL_NO_QUIC
4739 if (IS_QUIC(s)) {
4740 ossl_quic_set_connect_state(s);
38b051a1 4741 return;
03bacce8
HL
4742 }
4743#endif
38b051a1
TM
4744
4745 sc->server = 0;
4746 sc->shutdown = 0;
4747 ossl_statem_clear(sc);
4748 sc->handshake_func = s->method->ssl_connect;
6d814fd6
MC
4749 /* Ignore return value. Its a void public API function */
4750 clear_record_layer(sc);
0f113f3e 4751}
d02b48c6 4752
4f43d0e7 4753int ssl_undefined_function(SSL *s)
0f113f3e 4754{
6849b73c 4755 ERR_raise(ERR_LIB_SSL, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
26a7d938 4756 return 0;
0f113f3e 4757}
d02b48c6 4758
41a15c4f 4759int ssl_undefined_void_function(void)
0f113f3e 4760{
6849b73c 4761 ERR_raise(ERR_LIB_SSL, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
26a7d938 4762 return 0;
0f113f3e 4763}
41a15c4f 4764
0821bcd4 4765int ssl_undefined_const_function(const SSL *s)
0f113f3e 4766{
26a7d938 4767 return 0;
0f113f3e 4768}
0821bcd4 4769
2b8fa1d5 4770const SSL_METHOD *ssl_bad_method(int ver)
0f113f3e 4771{
6849b73c 4772 ERR_raise(ERR_LIB_SSL, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
26a7d938 4773 return NULL;
0f113f3e 4774}
d02b48c6 4775
3eb2aff4 4776const char *ssl_protocol_to_string(int version)
7d650072 4777{
1287dabd 4778 switch (version)
2abacef1
MC
4779 {
4780 case TLS1_3_VERSION:
582a17d6 4781 return "TLSv1.3";
2abacef1
MC
4782
4783 case TLS1_2_VERSION:
7d650072 4784 return "TLSv1.2";
2abacef1
MC
4785
4786 case TLS1_1_VERSION:
7d650072 4787 return "TLSv1.1";
2abacef1
MC
4788
4789 case TLS1_VERSION:
ee3a6c64 4790 return "TLSv1";
2abacef1
MC
4791
4792 case SSL3_VERSION:
7d650072 4793 return "SSLv3";
2abacef1
MC
4794
4795 case DTLS1_BAD_VER:
7d650072 4796 return "DTLSv0.9";
2abacef1
MC
4797
4798 case DTLS1_VERSION:
7d650072 4799 return "DTLSv1";
2abacef1
MC
4800
4801 case DTLS1_2_VERSION:
7d650072 4802 return "DTLSv1.2";
2abacef1
MC
4803
4804 default:
4805 return "unknown";
4806 }
0f113f3e 4807}
d02b48c6 4808
7d650072
KR
4809const char *SSL_get_version(const SSL *s)
4810{
38b051a1
TM
4811 const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(s);
4812
50769b15
MC
4813#ifndef OPENSSL_NO_QUIC
4814 /* We only support QUICv1 - so if its QUIC its QUICv1 */
f8636c7e 4815 if (s->type == SSL_TYPE_QUIC_CONNECTION || s->type == SSL_TYPE_QUIC_XSO)
50769b15
MC
4816 return "QUICv1";
4817#endif
4818
38b051a1
TM
4819 if (sc == NULL)
4820 return NULL;
4821
4822 return ssl_protocol_to_string(sc->version);
7d650072
KR
4823}
4824
cee0628e
JC
4825__owur int SSL_get_handshake_rtt(const SSL *s, uint64_t *rtt)
4826{
4827 const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(s);
4828
4829 if (sc == NULL)
4830 return -1;
4831 if (sc->ts_msg_write.t <= 0 || sc->ts_msg_read.t <= 0)
4832 return 0; /* data not (yet) available */
4833 if (sc->ts_msg_read.t < sc->ts_msg_write.t)
4834 return -1;
4835
4836 *rtt = ossl_time2us(ossl_time_subtract(sc->ts_msg_read, sc->ts_msg_write));
4837 return 1;
4838}
4839
98732979 4840static int dup_ca_names(STACK_OF(X509_NAME) **dst, STACK_OF(X509_NAME) *src)
0f113f3e
MC
4841{
4842 STACK_OF(X509_NAME) *sk;
4843 X509_NAME *xn;
98732979
MC
4844 int i;
4845
4846 if (src == NULL) {
4847 *dst = NULL;
4848 return 1;
4849 }
4850
4851 if ((sk = sk_X509_NAME_new_null()) == NULL)
4852 return 0;
4853 for (i = 0; i < sk_X509_NAME_num(src); i++) {
4854 xn = X509_NAME_dup(sk_X509_NAME_value(src, i));
4855 if (xn == NULL) {
4856 sk_X509_NAME_pop_free(sk, X509_NAME_free);
4857 return 0;
4858 }
4859 if (sk_X509_NAME_insert(sk, xn, i) == 0) {
4860 X509_NAME_free(xn);
4861 sk_X509_NAME_pop_free(sk, X509_NAME_free);
4862 return 0;
4863 }
4864 }
4865 *dst = sk;
4866
4867 return 1;
4868}
4869
4870SSL *SSL_dup(SSL *s)
4871{
0f113f3e
MC
4872 SSL *ret;
4873 int i;
38b051a1
TM
4874 /* TODO(QUIC): Add a SSL_METHOD function for duplication */
4875 SSL_CONNECTION *retsc;
4876 SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL_ONLY(s);
4877
4878 if (sc == NULL)
4879 return NULL;
0f113f3e 4880
919ba009
VD
4881 /* If we're not quiescent, just up_ref! */
4882 if (!SSL_in_init(s) || !SSL_in_before(s)) {
43a07d6d 4883 CRYPTO_UP_REF(&s->references, &i);
919ba009
VD
4884 return s;
4885 }
4886
4887 /*
4888 * Otherwise, copy configuration state, and session if set.
4889 */
0f113f3e 4890 if ((ret = SSL_new(SSL_get_SSL_CTX(s))) == NULL)
26a7d938 4891 return NULL;
38b051a1
TM
4892 if ((retsc = SSL_CONNECTION_FROM_SSL_ONLY(ret)) == NULL)
4893 goto err;
0f113f3e 4894
38b051a1 4895 if (sc->session != NULL) {
919ba009
VD
4896 /*
4897 * Arranges to share the same session via up_ref. This "copies"
4898 * session-id, SSL_METHOD, sid_ctx, and 'cert'
4899 */
61986d32 4900 if (!SSL_copy_session_id(ret, s))
17dd65e6 4901 goto err;
0f113f3e
MC
4902 } else {
4903 /*
4904 * No session has been established yet, so we have to expect that
4905 * s->cert or ret->cert will be changed later -- they should not both
4906 * point to the same object, and thus we can't use
4907 * SSL_copy_session_id.
4908 */
919ba009
VD
4909 if (!SSL_set_ssl_method(ret, s->method))
4910 goto err;
0f113f3e 4911
38b051a1
TM
4912 if (sc->cert != NULL) {
4913 ssl_cert_free(retsc->cert);
4914 retsc->cert = ssl_cert_dup(sc->cert);
4915 if (retsc->cert == NULL)
0f113f3e
MC
4916 goto err;
4917 }
4918
38b051a1
TM
4919 if (!SSL_set_session_id_context(ret, sc->sid_ctx,
4920 (int)sc->sid_ctx_length))
69f68237 4921 goto err;
0f113f3e
MC
4922 }
4923
38b051a1 4924 if (!ssl_dane_dup(retsc, sc))
9f6b22b8 4925 goto err;
38b051a1
TM
4926 retsc->version = sc->version;
4927 retsc->options = sc->options;
4928 retsc->min_proto_version = sc->min_proto_version;
4929 retsc->max_proto_version = sc->max_proto_version;
4930 retsc->mode = sc->mode;
0f113f3e
MC
4931 SSL_set_max_cert_list(ret, SSL_get_max_cert_list(s));
4932 SSL_set_read_ahead(ret, SSL_get_read_ahead(s));
38b051a1
TM
4933 retsc->msg_callback = sc->msg_callback;
4934 retsc->msg_callback_arg = sc->msg_callback_arg;
0f113f3e
MC
4935 SSL_set_verify(ret, SSL_get_verify_mode(s), SSL_get_verify_callback(s));
4936 SSL_set_verify_depth(ret, SSL_get_verify_depth(s));
38b051a1 4937 retsc->generate_session_id = sc->generate_session_id;
0f113f3e
MC
4938
4939 SSL_set_info_callback(ret, SSL_get_info_callback(s));
4940
0f113f3e
MC
4941 /* copy app data, a little dangerous perhaps */
4942 if (!CRYPTO_dup_ex_data(CRYPTO_EX_INDEX_SSL, &ret->ex_data, &s->ex_data))
4943 goto err;
4944
38b051a1
TM
4945 retsc->server = sc->server;
4946 if (sc->handshake_func) {
4947 if (sc->server)
919ba009
VD
4948 SSL_set_accept_state(ret);
4949 else
4950 SSL_set_connect_state(ret);
4951 }
38b051a1
TM
4952 retsc->shutdown = sc->shutdown;
4953 retsc->hit = sc->hit;
0f113f3e 4954
38b051a1
TM
4955 retsc->default_passwd_callback = sc->default_passwd_callback;
4956 retsc->default_passwd_callback_userdata = sc->default_passwd_callback_userdata;
a974e64a 4957
38b051a1 4958 X509_VERIFY_PARAM_inherit(retsc->param, sc->param);
0f113f3e
MC
4959
4960 /* dup the cipher_list and cipher_list_by_id stacks */
38b051a1
TM
4961 if (sc->cipher_list != NULL) {
4962 if ((retsc->cipher_list = sk_SSL_CIPHER_dup(sc->cipher_list)) == NULL)
0f113f3e
MC
4963 goto err;
4964 }
38b051a1
TM
4965 if (sc->cipher_list_by_id != NULL)
4966 if ((retsc->cipher_list_by_id = sk_SSL_CIPHER_dup(sc->cipher_list_by_id))
0f113f3e
MC
4967 == NULL)
4968 goto err;
4969
4970 /* Dup the client_CA list */
38b051a1
TM
4971 if (!dup_ca_names(&retsc->ca_names, sc->ca_names)
4972 || !dup_ca_names(&retsc->client_ca_names, sc->client_ca_names))
98732979
MC
4973 goto err;
4974
66696478 4975 return ret;
0f113f3e 4976
0f113f3e 4977 err:
66696478
RS
4978 SSL_free(ret);
4979 return NULL;
0f113f3e 4980}
d02b48c6 4981
0821bcd4 4982X509 *SSL_get_certificate(const SSL *s)
0f113f3e 4983{
38b051a1
TM
4984 SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
4985
4986 if (sc == NULL)
4987 return NULL;
4988
4989 if (sc->cert != NULL)
4990 return sc->cert->key->x509;
0f113f3e 4991 else
26a7d938 4992 return NULL;
0f113f3e 4993}
d02b48c6 4994
a25f9adc 4995EVP_PKEY *SSL_get_privatekey(const SSL *s)
0f113f3e 4996{
38b051a1
TM
4997 const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(s);
4998
4999 if (sc == NULL)
5000 return NULL;
5001
5002 if (sc->cert != NULL)
5003 return sc->cert->key->privatekey;
0f113f3e 5004 else
26a7d938 5005 return NULL;
0f113f3e 5006}
d02b48c6 5007
a25f9adc 5008X509 *SSL_CTX_get0_certificate(const SSL_CTX *ctx)
0f113f3e
MC
5009{
5010 if (ctx->cert != NULL)
5011 return ctx->cert->key->x509;
5012 else
5013 return NULL;
5014}
a25f9adc
DSH
5015
5016EVP_PKEY *SSL_CTX_get0_privatekey(const SSL_CTX *ctx)
0f113f3e
MC
5017{
5018 if (ctx->cert != NULL)
5019 return ctx->cert->key->privatekey;
5020 else
5021 return NULL;
5022}
a25f9adc 5023
babb3798 5024const SSL_CIPHER *SSL_get_current_cipher(const SSL *s)
0f113f3e 5025{
38b051a1
TM
5026 const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(s);
5027
5028 if (sc == NULL)
5029 return NULL;
5030
5031 if ((sc->session != NULL) && (sc->session->cipher != NULL))
5032 return sc->session->cipher;
26a7d938 5033 return NULL;
0f113f3e
MC
5034}
5035
0aed6e44
BK
5036const SSL_CIPHER *SSL_get_pending_cipher(const SSL *s)
5037{
38b051a1
TM
5038 const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(s);
5039
5040 if (sc == NULL)
5041 return NULL;
5042
5043 return sc->s3.tmp.new_cipher;
0aed6e44
BK
5044}
5045
3499327b 5046const COMP_METHOD *SSL_get_current_compression(const SSL *s)
0f113f3e 5047{
9a555706 5048#ifndef OPENSSL_NO_COMP
38b051a1
TM
5049 const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL_ONLY(s);
5050
5051 if (sc == NULL)
5052 return NULL;
5053
1e76110b 5054 return sc->rlayer.wrlmethod->get_compression(sc->rlayer.wrl);
9a555706
RS
5055#else
5056 return NULL;
5057#endif
0f113f3e 5058}
377dcdba 5059
3499327b 5060const COMP_METHOD *SSL_get_current_expansion(const SSL *s)
0f113f3e 5061{
9a555706 5062#ifndef OPENSSL_NO_COMP
38b051a1
TM
5063 const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL_ONLY(s);
5064
5065 if (sc == NULL)
5066 return NULL;
5067
1e76110b 5068 return sc->rlayer.rrlmethod->get_compression(sc->rlayer.rrl);
9a555706
RS
5069#else
5070 return NULL;
0f113f3e 5071#endif
9a555706 5072}
0f113f3e 5073
38b051a1 5074int ssl_init_wbio_buffer(SSL_CONNECTION *s)
0f113f3e
MC
5075{
5076 BIO *bbio;
5077
2e7dc7cd
MC
5078 if (s->bbio != NULL) {
5079 /* Already buffered. */
5080 return 1;
0f113f3e 5081 }
46417569 5082
2e7dc7cd 5083 bbio = BIO_new(BIO_f_buffer());
25d02f33 5084 if (bbio == NULL || BIO_set_read_buffer_size(bbio, 1) <= 0) {
2e7dc7cd 5085 BIO_free(bbio);
6849b73c 5086 ERR_raise(ERR_LIB_SSL, ERR_R_BUF_LIB);
46417569 5087 return 0;
0f113f3e 5088 }
2e7dc7cd
MC
5089 s->bbio = bbio;
5090 s->wbio = BIO_push(bbio, s->wbio);
46417569 5091
b5cf81f7
MC
5092 s->rlayer.wrlmethod->set1_bio(s->rlayer.wrl, s->wbio);
5093
46417569 5094 return 1;
0f113f3e 5095}
413c4f45 5096
38b051a1 5097int ssl_free_wbio_buffer(SSL_CONNECTION *s)
0f113f3e 5098{
62adbcee 5099 /* callers ensure s is never null */
0f113f3e 5100 if (s->bbio == NULL)
b77f3ed1 5101 return 1;
0f113f3e 5102
2e7dc7cd 5103 s->wbio = BIO_pop(s->wbio);
b5cf81f7
MC
5104 s->rlayer.wrlmethod->set1_bio(s->rlayer.wrl, s->wbio);
5105
0f113f3e
MC
5106 BIO_free(s->bbio);
5107 s->bbio = NULL;
b77f3ed1
MC
5108
5109 return 1;
0f113f3e
MC
5110}
5111
5112void SSL_CTX_set_quiet_shutdown(SSL_CTX *ctx, int mode)
5113{
5114 ctx->quiet_shutdown = mode;
5115}
58964a49 5116
0821bcd4 5117int SSL_CTX_get_quiet_shutdown(const SSL_CTX *ctx)
0f113f3e 5118{
26a7d938 5119 return ctx->quiet_shutdown;
0f113f3e 5120}
58964a49 5121
0f113f3e
MC
5122void SSL_set_quiet_shutdown(SSL *s, int mode)
5123{
38b051a1
TM
5124 SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL_ONLY(s);
5125
5126 /* TODO(QUIC): Do we want this for QUIC? */
5127 if (sc == NULL)
5128 return;
5129
5130 sc->quiet_shutdown = mode;
0f113f3e 5131}
58964a49 5132
0821bcd4 5133int SSL_get_quiet_shutdown(const SSL *s)
0f113f3e 5134{
38b051a1
TM
5135 const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL_ONLY(s);
5136
5137 /* TODO(QUIC): Do we want this for QUIC? */
5138 if (sc == NULL)
5139 return 0;
5140
5141 return sc->quiet_shutdown;
0f113f3e 5142}
58964a49 5143
0f113f3e
MC
5144void SSL_set_shutdown(SSL *s, int mode)
5145{
38b051a1
TM
5146 SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL_ONLY(s);
5147
5148 /* TODO(QUIC): Do we want this for QUIC? */
5149 if (sc == NULL)
5150 return;
5151
5152 sc->shutdown = mode;
0f113f3e 5153}
58964a49 5154
0821bcd4 5155int SSL_get_shutdown(const SSL *s)
0f113f3e 5156{
38b051a1
TM
5157 const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL_ONLY(s);
5158
5159 /* TODO(QUIC): Do we want this for QUIC? */
5160 if (sc == NULL)
5161 return 0;
5162
5163 return sc->shutdown;
0f113f3e 5164}
58964a49 5165
0821bcd4 5166int SSL_version(const SSL *s)
0f113f3e 5167{
38b051a1
TM
5168 const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(s);
5169
50769b15
MC
5170#ifndef OPENSSL_NO_QUIC
5171 /* We only support QUICv1 - so if its QUIC its QUICv1 */
f8636c7e 5172 if (s->type == SSL_TYPE_QUIC_CONNECTION || s->type == SSL_TYPE_QUIC_XSO)
50769b15
MC
5173 return OSSL_QUIC1_VERSION;
5174#endif
38b051a1
TM
5175 /* TODO(QUIC): Do we want to report QUIC version this way instead? */
5176 if (sc == NULL)
5177 return 0;
5178
5179 return sc->version;
6546e9b2
AG
5180}
5181
5182int SSL_client_version(const SSL *s)
5183{
38b051a1
TM
5184 const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(s);
5185
5186 /* TODO(QUIC): Do we want to report QUIC version this way instead? */
5187 if (sc == NULL)
5188 return 0;
5189
5190 return sc->client_version;
0f113f3e 5191}
58964a49 5192
0821bcd4 5193SSL_CTX *SSL_get_SSL_CTX(const SSL *ssl)
0f113f3e 5194{
6546e9b2 5195 return ssl->ctx;
0f113f3e
MC
5196}
5197
5198SSL_CTX *SSL_set_SSL_CTX(SSL *ssl, SSL_CTX *ctx)
5199{
24a0d393 5200 CERT *new_cert;
38b051a1
TM
5201 SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL_ONLY(ssl);
5202
5203 /* TODO(QUIC): Do we need this for QUIC support? */
5204 if (sc == NULL)
5205 return NULL;
5206
0f113f3e
MC
5207 if (ssl->ctx == ctx)
5208 return ssl->ctx;
0f113f3e 5209 if (ctx == NULL)
38b051a1 5210 ctx = sc->session_ctx;
24a0d393
KR
5211 new_cert = ssl_cert_dup(ctx->cert);
5212 if (new_cert == NULL) {
5213 return NULL;
0f113f3e 5214 }
21181889 5215
38b051a1 5216 if (!custom_exts_copy_flags(&new_cert->custext, &sc->cert->custext)) {
21181889
MC
5217 ssl_cert_free(new_cert);
5218 return NULL;
5219 }
5220
38b051a1
TM
5221 ssl_cert_free(sc->cert);
5222 sc->cert = new_cert;
0f113f3e
MC
5223
5224 /*
5225 * Program invariant: |sid_ctx| has fixed size (SSL_MAX_SID_CTX_LENGTH),
5226 * so setter APIs must prevent invalid lengths from entering the system.
5227 */
38b051a1 5228 if (!ossl_assert(sc->sid_ctx_length <= sizeof(sc->sid_ctx)))
380a522f 5229 return NULL;
0f113f3e
MC
5230
5231 /*
5232 * If the session ID context matches that of the parent SSL_CTX,
5233 * inherit it from the new SSL_CTX as well. If however the context does
5234 * not match (i.e., it was set per-ssl with SSL_set_session_id_context),
5235 * leave it unchanged.
5236 */
5237 if ((ssl->ctx != NULL) &&
38b051a1
TM
5238 (sc->sid_ctx_length == ssl->ctx->sid_ctx_length) &&
5239 (memcmp(sc->sid_ctx, ssl->ctx->sid_ctx, sc->sid_ctx_length) == 0)) {
5240 sc->sid_ctx_length = ctx->sid_ctx_length;
5241 memcpy(&sc->sid_ctx, &ctx->sid_ctx, sizeof(sc->sid_ctx));
0f113f3e
MC
5242 }
5243
16203f7b 5244 SSL_CTX_up_ref(ctx);
a230b26e 5245 SSL_CTX_free(ssl->ctx); /* decrement reference count */
0f113f3e
MC
5246 ssl->ctx = ctx;
5247
16203f7b 5248 return ssl->ctx;
0f113f3e 5249}
ed3883d2 5250
4f43d0e7 5251int SSL_CTX_set_default_verify_paths(SSL_CTX *ctx)
0f113f3e 5252{
d8652be0
MC
5253 return X509_STORE_set_default_paths_ex(ctx->cert_store, ctx->libctx,
5254 ctx->propq);
0f113f3e 5255}
58964a49 5256
d84a7b20
MC
5257int SSL_CTX_set_default_verify_dir(SSL_CTX *ctx)
5258{
5259 X509_LOOKUP *lookup;
5260
5261 lookup = X509_STORE_add_lookup(ctx->cert_store, X509_LOOKUP_hash_dir());
5262 if (lookup == NULL)
5263 return 0;
6dcb100f
RL
5264
5265 /* We ignore errors, in case the directory doesn't exist */
5266 ERR_set_mark();
5267
d84a7b20
MC
5268 X509_LOOKUP_add_dir(lookup, NULL, X509_FILETYPE_DEFAULT);
5269
6dcb100f 5270 ERR_pop_to_mark();
d84a7b20
MC
5271
5272 return 1;
5273}
5274
5275int SSL_CTX_set_default_verify_file(SSL_CTX *ctx)
5276{
5277 X509_LOOKUP *lookup;
5278
5279 lookup = X509_STORE_add_lookup(ctx->cert_store, X509_LOOKUP_file());
5280 if (lookup == NULL)
5281 return 0;
5282
492bc359 5283 /* We ignore errors, in case the file doesn't exist */
6dcb100f
RL
5284 ERR_set_mark();
5285
d8652be0
MC
5286 X509_LOOKUP_load_file_ex(lookup, NULL, X509_FILETYPE_DEFAULT, ctx->libctx,
5287 ctx->propq);
d84a7b20 5288
6dcb100f
RL
5289 ERR_pop_to_mark();
5290
5291 return 1;
5292}
5293
5294int SSL_CTX_set_default_verify_store(SSL_CTX *ctx)
5295{
5296 X509_LOOKUP *lookup;
5297
5298 lookup = X509_STORE_add_lookup(ctx->cert_store, X509_LOOKUP_store());
5299 if (lookup == NULL)
5300 return 0;
5301
5302 /* We ignore errors, in case the directory doesn't exist */
5303 ERR_set_mark();
5304
d8652be0 5305 X509_LOOKUP_add_store_ex(lookup, NULL, ctx->libctx, ctx->propq);
6dcb100f
RL
5306
5307 ERR_pop_to_mark();
d84a7b20
MC
5308
5309 return 1;
5310}
5311
6dcb100f
RL
5312int SSL_CTX_load_verify_file(SSL_CTX *ctx, const char *CAfile)
5313{
d8652be0
MC
5314 return X509_STORE_load_file_ex(ctx->cert_store, CAfile, ctx->libctx,
5315 ctx->propq);
6dcb100f
RL
5316}
5317
5318int SSL_CTX_load_verify_dir(SSL_CTX *ctx, const char *CApath)
5319{
5320 return X509_STORE_load_path(ctx->cert_store, CApath);
5321}
5322
5323int SSL_CTX_load_verify_store(SSL_CTX *ctx, const char *CAstore)
5324{
d8652be0
MC
5325 return X509_STORE_load_store_ex(ctx->cert_store, CAstore, ctx->libctx,
5326 ctx->propq);
6dcb100f
RL
5327}
5328
303c0028 5329int SSL_CTX_load_verify_locations(SSL_CTX *ctx, const char *CAfile,
0f113f3e
MC
5330 const char *CApath)
5331{
6dcb100f
RL
5332 if (CAfile == NULL && CApath == NULL)
5333 return 0;
5334 if (CAfile != NULL && !SSL_CTX_load_verify_file(ctx, CAfile))
5335 return 0;
5336 if (CApath != NULL && !SSL_CTX_load_verify_dir(ctx, CApath))
5337 return 0;
5338 return 1;
0f113f3e 5339}
58964a49 5340
45d87a1f 5341void SSL_set_info_callback(SSL *ssl,
0f113f3e
MC
5342 void (*cb) (const SSL *ssl, int type, int val))
5343{
38b051a1
TM
5344 SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(ssl);
5345
5346 if (sc == NULL)
5347 return;
5348
5349 sc->info_callback = cb;
0f113f3e
MC
5350}
5351
5352/*
5353 * One compiler (Diab DCC) doesn't like argument names in returned function
5354 * pointer.
5355 */
5356void (*SSL_get_info_callback(const SSL *ssl)) (const SSL * /* ssl */ ,
5357 int /* type */ ,
5358 int /* val */ ) {
38b051a1
TM
5359 const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(ssl);
5360
5361 if (sc == NULL)
5362 return NULL;
5363
5364 return sc->info_callback;
0f113f3e 5365}
58964a49 5366
0f113f3e
MC
5367void SSL_set_verify_result(SSL *ssl, long arg)
5368{
38b051a1
TM
5369 SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(ssl);
5370
5371 if (sc == NULL)
5372 return;
5373
5374 sc->verify_result = arg;
0f113f3e 5375}
58964a49 5376
0821bcd4 5377long SSL_get_verify_result(const SSL *ssl)
0f113f3e 5378{
38b051a1
TM
5379 const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(ssl);
5380
5381 if (sc == NULL)
5382 return 0;
5383
5384 return sc->verify_result;
0f113f3e
MC
5385}
5386
d9f1c639 5387size_t SSL_get_client_random(const SSL *ssl, unsigned char *out, size_t outlen)
858618e7 5388{
38b051a1
TM
5389 const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(ssl);
5390
5391 if (sc == NULL)
5392 return 0;
5393
6b8f5d0d 5394 if (outlen == 0)
38b051a1
TM
5395 return sizeof(sc->s3.client_random);
5396 if (outlen > sizeof(sc->s3.client_random))
5397 outlen = sizeof(sc->s3.client_random);
5398 memcpy(out, sc->s3.client_random, outlen);
d9f1c639 5399 return outlen;
858618e7
NM
5400}
5401
d9f1c639 5402size_t SSL_get_server_random(const SSL *ssl, unsigned char *out, size_t outlen)
858618e7 5403{
38b051a1
TM
5404 const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(ssl);
5405
5406 if (sc == NULL)
5407 return 0;
5408
6b8f5d0d 5409 if (outlen == 0)
38b051a1
TM
5410 return sizeof(sc->s3.server_random);
5411 if (outlen > sizeof(sc->s3.server_random))
5412 outlen = sizeof(sc->s3.server_random);
5413 memcpy(out, sc->s3.server_random, outlen);
d9f1c639 5414 return outlen;
858618e7
NM
5415}
5416
d9f1c639 5417size_t SSL_SESSION_get_master_key(const SSL_SESSION *session,
a230b26e 5418 unsigned char *out, size_t outlen)
858618e7 5419{
d9f1c639
MC
5420 if (outlen == 0)
5421 return session->master_key_length;
8c1a5343 5422 if (outlen > session->master_key_length)
858618e7
NM
5423 outlen = session->master_key_length;
5424 memcpy(out, session->master_key, outlen);
d9f1c639 5425 return outlen;
858618e7
NM
5426}
5427
725b0f1e 5428int SSL_SESSION_set1_master_key(SSL_SESSION *sess, const unsigned char *in,
911d63f2
MC
5429 size_t len)
5430{
5431 if (len > sizeof(sess->master_key))
5432 return 0;
5433
5434 memcpy(sess->master_key, in, len);
5435 sess->master_key_length = len;
911d63f2
MC
5436 return 1;
5437}
5438
5439
0f113f3e
MC
5440int SSL_set_ex_data(SSL *s, int idx, void *arg)
5441{
26a7d938 5442 return CRYPTO_set_ex_data(&s->ex_data, idx, arg);
0f113f3e
MC
5443}
5444
5445void *SSL_get_ex_data(const SSL *s, int idx)
5446{
26a7d938 5447 return CRYPTO_get_ex_data(&s->ex_data, idx);
0f113f3e
MC
5448}
5449
0f113f3e
MC
5450int SSL_CTX_set_ex_data(SSL_CTX *s, int idx, void *arg)
5451{
26a7d938 5452 return CRYPTO_set_ex_data(&s->ex_data, idx, arg);
0f113f3e
MC
5453}
5454
5455void *SSL_CTX_get_ex_data(const SSL_CTX *s, int idx)
5456{
26a7d938 5457 return CRYPTO_get_ex_data(&s->ex_data, idx);
0f113f3e 5458}
58964a49 5459
0821bcd4 5460X509_STORE *SSL_CTX_get_cert_store(const SSL_CTX *ctx)
0f113f3e 5461{
26a7d938 5462 return ctx->cert_store;
0f113f3e 5463}
413c4f45 5464
0f113f3e
MC
5465void SSL_CTX_set_cert_store(SSL_CTX *ctx, X509_STORE *store)
5466{
222561fe 5467 X509_STORE_free(ctx->cert_store);
0f113f3e
MC
5468 ctx->cert_store = store;
5469}
413c4f45 5470
b50052db
TS
5471void SSL_CTX_set1_cert_store(SSL_CTX *ctx, X509_STORE *store)
5472{
5473 if (store != NULL)
5474 X509_STORE_up_ref(store);
5475 SSL_CTX_set_cert_store(ctx, store);
5476}
5477
0821bcd4 5478int SSL_want(const SSL *s)
0f113f3e 5479{
38b051a1
TM
5480 const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(s);
5481
5482 if (sc == NULL)
5483 return SSL_NOTHING;
5484
5485 return sc->rwstate;
0f113f3e 5486}
413c4f45 5487
ddac1974
NL
5488#ifndef OPENSSL_NO_PSK
5489int SSL_CTX_use_psk_identity_hint(SSL_CTX *ctx, const char *identity_hint)
0f113f3e
MC
5490{
5491 if (identity_hint != NULL && strlen(identity_hint) > PSK_MAX_IDENTITY_LEN) {
6849b73c 5492 ERR_raise(ERR_LIB_SSL, SSL_R_DATA_LENGTH_TOO_LONG);
0f113f3e
MC
5493 return 0;
5494 }
df6da24b 5495 OPENSSL_free(ctx->cert->psk_identity_hint);
0f113f3e 5496 if (identity_hint != NULL) {
7644a9ae 5497 ctx->cert->psk_identity_hint = OPENSSL_strdup(identity_hint);
df6da24b 5498 if (ctx->cert->psk_identity_hint == NULL)
0f113f3e
MC
5499 return 0;
5500 } else
df6da24b 5501 ctx->cert->psk_identity_hint = NULL;
0f113f3e
MC
5502 return 1;
5503}
ddac1974
NL
5504
5505int SSL_use_psk_identity_hint(SSL *s, const char *identity_hint)
0f113f3e 5506{
38b051a1
TM
5507 SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
5508
5509 if (sc == NULL)
0f113f3e
MC
5510 return 0;
5511
0f113f3e 5512 if (identity_hint != NULL && strlen(identity_hint) > PSK_MAX_IDENTITY_LEN) {
6849b73c 5513 ERR_raise(ERR_LIB_SSL, SSL_R_DATA_LENGTH_TOO_LONG);
0f113f3e
MC
5514 return 0;
5515 }
38b051a1 5516 OPENSSL_free(sc->cert->psk_identity_hint);
0f113f3e 5517 if (identity_hint != NULL) {
38b051a1
TM
5518 sc->cert->psk_identity_hint = OPENSSL_strdup(identity_hint);
5519 if (sc->cert->psk_identity_hint == NULL)
0f113f3e
MC
5520 return 0;
5521 } else
38b051a1 5522 sc->cert->psk_identity_hint = NULL;
0f113f3e
MC
5523 return 1;
5524}
ddac1974
NL
5525
5526const char *SSL_get_psk_identity_hint(const SSL *s)
0f113f3e 5527{
38b051a1
TM
5528 const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(s);
5529
5530 if (sc == NULL || sc->session == NULL)
0f113f3e 5531 return NULL;
38b051a1
TM
5532
5533 return sc->session->psk_identity_hint;
0f113f3e 5534}
ddac1974
NL
5535
5536const char *SSL_get_psk_identity(const SSL *s)
0f113f3e 5537{
38b051a1
TM
5538 const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(s);
5539
5540 if (sc == NULL || sc->session == NULL)
0f113f3e 5541 return NULL;
38b051a1
TM
5542
5543 return sc->session->psk_identity;
0f113f3e 5544}
7806f3dd 5545
8cbfcc70 5546void SSL_set_psk_client_callback(SSL *s, SSL_psk_client_cb_func cb)
0f113f3e 5547{
38b051a1
TM
5548 SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
5549
5550 if (sc == NULL)
5551 return;
5552
5553 sc->psk_client_callback = cb;
0f113f3e 5554}
7806f3dd 5555
8cbfcc70 5556void SSL_CTX_set_psk_client_callback(SSL_CTX *ctx, SSL_psk_client_cb_func cb)
0f113f3e
MC
5557{
5558 ctx->psk_client_callback = cb;
5559}
7806f3dd 5560
8cbfcc70 5561void SSL_set_psk_server_callback(SSL *s, SSL_psk_server_cb_func cb)
0f113f3e 5562{
38b051a1
TM
5563 SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
5564
5565 if (sc == NULL)
5566 return;
5567
5568 sc->psk_server_callback = cb;
0f113f3e 5569}
7806f3dd 5570
8cbfcc70 5571void SSL_CTX_set_psk_server_callback(SSL_CTX *ctx, SSL_psk_server_cb_func cb)
0f113f3e
MC
5572{
5573 ctx->psk_server_callback = cb;
5574}
5575#endif
5576
f46184bd
MC
5577void SSL_set_psk_find_session_callback(SSL *s, SSL_psk_find_session_cb_func cb)
5578{
38b051a1
TM
5579 SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
5580
5581 if (sc == NULL)
5582 return;
5583
5584 sc->psk_find_session_cb = cb;
f46184bd
MC
5585}
5586
5587void SSL_CTX_set_psk_find_session_callback(SSL_CTX *ctx,
5588 SSL_psk_find_session_cb_func cb)
5589{
5590 ctx->psk_find_session_cb = cb;
5591}
5592
5593void SSL_set_psk_use_session_callback(SSL *s, SSL_psk_use_session_cb_func cb)
5594{
38b051a1
TM
5595 SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
5596
5597 if (sc == NULL)
5598 return;
5599
5600 sc->psk_use_session_cb = cb;
f46184bd
MC
5601}
5602
5603void SSL_CTX_set_psk_use_session_callback(SSL_CTX *ctx,
5604 SSL_psk_use_session_cb_func cb)
5605{
5606 ctx->psk_use_session_cb = cb;
5607}
5608
0f113f3e
MC
5609void SSL_CTX_set_msg_callback(SSL_CTX *ctx,
5610 void (*cb) (int write_p, int version,
5611 int content_type, const void *buf,
5612 size_t len, SSL *ssl, void *arg))
5613{
5614 SSL_CTX_callback_ctrl(ctx, SSL_CTRL_SET_MSG_CALLBACK, (void (*)(void))cb);
5615}
5616
5617void SSL_set_msg_callback(SSL *ssl,
5618 void (*cb) (int write_p, int version,
5619 int content_type, const void *buf,
5620 size_t len, SSL *ssl, void *arg))
5621{
5622 SSL_callback_ctrl(ssl, SSL_CTRL_SET_MSG_CALLBACK, (void (*)(void))cb);
5623}
a661b653 5624
7c2d4fee 5625void SSL_CTX_set_not_resumable_session_callback(SSL_CTX *ctx,
0f113f3e
MC
5626 int (*cb) (SSL *ssl,
5627 int
5628 is_forward_secure))
5629{
5630 SSL_CTX_callback_ctrl(ctx, SSL_CTRL_SET_NOT_RESUMABLE_SESS_CB,
5631 (void (*)(void))cb);
5632}
5633
7c2d4fee 5634void SSL_set_not_resumable_session_callback(SSL *ssl,
0f113f3e
MC
5635 int (*cb) (SSL *ssl,
5636 int is_forward_secure))
5637{
5638 SSL_callback_ctrl(ssl, SSL_CTRL_SET_NOT_RESUMABLE_SESS_CB,
5639 (void (*)(void))cb);
5640}
5641
c649d10d
TS
5642void SSL_CTX_set_record_padding_callback(SSL_CTX *ctx,
5643 size_t (*cb) (SSL *ssl, int type,
5644 size_t len, void *arg))
5645{
5646 ctx->record_padding_cb = cb;
5647}
5648
5649void SSL_CTX_set_record_padding_callback_arg(SSL_CTX *ctx, void *arg)
5650{
5651 ctx->record_padding_arg = arg;
5652}
5653
3499327b 5654void *SSL_CTX_get_record_padding_callback_arg(const SSL_CTX *ctx)
c649d10d
TS
5655{
5656 return ctx->record_padding_arg;
5657}
5658
5659int SSL_CTX_set_block_padding(SSL_CTX *ctx, size_t block_size)
5660{
5661 /* block size of 0 or 1 is basically no padding */
5662 if (block_size == 1)
5663 ctx->block_padding = 0;
5664 else if (block_size <= SSL3_RT_MAX_PLAIN_LENGTH)
5665 ctx->block_padding = block_size;
5666 else
5667 return 0;
5668 return 1;
5669}
5670
a6d36303 5671int SSL_set_record_padding_callback(SSL *ssl,
c649d10d
TS
5672 size_t (*cb) (SSL *ssl, int type,
5673 size_t len, void *arg))
5674{
a6d36303 5675 BIO *b;
38b051a1
TM
5676 SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(ssl);
5677
d0638fd5 5678 if (sc == NULL || IS_QUIC_SSL(ssl))
38b051a1 5679 return 0;
a6d36303
VF
5680
5681 b = SSL_get_wbio(ssl);
5682 if (b == NULL || !BIO_get_ktls_send(b)) {
eb7d6c2a 5683 sc->rlayer.record_padding_cb = cb;
a6d36303
VF
5684 return 1;
5685 }
5686 return 0;
c649d10d
TS
5687}
5688
5689void SSL_set_record_padding_callback_arg(SSL *ssl, void *arg)
5690{
38b051a1
TM
5691 SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(ssl);
5692
5693 if (sc == NULL)
5694 return;
5695
eb7d6c2a 5696 sc->rlayer.record_padding_arg = arg;
c649d10d
TS
5697}
5698
3499327b 5699void *SSL_get_record_padding_callback_arg(const SSL *ssl)
c649d10d 5700{
38b051a1
TM
5701 const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(ssl);
5702
5703 if (sc == NULL)
5704 return NULL;
5705
eb7d6c2a 5706 return sc->rlayer.record_padding_arg;
c649d10d
TS
5707}
5708
5709int SSL_set_block_padding(SSL *ssl, size_t block_size)
5710{
38b051a1
TM
5711 SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(ssl);
5712
d0638fd5 5713 if (sc == NULL || (IS_QUIC_SSL(ssl) && block_size > 1))
38b051a1
TM
5714 return 0;
5715
c649d10d
TS
5716 /* block size of 0 or 1 is basically no padding */
5717 if (block_size == 1)
eb7d6c2a 5718 sc->rlayer.block_padding = 0;
c649d10d 5719 else if (block_size <= SSL3_RT_MAX_PLAIN_LENGTH)
eb7d6c2a 5720 sc->rlayer.block_padding = block_size;
c649d10d
TS
5721 else
5722 return 0;
5723 return 1;
5724}
5725
9d0a8bb7
MC
5726int SSL_set_num_tickets(SSL *s, size_t num_tickets)
5727{
38b051a1
TM
5728 SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
5729
5730 if (sc == NULL)
5731 return 0;
5732
5733 sc->num_tickets = num_tickets;
9d0a8bb7
MC
5734
5735 return 1;
5736}
5737
3499327b 5738size_t SSL_get_num_tickets(const SSL *s)
9d0a8bb7 5739{
38b051a1
TM
5740 const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(s);
5741
5742 if (sc == NULL)
5743 return 0;
5744
5745 return sc->num_tickets;
9d0a8bb7
MC
5746}
5747
5748int SSL_CTX_set_num_tickets(SSL_CTX *ctx, size_t num_tickets)
5749{
5750 ctx->num_tickets = num_tickets;
5751
5752 return 1;
5753}
5754
3499327b 5755size_t SSL_CTX_get_num_tickets(const SSL_CTX *ctx)
9d0a8bb7
MC
5756{
5757 return ctx->num_tickets;
5758}
5759
48fbcbac 5760/* Retrieve handshake hashes */
38b051a1
TM
5761int ssl_handshake_hash(SSL_CONNECTION *s,
5762 unsigned char *out, size_t outlen,
8c1a5343 5763 size_t *hashlen)
48fbcbac 5764{
6e59a892 5765 EVP_MD_CTX *ctx = NULL;
555cbb32 5766 EVP_MD_CTX *hdgst = s->s3.handshake_dgst;
ed576acd 5767 int hashleni = EVP_MD_CTX_get_size(hdgst);
8c1a5343
MC
5768 int ret = 0;
5769
f63a17d6 5770 if (hashleni < 0 || (size_t)hashleni > outlen) {
c48ffbcc 5771 SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
28ba2541 5772 goto err;
f63a17d6 5773 }
8c1a5343 5774
bfb0641f 5775 ctx = EVP_MD_CTX_new();
147ed5f9
TL
5776 if (ctx == NULL) {
5777 SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
6e59a892 5778 goto err;
147ed5f9 5779 }
8c1a5343 5780
6e59a892 5781 if (!EVP_MD_CTX_copy_ex(ctx, hdgst)
f63a17d6 5782 || EVP_DigestFinal_ex(ctx, out, NULL) <= 0) {
c48ffbcc 5783 SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
8c1a5343 5784 goto err;
f63a17d6 5785 }
8c1a5343
MC
5786
5787 *hashlen = hashleni;
5788
5789 ret = 1;
48fbcbac 5790 err:
bfb0641f 5791 EVP_MD_CTX_free(ctx);
48fbcbac
DSH
5792 return ret;
5793}
5794
c04b66b1 5795int SSL_session_reused(const SSL *s)
0f113f3e 5796{
38b051a1
TM
5797 const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(s);
5798
5799 if (sc == NULL)
5800 return 0;
5801
5802 return sc->hit;
0f113f3e 5803}
08557cf2 5804
69443116 5805int SSL_is_server(const SSL *s)
0f113f3e 5806{
38b051a1
TM
5807 const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(s);
5808
5809 if (sc == NULL)
5810 return 0;
5811
5812 return sc->server;
0f113f3e 5813}
87adf1fa 5814
00db8c60 5815#ifndef OPENSSL_NO_DEPRECATED_1_1_0
47153c72
RS
5816void SSL_set_debug(SSL *s, int debug)
5817{
5818 /* Old function was do-nothing anyway... */
5819 (void)s;
5820 (void)debug;
5821}
5822#endif
5823
b362ccab 5824void SSL_set_security_level(SSL *s, int level)
0f113f3e 5825{
38b051a1
TM
5826 SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
5827
5828 if (sc == NULL)
5829 return;
5830
5831 sc->cert->sec_level = level;
0f113f3e 5832}
b362ccab
DSH
5833
5834int SSL_get_security_level(const SSL *s)
0f113f3e 5835{
38b051a1
TM
5836 const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(s);
5837
5838 if (sc == NULL)
5839 return 0;
5840
5841 return sc->cert->sec_level;
0f113f3e 5842}
b362ccab 5843
0f113f3e 5844void SSL_set_security_callback(SSL *s,
a230b26e
EK
5845 int (*cb) (const SSL *s, const SSL_CTX *ctx,
5846 int op, int bits, int nid,
5847 void *other, void *ex))
0f113f3e 5848{
38b051a1
TM
5849 SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
5850
5851 if (sc == NULL)
5852 return;
5853
5854 sc->cert->sec_cb = cb;
0f113f3e 5855}
b362ccab 5856
a230b26e
EK
5857int (*SSL_get_security_callback(const SSL *s)) (const SSL *s,
5858 const SSL_CTX *ctx, int op,
5859 int bits, int nid, void *other,
5860 void *ex) {
38b051a1
TM
5861 const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(s);
5862
5863 if (sc == NULL)
5864 return NULL;
5865
5866 return sc->cert->sec_cb;
0f113f3e 5867}
b362ccab
DSH
5868
5869void SSL_set0_security_ex_data(SSL *s, void *ex)
0f113f3e 5870{
38b051a1
TM
5871 SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
5872
5873 if (sc == NULL)
5874 return;
5875
5876 sc->cert->sec_ex = ex;
0f113f3e 5877}
b362ccab
DSH
5878
5879void *SSL_get0_security_ex_data(const SSL *s)
0f113f3e 5880{
38b051a1
TM
5881 const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(s);
5882
5883 if (sc == NULL)
5884 return NULL;
5885
5886 return sc->cert->sec_ex;
0f113f3e 5887}
b362ccab
DSH
5888
5889void SSL_CTX_set_security_level(SSL_CTX *ctx, int level)
0f113f3e
MC
5890{
5891 ctx->cert->sec_level = level;
5892}
b362ccab
DSH
5893
5894int SSL_CTX_get_security_level(const SSL_CTX *ctx)
0f113f3e
MC
5895{
5896 return ctx->cert->sec_level;
5897}
b362ccab 5898
0f113f3e 5899void SSL_CTX_set_security_callback(SSL_CTX *ctx,
a230b26e
EK
5900 int (*cb) (const SSL *s, const SSL_CTX *ctx,
5901 int op, int bits, int nid,
5902 void *other, void *ex))
0f113f3e
MC
5903{
5904 ctx->cert->sec_cb = cb;
5905}
b362ccab 5906
e4646a89
KR
5907int (*SSL_CTX_get_security_callback(const SSL_CTX *ctx)) (const SSL *s,
5908 const SSL_CTX *ctx,
0f113f3e
MC
5909 int op, int bits,
5910 int nid,
5911 void *other,
5912 void *ex) {
5913 return ctx->cert->sec_cb;
5914}
b362ccab
DSH
5915
5916void SSL_CTX_set0_security_ex_data(SSL_CTX *ctx, void *ex)
0f113f3e
MC
5917{
5918 ctx->cert->sec_ex = ex;
5919}
b362ccab
DSH
5920
5921void *SSL_CTX_get0_security_ex_data(const SSL_CTX *ctx)
0f113f3e
MC
5922{
5923 return ctx->cert->sec_ex;
5924}
b362ccab 5925
56bd1783 5926uint64_t SSL_CTX_get_options(const SSL_CTX *ctx)
8106cb8b
VD
5927{
5928 return ctx->options;
5929}
a230b26e 5930
56bd1783 5931uint64_t SSL_get_options(const SSL *s)
8106cb8b 5932{
38b051a1
TM
5933 const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(s);
5934
f0d9757c
HL
5935#ifndef OPENSSL_NO_QUIC
5936 if (IS_QUIC(s))
5937 return ossl_quic_get_options(s);
5938#endif
5939
38b051a1
TM
5940 if (sc == NULL)
5941 return 0;
5942
5943 return sc->options;
8106cb8b 5944}
a230b26e 5945
56bd1783 5946uint64_t SSL_CTX_set_options(SSL_CTX *ctx, uint64_t op)
8106cb8b
VD
5947{
5948 return ctx->options |= op;
5949}
a230b26e 5950
56bd1783 5951uint64_t SSL_set_options(SSL *s, uint64_t op)
8106cb8b 5952{
a02571a0 5953 SSL_CONNECTION *sc;
4566dae7 5954 OSSL_PARAM options[2], *opts = options;
38b051a1 5955
a02571a0 5956#ifndef OPENSSL_NO_QUIC
f0d9757c
HL
5957 if (IS_QUIC(s))
5958 return ossl_quic_set_options(s, op);
a02571a0
TM
5959#endif
5960
f0d9757c
HL
5961 sc = SSL_CONNECTION_FROM_SSL(s);
5962 if (sc == NULL)
38b051a1
TM
5963 return 0;
5964
4566dae7
MC
5965 sc->options |= op;
5966
5967 *opts++ = OSSL_PARAM_construct_uint64(OSSL_LIBSSL_RECORD_LAYER_PARAM_OPTIONS,
5968 &sc->options);
5969 *opts = OSSL_PARAM_construct_end();
5970
5971 /* Ignore return value */
5972 sc->rlayer.rrlmethod->set_options(sc->rlayer.rrl, options);
5973
5974 return sc->options;
8106cb8b 5975}
a230b26e 5976
56bd1783 5977uint64_t SSL_CTX_clear_options(SSL_CTX *ctx, uint64_t op)
8106cb8b
VD
5978{
5979 return ctx->options &= ~op;
5980}
a230b26e 5981
56bd1783 5982uint64_t SSL_clear_options(SSL *s, uint64_t op)
8106cb8b 5983{
38b051a1
TM
5984 SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
5985
f0d9757c
HL
5986#ifndef OPENSSL_NO_QUIC
5987 if (IS_QUIC(s))
5988 return ossl_quic_clear_options(s, op);
5989#endif
5990
38b051a1
TM
5991 if (sc == NULL)
5992 return 0;
5993
5994 return sc->options &= ~op;
8106cb8b
VD
5995}
5996
696178ed
DSH
5997STACK_OF(X509) *SSL_get0_verified_chain(const SSL *s)
5998{
38b051a1
TM
5999 const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(s);
6000
6001 if (sc == NULL)
6002 return NULL;
6003
6004 return sc->verified_chain;
696178ed
DSH
6005}
6006
0f113f3e 6007IMPLEMENT_OBJ_BSEARCH_GLOBAL_CMP_FN(SSL_CIPHER, SSL_CIPHER, ssl_cipher_id);
ed29e82a
RP
6008
6009#ifndef OPENSSL_NO_CT
6010
6011/*
6012 * Moves SCTs from the |src| stack to the |dst| stack.
6013 * The source of each SCT will be set to |origin|.
6014 * If |dst| points to a NULL pointer, a new stack will be created and owned by
6015 * the caller.
6016 * Returns the number of SCTs moved, or a negative integer if an error occurs.
6017 */
a230b26e
EK
6018static int ct_move_scts(STACK_OF(SCT) **dst, STACK_OF(SCT) *src,
6019 sct_source_t origin)
ed29e82a
RP
6020{
6021 int scts_moved = 0;
6022 SCT *sct = NULL;
6023
6024 if (*dst == NULL) {
6025 *dst = sk_SCT_new_null();
6026 if (*dst == NULL) {
e077455e 6027 ERR_raise(ERR_LIB_SSL, ERR_R_CRYPTO_LIB);
ed29e82a
RP
6028 goto err;
6029 }
6030 }
6031
a8086e6b 6032 while ((sct = sk_SCT_pop(src)) != NULL) {
ed29e82a
RP
6033 if (SCT_set_source(sct, origin) != 1)
6034 goto err;
6035
6036 if (sk_SCT_push(*dst, sct) <= 0)
6037 goto err;
6038 scts_moved += 1;
6039 }
6040
6041 return scts_moved;
a230b26e 6042 err:
ed29e82a 6043 if (sct != NULL)
a230b26e 6044 sk_SCT_push(src, sct); /* Put the SCT back */
cc7113e8 6045 return -1;
ed29e82a
RP
6046}
6047
6048/*
a230b26e 6049 * Look for data collected during ServerHello and parse if found.
6b13bd1d 6050 * Returns the number of SCTs extracted.
a230b26e 6051 */
38b051a1 6052static int ct_extract_tls_extension_scts(SSL_CONNECTION *s)
ed29e82a
RP
6053{
6054 int scts_extracted = 0;
6055
aff8c126
RS
6056 if (s->ext.scts != NULL) {
6057 const unsigned char *p = s->ext.scts;
6058 STACK_OF(SCT) *scts = o2i_SCT_LIST(NULL, &p, s->ext.scts_len);
ed29e82a
RP
6059
6060 scts_extracted = ct_move_scts(&s->scts, scts, SCT_SOURCE_TLS_EXTENSION);
6061
6062 SCT_LIST_free(scts);
6063 }
6064
6065 return scts_extracted;
6066}
6067
6068/*
6069 * Checks for an OCSP response and then attempts to extract any SCTs found if it
6070 * contains an SCT X509 extension. They will be stored in |s->scts|.
6071 * Returns:
6072 * - The number of SCTs extracted, assuming an OCSP response exists.
6073 * - 0 if no OCSP response exists or it contains no SCTs.
6074 * - A negative integer if an error occurs.
6075 */
38b051a1 6076static int ct_extract_ocsp_response_scts(SSL_CONNECTION *s)
ed29e82a 6077{
a230b26e 6078# ifndef OPENSSL_NO_OCSP
ed29e82a
RP
6079 int scts_extracted = 0;
6080 const unsigned char *p;
6081 OCSP_BASICRESP *br = NULL;
6082 OCSP_RESPONSE *rsp = NULL;
6083 STACK_OF(SCT) *scts = NULL;
6084 int i;
6085
aff8c126 6086 if (s->ext.ocsp.resp == NULL || s->ext.ocsp.resp_len == 0)
ed29e82a
RP
6087 goto err;
6088
aff8c126
RS
6089 p = s->ext.ocsp.resp;
6090 rsp = d2i_OCSP_RESPONSE(NULL, &p, (int)s->ext.ocsp.resp_len);
ed29e82a
RP
6091 if (rsp == NULL)
6092 goto err;
6093
6094 br = OCSP_response_get1_basic(rsp);
6095 if (br == NULL)
6096 goto err;
6097
6098 for (i = 0; i < OCSP_resp_count(br); ++i) {
6099 OCSP_SINGLERESP *single = OCSP_resp_get0(br, i);
6100
6101 if (single == NULL)
6102 continue;
6103
a230b26e
EK
6104 scts =
6105 OCSP_SINGLERESP_get1_ext_d2i(single, NID_ct_cert_scts, NULL, NULL);
6106 scts_extracted =
6107 ct_move_scts(&s->scts, scts, SCT_SOURCE_OCSP_STAPLED_RESPONSE);
ed29e82a
RP
6108 if (scts_extracted < 0)
6109 goto err;
6110 }
a230b26e 6111 err:
ed29e82a
RP
6112 SCT_LIST_free(scts);
6113 OCSP_BASICRESP_free(br);
6114 OCSP_RESPONSE_free(rsp);
6115 return scts_extracted;
a230b26e 6116# else
3e41ac35
MC
6117 /* Behave as if no OCSP response exists */
6118 return 0;
a230b26e 6119# endif
ed29e82a
RP
6120}
6121
6122/*
6123 * Attempts to extract SCTs from the peer certificate.
6124 * Return the number of SCTs extracted, or a negative integer if an error
6125 * occurs.
6126 */
38b051a1 6127static int ct_extract_x509v3_extension_scts(SSL_CONNECTION *s)
ed29e82a
RP
6128{
6129 int scts_extracted = 0;
3f3c7d26 6130 X509 *cert = s->session != NULL ? s->session->peer : NULL;
ed29e82a
RP
6131
6132 if (cert != NULL) {
6133 STACK_OF(SCT) *scts =
6134 X509_get_ext_d2i(cert, NID_ct_precert_scts, NULL, NULL);
6135
6136 scts_extracted =
6137 ct_move_scts(&s->scts, scts, SCT_SOURCE_X509V3_EXTENSION);
6138
6139 SCT_LIST_free(scts);
6140 }
6141
6142 return scts_extracted;
6143}
6144
6145/*
6146 * Attempts to find all received SCTs by checking TLS extensions, the OCSP
6147 * response (if it exists) and X509v3 extensions in the certificate.
6148 * Returns NULL if an error occurs.
6149 */
6150const STACK_OF(SCT) *SSL_get0_peer_scts(SSL *s)
6151{
38b051a1
TM
6152 SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
6153
6154 if (sc == NULL)
6155 return NULL;
6156
6157 if (!sc->scts_parsed) {
6158 if (ct_extract_tls_extension_scts(sc) < 0 ||
6159 ct_extract_ocsp_response_scts(sc) < 0 ||
6160 ct_extract_x509v3_extension_scts(sc) < 0)
ed29e82a
RP
6161 goto err;
6162
38b051a1 6163 sc->scts_parsed = 1;
ed29e82a 6164 }
38b051a1 6165 return sc->scts;
a230b26e 6166 err:
ed29e82a
RP
6167 return NULL;
6168}
6169
a230b26e 6170static int ct_permissive(const CT_POLICY_EVAL_CTX * ctx,
43341433 6171 const STACK_OF(SCT) *scts, void *unused_arg)
ed29e82a 6172{
43341433
VD
6173 return 1;
6174}
6175
a230b26e 6176static int ct_strict(const CT_POLICY_EVAL_CTX * ctx,
43341433
VD
6177 const STACK_OF(SCT) *scts, void *unused_arg)
6178{
6179 int count = scts != NULL ? sk_SCT_num(scts) : 0;
6180 int i;
ed29e82a 6181
43341433
VD
6182 for (i = 0; i < count; ++i) {
6183 SCT *sct = sk_SCT_value(scts, i);
6184 int status = SCT_get_validation_status(sct);
6185
6186 if (status == SCT_VALIDATION_STATUS_VALID)
6187 return 1;
6188 }
6849b73c 6189 ERR_raise(ERR_LIB_SSL, SSL_R_NO_VALID_SCTS);
43341433
VD
6190 return 0;
6191}
6192
6193int SSL_set_ct_validation_callback(SSL *s, ssl_ct_validation_cb callback,
6194 void *arg)
6195{
38b051a1
TM
6196 SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
6197
6198 if (sc == NULL)
6199 return 0;
6200
ed29e82a
RP
6201 /*
6202 * Since code exists that uses the custom extension handler for CT, look
6203 * for this and throw an error if they have already registered to use CT.
6204 */
6205 if (callback != NULL && SSL_CTX_has_client_custom_ext(s->ctx,
a230b26e
EK
6206 TLSEXT_TYPE_signed_certificate_timestamp))
6207 {
6849b73c 6208 ERR_raise(ERR_LIB_SSL, SSL_R_CUSTOM_EXT_HANDLER_ALREADY_INSTALLED);
43341433 6209 return 0;
ed29e82a
RP
6210 }
6211
ed29e82a 6212 if (callback != NULL) {
a230b26e
EK
6213 /*
6214 * If we are validating CT, then we MUST accept SCTs served via OCSP
6215 */
ed29e82a 6216 if (!SSL_set_tlsext_status_type(s, TLSEXT_STATUSTYPE_ocsp))
43341433 6217 return 0;
ed29e82a
RP
6218 }
6219
38b051a1
TM
6220 sc->ct_validation_callback = callback;
6221 sc->ct_validation_callback_arg = arg;
43341433
VD
6222
6223 return 1;
ed29e82a
RP
6224}
6225
43341433 6226int SSL_CTX_set_ct_validation_callback(SSL_CTX *ctx,
a230b26e 6227 ssl_ct_validation_cb callback, void *arg)
ed29e82a 6228{
ed29e82a
RP
6229 /*
6230 * Since code exists that uses the custom extension handler for CT, look for
6231 * this and throw an error if they have already registered to use CT.
6232 */
6233 if (callback != NULL && SSL_CTX_has_client_custom_ext(ctx,
a230b26e
EK
6234 TLSEXT_TYPE_signed_certificate_timestamp))
6235 {
6849b73c 6236 ERR_raise(ERR_LIB_SSL, SSL_R_CUSTOM_EXT_HANDLER_ALREADY_INSTALLED);
43341433 6237 return 0;
ed29e82a
RP
6238 }
6239
6240 ctx->ct_validation_callback = callback;
6241 ctx->ct_validation_callback_arg = arg;
43341433 6242 return 1;
ed29e82a
RP
6243}
6244
43341433 6245int SSL_ct_is_enabled(const SSL *s)
ed29e82a 6246{
38b051a1
TM
6247 const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(s);
6248
6249 if (sc == NULL)
6250 return 0;
6251
6252 return sc->ct_validation_callback != NULL;
ed29e82a
RP
6253}
6254
43341433 6255int SSL_CTX_ct_is_enabled(const SSL_CTX *ctx)
ed29e82a 6256{
43341433 6257 return ctx->ct_validation_callback != NULL;
ed29e82a
RP
6258}
6259
38b051a1 6260int ssl_validate_ct(SSL_CONNECTION *s)
ed29e82a
RP
6261{
6262 int ret = 0;
3f3c7d26 6263 X509 *cert = s->session != NULL ? s->session->peer : NULL;
43341433 6264 X509 *issuer;
b9aec69a 6265 SSL_DANE *dane = &s->dane;
ed29e82a
RP
6266 CT_POLICY_EVAL_CTX *ctx = NULL;
6267 const STACK_OF(SCT) *scts;
6268
43341433
VD
6269 /*
6270 * If no callback is set, the peer is anonymous, or its chain is invalid,
6271 * skip SCT validation - just return success. Applications that continue
6272 * handshakes without certificates, with unverified chains, or pinned leaf
6273 * certificates are outside the scope of the WebPKI and CT.
6274 *
6275 * The above exclusions notwithstanding the vast majority of peers will
6276 * have rather ordinary certificate chains validated by typical
6277 * applications that perform certificate verification and therefore will
6278 * process SCTs when enabled.
6279 */
6280 if (s->ct_validation_callback == NULL || cert == NULL ||
6281 s->verify_result != X509_V_OK ||
a230b26e 6282 s->verified_chain == NULL || sk_X509_num(s->verified_chain) <= 1)
ed29e82a
RP
6283 return 1;
6284
43341433
VD
6285 /*
6286 * CT not applicable for chains validated via DANE-TA(2) or DANE-EE(3)
6287 * trust-anchors. See https://tools.ietf.org/html/rfc7671#section-4.2
6288 */
6289 if (DANETLS_ENABLED(dane) && dane->mtlsa != NULL) {
6290 switch (dane->mtlsa->usage) {
6291 case DANETLS_USAGE_DANE_TA:
6292 case DANETLS_USAGE_DANE_EE:
6293 return 1;
6294 }
ed29e82a
RP
6295 }
6296
38b051a1
TM
6297 ctx = CT_POLICY_EVAL_CTX_new_ex(SSL_CONNECTION_GET_CTX(s)->libctx,
6298 SSL_CONNECTION_GET_CTX(s)->propq);
ed29e82a 6299 if (ctx == NULL) {
e077455e 6300 SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_CT_LIB);
ed29e82a
RP
6301 goto end;
6302 }
6303
43341433 6304 issuer = sk_X509_value(s->verified_chain, 1);
a1bb7708
RP
6305 CT_POLICY_EVAL_CTX_set1_cert(ctx, cert);
6306 CT_POLICY_EVAL_CTX_set1_issuer(ctx, issuer);
38b051a1
TM
6307 CT_POLICY_EVAL_CTX_set_shared_CTLOG_STORE(ctx,
6308 SSL_CONNECTION_GET_CTX(s)->ctlog_store);
6a71e06d 6309 CT_POLICY_EVAL_CTX_set_time(
38b051a1 6310 ctx, (uint64_t)SSL_SESSION_get_time(s->session) * 1000);
ed29e82a 6311
38b051a1 6312 scts = SSL_get0_peer_scts(SSL_CONNECTION_GET_SSL(s));
ed29e82a 6313
43341433
VD
6314 /*
6315 * This function returns success (> 0) only when all the SCTs are valid, 0
6316 * when some are invalid, and < 0 on various internal errors (out of
6317 * memory, etc.). Having some, or even all, invalid SCTs is not sufficient
6318 * reason to abort the handshake, that decision is up to the callback.
6319 * Therefore, we error out only in the unexpected case that the return
6320 * value is negative.
6321 *
6322 * XXX: One might well argue that the return value of this function is an
f430ba31 6323 * unfortunate design choice. Its job is only to determine the validation
43341433
VD
6324 * status of each of the provided SCTs. So long as it correctly separates
6325 * the wheat from the chaff it should return success. Failure in this case
6326 * ought to correspond to an inability to carry out its duties.
6327 */
6328 if (SCT_LIST_validate(scts, ctx) < 0) {
c48ffbcc 6329 SSLfatal(s, SSL_AD_HANDSHAKE_FAILURE, SSL_R_SCT_VERIFICATION_FAILED);
ed29e82a
RP
6330 goto end;
6331 }
6332
6333 ret = s->ct_validation_callback(ctx, scts, s->ct_validation_callback_arg);
6334 if (ret < 0)
a230b26e 6335 ret = 0; /* This function returns 0 on failure */
f63a17d6 6336 if (!ret)
c48ffbcc 6337 SSLfatal(s, SSL_AD_HANDSHAKE_FAILURE, SSL_R_CALLBACK_FAILED);
ed29e82a 6338
a230b26e 6339 end:
ed29e82a 6340 CT_POLICY_EVAL_CTX_free(ctx);
f75b34c8
VD
6341 /*
6342 * With SSL_VERIFY_NONE the session may be cached and re-used despite a
6343 * failure return code here. Also the application may wish the complete
6344 * the handshake, and then disconnect cleanly at a higher layer, after
6345 * checking the verification status of the completed connection.
6346 *
6347 * We therefore force a certificate verification failure which will be
6348 * visible via SSL_get_verify_result() and cached as part of any resumed
6349 * session.
6350 *
6351 * Note: the permissive callback is for information gathering only, always
6352 * returns success, and does not affect verification status. Only the
6353 * strict callback or a custom application-specified callback can trigger
6354 * connection failure or record a verification error.
6355 */
6356 if (ret <= 0)
6357 s->verify_result = X509_V_ERR_NO_VALID_SCTS;
ed29e82a
RP
6358 return ret;
6359}
6360
43341433
VD
6361int SSL_CTX_enable_ct(SSL_CTX *ctx, int validation_mode)
6362{
6363 switch (validation_mode) {
6364 default:
6849b73c 6365 ERR_raise(ERR_LIB_SSL, SSL_R_INVALID_CT_VALIDATION_TYPE);
43341433
VD
6366 return 0;
6367 case SSL_CT_VALIDATION_PERMISSIVE:
6368 return SSL_CTX_set_ct_validation_callback(ctx, ct_permissive, NULL);
6369 case SSL_CT_VALIDATION_STRICT:
6370 return SSL_CTX_set_ct_validation_callback(ctx, ct_strict, NULL);
6371 }
6372}
6373
6374int SSL_enable_ct(SSL *s, int validation_mode)
6375{
6376 switch (validation_mode) {
6377 default:
6849b73c 6378 ERR_raise(ERR_LIB_SSL, SSL_R_INVALID_CT_VALIDATION_TYPE);
43341433
VD
6379 return 0;
6380 case SSL_CT_VALIDATION_PERMISSIVE:
6381 return SSL_set_ct_validation_callback(s, ct_permissive, NULL);
6382 case SSL_CT_VALIDATION_STRICT:
6383 return SSL_set_ct_validation_callback(s, ct_strict, NULL);
6384 }
6385}
6386
ed29e82a
RP
6387int SSL_CTX_set_default_ctlog_list_file(SSL_CTX *ctx)
6388{
328f36c5 6389 return CTLOG_STORE_load_default_file(ctx->ctlog_store);
ed29e82a
RP
6390}
6391
6392int SSL_CTX_set_ctlog_list_file(SSL_CTX *ctx, const char *path)
6393{
6394 return CTLOG_STORE_load_file(ctx->ctlog_store, path);
6395}
6396
a230b26e 6397void SSL_CTX_set0_ctlog_store(SSL_CTX *ctx, CTLOG_STORE * logs)
8359b57f
RP
6398{
6399 CTLOG_STORE_free(ctx->ctlog_store);
6400 ctx->ctlog_store = logs;
6401}
6402
6403const CTLOG_STORE *SSL_CTX_get0_ctlog_store(const SSL_CTX *ctx)
6404{
6405 return ctx->ctlog_store;
6406}
6407
6b1bb98f
BK
6408#endif /* OPENSSL_NO_CT */
6409
a9c0d8be
DB
6410void SSL_CTX_set_client_hello_cb(SSL_CTX *c, SSL_client_hello_cb_fn cb,
6411 void *arg)
6b1bb98f 6412{
a9c0d8be
DB
6413 c->client_hello_cb = cb;
6414 c->client_hello_cb_arg = arg;
6b1bb98f
BK
6415}
6416
a9c0d8be 6417int SSL_client_hello_isv2(SSL *s)
6b1bb98f 6418{
38b051a1
TM
6419 const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
6420
6421 if (sc == NULL)
6422 return 0;
6423
6424 if (sc->clienthello == NULL)
6b1bb98f 6425 return 0;
38b051a1 6426 return sc->clienthello->isv2;
6b1bb98f
BK
6427}
6428
a9c0d8be 6429unsigned int SSL_client_hello_get0_legacy_version(SSL *s)
6b1bb98f 6430{
38b051a1
TM
6431 const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
6432
6433 if (sc == NULL)
6434 return 0;
6435
6436 if (sc->clienthello == NULL)
6b1bb98f 6437 return 0;
38b051a1 6438 return sc->clienthello->legacy_version;
6b1bb98f
BK
6439}
6440
a9c0d8be 6441size_t SSL_client_hello_get0_random(SSL *s, const unsigned char **out)
6b1bb98f 6442{
38b051a1
TM
6443 const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
6444
6445 if (sc == NULL)
6446 return 0;
6447
6448 if (sc->clienthello == NULL)
6b1bb98f
BK
6449 return 0;
6450 if (out != NULL)
38b051a1 6451 *out = sc->clienthello->random;
6b1bb98f
BK
6452 return SSL3_RANDOM_SIZE;
6453}
6454
a9c0d8be 6455size_t SSL_client_hello_get0_session_id(SSL *s, const unsigned char **out)
6b1bb98f 6456{
38b051a1
TM
6457 const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
6458
6459 if (sc == NULL)
6460 return 0;
6461
6462 if (sc->clienthello == NULL)
6b1bb98f
BK
6463 return 0;
6464 if (out != NULL)
38b051a1
TM
6465 *out = sc->clienthello->session_id;
6466 return sc->clienthello->session_id_len;
6b1bb98f
BK
6467}
6468
a9c0d8be 6469size_t SSL_client_hello_get0_ciphers(SSL *s, const unsigned char **out)
6b1bb98f 6470{
38b051a1
TM
6471 const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
6472
6473 if (sc == NULL)
6474 return 0;
6475
6476 if (sc->clienthello == NULL)
6b1bb98f
BK
6477 return 0;
6478 if (out != NULL)
38b051a1
TM
6479 *out = PACKET_data(&sc->clienthello->ciphersuites);
6480 return PACKET_remaining(&sc->clienthello->ciphersuites);
6b1bb98f
BK
6481}
6482
a9c0d8be 6483size_t SSL_client_hello_get0_compression_methods(SSL *s, const unsigned char **out)
6b1bb98f 6484{
38b051a1
TM
6485 const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
6486
6487 if (sc == NULL)
6488 return 0;
6489
6490 if (sc->clienthello == NULL)
6b1bb98f
BK
6491 return 0;
6492 if (out != NULL)
38b051a1
TM
6493 *out = sc->clienthello->compressions;
6494 return sc->clienthello->compressions_len;
6b1bb98f
BK
6495}
6496
a9c0d8be 6497int SSL_client_hello_get1_extensions_present(SSL *s, int **out, size_t *outlen)
193b5d76
BK
6498{
6499 RAW_EXTENSION *ext;
6500 int *present;
6501 size_t num = 0, i;
38b051a1 6502 const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
193b5d76 6503
38b051a1 6504 if (sc == NULL)
193b5d76 6505 return 0;
38b051a1
TM
6506
6507 if (sc->clienthello == NULL || out == NULL || outlen == NULL)
6508 return 0;
6509 for (i = 0; i < sc->clienthello->pre_proc_exts_len; i++) {
6510 ext = sc->clienthello->pre_proc_exts + i;
193b5d76
BK
6511 if (ext->present)
6512 num++;
6513 }
6fda11ae 6514 if (num == 0) {
6515 *out = NULL;
6516 *outlen = 0;
6517 return 1;
6518 }
e077455e 6519 if ((present = OPENSSL_malloc(sizeof(*present) * num)) == NULL)
193b5d76 6520 return 0;
38b051a1
TM
6521 for (i = 0; i < sc->clienthello->pre_proc_exts_len; i++) {
6522 ext = sc->clienthello->pre_proc_exts + i;
193b5d76
BK
6523 if (ext->present) {
6524 if (ext->received_order >= num)
6525 goto err;
6526 present[ext->received_order] = ext->type;
6527 }
6528 }
6529 *out = present;
6530 *outlen = num;
6531 return 1;
6532 err:
6533 OPENSSL_free(present);
6534 return 0;
6535}
6536
13a53fbf
PL
6537int SSL_client_hello_get_extension_order(SSL *s, uint16_t *exts, size_t *num_exts)
6538{
6539 RAW_EXTENSION *ext;
6540 size_t num = 0, i;
38b051a1
TM
6541 const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
6542
6543 if (sc == NULL)
6544 return 0;
13a53fbf 6545
38b051a1 6546 if (sc->clienthello == NULL || num_exts == NULL)
13a53fbf 6547 return 0;
38b051a1
TM
6548 for (i = 0; i < sc->clienthello->pre_proc_exts_len; i++) {
6549 ext = sc->clienthello->pre_proc_exts + i;
13a53fbf
PL
6550 if (ext->present)
6551 num++;
6552 }
6553 if (num == 0) {
6554 *num_exts = 0;
6555 return 1;
6556 }
6557 if (exts == NULL) {
6558 *num_exts = num;
6559 return 1;
6560 }
6561 if (*num_exts < num)
6562 return 0;
38b051a1
TM
6563 for (i = 0; i < sc->clienthello->pre_proc_exts_len; i++) {
6564 ext = sc->clienthello->pre_proc_exts + i;
13a53fbf
PL
6565 if (ext->present) {
6566 if (ext->received_order >= num)
6567 return 0;
6568 exts[ext->received_order] = ext->type;
6569 }
6570 }
6571 *num_exts = num;
6572 return 1;
6573}
6574
a9c0d8be 6575int SSL_client_hello_get0_ext(SSL *s, unsigned int type, const unsigned char **out,
6b1bb98f
BK
6576 size_t *outlen)
6577{
6578 size_t i;
6579 RAW_EXTENSION *r;
38b051a1 6580 const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
6b1bb98f 6581
38b051a1 6582 if (sc == NULL)
6b1bb98f 6583 return 0;
38b051a1
TM
6584
6585 if (sc->clienthello == NULL)
6586 return 0;
6587 for (i = 0; i < sc->clienthello->pre_proc_exts_len; ++i) {
6588 r = sc->clienthello->pre_proc_exts + i;
6b1bb98f
BK
6589 if (r->present && r->type == type) {
6590 if (out != NULL)
6591 *out = PACKET_data(&r->data);
6592 if (outlen != NULL)
6593 *outlen = PACKET_remaining(&r->data);
6594 return 1;
6595 }
6596 }
6597 return 0;
6598}
2faa1b48 6599
a58eb06d
TS
6600int SSL_free_buffers(SSL *ssl)
6601{
38b051a1
TM
6602 RECORD_LAYER *rl;
6603 SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(ssl);
6604
6605 if (sc == NULL)
6606 return 0;
6607
fe33e2c8
HL
6608 /* QUIC buffers are always 'in use'. */
6609 if (IS_QUIC_SSL(ssl))
6610 return 0;
6611
38b051a1 6612 rl = &sc->rlayer;
a58eb06d 6613
7eb39ecb
MC
6614 return rl->rrlmethod->free_buffers(rl->rrl)
6615 && rl->wrlmethod->free_buffers(rl->wrl);
a58eb06d
TS
6616}
6617
6618int SSL_alloc_buffers(SSL *ssl)
6619{
7eb39ecb 6620 RECORD_LAYER *rl;
38b051a1
TM
6621 SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(ssl);
6622
6623 if (sc == NULL)
6624 return 0;
6625
fe33e2c8
HL
6626 /* QUIC always has buffers allocated. */
6627 if (IS_QUIC_SSL(ssl))
6628 return 1;
6629
7eb39ecb
MC
6630 rl = &sc->rlayer;
6631
6632 return rl->rrlmethod->alloc_buffers(rl->rrl)
6633 && rl->wrlmethod->alloc_buffers(rl->wrl);
a58eb06d
TS
6634}
6635
2faa1b48
CB
6636void SSL_CTX_set_keylog_callback(SSL_CTX *ctx, SSL_CTX_keylog_cb_func cb)
6637{
6638 ctx->keylog_callback = cb;
6639}
6640
6641SSL_CTX_keylog_cb_func SSL_CTX_get_keylog_callback(const SSL_CTX *ctx)
6642{
6643 return ctx->keylog_callback;
6644}
6645
6646static int nss_keylog_int(const char *prefix,
38b051a1 6647 SSL_CONNECTION *sc,
2faa1b48
CB
6648 const uint8_t *parameter_1,
6649 size_t parameter_1_len,
6650 const uint8_t *parameter_2,
6651 size_t parameter_2_len)
6652{
6653 char *out = NULL;
6654 char *cursor = NULL;
6655 size_t out_len = 0;
6656 size_t i;
6657 size_t prefix_len;
38b051a1 6658 SSL_CTX *sctx = SSL_CONNECTION_GET_CTX(sc);
2faa1b48 6659
38b051a1 6660 if (sctx->keylog_callback == NULL)
20870286 6661 return 1;
2faa1b48
CB
6662
6663 /*
6664 * Our output buffer will contain the following strings, rendered with
6665 * space characters in between, terminated by a NULL character: first the
6666 * prefix, then the first parameter, then the second parameter. The
6667 * meaning of each parameter depends on the specific key material being
6668 * logged. Note that the first and second parameters are encoded in
6669 * hexadecimal, so we need a buffer that is twice their lengths.
6670 */
6671 prefix_len = strlen(prefix);
e931f370 6672 out_len = prefix_len + (2 * parameter_1_len) + (2 * parameter_2_len) + 3;
e077455e 6673 if ((out = cursor = OPENSSL_malloc(out_len)) == NULL)
2faa1b48 6674 return 0;
2faa1b48
CB
6675
6676 strcpy(cursor, prefix);
6677 cursor += prefix_len;
6678 *cursor++ = ' ';
6679
6680 for (i = 0; i < parameter_1_len; i++) {
6681 sprintf(cursor, "%02x", parameter_1[i]);
6682 cursor += 2;
6683 }
6684 *cursor++ = ' ';
6685
6686 for (i = 0; i < parameter_2_len; i++) {
6687 sprintf(cursor, "%02x", parameter_2[i]);
6688 cursor += 2;
6689 }
6690 *cursor = '\0';
6691
38b051a1 6692 sctx->keylog_callback(SSL_CONNECTION_GET_SSL(sc), (const char *)out);
e931f370 6693 OPENSSL_clear_free(out, out_len);
2faa1b48
CB
6694 return 1;
6695
6696}
6697
38b051a1 6698int ssl_log_rsa_client_key_exchange(SSL_CONNECTION *sc,
2faa1b48
CB
6699 const uint8_t *encrypted_premaster,
6700 size_t encrypted_premaster_len,
6701 const uint8_t *premaster,
6702 size_t premaster_len)
6703{
6704 if (encrypted_premaster_len < 8) {
38b051a1 6705 SSLfatal(sc, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
2faa1b48
CB
6706 return 0;
6707 }
6708
f0deb4d3 6709 /* We only want the first 8 bytes of the encrypted premaster as a tag. */
2faa1b48 6710 return nss_keylog_int("RSA",
38b051a1 6711 sc,
2faa1b48 6712 encrypted_premaster,
f0deb4d3 6713 8,
2faa1b48
CB
6714 premaster,
6715 premaster_len);
6716}
6717
38b051a1 6718int ssl_log_secret(SSL_CONNECTION *sc,
2c7bd692
CB
6719 const char *label,
6720 const uint8_t *secret,
6721 size_t secret_len)
2faa1b48 6722{
2c7bd692 6723 return nss_keylog_int(label,
38b051a1
TM
6724 sc,
6725 sc->s3.client_random,
2c7bd692
CB
6726 SSL3_RANDOM_SIZE,
6727 secret,
6728 secret_len);
2faa1b48
CB
6729}
6730
ccb8e6e0
BK
6731#define SSLV2_CIPHER_LEN 3
6732
38b051a1 6733int ssl_cache_cipherlist(SSL_CONNECTION *s, PACKET *cipher_suites, int sslv2format)
ccb8e6e0 6734{
ccb8e6e0 6735 int n;
ccb8e6e0
BK
6736
6737 n = sslv2format ? SSLV2_CIPHER_LEN : TLS_CIPHER_LEN;
6738
6739 if (PACKET_remaining(cipher_suites) == 0) {
c48ffbcc 6740 SSLfatal(s, SSL_AD_ILLEGAL_PARAMETER, SSL_R_NO_CIPHERS_SPECIFIED);
90134d98 6741 return 0;
ccb8e6e0
BK
6742 }
6743
6744 if (PACKET_remaining(cipher_suites) % n != 0) {
c48ffbcc 6745 SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_R_ERROR_IN_RECEIVED_CIPHER_LIST);
90134d98 6746 return 0;
ccb8e6e0
BK
6747 }
6748
555cbb32
TS
6749 OPENSSL_free(s->s3.tmp.ciphers_raw);
6750 s->s3.tmp.ciphers_raw = NULL;
6751 s->s3.tmp.ciphers_rawlen = 0;
ccb8e6e0
BK
6752
6753 if (sslv2format) {
6754 size_t numciphers = PACKET_remaining(cipher_suites) / n;
6755 PACKET sslv2ciphers = *cipher_suites;
6756 unsigned int leadbyte;
6757 unsigned char *raw;
6758
6759 /*
6760 * We store the raw ciphers list in SSLv3+ format so we need to do some
6761 * preprocessing to convert the list first. If there are any SSLv2 only
6762 * ciphersuites with a non-zero leading byte then we are going to
6763 * slightly over allocate because we won't store those. But that isn't a
6764 * problem.
6765 */
6766 raw = OPENSSL_malloc(numciphers * TLS_CIPHER_LEN);
555cbb32 6767 s->s3.tmp.ciphers_raw = raw;
ccb8e6e0 6768 if (raw == NULL) {
e077455e 6769 SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_CRYPTO_LIB);
f63a17d6 6770 return 0;
ccb8e6e0 6771 }
555cbb32 6772 for (s->s3.tmp.ciphers_rawlen = 0;
ccb8e6e0
BK
6773 PACKET_remaining(&sslv2ciphers) > 0;
6774 raw += TLS_CIPHER_LEN) {
6775 if (!PACKET_get_1(&sslv2ciphers, &leadbyte)
6776 || (leadbyte == 0
6777 && !PACKET_copy_bytes(&sslv2ciphers, raw,
6778 TLS_CIPHER_LEN))
6779 || (leadbyte != 0
6780 && !PACKET_forward(&sslv2ciphers, TLS_CIPHER_LEN))) {
c48ffbcc 6781 SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_R_BAD_PACKET);
555cbb32
TS
6782 OPENSSL_free(s->s3.tmp.ciphers_raw);
6783 s->s3.tmp.ciphers_raw = NULL;
6784 s->s3.tmp.ciphers_rawlen = 0;
f63a17d6 6785 return 0;
ccb8e6e0
BK
6786 }
6787 if (leadbyte == 0)
555cbb32 6788 s->s3.tmp.ciphers_rawlen += TLS_CIPHER_LEN;
ccb8e6e0 6789 }
555cbb32
TS
6790 } else if (!PACKET_memdup(cipher_suites, &s->s3.tmp.ciphers_raw,
6791 &s->s3.tmp.ciphers_rawlen)) {
c48ffbcc 6792 SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
f63a17d6 6793 return 0;
ccb8e6e0 6794 }
90134d98 6795 return 1;
90134d98
BK
6796}
6797
6798int SSL_bytes_to_cipher_list(SSL *s, const unsigned char *bytes, size_t len,
6799 int isv2format, STACK_OF(SSL_CIPHER) **sk,
6800 STACK_OF(SSL_CIPHER) **scsvs)
6801{
90134d98 6802 PACKET pkt;
38b051a1
TM
6803 SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
6804
6805 if (sc == NULL)
6806 return 0;
90134d98
BK
6807
6808 if (!PACKET_buf_init(&pkt, bytes, len))
6809 return 0;
38b051a1 6810 return ossl_bytes_to_cipher_list(sc, &pkt, sk, scsvs, isv2format, 0);
90134d98
BK
6811}
6812
38b051a1
TM
6813int ossl_bytes_to_cipher_list(SSL_CONNECTION *s, PACKET *cipher_suites,
6814 STACK_OF(SSL_CIPHER) **skp,
6815 STACK_OF(SSL_CIPHER) **scsvs_out,
6816 int sslv2format, int fatal)
90134d98
BK
6817{
6818 const SSL_CIPHER *c;
6819 STACK_OF(SSL_CIPHER) *sk = NULL;
6820 STACK_OF(SSL_CIPHER) *scsvs = NULL;
6821 int n;
6822 /* 3 = SSLV2_CIPHER_LEN > TLS_CIPHER_LEN = 2. */
6823 unsigned char cipher[SSLV2_CIPHER_LEN];
6824
6825 n = sslv2format ? SSLV2_CIPHER_LEN : TLS_CIPHER_LEN;
6826
6827 if (PACKET_remaining(cipher_suites) == 0) {
f63a17d6 6828 if (fatal)
c48ffbcc 6829 SSLfatal(s, SSL_AD_ILLEGAL_PARAMETER, SSL_R_NO_CIPHERS_SPECIFIED);
f63a17d6 6830 else
6849b73c 6831 ERR_raise(ERR_LIB_SSL, SSL_R_NO_CIPHERS_SPECIFIED);
90134d98
BK
6832 return 0;
6833 }
6834
6835 if (PACKET_remaining(cipher_suites) % n != 0) {
f63a17d6 6836 if (fatal)
c48ffbcc 6837 SSLfatal(s, SSL_AD_DECODE_ERROR,
f63a17d6
MC
6838 SSL_R_ERROR_IN_RECEIVED_CIPHER_LIST);
6839 else
6849b73c 6840 ERR_raise(ERR_LIB_SSL, SSL_R_ERROR_IN_RECEIVED_CIPHER_LIST);
90134d98
BK
6841 return 0;
6842 }
6843
6844 sk = sk_SSL_CIPHER_new_null();
6845 scsvs = sk_SSL_CIPHER_new_null();
6846 if (sk == NULL || scsvs == NULL) {
f63a17d6 6847 if (fatal)
e077455e 6848 SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_CRYPTO_LIB);
f63a17d6 6849 else
e077455e 6850 ERR_raise(ERR_LIB_SSL, ERR_R_CRYPTO_LIB);
90134d98
BK
6851 goto err;
6852 }
ccb8e6e0
BK
6853
6854 while (PACKET_copy_bytes(cipher_suites, cipher, n)) {
6855 /*
6856 * SSLv3 ciphers wrapped in an SSLv2-compatible ClientHello have the
6857 * first byte set to zero, while true SSLv2 ciphers have a non-zero
6858 * first byte. We don't support any true SSLv2 ciphers, so skip them.
6859 */
6860 if (sslv2format && cipher[0] != '\0')
6861 continue;
6862
ccb8e6e0
BK
6863 /* For SSLv2-compat, ignore leading 0-byte. */
6864 c = ssl_get_cipher_by_char(s, sslv2format ? &cipher[1] : cipher, 1);
6865 if (c != NULL) {
90134d98
BK
6866 if ((c->valid && !sk_SSL_CIPHER_push(sk, c)) ||
6867 (!c->valid && !sk_SSL_CIPHER_push(scsvs, c))) {
f63a17d6 6868 if (fatal)
e077455e 6869 SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_CRYPTO_LIB);
f63a17d6 6870 else
e077455e 6871 ERR_raise(ERR_LIB_SSL, ERR_R_CRYPTO_LIB);
ccb8e6e0
BK
6872 goto err;
6873 }
6874 }
6875 }
6876 if (PACKET_remaining(cipher_suites) > 0) {
f63a17d6 6877 if (fatal)
c48ffbcc 6878 SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_R_BAD_LENGTH);
f63a17d6 6879 else
6849b73c 6880 ERR_raise(ERR_LIB_SSL, SSL_R_BAD_LENGTH);
ccb8e6e0
BK
6881 goto err;
6882 }
6883
90134d98
BK
6884 if (skp != NULL)
6885 *skp = sk;
6886 else
6887 sk_SSL_CIPHER_free(sk);
6888 if (scsvs_out != NULL)
6889 *scsvs_out = scsvs;
6890 else
6891 sk_SSL_CIPHER_free(scsvs);
6892 return 1;
ccb8e6e0
BK
6893 err:
6894 sk_SSL_CIPHER_free(sk);
90134d98
BK
6895 sk_SSL_CIPHER_free(scsvs);
6896 return 0;
ccb8e6e0 6897}
3fc8d856
MC
6898
6899int SSL_CTX_set_max_early_data(SSL_CTX *ctx, uint32_t max_early_data)
6900{
6901 ctx->max_early_data = max_early_data;
6902
6903 return 1;
6904}
6905
46dcb945 6906uint32_t SSL_CTX_get_max_early_data(const SSL_CTX *ctx)
3fc8d856
MC
6907{
6908 return ctx->max_early_data;
6909}
6910
6911int SSL_set_max_early_data(SSL *s, uint32_t max_early_data)
6912{
38b051a1
TM
6913 SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
6914
82a2beca 6915 if (sc == NULL || IS_QUIC_SSL(s))
38b051a1
TM
6916 return 0;
6917
6918 sc->max_early_data = max_early_data;
3fc8d856
MC
6919
6920 return 1;
6921}
6922
a8e75d56 6923uint32_t SSL_get_max_early_data(const SSL *s)
3fc8d856 6924{
38b051a1
TM
6925 const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(s);
6926
6927 if (sc == NULL)
6928 return 0;
6929
6930 return sc->max_early_data;
3fc8d856 6931}
ae3947de 6932
4e8548e8
MC
6933int SSL_CTX_set_recv_max_early_data(SSL_CTX *ctx, uint32_t recv_max_early_data)
6934{
6935 ctx->recv_max_early_data = recv_max_early_data;
6936
6937 return 1;
6938}
6939
6940uint32_t SSL_CTX_get_recv_max_early_data(const SSL_CTX *ctx)
6941{
6942 return ctx->recv_max_early_data;
6943}
6944
6945int SSL_set_recv_max_early_data(SSL *s, uint32_t recv_max_early_data)
6946{
38b051a1
TM
6947 SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
6948
82a2beca 6949 if (sc == NULL || IS_QUIC_SSL(s))
38b051a1
TM
6950 return 0;
6951
6952 sc->recv_max_early_data = recv_max_early_data;
4e8548e8
MC
6953
6954 return 1;
6955}
6956
6957uint32_t SSL_get_recv_max_early_data(const SSL *s)
6958{
38b051a1
TM
6959 const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(s);
6960
6961 if (sc == NULL)
6962 return 0;
6963
6964 return sc->recv_max_early_data;
4e8548e8
MC
6965}
6966
38b051a1 6967__owur unsigned int ssl_get_max_send_fragment(const SSL_CONNECTION *sc)
cf72c757
F
6968{
6969 /* Return any active Max Fragment Len extension */
38b051a1
TM
6970 if (sc->session != NULL && USE_MAX_FRAGMENT_LENGTH_EXT(sc->session))
6971 return GET_MAX_FRAGMENT_LENGTH(sc->session);
cf72c757
F
6972
6973 /* return current SSL connection setting */
38b051a1 6974 return sc->max_send_fragment;
cf72c757
F
6975}
6976
38b051a1 6977__owur unsigned int ssl_get_split_send_fragment(const SSL_CONNECTION *sc)
cf72c757
F
6978{
6979 /* Return a value regarding an active Max Fragment Len extension */
38b051a1
TM
6980 if (sc->session != NULL && USE_MAX_FRAGMENT_LENGTH_EXT(sc->session)
6981 && sc->split_send_fragment > GET_MAX_FRAGMENT_LENGTH(sc->session))
6982 return GET_MAX_FRAGMENT_LENGTH(sc->session);
cf72c757
F
6983
6984 /* else limit |split_send_fragment| to current |max_send_fragment| */
38b051a1
TM
6985 if (sc->split_send_fragment > sc->max_send_fragment)
6986 return sc->max_send_fragment;
cf72c757
F
6987
6988 /* return current SSL connection setting */
38b051a1 6989 return sc->split_send_fragment;
cf72c757 6990}
042c5753
MC
6991
6992int SSL_stateless(SSL *s)
6993{
6994 int ret;
38b051a1
TM
6995 SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
6996
a1c56bbe 6997 if (sc == NULL || IS_QUIC_SSL(s))
38b051a1 6998 return 0;
042c5753
MC
6999
7000 /* Ensure there is no state left over from a previous invocation */
7001 if (!SSL_clear(s))
d6bb50a5 7002 return 0;
042c5753
MC
7003
7004 ERR_clear_error();
7005
38b051a1 7006 sc->s3.flags |= TLS1_FLAGS_STATELESS;
042c5753 7007 ret = SSL_accept(s);
38b051a1 7008 sc->s3.flags &= ~TLS1_FLAGS_STATELESS;
042c5753 7009
38b051a1 7010 if (ret > 0 && sc->ext.cookieok)
c36001c3
MC
7011 return 1;
7012
38b051a1 7013 if (sc->hello_retry_request == SSL_HRR_PENDING && !ossl_statem_in_error(sc))
e440f513
MC
7014 return 0;
7015
7016 return -1;
042c5753 7017}
9d75dce3 7018
e97be718
MC
7019void SSL_CTX_set_post_handshake_auth(SSL_CTX *ctx, int val)
7020{
7021 ctx->pha_enabled = val;
7022}
7023
32097b33 7024void SSL_set_post_handshake_auth(SSL *ssl, int val)
9d75dce3 7025{
38b051a1 7026 SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(ssl);
9ea0e729
HL
7027#ifndef OPENSSL_NO_QUIC
7028 QUIC_CONNECTION *qc = QUIC_CONNECTION_FROM_SSL(ssl);
7029
7030 if (qc != NULL)
7031 return;
7032#endif
38b051a1
TM
7033
7034 if (sc == NULL)
7035 return;
7036
7037 sc->pha_enabled = val;
9d75dce3
TS
7038}
7039
7040int SSL_verify_client_post_handshake(SSL *ssl)
7041{
38b051a1 7042 SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(ssl);
9ea0e729
HL
7043#ifndef OPENSSL_NO_QUIC
7044 QUIC_CONNECTION *qc = QUIC_CONNECTION_FROM_SSL(ssl);
7045
7046 if (qc != NULL) {
7047 ERR_raise(ERR_LIB_SSL, SSL_R_WRONG_SSL_VERSION);
7048 return 0;
7049 }
7050#endif
38b051a1
TM
7051
7052 if (sc == NULL)
7053 return 0;
7054
7055 if (!SSL_CONNECTION_IS_TLS13(sc)) {
6849b73c 7056 ERR_raise(ERR_LIB_SSL, SSL_R_WRONG_SSL_VERSION);
9d75dce3
TS
7057 return 0;
7058 }
38b051a1 7059 if (!sc->server) {
6849b73c 7060 ERR_raise(ERR_LIB_SSL, SSL_R_NOT_SERVER);
9d75dce3
TS
7061 return 0;
7062 }
7063
7064 if (!SSL_is_init_finished(ssl)) {
6849b73c 7065 ERR_raise(ERR_LIB_SSL, SSL_R_STILL_IN_INIT);
9d75dce3
TS
7066 return 0;
7067 }
7068
38b051a1 7069 switch (sc->post_handshake_auth) {
9d75dce3 7070 case SSL_PHA_NONE:
6849b73c 7071 ERR_raise(ERR_LIB_SSL, SSL_R_EXTENSION_NOT_RECEIVED);
9d75dce3
TS
7072 return 0;
7073 default:
7074 case SSL_PHA_EXT_SENT:
6849b73c 7075 ERR_raise(ERR_LIB_SSL, ERR_R_INTERNAL_ERROR);
9d75dce3
TS
7076 return 0;
7077 case SSL_PHA_EXT_RECEIVED:
7078 break;
7079 case SSL_PHA_REQUEST_PENDING:
6849b73c 7080 ERR_raise(ERR_LIB_SSL, SSL_R_REQUEST_PENDING);
9d75dce3
TS
7081 return 0;
7082 case SSL_PHA_REQUESTED:
6849b73c 7083 ERR_raise(ERR_LIB_SSL, SSL_R_REQUEST_SENT);
9d75dce3
TS
7084 return 0;
7085 }
7086
38b051a1 7087 sc->post_handshake_auth = SSL_PHA_REQUEST_PENDING;
9d75dce3
TS
7088
7089 /* checks verify_mode and algorithm_auth */
38b051a1
TM
7090 if (!send_certificate_request(sc)) {
7091 sc->post_handshake_auth = SSL_PHA_EXT_RECEIVED; /* restore on error */
6849b73c 7092 ERR_raise(ERR_LIB_SSL, SSL_R_INVALID_CONFIG);
9d75dce3
TS
7093 return 0;
7094 }
7095
38b051a1 7096 ossl_statem_set_in_init(sc, 1);
9d75dce3
TS
7097 return 1;
7098}
df0fed9a
TS
7099
7100int SSL_CTX_set_session_ticket_cb(SSL_CTX *ctx,
7101 SSL_CTX_generate_session_ticket_fn gen_cb,
7102 SSL_CTX_decrypt_session_ticket_fn dec_cb,
7103 void *arg)
7104{
7105 ctx->generate_ticket_cb = gen_cb;
7106 ctx->decrypt_ticket_cb = dec_cb;
7107 ctx->ticket_cb_data = arg;
7108 return 1;
7109}
c9598459
MC
7110
7111void SSL_CTX_set_allow_early_data_cb(SSL_CTX *ctx,
7112 SSL_allow_early_data_cb_fn cb,
7113 void *arg)
7114{
7115 ctx->allow_early_data_cb = cb;
7116 ctx->allow_early_data_cb_data = arg;
7117}
7118
7119void SSL_set_allow_early_data_cb(SSL *s,
7120 SSL_allow_early_data_cb_fn cb,
7121 void *arg)
7122{
38b051a1
TM
7123 SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
7124
82a2beca 7125 if (sc == NULL || IS_QUIC_SSL(s))
38b051a1
TM
7126 return;
7127
7128 sc->allow_early_data_cb = cb;
7129 sc->allow_early_data_cb_data = arg;
c9598459 7130}
c8f6c28a 7131
b4250010 7132const EVP_CIPHER *ssl_evp_cipher_fetch(OSSL_LIB_CTX *libctx,
c8f6c28a
MC
7133 int nid,
7134 const char *properties)
7135{
301fcb28 7136 const EVP_CIPHER *ciph;
5fcb97c6 7137
301fcb28
MC
7138 ciph = tls_get_cipher_from_engine(nid);
7139 if (ciph != NULL)
7140 return ciph;
0618b62c 7141
c8f6c28a 7142 /*
301fcb28
MC
7143 * If there is no engine cipher then we do an explicit fetch. This may fail
7144 * and that could be ok
c8f6c28a 7145 */
5fcb97c6
MC
7146 ERR_set_mark();
7147 ciph = EVP_CIPHER_fetch(libctx, OBJ_nid2sn(nid), properties);
7148 ERR_pop_to_mark();
7149 return ciph;
c8f6c28a
MC
7150}
7151
7152
7153int ssl_evp_cipher_up_ref(const EVP_CIPHER *cipher)
7154{
7155 /* Don't up-ref an implicit EVP_CIPHER */
ed576acd 7156 if (EVP_CIPHER_get0_provider(cipher) == NULL)
c8f6c28a
MC
7157 return 1;
7158
7159 /*
7160 * The cipher was explicitly fetched and therefore it is safe to cast
7161 * away the const
7162 */
7163 return EVP_CIPHER_up_ref((EVP_CIPHER *)cipher);
7164}
7165
7166void ssl_evp_cipher_free(const EVP_CIPHER *cipher)
7167{
7168 if (cipher == NULL)
7169 return;
7170
ed576acd 7171 if (EVP_CIPHER_get0_provider(cipher) != NULL) {
c8f6c28a
MC
7172 /*
7173 * The cipher was explicitly fetched and therefore it is safe to cast
7174 * away the const
7175 */
7176 EVP_CIPHER_free((EVP_CIPHER *)cipher);
7177 }
7178}
7179
b4250010 7180const EVP_MD *ssl_evp_md_fetch(OSSL_LIB_CTX *libctx,
c8f6c28a
MC
7181 int nid,
7182 const char *properties)
7183{
301fcb28 7184 const EVP_MD *md;
5fcb97c6 7185
301fcb28
MC
7186 md = tls_get_digest_from_engine(nid);
7187 if (md != NULL)
7188 return md;
c8f6c28a
MC
7189
7190 /* Otherwise we do an explicit fetch */
5fcb97c6
MC
7191 ERR_set_mark();
7192 md = EVP_MD_fetch(libctx, OBJ_nid2sn(nid), properties);
7193 ERR_pop_to_mark();
7194 return md;
c8f6c28a
MC
7195}
7196
7197int ssl_evp_md_up_ref(const EVP_MD *md)
7198{
7199 /* Don't up-ref an implicit EVP_MD */
ed576acd 7200 if (EVP_MD_get0_provider(md) == NULL)
c8f6c28a
MC
7201 return 1;
7202
7203 /*
7204 * The digest was explicitly fetched and therefore it is safe to cast
7205 * away the const
7206 */
7207 return EVP_MD_up_ref((EVP_MD *)md);
7208}
7209
7210void ssl_evp_md_free(const EVP_MD *md)
7211{
7212 if (md == NULL)
7213 return;
7214
ed576acd 7215 if (EVP_MD_get0_provider(md) != NULL) {
c8f6c28a
MC
7216 /*
7217 * The digest was explicitly fetched and therefore it is safe to cast
7218 * away the const
7219 */
7220 EVP_MD_free((EVP_MD *)md);
7221 }
7222}
163f6dc1
MC
7223
7224int SSL_set0_tmp_dh_pkey(SSL *s, EVP_PKEY *dhpkey)
7225{
38b051a1
TM
7226 SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
7227
7228 if (sc == NULL)
7229 return 0;
7230
7231 if (!ssl_security(sc, SSL_SECOP_TMP_DH,
ed576acd 7232 EVP_PKEY_get_security_bits(dhpkey), 0, dhpkey)) {
276d6c68 7233 ERR_raise(ERR_LIB_SSL, SSL_R_DH_KEY_TOO_SMALL);
163f6dc1
MC
7234 return 0;
7235 }
38b051a1
TM
7236 EVP_PKEY_free(sc->cert->dh_tmp);
7237 sc->cert->dh_tmp = dhpkey;
163f6dc1
MC
7238 return 1;
7239}
7240
7241int SSL_CTX_set0_tmp_dh_pkey(SSL_CTX *ctx, EVP_PKEY *dhpkey)
7242{
7243 if (!ssl_ctx_security(ctx, SSL_SECOP_TMP_DH,
ed576acd 7244 EVP_PKEY_get_security_bits(dhpkey), 0, dhpkey)) {
276d6c68 7245 ERR_raise(ERR_LIB_SSL, SSL_R_DH_KEY_TOO_SMALL);
163f6dc1
MC
7246 return 0;
7247 }
7248 EVP_PKEY_free(ctx->cert->dh_tmp);
7249 ctx->cert->dh_tmp = dhpkey;
7250 return 1;
7251}
68801bcb 7252
03bacce8 7253/* QUIC-specific methods which are supported on QUIC connections only. */
6084e04b 7254int SSL_handle_events(SSL *s)
03bacce8
HL
7255{
7256 SSL_CONNECTION *sc;
03bacce8 7257
6d495cc4
HL
7258#ifndef OPENSSL_NO_QUIC
7259 if (IS_QUIC(s))
6084e04b 7260 return ossl_quic_handle_events(s);
03bacce8
HL
7261#endif
7262
7263 sc = SSL_CONNECTION_FROM_SSL_ONLY(s);
7264 if (sc != NULL && SSL_CONNECTION_IS_DTLS(sc))
fbe2573d
HL
7265 /*
7266 * DTLSv1_handle_timeout returns 0 if the timer wasn't expired yet,
7267 * which we consider a success case. Theoretically DTLSv1_handle_timeout
7268 * can also return 0 if s is NULL or not a DTLS object, but we've
7269 * already ruled out those possibilities above, so this is not possible
7270 * here. Thus the only failure cases are where DTLSv1_handle_timeout
7271 * returns -1.
7272 */
7273 return DTLSv1_handle_timeout(s) >= 0;
03bacce8 7274
fbe2573d 7275 return 1;
03bacce8
HL
7276}
7277
7ea49713 7278int SSL_get_event_timeout(SSL *s, struct timeval *tv, int *is_infinite)
03bacce8
HL
7279{
7280 SSL_CONNECTION *sc;
03bacce8 7281
6d495cc4
HL
7282#ifndef OPENSSL_NO_QUIC
7283 if (IS_QUIC(s))
7ea49713 7284 return ossl_quic_get_event_timeout(s, tv, is_infinite);
03bacce8
HL
7285#endif
7286
7287 sc = SSL_CONNECTION_FROM_SSL_ONLY(s);
fbe2573d 7288 if (sc != NULL && SSL_CONNECTION_IS_DTLS(sc)
7ea49713
HL
7289 && DTLSv1_get_timeout(s, tv)) {
7290 *is_infinite = 0;
03bacce8 7291 return 1;
7ea49713 7292 }
03bacce8 7293
7ea49713 7294 tv->tv_sec = 1000000;
fbe2573d 7295 tv->tv_usec = 0;
7ea49713 7296 *is_infinite = 1;
fbe2573d 7297 return 1;
03bacce8
HL
7298}
7299
68801bcb
HL
7300int SSL_get_rpoll_descriptor(SSL *s, BIO_POLL_DESCRIPTOR *desc)
7301{
7302#ifndef OPENSSL_NO_QUIC
6d495cc4 7303 if (!IS_QUIC(s))
68801bcb
HL
7304 return -1;
7305
6d495cc4 7306 return ossl_quic_get_rpoll_descriptor(s, desc);
68801bcb
HL
7307#else
7308 return -1;
7309#endif
7310}
7311
7312int SSL_get_wpoll_descriptor(SSL *s, BIO_POLL_DESCRIPTOR *desc)
7313{
7314#ifndef OPENSSL_NO_QUIC
6d495cc4 7315 if (!IS_QUIC(s))
68801bcb
HL
7316 return -1;
7317
6d495cc4 7318 return ossl_quic_get_wpoll_descriptor(s, desc);
03bacce8
HL
7319#else
7320 return -1;
7321#endif
7322}
7323
b639475a 7324int SSL_net_read_desired(SSL *s)
03bacce8
HL
7325{
7326#ifndef OPENSSL_NO_QUIC
6d495cc4 7327 if (!IS_QUIC(s))
03bacce8
HL
7328 return 0;
7329
6d495cc4 7330 return ossl_quic_get_net_read_desired(s);
03bacce8
HL
7331#else
7332 return 0;
7333#endif
7334}
7335
b639475a 7336int SSL_net_write_desired(SSL *s)
03bacce8
HL
7337{
7338#ifndef OPENSSL_NO_QUIC
6d495cc4 7339 if (!IS_QUIC(s))
03bacce8
HL
7340 return 0;
7341
6d495cc4 7342 return ossl_quic_get_net_write_desired(s);
03bacce8
HL
7343#else
7344 return 0;
7345#endif
7346}
7347
7348int SSL_set_blocking_mode(SSL *s, int blocking)
7349{
7350#ifndef OPENSSL_NO_QUIC
6d495cc4 7351 if (!IS_QUIC(s))
03bacce8
HL
7352 return 0;
7353
6d495cc4 7354 return ossl_quic_conn_set_blocking_mode(s, blocking);
03bacce8
HL
7355#else
7356 return 0;
7357#endif
7358}
7359
7360int SSL_get_blocking_mode(SSL *s)
7361{
7362#ifndef OPENSSL_NO_QUIC
6d495cc4 7363 if (!IS_QUIC(s))
03bacce8
HL
7364 return -1;
7365
6d495cc4 7366 return ossl_quic_conn_get_blocking_mode(s);
03bacce8
HL
7367#else
7368 return -1;
7369#endif
7370}
7371
7372int SSL_set_initial_peer_addr(SSL *s, const BIO_ADDR *peer_addr)
7373{
7374#ifndef OPENSSL_NO_QUIC
6d495cc4 7375 if (!IS_QUIC(s))
e8043229 7376 return 0;
03bacce8 7377
6d495cc4 7378 return ossl_quic_conn_set_initial_peer_addr(s, peer_addr);
68801bcb 7379#else
e8043229
HL
7380 return 0;
7381#endif
7382}
7383
7384int SSL_shutdown_ex(SSL *ssl, uint64_t flags,
7385 const SSL_SHUTDOWN_EX_ARGS *args,
7386 size_t args_len)
7387{
7388#ifndef OPENSSL_NO_QUIC
6d495cc4 7389 if (!IS_QUIC(ssl))
e8043229
HL
7390 return SSL_shutdown(ssl);
7391
6d495cc4 7392 return ossl_quic_conn_shutdown(ssl, flags, args, args_len);
e8043229
HL
7393#else
7394 return SSL_shutdown(ssl);
68801bcb
HL
7395#endif
7396}
a9979965
HL
7397
7398int SSL_stream_conclude(SSL *ssl, uint64_t flags)
7399{
7400#ifndef OPENSSL_NO_QUIC
6d495cc4 7401 if (!IS_QUIC(ssl))
a9979965
HL
7402 return 0;
7403
6d495cc4 7404 return ossl_quic_conn_stream_conclude(ssl);
a9979965
HL
7405#else
7406 return 0;
7407#endif
7408}
3c95ef22 7409
cb5c208b
HL
7410SSL *SSL_new_stream(SSL *s, uint64_t flags)
7411{
7412#ifndef OPENSSL_NO_QUIC
7413 if (!IS_QUIC(s))
7414 return NULL;
7415
7416 return ossl_quic_conn_stream_new(s, flags);
7417#else
7418 return NULL;
7419#endif
7420}
7421
020d0389
HL
7422SSL *SSL_get0_connection(SSL *s)
7423{
7424#ifndef OPENSSL_NO_QUIC
7425 if (!IS_QUIC(s))
7426 return s;
7427
7428 return ossl_quic_get0_connection(s);
7429#else
7430 return s;
7431#endif
7432}
7433
e1dee2e3
HL
7434int SSL_is_connection(SSL *s)
7435{
7436 return SSL_get0_connection(s) == s;
7437}
7438
1bca3f1b
HL
7439int SSL_get_stream_type(SSL *s)
7440{
7441#ifndef OPENSSL_NO_QUIC
7442 if (!IS_QUIC(s))
7443 return SSL_STREAM_TYPE_BIDI;
7444
7445 return ossl_quic_get_stream_type(s);
7446#else
7447 return SSL_STREAM_TYPE_BIDI;
7448#endif
7449}
7450
19cb0887
HL
7451uint64_t SSL_get_stream_id(SSL *s)
7452{
7453#ifndef OPENSSL_NO_QUIC
7454 if (!IS_QUIC(s))
7455 return UINT64_MAX;
7456
7457 return ossl_quic_get_stream_id(s);
7458#else
7459 return UINT64_MAX;
7460#endif
7461}
7462
8b7be3aa
HL
7463int SSL_set_default_stream_mode(SSL *s, uint32_t mode)
7464{
7465#ifndef OPENSSL_NO_QUIC
7466 if (!IS_QUIC(s))
7467 return 0;
7468
7469 return ossl_quic_set_default_stream_mode(s, mode);
7470#else
7471 return 0;
7472#endif
7473}
7474
83df44ae 7475int SSL_set_incoming_stream_policy(SSL *s, int policy, uint64_t aec)
8a90df34
HL
7476{
7477#ifndef OPENSSL_NO_QUIC
7478 if (!IS_QUIC(s))
7479 return 0;
7480
83df44ae 7481 return ossl_quic_set_incoming_stream_policy(s, policy, aec);
8a90df34
HL
7482#else
7483 return 0;
7484#endif
7485}
7486
cb68ce9f
HL
7487SSL *SSL_accept_stream(SSL *s, uint64_t flags)
7488{
7489#ifndef OPENSSL_NO_QUIC
7490 if (!IS_QUIC(s))
7491 return NULL;
7492
7493 return ossl_quic_accept_stream(s, flags);
7494#else
7495 return NULL;
7496#endif
7497}
7498
7499size_t SSL_get_accept_stream_queue_len(SSL *s)
7500{
7501#ifndef OPENSSL_NO_QUIC
7502 if (!IS_QUIC(s))
7503 return 0;
7504
7505 return ossl_quic_get_accept_stream_queue_len(s);
7506#else
7507 return 0;
7508#endif
7509}
7510
c3a04ea2
HL
7511int SSL_stream_reset(SSL *s,
7512 const SSL_STREAM_RESET_ARGS *args,
7513 size_t args_len)
7514{
7515#ifndef OPENSSL_NO_QUIC
7516 if (!IS_QUIC(s))
7517 return 0;
7518
7519 return ossl_quic_stream_reset(s, args, args_len);
7520#else
7521 return 0;
7522#endif
7523}
7524
7525int SSL_get_stream_read_state(SSL *s)
7526{
7527#ifndef OPENSSL_NO_QUIC
7528 if (!IS_QUIC(s))
7529 return SSL_STREAM_STATE_NONE;
7530
7531 return ossl_quic_get_stream_read_state(s);
7532#else
7533 return SSL_STREAM_STATE_NONE;
7534#endif
7535}
7536
7537int SSL_get_stream_write_state(SSL *s)
7538{
7539#ifndef OPENSSL_NO_QUIC
7540 if (!IS_QUIC(s))
7541 return SSL_STREAM_STATE_NONE;
7542
7543 return ossl_quic_get_stream_write_state(s);
7544#else
7545 return SSL_STREAM_STATE_NONE;
7546#endif
7547}
7548
7549int SSL_get_stream_read_error_code(SSL *s, uint64_t *app_error_code)
7550{
7551#ifndef OPENSSL_NO_QUIC
7552 if (!IS_QUIC(s))
7553 return -1;
7554
7555 return ossl_quic_get_stream_read_error_code(s, app_error_code);
7556#else
7557 return -1;
7558#endif
7559}
7560
7561int SSL_get_stream_write_error_code(SSL *s, uint64_t *app_error_code)
7562{
7563#ifndef OPENSSL_NO_QUIC
7564 if (!IS_QUIC(s))
7565 return -1;
7566
7567 return ossl_quic_get_stream_write_error_code(s, app_error_code);
7568#else
7569 return -1;
7570#endif
7571}
7572
7573int SSL_get_conn_close_info(SSL *s, SSL_CONN_CLOSE_INFO *info,
7574 size_t info_len)
7575{
7576#ifndef OPENSSL_NO_QUIC
7577 if (!IS_QUIC(s))
7578 return -1;
7579
7580 return ossl_quic_get_conn_close_info(s, info, info_len);
7581#else
7582 return -1;
7583#endif
7584}
7585
3c95ef22
TS
7586int SSL_add_expected_rpk(SSL *s, EVP_PKEY *rpk)
7587{
7588 unsigned char *data = NULL;
7589 SSL_DANE *dane = SSL_get0_dane(s);
7590 int ret;
7591
7592 if (dane == NULL || dane->dctx == NULL)
7593 return 0;
7594 if ((ret = i2d_PUBKEY(rpk, &data)) <= 0)
7595 return 0;
7596
7597 ret = SSL_dane_tlsa_add(s, DANETLS_USAGE_DANE_EE,
7598 DANETLS_SELECTOR_SPKI,
7599 DANETLS_MATCHING_FULL,
7600 data, (size_t)ret) > 0;
7601 OPENSSL_free(data);
7602 return ret;
7603}
7604
7605EVP_PKEY *SSL_get0_peer_rpk(const SSL *s)
7606{
7607 SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
7608
7609 if (sc == NULL || sc->session == NULL)
7610 return NULL;
7611 return sc->session->peer_rpk;
7612}
7613
7614int SSL_get_negotiated_client_cert_type(const SSL *s)
7615{
7616 SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
7617
7618 if (sc == NULL)
7619 return 0;
7620
7621 return sc->ext.client_cert_type;
7622}
7623
7624int SSL_get_negotiated_server_cert_type(const SSL *s)
7625{
7626 SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
7627
7628 if (sc == NULL)
7629 return 0;
7630
7631 return sc->ext.server_cert_type;
7632}
7633
7634static int validate_cert_type(const unsigned char *val, size_t len)
7635{
7636 size_t i;
7637 int saw_rpk = 0;
7638 int saw_x509 = 0;
7639
7640 if (val == NULL && len == 0)
7641 return 1;
7642
7643 if (val == NULL || len == 0)
7644 return 0;
7645
7646 for (i = 0; i < len; i++) {
7647 switch (val[i]) {
7648 case TLSEXT_cert_type_rpk:
7649 if (saw_rpk)
7650 return 0;
7651 saw_rpk = 1;
7652 break;
7653 case TLSEXT_cert_type_x509:
7654 if (saw_x509)
7655 return 0;
7656 saw_x509 = 1;
7657 break;
7658 case TLSEXT_cert_type_pgp:
7659 case TLSEXT_cert_type_1609dot2:
7660 default:
7661 return 0;
7662 }
7663 }
7664 return 1;
7665}
7666
7667static int set_cert_type(unsigned char **cert_type,
7668 size_t *cert_type_len,
7669 const unsigned char *val,
7670 size_t len)
7671{
7672 unsigned char *tmp = NULL;
7673
7674 if (!validate_cert_type(val, len))
7675 return 0;
7676
7677 if (val != NULL && (tmp = OPENSSL_memdup(val, len)) == NULL)
7678 return 0;
7679
7680 OPENSSL_free(*cert_type);
7681 *cert_type = tmp;
7682 *cert_type_len = len;
7683 return 1;
7684}
7685
7686int SSL_set1_client_cert_type(SSL *s, const unsigned char *val, size_t len)
7687{
7688 SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
7689
7690 return set_cert_type(&sc->client_cert_type, &sc->client_cert_type_len,
7691 val, len);
7692}
7693
7694int SSL_set1_server_cert_type(SSL *s, const unsigned char *val, size_t len)
7695{
7696 SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
7697
7698 return set_cert_type(&sc->server_cert_type, &sc->server_cert_type_len,
7699 val, len);
7700}
7701
7702int SSL_CTX_set1_client_cert_type(SSL_CTX *ctx, const unsigned char *val, size_t len)
7703{
7704 return set_cert_type(&ctx->client_cert_type, &ctx->client_cert_type_len,
7705 val, len);
7706}
7707
7708int SSL_CTX_set1_server_cert_type(SSL_CTX *ctx, const unsigned char *val, size_t len)
7709{
7710 return set_cert_type(&ctx->server_cert_type, &ctx->server_cert_type_len,
7711 val, len);
7712}
7713
7714int SSL_get0_client_cert_type(const SSL *s, unsigned char **t, size_t *len)
7715{
7716 const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(s);
7717
7718 if (t == NULL || len == NULL)
7719 return 0;
7720
7721 *t = sc->client_cert_type;
7722 *len = sc->client_cert_type_len;
7723 return 1;
7724}
7725
7726int SSL_get0_server_cert_type(const SSL *s, unsigned char **t, size_t *len)
7727{
7728 const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(s);
7729
7730 if (t == NULL || len == NULL)
7731 return 0;
7732
7733 *t = sc->server_cert_type;
7734 *len = sc->server_cert_type_len;
7735 return 1;
7736}
7737
7738int SSL_CTX_get0_client_cert_type(const SSL_CTX *ctx, unsigned char **t, size_t *len)
7739{
7740 if (t == NULL || len == NULL)
7741 return 0;
7742
7743 *t = ctx->client_cert_type;
7744 *len = ctx->client_cert_type_len;
7745 return 1;
7746}
7747
7748int SSL_CTX_get0_server_cert_type(const SSL_CTX *ctx, unsigned char **t, size_t *len)
7749{
7750 if (t == NULL || len == NULL)
7751 return 0;
7752
7753 *t = ctx->server_cert_type;
7754 *len = ctx->server_cert_type_len;
7755 return 1;
7756}