| 
									
										
										
										
											2016-05-18 02:18:30 +08:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2025-03-12 21:35:59 +08:00
										 |  |  |  * Copyright 1995-2025 The OpenSSL Project Authors. All Rights Reserved. | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2018-12-06 20:08:51 +08:00
										 |  |  |  * Licensed under the Apache License 2.0 (the "License").  You may not use | 
					
						
							| 
									
										
										
										
											2016-05-18 02:18:30 +08:00
										 |  |  |  * this file except in compliance with the License.  You can obtain a copy | 
					
						
							|  |  |  |  * in the file LICENSE in the source distribution or at | 
					
						
							|  |  |  |  * https://www.openssl.org/source/license.html
 | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <stdio.h>
 | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  | #include <stdlib.h>
 | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | #include <string.h>
 | 
					
						
							|  |  |  | #include <errno.h>
 | 
					
						
							| 
									
										
										
										
											1999-04-24 06:13:45 +08:00
										 |  |  | #include <openssl/crypto.h>
 | 
					
						
							| 
									
										
										
										
											2016-03-22 17:21:29 +08:00
										 |  |  | #include "internal/bio.h"
 | 
					
						
							| 
									
										
										
										
											1999-04-24 06:13:45 +08:00
										 |  |  | #include <openssl/err.h>
 | 
					
						
							| 
									
										
										
										
											2019-09-28 06:45:40 +08:00
										 |  |  | #include "ssl_local.h"
 | 
					
						
							| 
									
										
										
										
											2024-01-11 16:36:15 +08:00
										 |  |  | #include "internal/ssl_unwrap.h"
 | 
					
						
							|  |  |  | #include "internal/sockets.h"
 | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-21 21:35:26 +08:00
										 |  |  | static int ssl_write(BIO *h, const char *buf, size_t size, size_t *written); | 
					
						
							|  |  |  | static int ssl_read(BIO *b, char *buf, size_t size, size_t *readbytes); | 
					
						
							| 
									
										
										
										
											2000-05-16 06:54:43 +08:00
										 |  |  | static int ssl_puts(BIO *h, const char *str); | 
					
						
							|  |  |  | static long ssl_ctrl(BIO *h, int cmd, long arg1, void *arg2); | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | static int ssl_new(BIO *h); | 
					
						
							|  |  |  | static int ssl_free(BIO *data); | 
					
						
							| 
									
										
										
										
											2017-12-16 02:33:48 +08:00
										 |  |  | static long ssl_callback_ctrl(BIO *h, int cmd, BIO_info_cb *fp); | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  | typedef struct bio_ssl_st { | 
					
						
							|  |  |  |     SSL *ssl;                   /* The ssl handle :-) */ | 
					
						
							| 
									
										
										
										
											2023-07-24 23:13:15 +08:00
										 |  |  |     /*
 | 
					
						
							|  |  |  |      * Re-negotiate every time the total number of bytes is this size | 
					
						
							|  |  |  |      * or when timeout expires. | 
					
						
							|  |  |  |      * There is no proper support for TLS-1.3 or QUIC yet. | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  |     int num_renegotiates; | 
					
						
							|  |  |  |     unsigned long renegotiate_count; | 
					
						
							| 
									
										
										
										
											2016-10-19 21:09:02 +08:00
										 |  |  |     size_t byte_count; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  |     unsigned long renegotiate_timeout; | 
					
						
							|  |  |  |     unsigned long last_time; | 
					
						
							|  |  |  | } BIO_SSL; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-20 00:32:14 +08:00
										 |  |  | static const BIO_METHOD methods_sslp = { | 
					
						
							| 
									
										
										
										
											2017-12-08 15:20:10 +08:00
										 |  |  |     BIO_TYPE_SSL, | 
					
						
							|  |  |  |     "ssl", | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |     ssl_write, | 
					
						
							| 
									
										
										
										
											2017-12-18 05:04:48 +08:00
										 |  |  |     NULL,                       /* ssl_write_old, */ | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |     ssl_read, | 
					
						
							| 
									
										
										
										
											2017-12-18 05:04:48 +08:00
										 |  |  |     NULL,                       /* ssl_read_old,  */ | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |     ssl_puts, | 
					
						
							| 
									
										
										
										
											2017-12-18 05:04:48 +08:00
										 |  |  |     NULL,                       /* ssl_gets,      */ | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |     ssl_ctrl, | 
					
						
							|  |  |  |     ssl_new, | 
					
						
							|  |  |  |     ssl_free, | 
					
						
							| 
									
										
										
										
											2000-02-21 07:43:02 +08:00
										 |  |  |     ssl_callback_ctrl, | 
					
						
							| 
									
										
										
										
											2000-01-18 17:30:51 +08:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-20 00:32:14 +08:00
										 |  |  | const BIO_METHOD *BIO_f_ssl(void) | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2017-10-17 22:04:09 +08:00
										 |  |  |     return &methods_sslp; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-04-20 05:31:43 +08:00
										 |  |  | static int ssl_new(BIO *bi) | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2015-08-26 01:25:58 +08:00
										 |  |  |     BIO_SSL *bs = OPENSSL_zalloc(sizeof(*bs)); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-09-29 19:57:34 +08:00
										 |  |  |     if (bs == NULL) | 
					
						
							| 
									
										
										
										
											2017-10-17 22:04:09 +08:00
										 |  |  |         return 0; | 
					
						
							| 
									
										
										
										
											2016-03-22 17:21:29 +08:00
										 |  |  |     BIO_set_init(bi, 0); | 
					
						
							|  |  |  |     BIO_set_data(bi, bs); | 
					
						
							|  |  |  |     /* Clear all flags */ | 
					
						
							|  |  |  |     BIO_clear_flags(bi, ~0); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return 1; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-04-20 05:31:43 +08:00
										 |  |  | static int ssl_free(BIO *a) | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  |     BIO_SSL *bs; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |     if (a == NULL) | 
					
						
							| 
									
										
										
										
											2017-10-17 22:04:09 +08:00
										 |  |  |         return 0; | 
					
						
							| 
									
										
										
										
											2016-03-22 17:21:29 +08:00
										 |  |  |     bs = BIO_get_data(a); | 
					
						
							|  |  |  |     if (BIO_get_shutdown(a)) { | 
					
						
							| 
									
										
										
										
											2024-06-22 15:14:25 +08:00
										 |  |  |         if (bs->ssl != NULL && !SSL_in_init(bs->ssl)) | 
					
						
							| 
									
										
										
										
											2021-09-27 20:22:40 +08:00
										 |  |  |             SSL_shutdown(bs->ssl); | 
					
						
							| 
									
										
										
										
											2016-03-22 17:21:29 +08:00
										 |  |  |         if (BIO_get_init(a)) | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  |             SSL_free(bs->ssl); | 
					
						
							| 
									
										
										
										
											2021-09-27 20:22:40 +08:00
										 |  |  |         BIO_clear_flags(a, ~0); /* Clear all flags */ | 
					
						
							| 
									
										
										
										
											2016-03-22 17:21:29 +08:00
										 |  |  |         BIO_set_init(a, 0); | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2016-03-22 17:21:29 +08:00
										 |  |  |     OPENSSL_free(bs); | 
					
						
							|  |  |  |     return 1; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-21 21:35:26 +08:00
										 |  |  | static int ssl_read(BIO *b, char *buf, size_t size, size_t *readbytes) | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     int ret = 1; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  |     BIO_SSL *sb; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |     SSL *ssl; | 
					
						
							|  |  |  |     int retry_reason = 0; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  |     int r = 0; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-21 21:35:26 +08:00
										 |  |  |     if (buf == NULL) | 
					
						
							|  |  |  |         return 0; | 
					
						
							| 
									
										
										
										
											2016-03-22 17:21:29 +08:00
										 |  |  |     sb = BIO_get_data(b); | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  |     ssl = sb->ssl; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  |     BIO_clear_retry_flags(b); | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-20 03:15:35 +08:00
										 |  |  |     ret = ssl_read_internal(ssl, buf, size, readbytes); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |     switch (SSL_get_error(ssl, ret)) { | 
					
						
							|  |  |  |     case SSL_ERROR_NONE: | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  |         if (sb->renegotiate_count > 0) { | 
					
						
							| 
									
										
										
										
											2016-10-21 07:00:40 +08:00
										 |  |  |             sb->byte_count += *readbytes; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  |             if (sb->byte_count > sb->renegotiate_count) { | 
					
						
							|  |  |  |                 sb->byte_count = 0; | 
					
						
							|  |  |  |                 sb->num_renegotiates++; | 
					
						
							|  |  |  |                 SSL_renegotiate(ssl); | 
					
						
							|  |  |  |                 r = 1; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |             } | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  |         } | 
					
						
							|  |  |  |         if ((sb->renegotiate_timeout > 0) && (!r)) { | 
					
						
							|  |  |  |             unsigned long tm; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  |             tm = (unsigned long)time(NULL); | 
					
						
							|  |  |  |             if (tm > sb->last_time + sb->renegotiate_timeout) { | 
					
						
							|  |  |  |                 sb->last_time = tm; | 
					
						
							|  |  |  |                 sb->num_renegotiates++; | 
					
						
							|  |  |  |                 SSL_renegotiate(ssl); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |             } | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |         break; | 
					
						
							|  |  |  |     case SSL_ERROR_WANT_READ: | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  |         BIO_set_retry_read(b); | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |         break; | 
					
						
							|  |  |  |     case SSL_ERROR_WANT_WRITE: | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  |         BIO_set_retry_write(b); | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |         break; | 
					
						
							|  |  |  |     case SSL_ERROR_WANT_X509_LOOKUP: | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  |         BIO_set_retry_special(b); | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |         retry_reason = BIO_RR_SSL_X509_LOOKUP; | 
					
						
							|  |  |  |         break; | 
					
						
							| 
									
										
										
										
											2000-10-12 09:50:33 +08:00
										 |  |  |     case SSL_ERROR_WANT_ACCEPT: | 
					
						
							|  |  |  |         BIO_set_retry_special(b); | 
					
						
							|  |  |  |         retry_reason = BIO_RR_ACCEPT; | 
					
						
							|  |  |  |         break; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |     case SSL_ERROR_WANT_CONNECT: | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  |         BIO_set_retry_special(b); | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |         retry_reason = BIO_RR_CONNECT; | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     case SSL_ERROR_SYSCALL: | 
					
						
							|  |  |  |     case SSL_ERROR_SSL: | 
					
						
							|  |  |  |     case SSL_ERROR_ZERO_RETURN: | 
					
						
							|  |  |  |     default: | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-22 17:21:29 +08:00
										 |  |  |     BIO_set_retry_reason(b, retry_reason); | 
					
						
							| 
									
										
										
										
											2016-09-06 00:26:58 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-20 22:18:39 +08:00
										 |  |  |     return ret; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-21 21:35:26 +08:00
										 |  |  | static int ssl_write(BIO *b, const char *buf, size_t size, size_t *written) | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  |     int ret, r = 0; | 
					
						
							|  |  |  |     int retry_reason = 0; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |     SSL *ssl; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  |     BIO_SSL *bs; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-21 21:35:26 +08:00
										 |  |  |     if (buf == NULL) | 
					
						
							|  |  |  |         return 0; | 
					
						
							| 
									
										
										
										
											2016-03-22 17:21:29 +08:00
										 |  |  |     bs = BIO_get_data(b); | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  |     ssl = bs->ssl; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  |     BIO_clear_retry_flags(b); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-01-19 22:52:44 +08:00
										 |  |  |     ret = ssl_write_internal(ssl, buf, size, 0, written); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |     switch (SSL_get_error(ssl, ret)) { | 
					
						
							|  |  |  |     case SSL_ERROR_NONE: | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  |         if (bs->renegotiate_count > 0) { | 
					
						
							| 
									
										
										
										
											2016-10-19 21:09:02 +08:00
										 |  |  |             bs->byte_count += *written; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  |             if (bs->byte_count > bs->renegotiate_count) { | 
					
						
							|  |  |  |                 bs->byte_count = 0; | 
					
						
							|  |  |  |                 bs->num_renegotiates++; | 
					
						
							|  |  |  |                 SSL_renegotiate(ssl); | 
					
						
							|  |  |  |                 r = 1; | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  |         if ((bs->renegotiate_timeout > 0) && (!r)) { | 
					
						
							|  |  |  |             unsigned long tm; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  |             tm = (unsigned long)time(NULL); | 
					
						
							|  |  |  |             if (tm > bs->last_time + bs->renegotiate_timeout) { | 
					
						
							|  |  |  |                 bs->last_time = tm; | 
					
						
							|  |  |  |                 bs->num_renegotiates++; | 
					
						
							|  |  |  |                 SSL_renegotiate(ssl); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |             } | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |         break; | 
					
						
							|  |  |  |     case SSL_ERROR_WANT_WRITE: | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  |         BIO_set_retry_write(b); | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |         break; | 
					
						
							|  |  |  |     case SSL_ERROR_WANT_READ: | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  |         BIO_set_retry_read(b); | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |         break; | 
					
						
							|  |  |  |     case SSL_ERROR_WANT_X509_LOOKUP: | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  |         BIO_set_retry_special(b); | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |         retry_reason = BIO_RR_SSL_X509_LOOKUP; | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     case SSL_ERROR_WANT_CONNECT: | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  |         BIO_set_retry_special(b); | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |         retry_reason = BIO_RR_CONNECT; | 
					
						
							|  |  |  |     case SSL_ERROR_SYSCALL: | 
					
						
							|  |  |  |     case SSL_ERROR_SSL: | 
					
						
							|  |  |  |     default: | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-22 17:21:29 +08:00
										 |  |  |     BIO_set_retry_reason(b, retry_reason); | 
					
						
							| 
									
										
										
										
											2016-10-20 22:18:39 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-22 17:21:29 +08:00
										 |  |  |     return ret; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-05-16 06:54:43 +08:00
										 |  |  | static long ssl_ctrl(BIO *b, int cmd, long num, void *ptr) | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     SSL **sslp, *ssl; | 
					
						
							| 
									
										
										
										
											2016-03-22 17:21:29 +08:00
										 |  |  |     BIO_SSL *bs, *dbs; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |     BIO *dbio, *bio; | 
					
						
							|  |  |  |     long ret = 1; | 
					
						
							| 
									
										
										
										
											2016-03-22 17:21:29 +08:00
										 |  |  |     BIO *next; | 
					
						
							| 
									
										
										
										
											2022-06-20 23:11:28 +08:00
										 |  |  |     SSL_CONNECTION *sc = NULL; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-22 17:21:29 +08:00
										 |  |  |     bs = BIO_get_data(b); | 
					
						
							|  |  |  |     next = BIO_next(b); | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  |     ssl = bs->ssl; | 
					
						
							| 
									
										
										
										
											2023-07-24 23:13:15 +08:00
										 |  |  |     if (ssl == NULL && cmd != BIO_C_SET_SSL) | 
					
						
							| 
									
										
										
										
											2017-10-17 22:04:09 +08:00
										 |  |  |         return 0; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |     switch (cmd) { | 
					
						
							|  |  |  |     case BIO_CTRL_RESET: | 
					
						
							| 
									
										
										
										
											2023-07-24 23:13:15 +08:00
										 |  |  |         /* TODO(QUIC FUTURE): Add support when SSL_clear() is supported */ | 
					
						
							|  |  |  |         if ((sc = SSL_CONNECTION_FROM_SSL_ONLY(ssl)) == NULL) | 
					
						
							|  |  |  |             return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |         SSL_shutdown(ssl); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-06-20 23:11:28 +08:00
										 |  |  |         if (sc->handshake_func == ssl->method->ssl_connect) | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |             SSL_set_connect_state(ssl); | 
					
						
							| 
									
										
										
										
											2022-06-20 23:11:28 +08:00
										 |  |  |         else if (sc->handshake_func == ssl->method->ssl_accept) | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |             SSL_set_accept_state(ssl); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-04-16 13:50:03 +08:00
										 |  |  |         if (!SSL_clear(ssl)) { | 
					
						
							| 
									
										
										
										
											2015-03-06 22:37:17 +08:00
										 |  |  |             ret = 0; | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-22 17:21:29 +08:00
										 |  |  |         if (next != NULL) | 
					
						
							|  |  |  |             ret = BIO_ctrl(next, cmd, num, ptr); | 
					
						
							| 
									
										
										
										
											2022-06-20 23:11:28 +08:00
										 |  |  |         else if (sc->rbio != NULL) | 
					
						
							|  |  |  |             ret = BIO_ctrl(sc->rbio, cmd, num, ptr); | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |         else | 
					
						
							|  |  |  |             ret = 1; | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     case BIO_CTRL_INFO: | 
					
						
							|  |  |  |         ret = 0; | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     case BIO_C_SSL_MODE: | 
					
						
							|  |  |  |         if (num)                /* client mode */ | 
					
						
							|  |  |  |             SSL_set_connect_state(ssl); | 
					
						
							|  |  |  |         else | 
					
						
							|  |  |  |             SSL_set_accept_state(ssl); | 
					
						
							|  |  |  |         break; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  |     case BIO_C_SET_SSL_RENEGOTIATE_TIMEOUT: | 
					
						
							|  |  |  |         ret = bs->renegotiate_timeout; | 
					
						
							|  |  |  |         if (num < 60) | 
					
						
							|  |  |  |             num = 5; | 
					
						
							|  |  |  |         bs->renegotiate_timeout = (unsigned long)num; | 
					
						
							|  |  |  |         bs->last_time = (unsigned long)time(NULL); | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     case BIO_C_SET_SSL_RENEGOTIATE_BYTES: | 
					
						
							|  |  |  |         ret = bs->renegotiate_count; | 
					
						
							|  |  |  |         if ((long)num >= 512) | 
					
						
							|  |  |  |             bs->renegotiate_count = (unsigned long)num; | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     case BIO_C_GET_SSL_NUM_RENEGOTIATES: | 
					
						
							|  |  |  |         ret = bs->num_renegotiates; | 
					
						
							|  |  |  |         break; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |     case BIO_C_SET_SSL: | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  |         if (ssl != NULL) { | 
					
						
							|  |  |  |             ssl_free(b); | 
					
						
							| 
									
										
										
										
											2011-05-25 23:16:10 +08:00
										 |  |  |             if (!ssl_new(b)) | 
					
						
							|  |  |  |                 return 0; | 
					
						
							| 
									
										
										
										
											2020-05-06 23:24:13 +08:00
										 |  |  |             bs = BIO_get_data(b); | 
					
						
							| 
									
										
										
										
											2011-05-25 23:16:10 +08:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2016-03-22 17:21:29 +08:00
										 |  |  |         BIO_set_shutdown(b, num); | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |         ssl = (SSL *)ptr; | 
					
						
							| 
									
										
										
										
											2016-03-22 17:21:29 +08:00
										 |  |  |         bs->ssl = ssl; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |         bio = SSL_get_rbio(ssl); | 
					
						
							|  |  |  |         if (bio != NULL) { | 
					
						
							| 
									
										
										
										
											2024-12-28 17:13:48 +08:00
										 |  |  |             if (!BIO_up_ref(bio)) { | 
					
						
							|  |  |  |                 ret = 0; | 
					
						
							|  |  |  |                 break; | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2016-03-22 17:21:29 +08:00
										 |  |  |             if (next != NULL) | 
					
						
							|  |  |  |                 BIO_push(bio, next); | 
					
						
							|  |  |  |             BIO_set_next(b, bio); | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2016-03-22 17:21:29 +08:00
										 |  |  |         BIO_set_init(b, 1); | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |         break; | 
					
						
							|  |  |  |     case BIO_C_GET_SSL: | 
					
						
							|  |  |  |         if (ptr != NULL) { | 
					
						
							|  |  |  |             sslp = (SSL **)ptr; | 
					
						
							|  |  |  |             *sslp = ssl; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  |         } else | 
					
						
							|  |  |  |             ret = 0; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |         break; | 
					
						
							|  |  |  |     case BIO_CTRL_GET_CLOSE: | 
					
						
							| 
									
										
										
										
											2016-03-22 17:21:29 +08:00
										 |  |  |         ret = BIO_get_shutdown(b); | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |         break; | 
					
						
							|  |  |  |     case BIO_CTRL_SET_CLOSE: | 
					
						
							| 
									
										
										
										
											2016-03-22 17:21:29 +08:00
										 |  |  |         BIO_set_shutdown(b, (int)num); | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |         break; | 
					
						
							|  |  |  |     case BIO_CTRL_WPENDING: | 
					
						
							| 
									
										
										
										
											2023-07-24 23:13:15 +08:00
										 |  |  |         ret = BIO_ctrl(SSL_get_wbio(ssl), cmd, num, ptr); | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |         break; | 
					
						
							|  |  |  |     case BIO_CTRL_PENDING: | 
					
						
							|  |  |  |         ret = SSL_pending(ssl); | 
					
						
							|  |  |  |         if (ret == 0) | 
					
						
							| 
									
										
										
										
											2023-07-24 23:13:15 +08:00
										 |  |  |             ret = BIO_pending(SSL_get_rbio(ssl)); | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |         break; | 
					
						
							|  |  |  |     case BIO_CTRL_FLUSH: | 
					
						
							|  |  |  |         BIO_clear_retry_flags(b); | 
					
						
							| 
									
										
										
										
											2023-07-24 23:13:15 +08:00
										 |  |  |         ret = BIO_ctrl(SSL_get_wbio(ssl), cmd, num, ptr); | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |         BIO_copy_next_retry(b); | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     case BIO_CTRL_PUSH: | 
					
						
							| 
									
										
										
										
											2023-07-24 23:13:15 +08:00
										 |  |  |         if ((next != NULL) && (next != SSL_get_rbio(ssl))) { | 
					
						
							| 
									
										
										
										
											2016-07-21 17:48:12 +08:00
										 |  |  |             /*
 | 
					
						
							|  |  |  |              * We are going to pass ownership of next to the SSL object...but | 
					
						
							|  |  |  |              * we don't own a reference to pass yet - so up ref | 
					
						
							|  |  |  |              */ | 
					
						
							| 
									
										
										
										
											2024-12-28 17:13:48 +08:00
										 |  |  |             if (!BIO_up_ref(next)) | 
					
						
							|  |  |  |                 ret = 0; | 
					
						
							|  |  |  |             else | 
					
						
							|  |  |  |                 SSL_set_bio(ssl, next, next); | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |         } | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     case BIO_CTRL_POP: | 
					
						
							| 
									
										
										
										
											2009-06-25 19:29:30 +08:00
										 |  |  |         /* Only detach if we are the BIO explicitly being popped */ | 
					
						
							|  |  |  |         if (b == ptr) { | 
					
						
							| 
									
										
										
										
											2016-07-21 17:55:31 +08:00
										 |  |  |             /* This will clear the reference we obtained during push */ | 
					
						
							|  |  |  |             SSL_set_bio(ssl, NULL, NULL); | 
					
						
							| 
									
										
										
										
											2003-01-31 05:49:12 +08:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |         break; | 
					
						
							|  |  |  |     case BIO_C_DO_STATE_MACHINE: | 
					
						
							|  |  |  |         BIO_clear_retry_flags(b); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-22 17:21:29 +08:00
										 |  |  |         BIO_set_retry_reason(b, 0); | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |         ret = (int)SSL_do_handshake(ssl); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |         switch (SSL_get_error(ssl, (int)ret)) { | 
					
						
							|  |  |  |         case SSL_ERROR_WANT_READ: | 
					
						
							|  |  |  |             BIO_set_flags(b, BIO_FLAGS_READ | BIO_FLAGS_SHOULD_RETRY); | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         case SSL_ERROR_WANT_WRITE: | 
					
						
							|  |  |  |             BIO_set_flags(b, BIO_FLAGS_WRITE | BIO_FLAGS_SHOULD_RETRY); | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         case SSL_ERROR_WANT_CONNECT: | 
					
						
							|  |  |  |             BIO_set_flags(b, BIO_FLAGS_IO_SPECIAL | BIO_FLAGS_SHOULD_RETRY); | 
					
						
							| 
									
										
										
										
											2016-03-22 17:21:29 +08:00
										 |  |  |             BIO_set_retry_reason(b, BIO_get_retry_reason(next)); | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |             break; | 
					
						
							| 
									
										
										
										
											2015-09-14 02:04:58 +08:00
										 |  |  |         case SSL_ERROR_WANT_X509_LOOKUP: | 
					
						
							|  |  |  |             BIO_set_retry_special(b); | 
					
						
							| 
									
										
										
										
											2016-03-22 17:21:29 +08:00
										 |  |  |             BIO_set_retry_reason(b, BIO_RR_SSL_X509_LOOKUP); | 
					
						
							| 
									
										
										
										
											2015-09-14 02:04:58 +08:00
										 |  |  |             break; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |         default: | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     case BIO_CTRL_DUP: | 
					
						
							|  |  |  |         dbio = (BIO *)ptr; | 
					
						
							| 
									
										
										
										
											2016-03-22 17:21:29 +08:00
										 |  |  |         dbs = BIO_get_data(dbio); | 
					
						
							|  |  |  |         SSL_free(dbs->ssl); | 
					
						
							|  |  |  |         dbs->ssl = SSL_dup(ssl); | 
					
						
							| 
									
										
										
										
											2016-04-27 00:52:21 +08:00
										 |  |  |         dbs->num_renegotiates = bs->num_renegotiates; | 
					
						
							|  |  |  |         dbs->renegotiate_count = bs->renegotiate_count; | 
					
						
							|  |  |  |         dbs->byte_count = bs->byte_count; | 
					
						
							|  |  |  |         dbs->renegotiate_timeout = bs->renegotiate_timeout; | 
					
						
							|  |  |  |         dbs->last_time = bs->last_time; | 
					
						
							| 
									
										
										
										
											2016-03-22 17:21:29 +08:00
										 |  |  |         ret = (dbs->ssl != NULL); | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  |         break; | 
					
						
							|  |  |  |     case BIO_C_GET_FD: | 
					
						
							| 
									
										
										
										
											2023-07-24 23:13:15 +08:00
										 |  |  |         ret = BIO_ctrl(SSL_get_rbio(ssl), cmd, num, ptr); | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  |         break; | 
					
						
							|  |  |  |     case BIO_CTRL_SET_CALLBACK: | 
					
						
							| 
									
										
										
										
											2017-02-28 22:04:29 +08:00
										 |  |  |         ret = 0; /* use callback ctrl */ | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  |         break; | 
					
						
							| 
									
										
										
										
											2022-11-17 23:17:39 +08:00
										 |  |  |     case BIO_CTRL_GET_RPOLL_DESCRIPTOR: | 
					
						
							|  |  |  |         if (!SSL_get_rpoll_descriptor(ssl, (BIO_POLL_DESCRIPTOR *)ptr)) | 
					
						
							|  |  |  |             ret = 0; | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     case BIO_CTRL_GET_WPOLL_DESCRIPTOR: | 
					
						
							|  |  |  |         if (!SSL_get_wpoll_descriptor(ssl, (BIO_POLL_DESCRIPTOR *)ptr)) | 
					
						
							|  |  |  |             ret = 0; | 
					
						
							|  |  |  |         break; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |     default: | 
					
						
							| 
									
										
										
										
											2023-07-24 23:13:15 +08:00
										 |  |  |         ret = BIO_ctrl(SSL_get_rbio(ssl), cmd, num, ptr); | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |         break; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2017-10-17 22:04:09 +08:00
										 |  |  |     return ret; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-16 02:33:48 +08:00
										 |  |  | static long ssl_callback_ctrl(BIO *b, int cmd, BIO_info_cb *fp) | 
					
						
							| 
									
										
										
										
											2000-02-21 07:43:02 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     SSL *ssl; | 
					
						
							|  |  |  |     BIO_SSL *bs; | 
					
						
							|  |  |  |     long ret = 1; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-22 17:21:29 +08:00
										 |  |  |     bs = BIO_get_data(b); | 
					
						
							| 
									
										
										
										
											2000-02-21 07:43:02 +08:00
										 |  |  |     ssl = bs->ssl; | 
					
						
							|  |  |  |     switch (cmd) { | 
					
						
							|  |  |  |     case BIO_CTRL_SET_CALLBACK: | 
					
						
							| 
									
										
										
										
											2022-06-20 23:11:28 +08:00
										 |  |  |         ret = BIO_callback_ctrl(SSL_get_rbio(ssl), cmd, fp); | 
					
						
							| 
									
										
										
										
											2000-02-21 07:43:02 +08:00
										 |  |  |         break; | 
					
						
							|  |  |  |     default: | 
					
						
							| 
									
										
										
										
											2017-12-16 02:33:48 +08:00
										 |  |  |         ret = 0; | 
					
						
							| 
									
										
										
										
											2000-02-21 07:43:02 +08:00
										 |  |  |         break; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2017-10-17 22:04:09 +08:00
										 |  |  |     return ret; | 
					
						
							| 
									
										
										
										
											2000-02-21 07:43:02 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-05-16 06:54:43 +08:00
										 |  |  | static int ssl_puts(BIO *bp, const char *str) | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2025-06-17 17:13:35 +08:00
										 |  |  |     int ret; | 
					
						
							|  |  |  |     size_t n = strlen(str); | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-06-17 17:13:35 +08:00
										 |  |  |     if (n > INT_MAX) | 
					
						
							|  |  |  |         return -1; | 
					
						
							|  |  |  |     ret = BIO_write(bp, str, (int)n); | 
					
						
							| 
									
										
										
										
											2017-10-17 22:04:09 +08:00
										 |  |  |     return ret; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-04-20 05:31:43 +08:00
										 |  |  | BIO *BIO_new_buffer_ssl_connect(SSL_CTX *ctx) | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2003-02-14 09:02:58 +08:00
										 |  |  | #ifndef OPENSSL_NO_SOCK
 | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  |     BIO *ret = NULL, *buf = NULL, *ssl = NULL; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-08-10 00:46:32 +08:00
										 |  |  | # ifndef OPENSSL_NO_QUIC
 | 
					
						
							|  |  |  |     if (ctx != NULL && IS_QUIC_CTX(ctx)) | 
					
						
							|  |  |  |         /* Never use buffering for QUIC. */ | 
					
						
							|  |  |  |         return BIO_new_ssl_connect(ctx); | 
					
						
							|  |  |  | # endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  |     if ((buf = BIO_new(BIO_f_buffer())) == NULL) | 
					
						
							| 
									
										
										
										
											2017-10-17 22:04:09 +08:00
										 |  |  |         return NULL; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  |     if ((ssl = BIO_new_ssl_connect(ctx)) == NULL) | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  |     if ((ret = BIO_push(buf, ssl)) == NULL) | 
					
						
							|  |  |  |         goto err; | 
					
						
							| 
									
										
										
										
											2017-10-17 22:04:09 +08:00
										 |  |  |     return ret; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  |  err: | 
					
						
							| 
									
										
										
										
											2015-03-25 23:31:18 +08:00
										 |  |  |     BIO_free(buf); | 
					
						
							|  |  |  |     BIO_free(ssl); | 
					
						
							| 
									
										
										
										
											2003-02-14 09:02:58 +08:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2017-10-17 22:04:09 +08:00
										 |  |  |     return NULL; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-04-20 05:31:43 +08:00
										 |  |  | BIO *BIO_new_ssl_connect(SSL_CTX *ctx) | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2012-04-17 01:42:36 +08:00
										 |  |  | #ifndef OPENSSL_NO_SOCK
 | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  |     BIO *ret = NULL, *con = NULL, *ssl = NULL; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  |     if ((con = BIO_new(BIO_s_connect())) == NULL) | 
					
						
							| 
									
										
										
										
											2017-10-17 22:04:09 +08:00
										 |  |  |         return NULL; | 
					
						
							| 
									
										
										
										
											2023-08-10 00:46:32 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | # ifndef OPENSSL_NO_QUIC
 | 
					
						
							|  |  |  |     if (ctx != NULL && IS_QUIC_CTX(ctx)) | 
					
						
							|  |  |  |         if (!BIO_set_sock_type(con, SOCK_DGRAM)) | 
					
						
							|  |  |  |             goto err; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  |     if ((ssl = BIO_new_ssl(ctx, 1)) == NULL) | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  |     if ((ret = BIO_push(ssl, con)) == NULL) | 
					
						
							|  |  |  |         goto err; | 
					
						
							| 
									
										
										
										
											2017-10-17 22:04:09 +08:00
										 |  |  |     return ret; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  |  err: | 
					
						
							| 
									
										
										
										
											2021-03-29 12:24:08 +08:00
										 |  |  |     BIO_free(ssl); | 
					
						
							| 
									
										
										
										
											2015-03-25 23:31:18 +08:00
										 |  |  |     BIO_free(con); | 
					
						
							| 
									
										
										
										
											2012-04-17 01:42:36 +08:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2017-10-17 22:04:09 +08:00
										 |  |  |     return NULL; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-04-20 05:31:43 +08:00
										 |  |  | BIO *BIO_new_ssl(SSL_CTX *ctx, int client) | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     BIO *ret; | 
					
						
							|  |  |  |     SSL *ssl; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |     if ((ret = BIO_new(BIO_f_ssl())) == NULL) | 
					
						
							| 
									
										
										
										
											2017-10-17 22:04:09 +08:00
										 |  |  |         return NULL; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |     if ((ssl = SSL_new(ctx)) == NULL) { | 
					
						
							|  |  |  |         BIO_free(ret); | 
					
						
							| 
									
										
										
										
											2017-10-17 22:04:09 +08:00
										 |  |  |         return NULL; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |     } | 
					
						
							|  |  |  |     if (client) | 
					
						
							|  |  |  |         SSL_set_connect_state(ssl); | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  |         SSL_set_accept_state(ssl); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |     BIO_set_ssl(ret, ssl, BIO_CLOSE); | 
					
						
							| 
									
										
										
										
											2017-10-17 22:04:09 +08:00
										 |  |  |     return ret; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-04-20 05:31:43 +08:00
										 |  |  | int BIO_ssl_copy_session_id(BIO *t, BIO *f) | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2016-03-22 17:21:29 +08:00
										 |  |  |     BIO_SSL *tdata, *fdata; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |     t = BIO_find_type(t, BIO_TYPE_SSL); | 
					
						
							|  |  |  |     f = BIO_find_type(f, BIO_TYPE_SSL); | 
					
						
							|  |  |  |     if ((t == NULL) || (f == NULL)) | 
					
						
							| 
									
										
										
										
											2016-03-22 17:21:29 +08:00
										 |  |  |         return 0; | 
					
						
							|  |  |  |     tdata = BIO_get_data(t); | 
					
						
							|  |  |  |     fdata = BIO_get_data(f); | 
					
						
							|  |  |  |     if ((tdata->ssl == NULL) || (fdata->ssl == NULL)) | 
					
						
							| 
									
										
										
										
											2017-10-17 22:04:09 +08:00
										 |  |  |         return 0; | 
					
						
							| 
									
										
										
										
											2016-03-22 17:21:29 +08:00
										 |  |  |     if (!SSL_copy_session_id(tdata->ssl, (fdata->ssl))) | 
					
						
							| 
									
										
										
										
											2015-03-24 23:10:15 +08:00
										 |  |  |         return 0; | 
					
						
							| 
									
										
										
										
											2017-10-09 19:05:58 +08:00
										 |  |  |     return 1; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-04-20 05:31:43 +08:00
										 |  |  | void BIO_ssl_shutdown(BIO *b) | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2017-02-17 00:13:47 +08:00
										 |  |  |     BIO_SSL *bdata; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     for (; b != NULL; b = BIO_next(b)) { | 
					
						
							|  |  |  |         if (BIO_method_type(b) != BIO_TYPE_SSL) | 
					
						
							|  |  |  |             continue; | 
					
						
							|  |  |  |         bdata = BIO_get_data(b); | 
					
						
							|  |  |  |         if (bdata != NULL && bdata->ssl != NULL) | 
					
						
							|  |  |  |             SSL_shutdown(bdata->ssl); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | } |