| 
									
										
										
										
											2016-05-18 02:52:22 +08:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2023-09-07 16:59:15 +08:00
										 |  |  |  * Copyright 1995-2023 The OpenSSL Project Authors. All Rights Reserved. | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2018-12-06 20:20:10 +08:00
										 |  |  |  * Licensed under the Apache License 2.0 (the "License").  You may not use | 
					
						
							| 
									
										
										
										
											2016-05-18 02:52:22 +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
										 |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-25 00:15:57 +08:00
										 |  |  | #define OPENSSL_SUPPRESS_DEPRECATED
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | #include <stdio.h>
 | 
					
						
							|  |  |  | #include <errno.h>
 | 
					
						
							| 
									
										
										
										
											1999-04-24 06:13:45 +08:00
										 |  |  | #include <openssl/crypto.h>
 | 
					
						
							| 
									
										
										
										
											2022-09-20 22:48:59 +08:00
										 |  |  | #include "internal/numbers.h"
 | 
					
						
							| 
									
										
										
										
											2019-09-28 06:45:40 +08:00
										 |  |  | #include "bio_local.h"
 | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-20 20:48:31 +08:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Helper macro for the callback to determine whether an operator expects a | 
					
						
							|  |  |  |  * len parameter or not | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2020-12-12 21:07:41 +08:00
										 |  |  | #define HAS_LEN_OPER(o) ((o) == BIO_CB_READ || (o) == BIO_CB_WRITE \
 | 
					
						
							|  |  |  |                          || (o) == BIO_CB_GETS) | 
					
						
							| 
									
										
										
										
											2016-10-20 20:48:31 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-25 00:15:57 +08:00
										 |  |  | #ifndef OPENSSL_NO_DEPRECATED_3_0
 | 
					
						
							|  |  |  | # define HAS_CALLBACK(b) ((b)->callback != NULL || (b)->callback_ex != NULL)
 | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  | # define HAS_CALLBACK(b) ((b)->callback_ex != NULL)
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2016-10-20 20:48:31 +08:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Helper function to work out whether to call the new style callback or the old | 
					
						
							|  |  |  |  * one, and translate between the two. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This has a long return type for consistency with the old callback. Similarly | 
					
						
							|  |  |  |  * for the "long" used for "inret" | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | static long bio_call_callback(BIO *b, int oper, const char *argp, size_t len, | 
					
						
							| 
									
										
										
										
											2020-12-12 21:07:41 +08:00
										 |  |  |                               int argi, long argl, long inret, | 
					
						
							|  |  |  |                               size_t *processed) | 
					
						
							| 
									
										
										
										
											2016-10-20 20:48:31 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2021-05-25 00:15:57 +08:00
										 |  |  |     long ret = inret; | 
					
						
							|  |  |  | #ifndef OPENSSL_NO_DEPRECATED_3_0
 | 
					
						
							| 
									
										
										
										
											2016-10-20 20:48:31 +08:00
										 |  |  |     int bareoper; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-19 21:20:53 +08:00
										 |  |  |     if (b->callback_ex != NULL) | 
					
						
							| 
									
										
										
										
											2021-05-25 00:15:57 +08:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2016-10-20 20:48:31 +08:00
										 |  |  |         return b->callback_ex(b, oper, argp, len, argi, argl, inret, processed); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-25 00:15:57 +08:00
										 |  |  | #ifndef OPENSSL_NO_DEPRECATED_3_0
 | 
					
						
							| 
									
										
										
										
											2016-10-20 20:48:31 +08:00
										 |  |  |     /* Strip off any BIO_CB_RETURN flag */ | 
					
						
							|  |  |  |     bareoper = oper & ~BIO_CB_RETURN; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /*
 | 
					
						
							|  |  |  |      * We have an old style callback, so we will have to do nasty casts and | 
					
						
							|  |  |  |      * check for overflows. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     if (HAS_LEN_OPER(bareoper)) { | 
					
						
							|  |  |  |         /* In this case |len| is set, and should be used instead of |argi| */ | 
					
						
							|  |  |  |         if (len > INT_MAX) | 
					
						
							|  |  |  |             return -1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         argi = (int)len; | 
					
						
							| 
									
										
										
										
											2018-03-19 21:20:53 +08:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2016-10-20 20:48:31 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-03 22:27:31 +08:00
										 |  |  |     if (inret > 0 && (oper & BIO_CB_RETURN) && bareoper != BIO_CB_CTRL) { | 
					
						
							| 
									
										
										
										
											2018-03-19 21:20:53 +08:00
										 |  |  |         if (*processed > INT_MAX) | 
					
						
							|  |  |  |             return -1; | 
					
						
							|  |  |  |         inret = *processed; | 
					
						
							| 
									
										
										
										
											2016-10-20 20:48:31 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ret = b->callback(b, oper, argp, argi, argl, inret); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-03 22:27:31 +08:00
										 |  |  |     if (ret > 0 && (oper & BIO_CB_RETURN) && bareoper != BIO_CB_CTRL) { | 
					
						
							| 
									
										
										
										
											2016-10-20 20:48:31 +08:00
										 |  |  |         *processed = (size_t)ret; | 
					
						
							|  |  |  |         ret = 1; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-05-25 00:15:57 +08:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2016-10-20 20:48:31 +08:00
										 |  |  |     return ret; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-28 02:56:39 +08:00
										 |  |  | BIO *BIO_new_ex(OSSL_LIB_CTX *libctx, const BIO_METHOD *method) | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2016-06-11 05:28:44 +08:00
										 |  |  |     BIO *bio = OPENSSL_zalloc(sizeof(*bio)); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-09-29 19:57:34 +08:00
										 |  |  |     if (bio == NULL) | 
					
						
							| 
									
										
										
										
											2017-10-17 22:04:09 +08:00
										 |  |  |         return NULL; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-28 02:56:39 +08:00
										 |  |  |     bio->libctx = libctx; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |     bio->method = method; | 
					
						
							|  |  |  |     bio->shutdown = 1; | 
					
						
							| 
									
										
										
										
											2016-06-11 05:28:44 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-22 07:26:38 +08:00
										 |  |  |     if (!CRYPTO_NEW_REF(&bio->references, 1)) | 
					
						
							| 
									
										
										
										
											2016-06-11 05:28:44 +08:00
										 |  |  |         goto err; | 
					
						
							| 
									
										
										
										
											2016-02-26 19:51:31 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-22 07:26:38 +08:00
										 |  |  |     if (!CRYPTO_new_ex_data(CRYPTO_EX_INDEX_BIO, bio, &bio->ex_data)) | 
					
						
							| 
									
										
										
										
											2016-06-11 05:28:44 +08:00
										 |  |  |         goto err; | 
					
						
							| 
									
										
										
										
											2016-02-26 19:51:31 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-11 05:28:44 +08:00
										 |  |  |     if (method->create != NULL && !method->create(bio)) { | 
					
						
							| 
									
										
										
										
											2020-11-04 19:23:19 +08:00
										 |  |  |         ERR_raise(ERR_LIB_BIO, ERR_R_INIT_FAIL); | 
					
						
							| 
									
										
										
										
											2016-06-11 05:28:44 +08:00
										 |  |  |         CRYPTO_free_ex_data(CRYPTO_EX_INDEX_BIO, bio, &bio->ex_data); | 
					
						
							|  |  |  |         goto err; | 
					
						
							| 
									
										
										
										
											2016-02-26 19:51:31 +08:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-01-31 18:17:32 +08:00
										 |  |  |     if (method->create == NULL) | 
					
						
							|  |  |  |         bio->init = 1; | 
					
						
							| 
									
										
										
										
											2016-02-26 19:51:31 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-11 05:28:44 +08:00
										 |  |  |     return bio; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | err: | 
					
						
							| 
									
										
										
										
											2023-06-22 07:26:38 +08:00
										 |  |  |     CRYPTO_FREE_REF(&bio->references); | 
					
						
							| 
									
										
										
										
											2016-06-11 05:28:44 +08:00
										 |  |  |     OPENSSL_free(bio); | 
					
						
							|  |  |  |     return NULL; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-28 02:56:39 +08:00
										 |  |  | BIO *BIO_new(const BIO_METHOD *method) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return BIO_new_ex(NULL, method); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-04-20 05:31:43 +08:00
										 |  |  | int BIO_free(BIO *a) | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2016-10-20 20:48:31 +08:00
										 |  |  |     int ret; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (a == NULL) | 
					
						
							| 
									
										
										
										
											2016-02-26 19:51:31 +08:00
										 |  |  |         return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-22 07:26:38 +08:00
										 |  |  |     if (CRYPTO_DOWN_REF(&a->references, &ret) <= 0) | 
					
						
							| 
									
										
										
										
											2016-02-26 19:51:31 +08:00
										 |  |  |         return 0; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-31 01:04:25 +08:00
										 |  |  |     REF_PRINT_COUNT("BIO", a); | 
					
						
							| 
									
										
										
										
											2016-10-20 20:48:31 +08:00
										 |  |  |     if (ret > 0) | 
					
						
							| 
									
										
										
										
											2016-02-26 19:51:31 +08:00
										 |  |  |         return 1; | 
					
						
							| 
									
										
										
										
											2016-10-20 20:48:31 +08:00
										 |  |  |     REF_ASSERT_ISNT(ret < 0); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-25 00:15:57 +08:00
										 |  |  |     if (HAS_CALLBACK(a)) { | 
					
						
							| 
									
										
										
										
											2016-10-20 20:48:31 +08:00
										 |  |  |         ret = (int)bio_call_callback(a, BIO_CB_FREE, NULL, 0, 0, 0L, 1L, NULL); | 
					
						
							|  |  |  |         if (ret <= 0) | 
					
						
							| 
									
										
										
										
											2021-09-26 15:28:19 +08:00
										 |  |  |             return 0; | 
					
						
							| 
									
										
										
										
											2016-10-20 20:48:31 +08:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-29 02:13:44 +08:00
										 |  |  |     if ((a->method != NULL) && (a->method->destroy != NULL)) | 
					
						
							|  |  |  |         a->method->destroy(a); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-09-02 04:02:13 +08:00
										 |  |  |     CRYPTO_free_ex_data(CRYPTO_EX_INDEX_BIO, a, &a->ex_data); | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-22 07:26:38 +08:00
										 |  |  |     CRYPTO_FREE_REF(&a->references); | 
					
						
							| 
									
										
										
										
											2016-02-26 19:51:31 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-06-02 06:19:21 +08:00
										 |  |  |     OPENSSL_free(a); | 
					
						
							| 
									
										
										
										
											2016-02-26 19:51:31 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     return 1; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-22 17:21:29 +08:00
										 |  |  | void BIO_set_data(BIO *a, void *ptr) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     a->ptr = ptr; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void *BIO_get_data(BIO *a) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return a->ptr; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void BIO_set_init(BIO *a, int init) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     a->init = init; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int BIO_get_init(BIO *a) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return a->init; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void BIO_set_shutdown(BIO *a, int shut) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     a->shutdown = shut; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int BIO_get_shutdown(BIO *a) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return a->shutdown; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-05-17 07:01:19 +08:00
										 |  |  | void BIO_vfree(BIO *a) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     BIO_free(a); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-26 19:51:31 +08:00
										 |  |  | int BIO_up_ref(BIO *a) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     int i; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-22 07:26:38 +08:00
										 |  |  |     if (CRYPTO_UP_REF(&a->references, &i) <= 0) | 
					
						
							| 
									
										
										
										
											2016-02-26 19:51:31 +08:00
										 |  |  |         return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     REF_PRINT_COUNT("BIO", a); | 
					
						
							|  |  |  |     REF_ASSERT_ISNT(i < 2); | 
					
						
							| 
									
										
										
										
											2020-12-12 21:07:41 +08:00
										 |  |  |     return i > 1; | 
					
						
							| 
									
										
										
										
											2016-02-26 19:51:31 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-11-30 04:54:57 +08:00
										 |  |  | void BIO_clear_flags(BIO *b, int flags) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     b->flags &= ~flags; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-11-30 04:54:57 +08:00
										 |  |  | int BIO_test_flags(const BIO *b, int flags) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return (b->flags & flags); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-11-30 04:54:57 +08:00
										 |  |  | void BIO_set_flags(BIO *b, int flags) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     b->flags |= flags; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-25 00:15:57 +08:00
										 |  |  | #ifndef OPENSSL_NO_DEPRECATED_3_0
 | 
					
						
							| 
									
										
										
										
											2016-09-06 00:26:58 +08:00
										 |  |  | BIO_callback_fn BIO_get_callback(const BIO *b) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2006-11-30 04:54:57 +08:00
										 |  |  |     return b->callback; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-06 00:26:58 +08:00
										 |  |  | void BIO_set_callback(BIO *b, BIO_callback_fn cb) | 
					
						
							| 
									
										
										
										
											2006-11-30 04:54:57 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     b->callback = cb; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2021-05-25 00:15:57 +08:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2006-11-30 04:54:57 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-06 00:26:58 +08:00
										 |  |  | BIO_callback_fn_ex BIO_get_callback_ex(const BIO *b) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return b->callback_ex; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void BIO_set_callback_ex(BIO *b, BIO_callback_fn_ex cb) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     b->callback_ex = cb; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-11-30 04:54:57 +08:00
										 |  |  | void BIO_set_callback_arg(BIO *b, char *arg) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     b->cb_arg = arg; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | char *BIO_get_callback_arg(const BIO *b) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return b->cb_arg; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | const char *BIO_method_name(const BIO *b) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return b->method->name; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int BIO_method_type(const BIO *b) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return b->method->type; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-21 20:07:06 +08:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * This is essentially the same as BIO_read_ex() except that it allows | 
					
						
							| 
									
										
										
										
											2016-10-25 20:19:59 +08:00
										 |  |  |  * 0 or a negative value to indicate failure (retryable or not) in the return. | 
					
						
							|  |  |  |  * This is for compatibility with the old style BIO_read(), where existing code | 
					
						
							|  |  |  |  * may make assumptions about the return value that it might get. | 
					
						
							| 
									
										
										
										
											2016-10-21 20:07:06 +08:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2016-10-26 07:05:25 +08:00
										 |  |  | static int bio_read_intern(BIO *b, void *data, size_t dlen, size_t *readbytes) | 
					
						
							| 
									
										
										
										
											2016-09-06 00:26:58 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     int ret; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-12 21:07:41 +08:00
										 |  |  |     if (b == NULL) { | 
					
						
							| 
									
										
										
										
											2020-12-21 15:16:30 +08:00
										 |  |  |         ERR_raise(ERR_LIB_BIO, ERR_R_PASSED_NULL_PARAMETER); | 
					
						
							| 
									
										
										
										
											2020-12-12 21:07:41 +08:00
										 |  |  |         return -1; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (b->method == NULL || b->method->bread == NULL) { | 
					
						
							| 
									
										
										
										
											2020-11-04 19:23:19 +08:00
										 |  |  |         ERR_raise(ERR_LIB_BIO, BIO_R_UNSUPPORTED_METHOD); | 
					
						
							| 
									
										
										
										
											2016-10-21 20:07:06 +08:00
										 |  |  |         return -2; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-25 00:15:57 +08:00
										 |  |  |     if (HAS_CALLBACK(b) && | 
					
						
							| 
									
										
										
										
											2016-10-25 20:19:59 +08:00
										 |  |  |         ((ret = (int)bio_call_callback(b, BIO_CB_READ, data, dlen, 0, 0L, 1L, | 
					
						
							| 
									
										
										
										
											2018-03-19 21:20:53 +08:00
										 |  |  |                                        NULL)) <= 0)) | 
					
						
							| 
									
										
										
										
											2016-09-06 00:26:58 +08:00
										 |  |  |         return ret; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (!b->init) { | 
					
						
							| 
									
										
										
										
											2020-11-04 19:23:19 +08:00
										 |  |  |         ERR_raise(ERR_LIB_BIO, BIO_R_UNINITIALIZED); | 
					
						
							| 
									
										
										
										
											2020-12-12 21:07:41 +08:00
										 |  |  |         return -1; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-26 07:05:25 +08:00
										 |  |  |     ret = b->method->bread(b, data, dlen, readbytes); | 
					
						
							| 
									
										
										
										
											1998-12-21 19:00:56 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-06 00:26:58 +08:00
										 |  |  |     if (ret > 0) | 
					
						
							| 
									
										
										
										
											2016-12-01 21:24:09 +08:00
										 |  |  |         b->num_read += (uint64_t)*readbytes; | 
					
						
							| 
									
										
										
										
											2016-09-06 00:26:58 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-25 00:15:57 +08:00
										 |  |  |     if (HAS_CALLBACK(b)) | 
					
						
							| 
									
										
										
										
											2016-10-21 22:15:51 +08:00
										 |  |  |         ret = (int)bio_call_callback(b, BIO_CB_READ | BIO_CB_RETURN, data, | 
					
						
							| 
									
										
										
										
											2016-10-26 07:05:25 +08:00
										 |  |  |                                      dlen, 0, 0L, ret, readbytes); | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-21 22:21:55 +08:00
										 |  |  |     /* Shouldn't happen */ | 
					
						
							| 
									
										
										
										
											2016-10-26 07:05:25 +08:00
										 |  |  |     if (ret > 0 && *readbytes > dlen) { | 
					
						
							| 
									
										
										
										
											2020-11-04 19:23:19 +08:00
										 |  |  |         ERR_raise(ERR_LIB_BIO, ERR_R_INTERNAL_ERROR); | 
					
						
							| 
									
										
										
										
											2016-10-21 22:21:55 +08:00
										 |  |  |         return -1; | 
					
						
							| 
									
										
										
										
											2016-10-25 20:19:59 +08:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2016-10-21 22:21:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-06 00:26:58 +08:00
										 |  |  |     return ret; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-25 20:19:59 +08:00
										 |  |  | int BIO_read(BIO *b, void *data, int dlen) | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2016-10-26 07:05:25 +08:00
										 |  |  |     size_t readbytes; | 
					
						
							| 
									
										
										
										
											2016-10-20 22:18:39 +08:00
										 |  |  |     int ret; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-25 20:19:59 +08:00
										 |  |  |     if (dlen < 0) | 
					
						
							| 
									
										
										
										
											2016-10-20 22:18:39 +08:00
										 |  |  |         return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-26 07:05:25 +08:00
										 |  |  |     ret = bio_read_intern(b, data, (size_t)dlen, &readbytes); | 
					
						
							| 
									
										
										
										
											2016-10-20 22:18:39 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (ret > 0) { | 
					
						
							| 
									
										
										
										
											2016-10-29 00:53:00 +08:00
										 |  |  |         /* *readbytes should always be <= dlen */ | 
					
						
							| 
									
										
										
										
											2016-10-26 07:05:25 +08:00
										 |  |  |         ret = (int)readbytes; | 
					
						
							| 
									
										
										
										
											2016-10-20 22:18:39 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return ret; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-26 07:05:25 +08:00
										 |  |  | int BIO_read_ex(BIO *b, void *data, size_t dlen, size_t *readbytes) | 
					
						
							| 
									
										
										
										
											2016-10-21 20:07:06 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2020-12-12 21:07:41 +08:00
										 |  |  |     return bio_read_intern(b, data, dlen, readbytes) > 0; | 
					
						
							| 
									
										
										
										
											2016-10-21 20:07:06 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-25 20:19:59 +08:00
										 |  |  | static int bio_write_intern(BIO *b, const void *data, size_t dlen, | 
					
						
							| 
									
										
										
										
											2016-10-21 22:15:51 +08:00
										 |  |  |                             size_t *written) | 
					
						
							| 
									
										
										
										
											2016-10-20 22:18:39 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2021-06-03 18:56:11 +08:00
										 |  |  |     size_t local_written; | 
					
						
							| 
									
										
										
										
											2016-10-20 22:18:39 +08:00
										 |  |  |     int ret; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-03 18:56:11 +08:00
										 |  |  |     if (written != NULL) | 
					
						
							|  |  |  |         *written = 0; | 
					
						
							| 
									
										
										
										
											2021-05-28 09:42:41 +08:00
										 |  |  |     /*
 | 
					
						
							|  |  |  |      * b == NULL is not an error but just means that zero bytes are written. | 
					
						
							|  |  |  |      * Do not raise an error here. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     if (b == NULL) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-12 21:07:41 +08:00
										 |  |  |     if (b->method == NULL || b->method->bwrite == NULL) { | 
					
						
							| 
									
										
										
										
											2020-11-04 19:23:19 +08:00
										 |  |  |         ERR_raise(ERR_LIB_BIO, BIO_R_UNSUPPORTED_METHOD); | 
					
						
							| 
									
										
										
										
											2016-10-21 20:07:06 +08:00
										 |  |  |         return -2; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-25 00:15:57 +08:00
										 |  |  |     if (HAS_CALLBACK(b) && | 
					
						
							| 
									
										
										
										
											2016-10-25 20:19:59 +08:00
										 |  |  |         ((ret = (int)bio_call_callback(b, BIO_CB_WRITE, data, dlen, 0, 0L, 1L, | 
					
						
							| 
									
										
										
										
											2018-03-19 21:20:53 +08:00
										 |  |  |                                        NULL)) <= 0)) | 
					
						
							| 
									
										
										
										
											2016-10-20 22:18:39 +08:00
										 |  |  |         return ret; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (!b->init) { | 
					
						
							| 
									
										
										
										
											2020-11-04 19:23:19 +08:00
										 |  |  |         ERR_raise(ERR_LIB_BIO, BIO_R_UNINITIALIZED); | 
					
						
							| 
									
										
										
										
											2020-12-12 21:07:41 +08:00
										 |  |  |         return -1; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-03 18:56:11 +08:00
										 |  |  |     ret = b->method->bwrite(b, data, dlen, &local_written); | 
					
						
							| 
									
										
										
										
											1998-12-21 19:00:56 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-20 22:18:39 +08:00
										 |  |  |     if (ret > 0) | 
					
						
							| 
									
										
										
										
											2021-06-03 18:56:11 +08:00
										 |  |  |         b->num_write += (uint64_t)local_written; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-25 00:15:57 +08:00
										 |  |  |     if (HAS_CALLBACK(b)) | 
					
						
							| 
									
										
										
										
											2016-10-21 22:15:51 +08:00
										 |  |  |         ret = (int)bio_call_callback(b, BIO_CB_WRITE | BIO_CB_RETURN, data, | 
					
						
							| 
									
										
										
										
											2021-06-03 18:56:11 +08:00
										 |  |  |                                      dlen, 0, 0L, ret, &local_written); | 
					
						
							| 
									
										
										
										
											2016-10-20 22:18:39 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-03 18:56:11 +08:00
										 |  |  |     if (written != NULL) | 
					
						
							|  |  |  |         *written = local_written; | 
					
						
							| 
									
										
										
										
											2016-10-20 22:18:39 +08:00
										 |  |  |     return ret; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-25 20:19:59 +08:00
										 |  |  | int BIO_write(BIO *b, const void *data, int dlen) | 
					
						
							| 
									
										
										
										
											2016-10-21 20:07:06 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     size_t written; | 
					
						
							|  |  |  |     int ret; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-03 18:56:11 +08:00
										 |  |  |     if (dlen <= 0) | 
					
						
							| 
									
										
										
										
											2016-10-21 20:07:06 +08:00
										 |  |  |         return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-25 20:19:59 +08:00
										 |  |  |     ret = bio_write_intern(b, data, (size_t)dlen, &written); | 
					
						
							| 
									
										
										
										
											2016-10-21 20:07:06 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (ret > 0) { | 
					
						
							| 
									
										
										
										
											2021-06-03 18:56:11 +08:00
										 |  |  |         /* written should always be <= dlen */ | 
					
						
							| 
									
										
										
										
											2016-10-21 20:07:06 +08:00
										 |  |  |         ret = (int)written; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return ret; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-25 20:19:59 +08:00
										 |  |  | int BIO_write_ex(BIO *b, const void *data, size_t dlen, size_t *written) | 
					
						
							| 
									
										
										
										
											2016-10-21 20:07:06 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2021-06-12 17:49:22 +08:00
										 |  |  |     return bio_write_intern(b, data, dlen, written) > 0 | 
					
						
							|  |  |  |         || (b != NULL && dlen == 0); /* order is important for *written */ | 
					
						
							| 
									
										
										
										
											2016-10-21 20:07:06 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-08-01 17:33:00 +08:00
										 |  |  | int BIO_sendmmsg(BIO *b, BIO_MSG *msg, | 
					
						
							|  |  |  |                  size_t stride, size_t num_msg, uint64_t flags, | 
					
						
							|  |  |  |                  size_t *msgs_processed) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     size_t ret; | 
					
						
							|  |  |  |     BIO_MMSG_CB_ARGS args; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (b == NULL) { | 
					
						
							|  |  |  |         *msgs_processed = 0; | 
					
						
							|  |  |  |         ERR_raise(ERR_LIB_BIO, ERR_R_PASSED_NULL_PARAMETER); | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (b->method == NULL || b->method->bsendmmsg == NULL) { | 
					
						
							|  |  |  |         *msgs_processed = 0; | 
					
						
							|  |  |  |         ERR_raise(ERR_LIB_BIO, BIO_R_UNSUPPORTED_METHOD); | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (HAS_CALLBACK(b)) { | 
					
						
							|  |  |  |         args.msg            = msg; | 
					
						
							|  |  |  |         args.stride         = stride; | 
					
						
							|  |  |  |         args.num_msg        = num_msg; | 
					
						
							|  |  |  |         args.flags          = flags; | 
					
						
							|  |  |  |         args.msgs_processed = msgs_processed; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         ret = (size_t)bio_call_callback(b, BIO_CB_SENDMMSG, (void *)&args, | 
					
						
							| 
									
										
										
										
											2023-10-13 19:19:40 +08:00
										 |  |  |                                         0, 0, 0, 1, NULL); | 
					
						
							|  |  |  |         if (ret <= 0) | 
					
						
							| 
									
										
										
										
											2022-08-01 17:33:00 +08:00
										 |  |  |             return 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!b->init) { | 
					
						
							|  |  |  |         *msgs_processed = 0; | 
					
						
							|  |  |  |         ERR_raise(ERR_LIB_BIO, BIO_R_UNINITIALIZED); | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ret = b->method->bsendmmsg(b, msg, stride, num_msg, flags, msgs_processed); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (HAS_CALLBACK(b)) | 
					
						
							|  |  |  |         ret = (size_t)bio_call_callback(b, BIO_CB_SENDMMSG | BIO_CB_RETURN, | 
					
						
							| 
									
										
										
										
											2023-10-13 19:19:40 +08:00
										 |  |  |                                         (void *)&args, ret, 0, 0, ret, NULL); | 
					
						
							| 
									
										
										
										
											2022-08-01 17:33:00 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     return ret; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int BIO_recvmmsg(BIO *b, BIO_MSG *msg, | 
					
						
							|  |  |  |                  size_t stride, size_t num_msg, uint64_t flags, | 
					
						
							|  |  |  |                  size_t *msgs_processed) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     size_t ret; | 
					
						
							|  |  |  |     BIO_MMSG_CB_ARGS args; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (b == NULL) { | 
					
						
							|  |  |  |         *msgs_processed = 0; | 
					
						
							|  |  |  |         ERR_raise(ERR_LIB_BIO, ERR_R_PASSED_NULL_PARAMETER); | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (b->method == NULL || b->method->brecvmmsg == NULL) { | 
					
						
							|  |  |  |         *msgs_processed = 0; | 
					
						
							|  |  |  |         ERR_raise(ERR_LIB_BIO, BIO_R_UNSUPPORTED_METHOD); | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (HAS_CALLBACK(b)) { | 
					
						
							|  |  |  |         args.msg            = msg; | 
					
						
							|  |  |  |         args.stride         = stride; | 
					
						
							|  |  |  |         args.num_msg        = num_msg; | 
					
						
							|  |  |  |         args.flags          = flags; | 
					
						
							|  |  |  |         args.msgs_processed = msgs_processed; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         ret = bio_call_callback(b, BIO_CB_RECVMMSG, (void *)&args, | 
					
						
							| 
									
										
										
										
											2023-10-13 19:19:40 +08:00
										 |  |  |                                 0, 0, 0, 1, NULL); | 
					
						
							|  |  |  |         if (ret <= 0) | 
					
						
							| 
									
										
										
										
											2022-08-01 17:33:00 +08:00
										 |  |  |             return 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!b->init) { | 
					
						
							|  |  |  |         *msgs_processed = 0; | 
					
						
							|  |  |  |         ERR_raise(ERR_LIB_BIO, BIO_R_UNINITIALIZED); | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ret = b->method->brecvmmsg(b, msg, stride, num_msg, flags, msgs_processed); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (HAS_CALLBACK(b)) | 
					
						
							|  |  |  |         ret = (size_t)bio_call_callback(b, BIO_CB_RECVMMSG | BIO_CB_RETURN, | 
					
						
							| 
									
										
										
										
											2023-10-13 19:19:40 +08:00
										 |  |  |                                         (void *)&args, ret, 0, 0, ret, NULL); | 
					
						
							| 
									
										
										
										
											2022-08-01 17:33:00 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     return ret; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-11-17 23:17:39 +08:00
										 |  |  | int BIO_get_rpoll_descriptor(BIO *b, BIO_POLL_DESCRIPTOR *desc) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return BIO_ctrl(b, BIO_CTRL_GET_RPOLL_DESCRIPTOR, 0, desc); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int BIO_get_wpoll_descriptor(BIO *b, BIO_POLL_DESCRIPTOR *desc) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return BIO_ctrl(b, BIO_CTRL_GET_WPOLL_DESCRIPTOR, 0, desc); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-29 00:53:00 +08:00
										 |  |  | int BIO_puts(BIO *b, const char *buf) | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2016-10-20 20:48:31 +08:00
										 |  |  |     int ret; | 
					
						
							| 
									
										
										
										
											2016-10-21 07:00:19 +08:00
										 |  |  |     size_t written = 0; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-12 21:07:41 +08:00
										 |  |  |     if (b == NULL) { | 
					
						
							| 
									
										
										
										
											2020-12-21 15:16:30 +08:00
										 |  |  |         ERR_raise(ERR_LIB_BIO, ERR_R_PASSED_NULL_PARAMETER); | 
					
						
							| 
									
										
										
										
											2020-12-12 21:07:41 +08:00
										 |  |  |         return -1; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (b->method == NULL || b->method->bputs == NULL) { | 
					
						
							| 
									
										
										
										
											2020-11-04 19:23:19 +08:00
										 |  |  |         ERR_raise(ERR_LIB_BIO, BIO_R_UNSUPPORTED_METHOD); | 
					
						
							| 
									
										
										
										
											2016-10-20 20:48:31 +08:00
										 |  |  |         return -2; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-25 00:15:57 +08:00
										 |  |  |     if (HAS_CALLBACK(b)) { | 
					
						
							| 
									
										
										
										
											2016-10-29 00:53:00 +08:00
										 |  |  |         ret = (int)bio_call_callback(b, BIO_CB_PUTS, buf, 0, 0, 0L, 1L, NULL); | 
					
						
							| 
									
										
										
										
											2016-10-20 20:48:31 +08:00
										 |  |  |         if (ret <= 0) | 
					
						
							|  |  |  |             return ret; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (!b->init) { | 
					
						
							| 
									
										
										
										
											2020-11-04 19:23:19 +08:00
										 |  |  |         ERR_raise(ERR_LIB_BIO, BIO_R_UNINITIALIZED); | 
					
						
							| 
									
										
										
										
											2020-12-12 21:07:41 +08:00
										 |  |  |         return -1; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-29 00:53:00 +08:00
										 |  |  |     ret = b->method->bputs(b, buf); | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-20 20:48:31 +08:00
										 |  |  |     if (ret > 0) { | 
					
						
							|  |  |  |         b->num_write += (uint64_t)ret; | 
					
						
							|  |  |  |         written = ret; | 
					
						
							|  |  |  |         ret = 1; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-25 00:15:57 +08:00
										 |  |  |     if (HAS_CALLBACK(b)) | 
					
						
							| 
									
										
										
										
											2016-10-29 00:53:00 +08:00
										 |  |  |         ret = (int)bio_call_callback(b, BIO_CB_PUTS | BIO_CB_RETURN, buf, 0, 0, | 
					
						
							| 
									
										
										
										
											2016-10-20 20:48:31 +08:00
										 |  |  |                                      0L, ret, &written); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (ret > 0) { | 
					
						
							| 
									
										
										
										
											2016-10-25 20:19:59 +08:00
										 |  |  |         if (written > INT_MAX) { | 
					
						
							| 
									
										
										
										
											2020-11-04 19:23:19 +08:00
										 |  |  |             ERR_raise(ERR_LIB_BIO, BIO_R_LENGTH_TOO_LONG); | 
					
						
							| 
									
										
										
										
											2016-10-20 20:48:31 +08:00
										 |  |  |             ret = -1; | 
					
						
							| 
									
										
										
										
											2016-10-25 20:19:59 +08:00
										 |  |  |         } else { | 
					
						
							| 
									
										
										
										
											2016-10-20 20:48:31 +08:00
										 |  |  |             ret = (int)written; | 
					
						
							| 
									
										
										
										
											2016-10-25 20:19:59 +08:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2016-10-20 20:48:31 +08:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2000-09-05 20:35:00 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-20 20:48:31 +08:00
										 |  |  |     return ret; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-29 00:53:00 +08:00
										 |  |  | int BIO_gets(BIO *b, char *buf, int size) | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2016-10-20 20:48:31 +08:00
										 |  |  |     int ret; | 
					
						
							| 
									
										
										
										
											2016-10-26 07:05:25 +08:00
										 |  |  |     size_t readbytes = 0; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-12 21:07:41 +08:00
										 |  |  |     if (b == NULL) { | 
					
						
							| 
									
										
										
										
											2020-12-21 15:16:30 +08:00
										 |  |  |         ERR_raise(ERR_LIB_BIO, ERR_R_PASSED_NULL_PARAMETER); | 
					
						
							| 
									
										
										
										
											2020-12-12 21:07:41 +08:00
										 |  |  |         return -1; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (b->method == NULL || b->method->bgets == NULL) { | 
					
						
							| 
									
										
										
										
											2020-11-04 19:23:19 +08:00
										 |  |  |         ERR_raise(ERR_LIB_BIO, BIO_R_UNSUPPORTED_METHOD); | 
					
						
							| 
									
										
										
										
											2017-10-17 22:04:09 +08:00
										 |  |  |         return -2; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-29 00:53:00 +08:00
										 |  |  |     if (size < 0) { | 
					
						
							| 
									
										
										
										
											2020-11-04 19:23:19 +08:00
										 |  |  |         ERR_raise(ERR_LIB_BIO, BIO_R_INVALID_ARGUMENT); | 
					
						
							| 
									
										
										
										
											2020-12-12 21:07:41 +08:00
										 |  |  |         return -1; | 
					
						
							| 
									
										
										
										
											2016-10-21 22:21:55 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-25 00:15:57 +08:00
										 |  |  |     if (HAS_CALLBACK(b)) { | 
					
						
							| 
									
										
										
										
											2016-10-29 00:53:00 +08:00
										 |  |  |         ret = (int)bio_call_callback(b, BIO_CB_GETS, buf, size, 0, 0L, 1, NULL); | 
					
						
							| 
									
										
										
										
											2016-10-20 20:48:31 +08:00
										 |  |  |         if (ret <= 0) | 
					
						
							|  |  |  |             return ret; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |     if (!b->init) { | 
					
						
							| 
									
										
										
										
											2020-11-04 19:23:19 +08:00
										 |  |  |         ERR_raise(ERR_LIB_BIO, BIO_R_UNINITIALIZED); | 
					
						
							| 
									
										
										
										
											2020-12-12 21:07:41 +08:00
										 |  |  |         return -1; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-29 00:53:00 +08:00
										 |  |  |     ret = b->method->bgets(b, buf, size); | 
					
						
							| 
									
										
										
										
											2016-10-20 20:48:31 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (ret > 0) { | 
					
						
							| 
									
										
										
										
											2016-10-26 07:05:25 +08:00
										 |  |  |         readbytes = ret; | 
					
						
							| 
									
										
										
										
											2016-10-20 20:48:31 +08:00
										 |  |  |         ret = 1; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-25 00:15:57 +08:00
										 |  |  |     if (HAS_CALLBACK(b)) | 
					
						
							| 
									
										
										
										
											2016-10-29 00:53:00 +08:00
										 |  |  |         ret = (int)bio_call_callback(b, BIO_CB_GETS | BIO_CB_RETURN, buf, size, | 
					
						
							| 
									
										
										
										
											2016-10-26 07:05:25 +08:00
										 |  |  |                                      0, 0L, ret, &readbytes); | 
					
						
							| 
									
										
										
										
											2016-10-20 20:48:31 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (ret > 0) { | 
					
						
							| 
									
										
										
										
											2016-10-21 22:21:55 +08:00
										 |  |  |         /* Shouldn't happen */ | 
					
						
							| 
									
										
										
										
											2016-10-29 00:53:00 +08:00
										 |  |  |         if (readbytes > (size_t)size) | 
					
						
							| 
									
										
										
										
											2016-10-20 20:48:31 +08:00
										 |  |  |             ret = -1; | 
					
						
							|  |  |  |         else | 
					
						
							| 
									
										
										
										
											2016-10-26 07:05:25 +08:00
										 |  |  |             ret = (int)readbytes; | 
					
						
							| 
									
										
										
										
											2016-10-20 20:48:31 +08:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-20 20:48:31 +08:00
										 |  |  |     return ret; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-09-23 16:11:53 +08:00
										 |  |  | int BIO_get_line(BIO *bio, char *buf, int size) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     int ret = 0; | 
					
						
							|  |  |  |     char *ptr = buf; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (buf == NULL) { | 
					
						
							|  |  |  |         ERR_raise(ERR_LIB_BIO, ERR_R_PASSED_NULL_PARAMETER); | 
					
						
							|  |  |  |         return -1; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (size <= 0) { | 
					
						
							|  |  |  |         ERR_raise(ERR_LIB_BIO, BIO_R_INVALID_ARGUMENT); | 
					
						
							|  |  |  |         return -1; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     *buf = '\0'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (bio == NULL) { | 
					
						
							|  |  |  |         ERR_raise(ERR_LIB_BIO, ERR_R_PASSED_NULL_PARAMETER); | 
					
						
							|  |  |  |         return -1; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (!bio->init) { | 
					
						
							|  |  |  |         ERR_raise(ERR_LIB_BIO, BIO_R_UNINITIALIZED); | 
					
						
							|  |  |  |         return -1; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     while (size-- > 1 && (ret = BIO_read(bio, ptr, 1)) > 0) | 
					
						
							|  |  |  |         if (*ptr++ == '\n') | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |     *ptr = '\0'; | 
					
						
							|  |  |  |     return ret > 0 || BIO_eof(bio) ? ptr - buf : ret; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-11-13 23:43:43 +08:00
										 |  |  | int BIO_indent(BIO *b, int indent, int max) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (indent < 0) | 
					
						
							|  |  |  |         indent = 0; | 
					
						
							|  |  |  |     if (indent > max) | 
					
						
							|  |  |  |         indent = max; | 
					
						
							|  |  |  |     while (indent--) | 
					
						
							|  |  |  |         if (BIO_puts(b, " ") != 1) | 
					
						
							|  |  |  |             return 0; | 
					
						
							|  |  |  |     return 1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-04-20 05:31:43 +08:00
										 |  |  | long BIO_int_ctrl(BIO *b, int cmd, long larg, int iarg) | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     int i; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     i = iarg; | 
					
						
							| 
									
										
										
										
											2017-10-17 22:04:09 +08:00
										 |  |  |     return BIO_ctrl(b, cmd, larg, (char *)&i); | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-03 06:40:34 +08:00
										 |  |  | void *BIO_ptr_ctrl(BIO *b, int cmd, long larg) | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2016-02-03 06:40:34 +08:00
										 |  |  |     void *p = NULL; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (BIO_ctrl(b, cmd, larg, (char *)&p) <= 0) | 
					
						
							| 
									
										
										
										
											2017-10-17 22:04:09 +08:00
										 |  |  |         return NULL; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  |     else | 
					
						
							| 
									
										
										
										
											2017-10-17 22:04:09 +08:00
										 |  |  |         return p; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-06-12 09:03:40 +08:00
										 |  |  | long BIO_ctrl(BIO *b, int cmd, long larg, void *parg) | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     long ret; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 15:45:31 +08:00
										 |  |  |     if (b == NULL) | 
					
						
							| 
									
										
										
										
											2020-12-12 21:07:41 +08:00
										 |  |  |         return -1; | 
					
						
							|  |  |  |     if (b->method == NULL || b->method->ctrl == NULL) { | 
					
						
							| 
									
										
										
										
											2020-11-04 19:23:19 +08:00
										 |  |  |         ERR_raise(ERR_LIB_BIO, BIO_R_UNSUPPORTED_METHOD); | 
					
						
							| 
									
										
										
										
											2016-10-20 20:48:31 +08:00
										 |  |  |         return -2; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-25 00:15:57 +08:00
										 |  |  |     if (HAS_CALLBACK(b)) { | 
					
						
							| 
									
										
										
										
											2016-10-20 20:48:31 +08:00
										 |  |  |         ret = bio_call_callback(b, BIO_CB_CTRL, parg, 0, cmd, larg, 1L, NULL); | 
					
						
							|  |  |  |         if (ret <= 0) | 
					
						
							|  |  |  |             return ret; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     ret = b->method->ctrl(b, cmd, larg, parg); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-25 00:15:57 +08:00
										 |  |  |     if (HAS_CALLBACK(b)) | 
					
						
							| 
									
										
										
										
											2016-10-20 20:48:31 +08:00
										 |  |  |         ret = bio_call_callback(b, BIO_CB_CTRL | BIO_CB_RETURN, parg, 0, cmd, | 
					
						
							|  |  |  |                                 larg, ret, NULL); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return ret; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-16 02:33:48 +08:00
										 |  |  | long BIO_callback_ctrl(BIO *b, int cmd, BIO_info_cb *fp) | 
					
						
							| 
									
										
										
										
											2000-02-21 07:43:02 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     long ret; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 15:45:31 +08:00
										 |  |  |     if (b == NULL) | 
					
						
							| 
									
										
										
										
											2020-12-21 15:16:30 +08:00
										 |  |  |         return -2; | 
					
						
							| 
									
										
										
										
											2020-12-12 21:07:41 +08:00
										 |  |  |     if (b->method == NULL || b->method->callback_ctrl == NULL | 
					
						
							|  |  |  |             || cmd != BIO_CTRL_SET_CALLBACK) { | 
					
						
							| 
									
										
										
										
											2020-11-04 19:23:19 +08:00
										 |  |  |         ERR_raise(ERR_LIB_BIO, BIO_R_UNSUPPORTED_METHOD); | 
					
						
							| 
									
										
										
										
											2017-10-17 22:04:09 +08:00
										 |  |  |         return -2; | 
					
						
							| 
									
										
										
										
											2000-02-21 07:43:02 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-25 00:15:57 +08:00
										 |  |  |     if (HAS_CALLBACK(b)) { | 
					
						
							| 
									
										
										
										
											2016-10-20 20:48:31 +08:00
										 |  |  |         ret = bio_call_callback(b, BIO_CB_CTRL, (void *)&fp, 0, cmd, 0, 1L, | 
					
						
							|  |  |  |                                 NULL); | 
					
						
							|  |  |  |         if (ret <= 0) | 
					
						
							|  |  |  |             return ret; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2000-02-21 07:43:02 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     ret = b->method->callback_ctrl(b, cmd, fp); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-25 00:15:57 +08:00
										 |  |  |     if (HAS_CALLBACK(b)) | 
					
						
							| 
									
										
										
										
											2016-10-20 20:48:31 +08:00
										 |  |  |         ret = bio_call_callback(b, BIO_CB_CTRL | BIO_CB_RETURN, (void *)&fp, 0, | 
					
						
							|  |  |  |                                 cmd, 0, ret, NULL); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return ret; | 
					
						
							| 
									
										
										
										
											2000-02-21 07:43:02 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-06-12 09:03:40 +08:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * It is unfortunate to duplicate in functions what the BIO_(w)pending macros | 
					
						
							|  |  |  |  * do; but those macros have inappropriate return type, and for interfacing | 
					
						
							|  |  |  |  * from other programming languages, C macros aren't much of a help anyway. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | size_t BIO_ctrl_pending(BIO *bio) | 
					
						
							| 
									
										
										
										
											2000-02-21 07:43:02 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2022-09-19 16:36:21 +08:00
										 |  |  |     long ret = BIO_ctrl(bio, BIO_CTRL_PENDING, 0, NULL); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (ret < 0) | 
					
						
							|  |  |  |         ret = 0; | 
					
						
							| 
									
										
										
										
											2022-09-20 22:48:59 +08:00
										 |  |  | #if LONG_MAX > SIZE_MAX
 | 
					
						
							|  |  |  |     if (ret > SIZE_MAX) | 
					
						
							|  |  |  |         ret = SIZE_MAX; | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2022-09-19 16:36:21 +08:00
										 |  |  |     return (size_t)ret; | 
					
						
							| 
									
										
										
										
											1999-06-12 09:03:40 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | size_t BIO_ctrl_wpending(BIO *bio) | 
					
						
							| 
									
										
										
										
											2000-02-21 07:43:02 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2022-09-19 16:36:21 +08:00
										 |  |  |     long ret = BIO_ctrl(bio, BIO_CTRL_WPENDING, 0, NULL); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (ret < 0) | 
					
						
							|  |  |  |         ret = 0; | 
					
						
							| 
									
										
										
										
											2022-09-20 22:48:59 +08:00
										 |  |  | #if LONG_MAX > SIZE_MAX
 | 
					
						
							|  |  |  |     if (ret > SIZE_MAX) | 
					
						
							|  |  |  |         ret = SIZE_MAX; | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2022-09-19 16:36:21 +08:00
										 |  |  |     return (size_t)ret; | 
					
						
							| 
									
										
										
										
											1999-06-12 09:03:40 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | /* put the 'bio' on the end of b's list of operators */ | 
					
						
							| 
									
										
										
										
											1999-04-20 05:31:43 +08:00
										 |  |  | BIO *BIO_push(BIO *b, BIO *bio) | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     BIO *lb; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |     if (b == NULL) | 
					
						
							| 
									
										
										
										
											2017-10-17 22:04:09 +08:00
										 |  |  |         return bio; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |     lb = b; | 
					
						
							|  |  |  |     while (lb->next_bio != NULL) | 
					
						
							|  |  |  |         lb = lb->next_bio; | 
					
						
							|  |  |  |     lb->next_bio = bio; | 
					
						
							|  |  |  |     if (bio != NULL) | 
					
						
							|  |  |  |         bio->prev_bio = lb; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  |     /* called to do internal processing */ | 
					
						
							| 
									
										
										
										
											2009-06-25 19:29:30 +08:00
										 |  |  |     BIO_ctrl(b, BIO_CTRL_PUSH, 0, lb); | 
					
						
							| 
									
										
										
										
											2017-10-17 22:04:09 +08:00
										 |  |  |     return b; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Remove the first and return the rest */ | 
					
						
							| 
									
										
										
										
											1999-04-20 05:31:43 +08:00
										 |  |  | BIO *BIO_pop(BIO *b) | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     BIO *ret; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 15:45:31 +08:00
										 |  |  |     if (b == NULL) | 
					
						
							| 
									
										
										
										
											2017-10-17 22:04:09 +08:00
										 |  |  |         return NULL; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |     ret = b->next_bio; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-06-25 19:29:30 +08:00
										 |  |  |     BIO_ctrl(b, BIO_CTRL_POP, 0, b); | 
					
						
							| 
									
										
										
										
											2003-01-31 05:49:12 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |     if (b->prev_bio != NULL) | 
					
						
							|  |  |  |         b->prev_bio->next_bio = b->next_bio; | 
					
						
							|  |  |  |     if (b->next_bio != NULL) | 
					
						
							|  |  |  |         b->next_bio->prev_bio = b->prev_bio; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     b->next_bio = NULL; | 
					
						
							|  |  |  |     b->prev_bio = NULL; | 
					
						
							| 
									
										
										
										
											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_get_retry_BIO(BIO *bio, int *reason) | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     BIO *b, *last; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |     b = last = bio; | 
					
						
							|  |  |  |     for (;;) { | 
					
						
							|  |  |  |         if (!BIO_should_retry(b)) | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         last = b; | 
					
						
							|  |  |  |         b = b->next_bio; | 
					
						
							|  |  |  |         if (b == NULL) | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (reason != NULL) | 
					
						
							|  |  |  |         *reason = last->retry_reason; | 
					
						
							| 
									
										
										
										
											2017-10-17 22:04:09 +08:00
										 |  |  |     return last; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-04-20 05:31:43 +08:00
										 |  |  | int BIO_get_retry_reason(BIO *bio) | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2017-10-17 22:04:09 +08:00
										 |  |  |     return bio->retry_reason; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-22 17:21:29 +08:00
										 |  |  | void BIO_set_retry_reason(BIO *bio, int reason) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     bio->retry_reason = reason; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-04-20 05:31:43 +08:00
										 |  |  | BIO *BIO_find_type(BIO *bio, int type) | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     int mt, mask; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-12 21:07:41 +08:00
										 |  |  |     if (bio == NULL) { | 
					
						
							| 
									
										
										
										
											2020-12-21 15:16:30 +08:00
										 |  |  |         ERR_raise(ERR_LIB_BIO, ERR_R_PASSED_NULL_PARAMETER); | 
					
						
							| 
									
										
										
										
											2000-09-08 01:42:25 +08:00
										 |  |  |         return NULL; | 
					
						
							| 
									
										
										
										
											2020-12-12 21:07:41 +08:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2024-03-04 10:08:08 +08:00
										 |  |  |     mask = type & BIO_TYPE_MASK; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |     do { | 
					
						
							|  |  |  |         if (bio->method != NULL) { | 
					
						
							|  |  |  |             mt = bio->method->type; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |             if (!mask) { | 
					
						
							|  |  |  |                 if (mt & type) | 
					
						
							| 
									
										
										
										
											2017-10-17 22:04:09 +08:00
										 |  |  |                     return bio; | 
					
						
							| 
									
										
										
										
											2020-12-12 21:07:41 +08:00
										 |  |  |             } else if (mt == type) { | 
					
						
							| 
									
										
										
										
											2017-10-17 22:04:09 +08:00
										 |  |  |                 return bio; | 
					
						
							| 
									
										
										
										
											2020-12-12 21:07:41 +08:00
										 |  |  |             } | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |         } | 
					
						
							|  |  |  |         bio = bio->next_bio; | 
					
						
							|  |  |  |     } while (bio != NULL); | 
					
						
							| 
									
										
										
										
											2017-10-17 22:04:09 +08:00
										 |  |  |     return NULL; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-09-07 21:04:27 +08:00
										 |  |  | BIO *BIO_next(BIO *b) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2021-09-27 15:45:31 +08:00
										 |  |  |     if (b == NULL) | 
					
						
							| 
									
										
										
										
											2000-09-07 21:04:27 +08:00
										 |  |  |         return NULL; | 
					
						
							|  |  |  |     return b->next_bio; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-22 17:21:29 +08:00
										 |  |  | void BIO_set_next(BIO *b, BIO *next) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     b->next_bio = next; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-04-20 05:31:43 +08:00
										 |  |  | void BIO_free_all(BIO *bio) | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     BIO *b; | 
					
						
							|  |  |  |     int ref; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |     while (bio != NULL) { | 
					
						
							|  |  |  |         b = bio; | 
					
						
							| 
									
										
										
										
											2023-06-22 07:26:38 +08:00
										 |  |  |         CRYPTO_GET_REF(&b->references, &ref); | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |         bio = bio->next_bio; | 
					
						
							|  |  |  |         BIO_free(b); | 
					
						
							|  |  |  |         /* Since ref count > 1, don't free anyone else. */ | 
					
						
							|  |  |  |         if (ref > 1) | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-04-20 05:31:43 +08:00
										 |  |  | BIO *BIO_dup_chain(BIO *in) | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2012-04-17 01:35:30 +08:00
										 |  |  |     BIO *ret = NULL, *eoc = NULL, *bio, *new_bio; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |     for (bio = in; bio != NULL; bio = bio->next_bio) { | 
					
						
							| 
									
										
										
										
											2012-04-17 01:35:30 +08:00
										 |  |  |         if ((new_bio = BIO_new(bio->method)) == NULL) | 
					
						
							|  |  |  |             goto err; | 
					
						
							| 
									
										
										
										
											2021-05-25 00:15:57 +08:00
										 |  |  | #ifndef OPENSSL_NO_DEPRECATED_3_0
 | 
					
						
							| 
									
										
										
										
											2012-04-17 01:35:30 +08:00
										 |  |  |         new_bio->callback = bio->callback; | 
					
						
							| 
									
										
										
										
											2021-05-25 00:15:57 +08:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2016-10-20 20:48:31 +08:00
										 |  |  |         new_bio->callback_ex = bio->callback_ex; | 
					
						
							| 
									
										
										
										
											2012-04-17 01:35:30 +08:00
										 |  |  |         new_bio->cb_arg = bio->cb_arg; | 
					
						
							|  |  |  |         new_bio->init = bio->init; | 
					
						
							|  |  |  |         new_bio->shutdown = bio->shutdown; | 
					
						
							|  |  |  |         new_bio->flags = bio->flags; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |         /* This will let SSL_s_sock() work with stdin/stdout */ | 
					
						
							| 
									
										
										
										
											2012-04-17 01:35:30 +08:00
										 |  |  |         new_bio->num = bio->num; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-02-02 21:02:34 +08:00
										 |  |  |         if (BIO_dup_state(bio, (char *)new_bio) <= 0) { | 
					
						
							| 
									
										
										
										
											2012-04-17 01:35:30 +08:00
										 |  |  |             BIO_free(new_bio); | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |             goto err; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-06-08 04:26:51 +08:00
										 |  |  |         /* copy app data */ | 
					
						
							| 
									
										
										
										
											2012-04-17 01:35:30 +08:00
										 |  |  |         if (!CRYPTO_dup_ex_data(CRYPTO_EX_INDEX_BIO, &new_bio->ex_data, | 
					
						
							| 
									
										
										
										
											2015-04-30 21:51:10 +08:00
										 |  |  |                                 &bio->ex_data)) { | 
					
						
							|  |  |  |             BIO_free(new_bio); | 
					
						
							| 
									
										
										
										
											1999-06-08 04:26:51 +08:00
										 |  |  |             goto err; | 
					
						
							| 
									
										
										
										
											2015-04-30 21:51:10 +08:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |         if (ret == NULL) { | 
					
						
							| 
									
										
										
										
											2012-04-17 01:35:30 +08:00
										 |  |  |             eoc = new_bio; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |             ret = eoc; | 
					
						
							|  |  |  |         } else { | 
					
						
							| 
									
										
										
										
											2012-04-17 01:35:30 +08:00
										 |  |  |             BIO_push(eoc, new_bio); | 
					
						
							|  |  |  |             eoc = new_bio; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2017-10-17 22:04:09 +08:00
										 |  |  |     return ret; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |  err: | 
					
						
							| 
									
										
										
										
											2015-04-30 21:51:10 +08:00
										 |  |  |     BIO_free_all(ret); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-17 22:04:09 +08:00
										 |  |  |     return NULL; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-04-20 05:31:43 +08:00
										 |  |  | void BIO_copy_next_retry(BIO *b) | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     BIO_set_flags(b, BIO_get_retry_flags(b->next_bio)); | 
					
						
							|  |  |  |     b->retry_reason = b->next_bio->retry_reason; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-01-24 07:41:49 +08:00
										 |  |  | int BIO_set_ex_data(BIO *bio, int idx, void *data) | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2017-10-17 22:04:09 +08:00
										 |  |  |     return CRYPTO_set_ex_data(&(bio->ex_data), idx, data); | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-23 15:30:37 +08:00
										 |  |  | void *BIO_get_ex_data(const BIO *bio, int idx) | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2017-10-17 22:04:09 +08:00
										 |  |  |     return CRYPTO_get_ex_data(&(bio->ex_data), idx); | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-04 17:35:08 +08:00
										 |  |  | uint64_t BIO_number_read(BIO *bio) | 
					
						
							| 
									
										
										
										
											2000-01-09 03:05:47 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     if (bio) | 
					
						
							|  |  |  |         return bio->num_read; | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-04 17:35:08 +08:00
										 |  |  | uint64_t BIO_number_written(BIO *bio) | 
					
						
							| 
									
										
										
										
											2000-01-09 03:05:47 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     if (bio) | 
					
						
							|  |  |  |         return bio->num_write; | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2016-03-12 05:53:18 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-15 04:28:54 +08:00
										 |  |  | void bio_free_ex_data(BIO *bio) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     CRYPTO_free_ex_data(CRYPTO_EX_INDEX_BIO, bio, &bio->ex_data); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2016-03-12 05:53:18 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | void bio_cleanup(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | #ifndef OPENSSL_NO_SOCK
 | 
					
						
							|  |  |  |     bio_sock_cleanup_int(); | 
					
						
							|  |  |  |     CRYPTO_THREAD_lock_free(bio_lookup_lock); | 
					
						
							|  |  |  |     bio_lookup_lock = NULL; | 
					
						
							| 
									
										
										
										
											2016-08-21 07:06:43 +08:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2023-06-22 07:26:38 +08:00
										 |  |  |     CRYPTO_FREE_REF(&bio_type_count); | 
					
						
							| 
									
										
										
										
											2016-03-12 05:53:18 +08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2020-02-22 04:41:56 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-08-26 16:04:01 +08:00
										 |  |  | /* Internal variant of the below BIO_wait() not calling ERR_raise(...) */ | 
					
						
							| 
									
										
										
										
											2020-05-28 21:16:45 +08:00
										 |  |  | static int bio_wait(BIO *bio, time_t max_time, unsigned int nap_milliseconds) | 
					
						
							| 
									
										
										
										
											2020-02-22 04:41:56 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2020-05-05 02:21:34 +08:00
										 |  |  | #ifndef OPENSSL_NO_SOCK
 | 
					
						
							| 
									
										
										
										
											2020-02-22 04:41:56 +08:00
										 |  |  |     int fd; | 
					
						
							| 
									
										
										
										
											2020-05-05 02:21:34 +08:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2020-05-28 21:16:45 +08:00
										 |  |  |     long sec_diff; | 
					
						
							| 
									
										
										
										
											2020-02-22 04:41:56 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-28 21:16:45 +08:00
										 |  |  |     if (max_time == 0) /* no timeout */ | 
					
						
							| 
									
										
										
										
											2020-02-22 04:41:56 +08:00
										 |  |  |         return 1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifndef OPENSSL_NO_SOCK
 | 
					
						
							| 
									
										
										
										
											2020-05-28 21:16:45 +08:00
										 |  |  |     if (BIO_get_fd(bio, &fd) > 0 && fd < FD_SETSIZE) | 
					
						
							| 
									
										
										
										
											2020-02-22 04:41:56 +08:00
										 |  |  |         return BIO_socket_wait(fd, BIO_should_read(bio), max_time); | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2020-05-28 21:16:45 +08:00
										 |  |  |     /* fall back to polling since no sockets are available */ | 
					
						
							| 
									
										
										
										
											2020-02-22 04:41:56 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-28 21:16:45 +08:00
										 |  |  |     sec_diff = (long)(max_time - time(NULL)); /* might overflow */ | 
					
						
							|  |  |  |     if (sec_diff < 0) | 
					
						
							|  |  |  |         return 0; /* clearly timeout */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* now take a nap at most the given number of milliseconds */ | 
					
						
							|  |  |  |     if (sec_diff == 0) { /* we are below the 1 seconds resolution of max_time */ | 
					
						
							|  |  |  |         if (nap_milliseconds > 1000) | 
					
						
							|  |  |  |             nap_milliseconds = 1000; | 
					
						
							|  |  |  |     } else { /* for sec_diff > 0, take min(sec_diff * 1000, nap_milliseconds) */ | 
					
						
							|  |  |  |         if ((unsigned long)sec_diff * 1000 < nap_milliseconds) | 
					
						
							|  |  |  |             nap_milliseconds = (unsigned int)sec_diff * 1000; | 
					
						
							| 
									
										
										
										
											2020-02-22 04:41:56 +08:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2022-10-03 13:22:52 +08:00
										 |  |  |     OSSL_sleep(nap_milliseconds); | 
					
						
							| 
									
										
										
										
											2020-02-22 04:41:56 +08:00
										 |  |  |     return 1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-28 21:16:45 +08:00
										 |  |  | /*-
 | 
					
						
							| 
									
										
										
										
											2020-02-22 04:41:56 +08:00
										 |  |  |  * Wait on (typically socket-based) BIO at most until max_time. | 
					
						
							| 
									
										
										
										
											2020-05-28 21:16:45 +08:00
										 |  |  |  * Succeed immediately if max_time == 0. | 
					
						
							|  |  |  |  * If sockets are not available support polling: succeed after waiting at most | 
					
						
							|  |  |  |  * the number of nap_milliseconds in order to avoid a tight busy loop. | 
					
						
							| 
									
										
										
										
											2022-08-26 16:04:01 +08:00
										 |  |  |  * Call ERR_raise(ERR_LIB_BIO, ...) on timeout or error. | 
					
						
							| 
									
										
										
										
											2020-02-22 04:41:56 +08:00
										 |  |  |  * Returns -1 on error, 0 on timeout, and 1 on success. | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2020-05-28 21:16:45 +08:00
										 |  |  | int BIO_wait(BIO *bio, time_t max_time, unsigned int nap_milliseconds) | 
					
						
							| 
									
										
										
										
											2020-02-22 04:41:56 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2020-05-28 21:16:45 +08:00
										 |  |  |     int rv = bio_wait(bio, max_time, nap_milliseconds); | 
					
						
							| 
									
										
										
										
											2020-02-22 04:41:56 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (rv <= 0) | 
					
						
							| 
									
										
										
										
											2020-11-04 19:23:19 +08:00
										 |  |  |         ERR_raise(ERR_LIB_BIO, | 
					
						
							|  |  |  |                   rv == 0 ? BIO_R_TRANSFER_TIMEOUT : BIO_R_TRANSFER_ERROR); | 
					
						
							| 
									
										
										
										
											2020-02-22 04:41:56 +08:00
										 |  |  |     return rv; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2020-05-28 21:16:45 +08:00
										 |  |  |  * Connect via given BIO using BIO_do_connect() until success/timeout/error. | 
					
						
							|  |  |  |  * Parameter timeout == 0 means no timeout, < 0 means exactly one try. | 
					
						
							|  |  |  |  * For non-blocking and potentially even non-socket BIOs perform polling with | 
					
						
							|  |  |  |  * the given density: between polls sleep nap_milliseconds using BIO_wait() | 
					
						
							|  |  |  |  * in order to avoid a tight busy loop. | 
					
						
							| 
									
										
										
										
											2020-02-22 04:41:56 +08:00
										 |  |  |  * Returns -1 on error, 0 on timeout, and 1 on success. | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2020-05-28 21:16:45 +08:00
										 |  |  | int BIO_do_connect_retry(BIO *bio, int timeout, int nap_milliseconds) | 
					
						
							| 
									
										
										
										
											2020-02-22 04:41:56 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2020-05-28 21:16:45 +08:00
										 |  |  |     int blocking = timeout <= 0; | 
					
						
							| 
									
										
										
										
											2020-02-22 04:41:56 +08:00
										 |  |  |     time_t max_time = timeout > 0 ? time(NULL) + timeout : 0; | 
					
						
							|  |  |  |     int rv; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (bio == NULL) { | 
					
						
							| 
									
										
										
										
											2020-12-21 15:16:30 +08:00
										 |  |  |         ERR_raise(ERR_LIB_BIO, ERR_R_PASSED_NULL_PARAMETER); | 
					
						
							| 
									
										
										
										
											2020-02-22 04:41:56 +08:00
										 |  |  |         return -1; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-28 21:16:45 +08:00
										 |  |  |     if (nap_milliseconds < 0) | 
					
						
							|  |  |  |         nap_milliseconds = 100; | 
					
						
							|  |  |  |     BIO_set_nbio(bio, !blocking); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |  retry: | 
					
						
							| 
									
										
										
										
											2021-05-13 01:15:27 +08:00
										 |  |  |     ERR_set_mark(); | 
					
						
							|  |  |  |     rv = BIO_do_connect(bio); | 
					
						
							| 
									
										
										
										
											2020-05-28 21:16:45 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (rv <= 0) { /* could be timeout or retryable error or fatal error */ | 
					
						
							|  |  |  |         int err = ERR_peek_last_error(); | 
					
						
							|  |  |  |         int reason = ERR_GET_REASON(err); | 
					
						
							|  |  |  |         int do_retry = BIO_should_retry(bio); /* may be 1 only if !blocking */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (ERR_GET_LIB(err) == ERR_LIB_BIO) { | 
					
						
							|  |  |  |             switch (reason) { | 
					
						
							|  |  |  |             case ERR_R_SYS_LIB: | 
					
						
							|  |  |  |                 /*
 | 
					
						
							|  |  |  |                  * likely retryable system error occurred, which may be | 
					
						
							|  |  |  |                  * EAGAIN (resource temporarily unavailable) some 40 secs after | 
					
						
							|  |  |  |                  * calling getaddrinfo(): Temporary failure in name resolution | 
					
						
							|  |  |  |                  * or a premature ETIMEDOUT, some 30 seconds after connect() | 
					
						
							|  |  |  |                  */ | 
					
						
							|  |  |  |             case BIO_R_CONNECT_ERROR: | 
					
						
							|  |  |  |             case BIO_R_NBIO_CONNECT_ERROR: | 
					
						
							|  |  |  |                 /* some likely retryable connection error occurred */ | 
					
						
							|  |  |  |                 (void)BIO_reset(bio); /* often needed to avoid retry failure */ | 
					
						
							|  |  |  |                 do_retry = 1; | 
					
						
							|  |  |  |                 break; | 
					
						
							|  |  |  |             default: | 
					
						
							|  |  |  |                 break; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         if (timeout >= 0 && do_retry) { | 
					
						
							| 
									
										
										
										
											2021-05-13 01:15:27 +08:00
										 |  |  |             ERR_pop_to_mark(); | 
					
						
							| 
									
										
										
										
											2020-05-28 21:16:45 +08:00
										 |  |  |             /* will not actually wait if timeout == 0 (i.e., blocking BIO): */ | 
					
						
							|  |  |  |             rv = bio_wait(bio, max_time, nap_milliseconds); | 
					
						
							| 
									
										
										
										
											2020-02-22 04:41:56 +08:00
										 |  |  |             if (rv > 0) | 
					
						
							|  |  |  |                 goto retry; | 
					
						
							| 
									
										
										
										
											2020-11-04 19:23:19 +08:00
										 |  |  |             ERR_raise(ERR_LIB_BIO, | 
					
						
							|  |  |  |                       rv == 0 ? BIO_R_CONNECT_TIMEOUT : BIO_R_CONNECT_ERROR); | 
					
						
							| 
									
										
										
										
											2020-02-22 04:41:56 +08:00
										 |  |  |         } else { | 
					
						
							| 
									
										
										
										
											2021-05-13 01:15:27 +08:00
										 |  |  |             ERR_clear_last_mark(); | 
					
						
							| 
									
										
										
										
											2020-02-22 04:41:56 +08:00
										 |  |  |             rv = -1; | 
					
						
							| 
									
										
										
										
											2020-05-28 21:16:45 +08:00
										 |  |  |             if (err == 0) /* missing error queue entry */ | 
					
						
							| 
									
										
										
										
											2020-12-12 21:07:41 +08:00
										 |  |  |                 /* workaround: general error */ | 
					
						
							|  |  |  |                 ERR_raise(ERR_LIB_BIO, BIO_R_CONNECT_ERROR); | 
					
						
							| 
									
										
										
										
											2020-02-22 04:41:56 +08:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2021-05-13 01:15:27 +08:00
										 |  |  |     } else { | 
					
						
							|  |  |  |         ERR_clear_last_mark(); | 
					
						
							| 
									
										
										
										
											2020-02-22 04:41:56 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return rv; | 
					
						
							|  |  |  | } |