| 
									
										
										
										
											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
										 |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <stdio.h>
 | 
					
						
							|  |  |  | #include <errno.h>
 | 
					
						
							| 
									
										
										
										
											2019-09-28 06:45:40 +08:00
										 |  |  | #include "bio_local.h"
 | 
					
						
							| 
									
										
										
										
											2015-05-14 22:56:48 +08:00
										 |  |  | #include "internal/cryptlib.h"
 | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-05-16 06:54:43 +08:00
										 |  |  | static int buffer_write(BIO *h, const char *buf, int num); | 
					
						
							|  |  |  | static int buffer_read(BIO *h, char *buf, int size); | 
					
						
							|  |  |  | static int buffer_puts(BIO *h, const char *str); | 
					
						
							|  |  |  | static int buffer_gets(BIO *h, char *str, int size); | 
					
						
							|  |  |  | static long buffer_ctrl(BIO *h, int cmd, long arg1, void *arg2); | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | static int buffer_new(BIO *h); | 
					
						
							|  |  |  | static int buffer_free(BIO *data); | 
					
						
							| 
									
										
										
										
											2017-12-16 02:33:48 +08:00
										 |  |  | static long buffer_callback_ctrl(BIO *h, int cmd, BIO_info_cb *fp); | 
					
						
							| 
									
										
										
										
											2001-06-01 16:38:29 +08:00
										 |  |  | #define DEFAULT_BUFFER_SIZE     4096
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-20 00:32:14 +08:00
										 |  |  | static const BIO_METHOD methods_buffer = { | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  |     BIO_TYPE_BUFFER, | 
					
						
							|  |  |  |     "buffer", | 
					
						
							| 
									
										
										
										
											2016-10-20 22:18:39 +08:00
										 |  |  |     bwrite_conv, | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |     buffer_write, | 
					
						
							| 
									
										
										
										
											2016-09-06 00:26:58 +08:00
										 |  |  |     bread_conv, | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |     buffer_read, | 
					
						
							|  |  |  |     buffer_puts, | 
					
						
							|  |  |  |     buffer_gets, | 
					
						
							|  |  |  |     buffer_ctrl, | 
					
						
							|  |  |  |     buffer_new, | 
					
						
							|  |  |  |     buffer_free, | 
					
						
							| 
									
										
										
										
											2000-02-21 07:43:02 +08:00
										 |  |  |     buffer_callback_ctrl, | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-20 00:32:14 +08:00
										 |  |  | const BIO_METHOD *BIO_f_buffer(void) | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2017-10-17 22:04:09 +08:00
										 |  |  |     return &methods_buffer; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-04-20 05:31:43 +08:00
										 |  |  | static int buffer_new(BIO *bi) | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2015-09-03 21:15:26 +08:00
										 |  |  |     BIO_F_BUFFER_CTX *ctx = OPENSSL_zalloc(sizeof(*ctx)); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |     if (ctx == NULL) | 
					
						
							| 
									
										
										
										
											2017-10-17 22:04:09 +08:00
										 |  |  |         return 0; | 
					
						
							| 
									
										
										
										
											2015-09-03 21:15:26 +08:00
										 |  |  |     ctx->ibuf_size = DEFAULT_BUFFER_SIZE; | 
					
						
							| 
									
										
										
										
											2015-04-29 03:28:14 +08:00
										 |  |  |     ctx->ibuf = OPENSSL_malloc(DEFAULT_BUFFER_SIZE); | 
					
						
							| 
									
										
										
										
											2000-06-02 06:19:21 +08:00
										 |  |  |     if (ctx->ibuf == NULL) { | 
					
						
							|  |  |  |         OPENSSL_free(ctx); | 
					
						
							| 
									
										
										
										
											2017-10-17 22:04:09 +08:00
										 |  |  |         return 0; | 
					
						
							| 
									
										
										
										
											2000-06-02 06:19:21 +08:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2015-09-03 21:15:26 +08:00
										 |  |  |     ctx->obuf_size = DEFAULT_BUFFER_SIZE; | 
					
						
							| 
									
										
										
										
											2015-04-29 03:28:14 +08:00
										 |  |  |     ctx->obuf = OPENSSL_malloc(DEFAULT_BUFFER_SIZE); | 
					
						
							| 
									
										
										
										
											2000-06-02 06:19:21 +08:00
										 |  |  |     if (ctx->obuf == NULL) { | 
					
						
							|  |  |  |         OPENSSL_free(ctx->ibuf); | 
					
						
							|  |  |  |         OPENSSL_free(ctx); | 
					
						
							| 
									
										
										
										
											2017-10-17 22:04:09 +08:00
										 |  |  |         return 0; | 
					
						
							| 
									
										
										
										
											2000-06-02 06:19:21 +08:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |     bi->init = 1; | 
					
						
							|  |  |  |     bi->ptr = (char *)ctx; | 
					
						
							|  |  |  |     bi->flags = 0; | 
					
						
							| 
									
										
										
										
											2017-10-09 19:05:58 +08:00
										 |  |  |     return 1; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-04-20 05:31:43 +08:00
										 |  |  | static int buffer_free(BIO *a) | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     BIO_F_BUFFER_CTX *b; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |     if (a == NULL) | 
					
						
							| 
									
										
										
										
											2017-10-17 22:04:09 +08:00
										 |  |  |         return 0; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |     b = (BIO_F_BUFFER_CTX *)a->ptr; | 
					
						
							| 
									
										
										
										
											2015-05-01 22:02:07 +08:00
										 |  |  |     OPENSSL_free(b->ibuf); | 
					
						
							|  |  |  |     OPENSSL_free(b->obuf); | 
					
						
							| 
									
										
										
										
											2000-06-02 06:19:21 +08:00
										 |  |  |     OPENSSL_free(a->ptr); | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |     a->ptr = NULL; | 
					
						
							|  |  |  |     a->init = 0; | 
					
						
							|  |  |  |     a->flags = 0; | 
					
						
							| 
									
										
										
										
											2017-10-09 19:05:58 +08:00
										 |  |  |     return 1; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-04-20 05:31:43 +08:00
										 |  |  | static int buffer_read(BIO *b, char *out, int outl) | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     int i, num = 0; | 
					
						
							|  |  |  |     BIO_F_BUFFER_CTX *ctx; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |     if (out == NULL) | 
					
						
							| 
									
										
										
										
											2017-10-17 22:04:09 +08:00
										 |  |  |         return 0; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |     ctx = (BIO_F_BUFFER_CTX *)b->ptr; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |     if ((ctx == NULL) || (b->next_bio == NULL)) | 
					
						
							| 
									
										
										
										
											2017-10-17 22:04:09 +08:00
										 |  |  |         return 0; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |     num = 0; | 
					
						
							|  |  |  |     BIO_clear_retry_flags(b); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |  start: | 
					
						
							|  |  |  |     i = ctx->ibuf_len; | 
					
						
							|  |  |  |     /* If there is stuff left over, grab it */ | 
					
						
							|  |  |  |     if (i != 0) { | 
					
						
							|  |  |  |         if (i > outl) | 
					
						
							|  |  |  |             i = outl; | 
					
						
							|  |  |  |         memcpy(out, &(ctx->ibuf[ctx->ibuf_off]), i); | 
					
						
							|  |  |  |         ctx->ibuf_off += i; | 
					
						
							|  |  |  |         ctx->ibuf_len -= i; | 
					
						
							|  |  |  |         num += i; | 
					
						
							|  |  |  |         if (outl == i) | 
					
						
							| 
									
										
										
										
											2017-10-17 22:04:09 +08:00
										 |  |  |             return num; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |         outl -= i; | 
					
						
							|  |  |  |         out += i; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |     /*
 | 
					
						
							|  |  |  |      * We may have done a partial read. try to do more. We have nothing in | 
					
						
							|  |  |  |      * the buffer. If we get an error and have read some data, just return it | 
					
						
							|  |  |  |      * and let them retry to get the error again. copy direct to parent | 
					
						
							|  |  |  |      * address space | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     if (outl > ctx->ibuf_size) { | 
					
						
							|  |  |  |         for (;;) { | 
					
						
							|  |  |  |             i = BIO_read(b->next_bio, out, outl); | 
					
						
							|  |  |  |             if (i <= 0) { | 
					
						
							|  |  |  |                 BIO_copy_next_retry(b); | 
					
						
							|  |  |  |                 if (i < 0) | 
					
						
							|  |  |  |                     return ((num > 0) ? num : i); | 
					
						
							|  |  |  |                 if (i == 0) | 
					
						
							| 
									
										
										
										
											2017-10-17 22:04:09 +08:00
										 |  |  |                     return num; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |             } | 
					
						
							|  |  |  |             num += i; | 
					
						
							|  |  |  |             if (outl == i) | 
					
						
							| 
									
										
										
										
											2017-10-17 22:04:09 +08:00
										 |  |  |                 return num; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |             out += i; | 
					
						
							|  |  |  |             outl -= i; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     /* else */ | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |     /* we are going to be doing some buffering */ | 
					
						
							|  |  |  |     i = BIO_read(b->next_bio, ctx->ibuf, ctx->ibuf_size); | 
					
						
							|  |  |  |     if (i <= 0) { | 
					
						
							|  |  |  |         BIO_copy_next_retry(b); | 
					
						
							|  |  |  |         if (i < 0) | 
					
						
							|  |  |  |             return ((num > 0) ? num : i); | 
					
						
							|  |  |  |         if (i == 0) | 
					
						
							| 
									
										
										
										
											2017-10-17 22:04:09 +08:00
										 |  |  |             return num; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |     } | 
					
						
							|  |  |  |     ctx->ibuf_off = 0; | 
					
						
							|  |  |  |     ctx->ibuf_len = i; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |     /* Lets re-read using ourselves :-) */ | 
					
						
							|  |  |  |     goto start; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-05-16 06:54:43 +08:00
										 |  |  | static int buffer_write(BIO *b, const char *in, int inl) | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     int i, num = 0; | 
					
						
							|  |  |  |     BIO_F_BUFFER_CTX *ctx; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |     if ((in == NULL) || (inl <= 0)) | 
					
						
							| 
									
										
										
										
											2017-10-17 22:04:09 +08:00
										 |  |  |         return 0; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |     ctx = (BIO_F_BUFFER_CTX *)b->ptr; | 
					
						
							|  |  |  |     if ((ctx == NULL) || (b->next_bio == NULL)) | 
					
						
							| 
									
										
										
										
											2017-10-17 22:04:09 +08:00
										 |  |  |         return 0; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |     BIO_clear_retry_flags(b); | 
					
						
							|  |  |  |  start: | 
					
						
							|  |  |  |     i = ctx->obuf_size - (ctx->obuf_len + ctx->obuf_off); | 
					
						
							|  |  |  |     /* add to buffer and return */ | 
					
						
							|  |  |  |     if (i >= inl) { | 
					
						
							| 
									
										
										
										
											2011-12-02 20:25:03 +08:00
										 |  |  |         memcpy(&(ctx->obuf[ctx->obuf_off + ctx->obuf_len]), in, inl); | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |         ctx->obuf_len += inl; | 
					
						
							|  |  |  |         return (num + inl); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     /* else */ | 
					
						
							|  |  |  |     /* stuff already in buffer, so add to it first, then flush */ | 
					
						
							|  |  |  |     if (ctx->obuf_len != 0) { | 
					
						
							|  |  |  |         if (i > 0) {            /* lets fill it up if we can */ | 
					
						
							| 
									
										
										
										
											2011-12-02 20:25:03 +08:00
										 |  |  |             memcpy(&(ctx->obuf[ctx->obuf_off + ctx->obuf_len]), in, i); | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |             in += i; | 
					
						
							|  |  |  |             inl -= i; | 
					
						
							|  |  |  |             num += i; | 
					
						
							|  |  |  |             ctx->obuf_len += i; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         /* we now have a full buffer needing flushing */ | 
					
						
							|  |  |  |         for (;;) { | 
					
						
							|  |  |  |             i = BIO_write(b->next_bio, &(ctx->obuf[ctx->obuf_off]), | 
					
						
							|  |  |  |                           ctx->obuf_len); | 
					
						
							|  |  |  |             if (i <= 0) { | 
					
						
							|  |  |  |                 BIO_copy_next_retry(b); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |                 if (i < 0) | 
					
						
							|  |  |  |                     return ((num > 0) ? num : i); | 
					
						
							|  |  |  |                 if (i == 0) | 
					
						
							| 
									
										
										
										
											2017-10-17 22:04:09 +08:00
										 |  |  |                     return num; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |             } | 
					
						
							|  |  |  |             ctx->obuf_off += i; | 
					
						
							|  |  |  |             ctx->obuf_len -= i; | 
					
						
							|  |  |  |             if (ctx->obuf_len == 0) | 
					
						
							|  |  |  |                 break; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |     } | 
					
						
							|  |  |  |     /*
 | 
					
						
							|  |  |  |      * we only get here if the buffer has been flushed and we still have | 
					
						
							|  |  |  |      * stuff to write | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     ctx->obuf_off = 0; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |     /* we now have inl bytes to write */ | 
					
						
							|  |  |  |     while (inl >= ctx->obuf_size) { | 
					
						
							|  |  |  |         i = BIO_write(b->next_bio, in, inl); | 
					
						
							|  |  |  |         if (i <= 0) { | 
					
						
							|  |  |  |             BIO_copy_next_retry(b); | 
					
						
							|  |  |  |             if (i < 0) | 
					
						
							|  |  |  |                 return ((num > 0) ? num : i); | 
					
						
							|  |  |  |             if (i == 0) | 
					
						
							| 
									
										
										
										
											2017-10-17 22:04:09 +08:00
										 |  |  |                 return num; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |         } | 
					
						
							|  |  |  |         num += i; | 
					
						
							|  |  |  |         in += i; | 
					
						
							|  |  |  |         inl -= i; | 
					
						
							|  |  |  |         if (inl == 0) | 
					
						
							| 
									
										
										
										
											2017-10-17 22:04:09 +08:00
										 |  |  |             return num; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |     /*
 | 
					
						
							|  |  |  |      * copy the rest into the buffer since we have only a small amount left | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     goto start; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-05-16 06:54:43 +08:00
										 |  |  | static long buffer_ctrl(BIO *b, int cmd, long num, void *ptr) | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     BIO *dbio; | 
					
						
							|  |  |  |     BIO_F_BUFFER_CTX *ctx; | 
					
						
							|  |  |  |     long ret = 1; | 
					
						
							|  |  |  |     char *p1, *p2; | 
					
						
							|  |  |  |     int r, i, *ip; | 
					
						
							|  |  |  |     int ibs, obs; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |     ctx = (BIO_F_BUFFER_CTX *)b->ptr; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |     switch (cmd) { | 
					
						
							|  |  |  |     case BIO_CTRL_RESET: | 
					
						
							|  |  |  |         ctx->ibuf_off = 0; | 
					
						
							|  |  |  |         ctx->ibuf_len = 0; | 
					
						
							|  |  |  |         ctx->obuf_off = 0; | 
					
						
							|  |  |  |         ctx->obuf_len = 0; | 
					
						
							| 
									
										
										
										
											2000-02-21 07:43:02 +08:00
										 |  |  |         if (b->next_bio == NULL) | 
					
						
							| 
									
										
										
										
											2017-10-17 22:04:09 +08:00
										 |  |  |             return 0; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |         ret = BIO_ctrl(b->next_bio, cmd, num, ptr); | 
					
						
							|  |  |  |         break; | 
					
						
							| 
									
										
										
										
											2016-11-19 01:18:37 +08:00
										 |  |  |     case BIO_CTRL_EOF: | 
					
						
							|  |  |  |         if (ctx->ibuf_len > 0) | 
					
						
							|  |  |  |             return 0; | 
					
						
							|  |  |  |         ret = BIO_ctrl(b->next_bio, cmd, num, ptr); | 
					
						
							|  |  |  |         break; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |     case BIO_CTRL_INFO: | 
					
						
							|  |  |  |         ret = (long)ctx->obuf_len; | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     case BIO_C_GET_BUFF_NUM_LINES: | 
					
						
							|  |  |  |         ret = 0; | 
					
						
							|  |  |  |         p1 = ctx->ibuf; | 
					
						
							| 
									
										
										
										
											2011-12-02 20:25:03 +08:00
										 |  |  |         for (i = 0; i < ctx->ibuf_len; i++) { | 
					
						
							|  |  |  |             if (p1[ctx->ibuf_off + i] == '\n') | 
					
						
							|  |  |  |                 ret++; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |         } | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     case BIO_CTRL_WPENDING: | 
					
						
							|  |  |  |         ret = (long)ctx->obuf_len; | 
					
						
							|  |  |  |         if (ret == 0) { | 
					
						
							| 
									
										
										
										
											2000-02-21 07:43:02 +08:00
										 |  |  |             if (b->next_bio == NULL) | 
					
						
							| 
									
										
										
										
											2017-10-17 22:04:09 +08:00
										 |  |  |                 return 0; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |             ret = BIO_ctrl(b->next_bio, cmd, num, ptr); | 
					
						
							| 
									
										
										
										
											2000-02-21 07:43:02 +08:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |         break; | 
					
						
							|  |  |  |     case BIO_CTRL_PENDING: | 
					
						
							|  |  |  |         ret = (long)ctx->ibuf_len; | 
					
						
							|  |  |  |         if (ret == 0) { | 
					
						
							| 
									
										
										
										
											2000-02-21 07:43:02 +08:00
										 |  |  |             if (b->next_bio == NULL) | 
					
						
							| 
									
										
										
										
											2017-10-17 22:04:09 +08:00
										 |  |  |                 return 0; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |             ret = BIO_ctrl(b->next_bio, cmd, num, ptr); | 
					
						
							| 
									
										
										
										
											2000-02-21 07:43:02 +08:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |         break; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  |     case BIO_C_SET_BUFF_READ_DATA: | 
					
						
							|  |  |  |         if (num > ctx->ibuf_size) { | 
					
						
							| 
									
										
										
										
											2021-04-12 11:58:14 +08:00
										 |  |  |             if (num <= 0) | 
					
						
							|  |  |  |                 return 0; | 
					
						
							|  |  |  |             p1 = OPENSSL_malloc((size_t)num); | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  |             if (p1 == NULL) | 
					
						
							| 
									
										
										
										
											2022-09-29 19:57:34 +08:00
										 |  |  |                 return 0; | 
					
						
							| 
									
										
										
										
											2015-05-01 22:02:07 +08:00
										 |  |  |             OPENSSL_free(ctx->ibuf); | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  |             ctx->ibuf = p1; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         ctx->ibuf_off = 0; | 
					
						
							|  |  |  |         ctx->ibuf_len = (int)num; | 
					
						
							|  |  |  |         memcpy(ctx->ibuf, ptr, (int)num); | 
					
						
							|  |  |  |         ret = 1; | 
					
						
							|  |  |  |         break; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |     case BIO_C_SET_BUFF_SIZE: | 
					
						
							|  |  |  |         if (ptr != NULL) { | 
					
						
							|  |  |  |             ip = (int *)ptr; | 
					
						
							|  |  |  |             if (*ip == 0) { | 
					
						
							|  |  |  |                 ibs = (int)num; | 
					
						
							|  |  |  |                 obs = ctx->obuf_size; | 
					
						
							|  |  |  |             } else {            /* if (*ip == 1) */ | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |                 ibs = ctx->ibuf_size; | 
					
						
							|  |  |  |                 obs = (int)num; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } else { | 
					
						
							|  |  |  |             ibs = (int)num; | 
					
						
							|  |  |  |             obs = (int)num; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         p1 = ctx->ibuf; | 
					
						
							|  |  |  |         p2 = ctx->obuf; | 
					
						
							|  |  |  |         if ((ibs > DEFAULT_BUFFER_SIZE) && (ibs != ctx->ibuf_size)) { | 
					
						
							| 
									
										
										
										
											2021-04-12 11:58:14 +08:00
										 |  |  |             if (num <= 0) | 
					
						
							|  |  |  |                 return 0; | 
					
						
							|  |  |  |             p1 = OPENSSL_malloc((size_t)num); | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  |             if (p1 == NULL) | 
					
						
							| 
									
										
										
										
											2022-09-29 19:57:34 +08:00
										 |  |  |                 return 0; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |         } | 
					
						
							|  |  |  |         if ((obs > DEFAULT_BUFFER_SIZE) && (obs != ctx->obuf_size)) { | 
					
						
							| 
									
										
										
										
											2021-04-12 11:58:14 +08:00
										 |  |  |             p2 = OPENSSL_malloc((size_t)num); | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |             if (p2 == NULL) { | 
					
						
							| 
									
										
										
										
											2000-06-02 06:19:21 +08:00
										 |  |  |                 if (p1 != ctx->ibuf) | 
					
						
							|  |  |  |                     OPENSSL_free(p1); | 
					
						
							| 
									
										
										
										
											2022-09-29 19:57:34 +08:00
										 |  |  |                 return 0; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |             } | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |         if (ctx->ibuf != p1) { | 
					
						
							| 
									
										
										
										
											2000-06-02 06:19:21 +08:00
										 |  |  |             OPENSSL_free(ctx->ibuf); | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |             ctx->ibuf = p1; | 
					
						
							|  |  |  |             ctx->ibuf_off = 0; | 
					
						
							|  |  |  |             ctx->ibuf_len = 0; | 
					
						
							|  |  |  |             ctx->ibuf_size = ibs; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         if (ctx->obuf != p2) { | 
					
						
							| 
									
										
										
										
											2000-06-02 06:19:21 +08:00
										 |  |  |             OPENSSL_free(ctx->obuf); | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |             ctx->obuf = p2; | 
					
						
							|  |  |  |             ctx->obuf_off = 0; | 
					
						
							|  |  |  |             ctx->obuf_len = 0; | 
					
						
							|  |  |  |             ctx->obuf_size = obs; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     case BIO_C_DO_STATE_MACHINE: | 
					
						
							| 
									
										
										
										
											2000-02-21 07:43:02 +08:00
										 |  |  |         if (b->next_bio == NULL) | 
					
						
							| 
									
										
										
										
											2017-10-17 22:04:09 +08:00
										 |  |  |             return 0; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |         BIO_clear_retry_flags(b); | 
					
						
							|  |  |  |         ret = BIO_ctrl(b->next_bio, cmd, num, ptr); | 
					
						
							|  |  |  |         BIO_copy_next_retry(b); | 
					
						
							|  |  |  |         break; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |     case BIO_CTRL_FLUSH: | 
					
						
							| 
									
										
										
										
											2000-02-21 07:43:02 +08:00
										 |  |  |         if (b->next_bio == NULL) | 
					
						
							| 
									
										
										
										
											2017-10-17 22:04:09 +08:00
										 |  |  |             return 0; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |         if (ctx->obuf_len <= 0) { | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  |             ret = BIO_ctrl(b->next_bio, cmd, num, ptr); | 
					
						
							| 
									
										
										
										
											2023-05-11 17:30:14 +08:00
										 |  |  |             BIO_copy_next_retry(b); | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |             break; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |         for (;;) { | 
					
						
							|  |  |  |             BIO_clear_retry_flags(b); | 
					
						
							| 
									
										
										
										
											2011-12-02 20:25:03 +08:00
										 |  |  |             if (ctx->obuf_len > 0) { | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |                 r = BIO_write(b->next_bio, | 
					
						
							|  |  |  |                               &(ctx->obuf[ctx->obuf_off]), ctx->obuf_len); | 
					
						
							|  |  |  |                 BIO_copy_next_retry(b); | 
					
						
							|  |  |  |                 if (r <= 0) | 
					
						
							| 
									
										
										
										
											2017-10-17 22:04:09 +08:00
										 |  |  |                     return (long)r; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |                 ctx->obuf_off += r; | 
					
						
							| 
									
										
										
										
											2011-12-02 20:25:03 +08:00
										 |  |  |                 ctx->obuf_len -= r; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |             } else { | 
					
						
							|  |  |  |                 ctx->obuf_len = 0; | 
					
						
							|  |  |  |                 ctx->obuf_off = 0; | 
					
						
							|  |  |  |                 break; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |             } | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											1999-01-05 03:55:12 +08:00
										 |  |  |         ret = BIO_ctrl(b->next_bio, cmd, num, ptr); | 
					
						
							| 
									
										
										
										
											2023-05-11 17:30:14 +08:00
										 |  |  |         BIO_copy_next_retry(b); | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |         break; | 
					
						
							|  |  |  |     case BIO_CTRL_DUP: | 
					
						
							|  |  |  |         dbio = (BIO *)ptr; | 
					
						
							| 
									
										
										
										
											2022-12-02 16:35:53 +08:00
										 |  |  |         if (BIO_set_read_buffer_size(dbio, ctx->ibuf_size) <= 0 || | 
					
						
							|  |  |  |             BIO_set_write_buffer_size(dbio, ctx->obuf_size) <= 0) | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |             ret = 0; | 
					
						
							|  |  |  |         break; | 
					
						
							| 
									
										
										
										
											2016-11-19 01:18:37 +08:00
										 |  |  |     case BIO_CTRL_PEEK: | 
					
						
							|  |  |  |         /* Ensure there's stuff in the input buffer */ | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |             char fake_buf[1]; | 
					
						
							|  |  |  |             (void)buffer_read(b, fake_buf, 0); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         if (num > ctx->ibuf_len) | 
					
						
							|  |  |  |             num = ctx->ibuf_len; | 
					
						
							|  |  |  |         memcpy(ptr, &(ctx->ibuf[ctx->ibuf_off]), num); | 
					
						
							|  |  |  |         ret = num; | 
					
						
							|  |  |  |         break; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |     default: | 
					
						
							| 
									
										
										
										
											2000-02-21 07:43:02 +08:00
										 |  |  |         if (b->next_bio == NULL) | 
					
						
							| 
									
										
										
										
											2017-10-17 22:04:09 +08:00
										 |  |  |             return 0; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |         ret = BIO_ctrl(b->next_bio, cmd, num, ptr); | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2017-10-17 22:04:09 +08:00
										 |  |  |     return ret; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-16 02:33:48 +08:00
										 |  |  | static long buffer_callback_ctrl(BIO *b, int cmd, BIO_info_cb *fp) | 
					
						
							| 
									
										
										
										
											2000-02-21 07:43:02 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     if (b->next_bio == NULL) | 
					
						
							| 
									
										
										
										
											2017-10-17 22:04:09 +08:00
										 |  |  |         return 0; | 
					
						
							| 
									
										
										
										
											2020-02-05 11:47:05 +08:00
										 |  |  |     return BIO_callback_ctrl(b->next_bio, cmd, fp); | 
					
						
							| 
									
										
										
										
											2000-02-21 07:43:02 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-04-20 05:31:43 +08:00
										 |  |  | static int buffer_gets(BIO *b, char *buf, int size) | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     BIO_F_BUFFER_CTX *ctx; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  |     int num = 0, i, flag; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |     char *p; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |     ctx = (BIO_F_BUFFER_CTX *)b->ptr; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  |     size--;                     /* reserve space for a '\0' */ | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |     BIO_clear_retry_flags(b); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |     for (;;) { | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  |         if (ctx->ibuf_len > 0) { | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |             p = &(ctx->ibuf[ctx->ibuf_off]); | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  |             flag = 0; | 
					
						
							|  |  |  |             for (i = 0; (i < ctx->ibuf_len) && (i < size); i++) { | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |                 *(buf++) = p[i]; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  |                 if (p[i] == '\n') { | 
					
						
							|  |  |  |                     flag = 1; | 
					
						
							|  |  |  |                     i++; | 
					
						
							|  |  |  |                     break; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |                 } | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  |             } | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |             num += i; | 
					
						
							|  |  |  |             size -= i; | 
					
						
							|  |  |  |             ctx->ibuf_len -= i; | 
					
						
							|  |  |  |             ctx->ibuf_off += i; | 
					
						
							| 
									
										
										
										
											2002-11-13 23:43:43 +08:00
										 |  |  |             if (flag || size == 0) { | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  |                 *buf = '\0'; | 
					
						
							| 
									
										
										
										
											2017-10-17 22:04:09 +08:00
										 |  |  |                 return num; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |             } | 
					
						
							|  |  |  |         } else {                /* read another chunk */ | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |             i = BIO_read(b->next_bio, ctx->ibuf, ctx->ibuf_size); | 
					
						
							|  |  |  |             if (i <= 0) { | 
					
						
							|  |  |  |                 BIO_copy_next_retry(b); | 
					
						
							| 
									
										
										
										
											2003-06-12 02:43:45 +08:00
										 |  |  |                 *buf = '\0'; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |                 if (i < 0) | 
					
						
							|  |  |  |                     return ((num > 0) ? num : i); | 
					
						
							|  |  |  |                 if (i == 0) | 
					
						
							| 
									
										
										
										
											2017-10-17 22:04:09 +08:00
										 |  |  |                     return num; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |             } | 
					
						
							|  |  |  |             ctx->ibuf_len = i; | 
					
						
							|  |  |  |             ctx->ibuf_off = 0; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-05-16 06:54:43 +08:00
										 |  |  | static int buffer_puts(BIO *b, const char *str) | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2017-10-17 22:04:09 +08:00
										 |  |  |     return buffer_write(b, str, strlen(str)); | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | } |