| 
									
										
										
										
											2016-05-18 02:18:30 +08:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Copyright 1995-2016 The OpenSSL Project Authors. All Rights Reserved. | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2016-05-18 02:18:30 +08:00
										 |  |  |  * Licensed under the OpenSSL license (the "License").  You may not use | 
					
						
							|  |  |  |  * this file except in compliance with the License.  You can obtain a copy | 
					
						
							|  |  |  |  * in the file LICENSE in the source distribution or at | 
					
						
							|  |  |  |  * https://www.openssl.org/source/license.html
 | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <stdio.h>
 | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  | #include <stdlib.h>
 | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | #include <string.h>
 | 
					
						
							|  |  |  | #include <errno.h>
 | 
					
						
							| 
									
										
										
										
											1999-04-24 06:13:45 +08:00
										 |  |  | #include <openssl/crypto.h>
 | 
					
						
							| 
									
										
										
										
											2016-03-22 17:21:29 +08:00
										 |  |  | #include "internal/bio.h"
 | 
					
						
							| 
									
										
										
										
											1999-04-24 06:13:45 +08:00
										 |  |  | #include <openssl/err.h>
 | 
					
						
							| 
									
										
										
										
											2015-01-28 04:11:24 +08:00
										 |  |  | #include "ssl_locl.h"
 | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-05-16 06:54:43 +08:00
										 |  |  | static int ssl_write(BIO *h, const char *buf, int num); | 
					
						
							|  |  |  | static int ssl_read(BIO *h, char *buf, int size); | 
					
						
							|  |  |  | static int ssl_puts(BIO *h, const char *str); | 
					
						
							|  |  |  | static long ssl_ctrl(BIO *h, int cmd, long arg1, void *arg2); | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | static int ssl_new(BIO *h); | 
					
						
							|  |  |  | static int ssl_free(BIO *data); | 
					
						
							| 
									
										
										
										
											2000-06-21 10:25:30 +08:00
										 |  |  | static long ssl_callback_ctrl(BIO *h, int cmd, bio_info_cb *fp); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | typedef struct bio_ssl_st { | 
					
						
							|  |  |  |     SSL *ssl;                   /* The ssl handle :-) */ | 
					
						
							|  |  |  |     /* re-negotiate every time the total number of bytes is this size */ | 
					
						
							|  |  |  |     int num_renegotiates; | 
					
						
							|  |  |  |     unsigned long renegotiate_count; | 
					
						
							|  |  |  |     unsigned long byte_count; | 
					
						
							|  |  |  |     unsigned long renegotiate_timeout; | 
					
						
							|  |  |  |     unsigned long last_time; | 
					
						
							|  |  |  | } BIO_SSL; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-20 00:32:14 +08:00
										 |  |  | static const BIO_METHOD methods_sslp = { | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     BIO_TYPE_SSL, "ssl", | 
					
						
							|  |  |  |     ssl_write, | 
					
						
							|  |  |  |     ssl_read, | 
					
						
							|  |  |  |     ssl_puts, | 
					
						
							|  |  |  |     NULL,                       /* ssl_gets, */ | 
					
						
							|  |  |  |     ssl_ctrl, | 
					
						
							|  |  |  |     ssl_new, | 
					
						
							|  |  |  |     ssl_free, | 
					
						
							|  |  |  |     ssl_callback_ctrl, | 
					
						
							|  |  |  | }; | 
					
						
							| 
									
										
										
										
											2000-01-18 17:30:51 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-20 00:32:14 +08:00
										 |  |  | const BIO_METHOD *BIO_f_ssl(void) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     return (&methods_sslp); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-04-20 05:31:43 +08:00
										 |  |  | static int ssl_new(BIO *bi) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2015-08-26 01:25:58 +08:00
										 |  |  |     BIO_SSL *bs = OPENSSL_zalloc(sizeof(*bs)); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (bs == NULL) { | 
					
						
							|  |  |  |         BIOerr(BIO_F_SSL_NEW, ERR_R_MALLOC_FAILURE); | 
					
						
							|  |  |  |         return (0); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2016-03-22 17:21:29 +08:00
										 |  |  |     BIO_set_init(bi, 0); | 
					
						
							|  |  |  |     BIO_set_data(bi, bs); | 
					
						
							|  |  |  |     /* Clear all flags */ | 
					
						
							|  |  |  |     BIO_clear_flags(bi, ~0); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return 1; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-04-20 05:31:43 +08:00
										 |  |  | static int ssl_free(BIO *a) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     BIO_SSL *bs; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (a == NULL) | 
					
						
							|  |  |  |         return (0); | 
					
						
							| 
									
										
										
										
											2016-03-22 17:21:29 +08:00
										 |  |  |     bs = BIO_get_data(a); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     if (bs->ssl != NULL) | 
					
						
							|  |  |  |         SSL_shutdown(bs->ssl); | 
					
						
							| 
									
										
										
										
											2016-03-22 17:21:29 +08:00
										 |  |  |     if (BIO_get_shutdown(a)) { | 
					
						
							|  |  |  |         if (BIO_get_init(a)) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |             SSL_free(bs->ssl); | 
					
						
							| 
									
										
										
										
											2016-03-22 17:21:29 +08:00
										 |  |  |         /* Clear all flags */ | 
					
						
							|  |  |  |         BIO_clear_flags(a, ~0); | 
					
						
							|  |  |  |         BIO_set_init(a, 0); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2016-03-22 17:21:29 +08:00
										 |  |  |     OPENSSL_free(bs); | 
					
						
							|  |  |  |     return 1; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-04-20 05:31:43 +08:00
										 |  |  | static int ssl_read(BIO *b, char *out, int outl) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     int ret = 1; | 
					
						
							|  |  |  |     BIO_SSL *sb; | 
					
						
							|  |  |  |     SSL *ssl; | 
					
						
							|  |  |  |     int retry_reason = 0; | 
					
						
							|  |  |  |     int r = 0; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     if (out == NULL) | 
					
						
							|  |  |  |         return (0); | 
					
						
							| 
									
										
										
										
											2016-03-22 17:21:29 +08:00
										 |  |  |     sb = BIO_get_data(b); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     ssl = sb->ssl; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     BIO_clear_retry_flags(b); | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     ret = SSL_read(ssl, out, outl); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     switch (SSL_get_error(ssl, ret)) { | 
					
						
							|  |  |  |     case SSL_ERROR_NONE: | 
					
						
							|  |  |  |         if (ret <= 0) | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         if (sb->renegotiate_count > 0) { | 
					
						
							|  |  |  |             sb->byte_count += ret; | 
					
						
							|  |  |  |             if (sb->byte_count > sb->renegotiate_count) { | 
					
						
							|  |  |  |                 sb->byte_count = 0; | 
					
						
							|  |  |  |                 sb->num_renegotiates++; | 
					
						
							|  |  |  |                 SSL_renegotiate(ssl); | 
					
						
							|  |  |  |                 r = 1; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         if ((sb->renegotiate_timeout > 0) && (!r)) { | 
					
						
							|  |  |  |             unsigned long tm; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             tm = (unsigned long)time(NULL); | 
					
						
							|  |  |  |             if (tm > sb->last_time + sb->renegotiate_timeout) { | 
					
						
							|  |  |  |                 sb->last_time = tm; | 
					
						
							|  |  |  |                 sb->num_renegotiates++; | 
					
						
							|  |  |  |                 SSL_renegotiate(ssl); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     case SSL_ERROR_WANT_READ: | 
					
						
							|  |  |  |         BIO_set_retry_read(b); | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     case SSL_ERROR_WANT_WRITE: | 
					
						
							|  |  |  |         BIO_set_retry_write(b); | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     case SSL_ERROR_WANT_X509_LOOKUP: | 
					
						
							|  |  |  |         BIO_set_retry_special(b); | 
					
						
							|  |  |  |         retry_reason = BIO_RR_SSL_X509_LOOKUP; | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     case SSL_ERROR_WANT_ACCEPT: | 
					
						
							|  |  |  |         BIO_set_retry_special(b); | 
					
						
							|  |  |  |         retry_reason = BIO_RR_ACCEPT; | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     case SSL_ERROR_WANT_CONNECT: | 
					
						
							|  |  |  |         BIO_set_retry_special(b); | 
					
						
							|  |  |  |         retry_reason = BIO_RR_CONNECT; | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     case SSL_ERROR_SYSCALL: | 
					
						
							|  |  |  |     case SSL_ERROR_SSL: | 
					
						
							|  |  |  |     case SSL_ERROR_ZERO_RETURN: | 
					
						
							|  |  |  |     default: | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-22 17:21:29 +08:00
										 |  |  |     BIO_set_retry_reason(b, retry_reason); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     return (ret); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-05-16 06:54:43 +08:00
										 |  |  | static int ssl_write(BIO *b, const char *out, int outl) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     int ret, r = 0; | 
					
						
							|  |  |  |     int retry_reason = 0; | 
					
						
							|  |  |  |     SSL *ssl; | 
					
						
							|  |  |  |     BIO_SSL *bs; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (out == NULL) | 
					
						
							|  |  |  |         return (0); | 
					
						
							| 
									
										
										
										
											2016-03-22 17:21:29 +08:00
										 |  |  |     bs = BIO_get_data(b); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     ssl = bs->ssl; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     BIO_clear_retry_flags(b); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /*
 | 
					
						
							|  |  |  |      * ret=SSL_do_handshake(ssl); if (ret > 0) | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     ret = SSL_write(ssl, out, outl); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     switch (SSL_get_error(ssl, ret)) { | 
					
						
							|  |  |  |     case SSL_ERROR_NONE: | 
					
						
							|  |  |  |         if (ret <= 0) | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         if (bs->renegotiate_count > 0) { | 
					
						
							|  |  |  |             bs->byte_count += ret; | 
					
						
							|  |  |  |             if (bs->byte_count > bs->renegotiate_count) { | 
					
						
							|  |  |  |                 bs->byte_count = 0; | 
					
						
							|  |  |  |                 bs->num_renegotiates++; | 
					
						
							|  |  |  |                 SSL_renegotiate(ssl); | 
					
						
							|  |  |  |                 r = 1; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         if ((bs->renegotiate_timeout > 0) && (!r)) { | 
					
						
							|  |  |  |             unsigned long tm; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             tm = (unsigned long)time(NULL); | 
					
						
							|  |  |  |             if (tm > bs->last_time + bs->renegotiate_timeout) { | 
					
						
							|  |  |  |                 bs->last_time = tm; | 
					
						
							|  |  |  |                 bs->num_renegotiates++; | 
					
						
							|  |  |  |                 SSL_renegotiate(ssl); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     case SSL_ERROR_WANT_WRITE: | 
					
						
							|  |  |  |         BIO_set_retry_write(b); | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     case SSL_ERROR_WANT_READ: | 
					
						
							|  |  |  |         BIO_set_retry_read(b); | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     case SSL_ERROR_WANT_X509_LOOKUP: | 
					
						
							|  |  |  |         BIO_set_retry_special(b); | 
					
						
							|  |  |  |         retry_reason = BIO_RR_SSL_X509_LOOKUP; | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     case SSL_ERROR_WANT_CONNECT: | 
					
						
							|  |  |  |         BIO_set_retry_special(b); | 
					
						
							|  |  |  |         retry_reason = BIO_RR_CONNECT; | 
					
						
							|  |  |  |     case SSL_ERROR_SYSCALL: | 
					
						
							|  |  |  |     case SSL_ERROR_SSL: | 
					
						
							|  |  |  |     default: | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-22 17:21:29 +08:00
										 |  |  |     BIO_set_retry_reason(b, retry_reason); | 
					
						
							|  |  |  |     return ret; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-05-16 06:54:43 +08:00
										 |  |  | static long ssl_ctrl(BIO *b, int cmd, long num, void *ptr) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     SSL **sslp, *ssl; | 
					
						
							| 
									
										
										
										
											2016-03-22 17:21:29 +08:00
										 |  |  |     BIO_SSL *bs, *dbs; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     BIO *dbio, *bio; | 
					
						
							|  |  |  |     long ret = 1; | 
					
						
							| 
									
										
										
										
											2016-03-22 17:21:29 +08:00
										 |  |  |     BIO *next; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-22 17:21:29 +08:00
										 |  |  |     bs = BIO_get_data(b); | 
					
						
							|  |  |  |     next = BIO_next(b); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     ssl = bs->ssl; | 
					
						
							|  |  |  |     if ((ssl == NULL) && (cmd != BIO_C_SET_SSL)) | 
					
						
							|  |  |  |         return (0); | 
					
						
							|  |  |  |     switch (cmd) { | 
					
						
							|  |  |  |     case BIO_CTRL_RESET: | 
					
						
							|  |  |  |         SSL_shutdown(ssl); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (ssl->handshake_func == ssl->method->ssl_connect) | 
					
						
							|  |  |  |             SSL_set_connect_state(ssl); | 
					
						
							|  |  |  |         else if (ssl->handshake_func == ssl->method->ssl_accept) | 
					
						
							|  |  |  |             SSL_set_accept_state(ssl); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-04-16 13:50:03 +08:00
										 |  |  |         if (!SSL_clear(ssl)) { | 
					
						
							| 
									
										
										
										
											2015-03-06 22:37:17 +08:00
										 |  |  |             ret = 0; | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-22 17:21:29 +08:00
										 |  |  |         if (next != NULL) | 
					
						
							|  |  |  |             ret = BIO_ctrl(next, cmd, num, ptr); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         else if (ssl->rbio != NULL) | 
					
						
							|  |  |  |             ret = BIO_ctrl(ssl->rbio, cmd, num, ptr); | 
					
						
							|  |  |  |         else | 
					
						
							|  |  |  |             ret = 1; | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     case BIO_CTRL_INFO: | 
					
						
							|  |  |  |         ret = 0; | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     case BIO_C_SSL_MODE: | 
					
						
							|  |  |  |         if (num)                /* client mode */ | 
					
						
							|  |  |  |             SSL_set_connect_state(ssl); | 
					
						
							|  |  |  |         else | 
					
						
							|  |  |  |             SSL_set_accept_state(ssl); | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     case BIO_C_SET_SSL_RENEGOTIATE_TIMEOUT: | 
					
						
							|  |  |  |         ret = bs->renegotiate_timeout; | 
					
						
							|  |  |  |         if (num < 60) | 
					
						
							|  |  |  |             num = 5; | 
					
						
							|  |  |  |         bs->renegotiate_timeout = (unsigned long)num; | 
					
						
							|  |  |  |         bs->last_time = (unsigned long)time(NULL); | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     case BIO_C_SET_SSL_RENEGOTIATE_BYTES: | 
					
						
							|  |  |  |         ret = bs->renegotiate_count; | 
					
						
							|  |  |  |         if ((long)num >= 512) | 
					
						
							|  |  |  |             bs->renegotiate_count = (unsigned long)num; | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     case BIO_C_GET_SSL_NUM_RENEGOTIATES: | 
					
						
							|  |  |  |         ret = bs->num_renegotiates; | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     case BIO_C_SET_SSL: | 
					
						
							|  |  |  |         if (ssl != NULL) { | 
					
						
							|  |  |  |             ssl_free(b); | 
					
						
							|  |  |  |             if (!ssl_new(b)) | 
					
						
							|  |  |  |                 return 0; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2016-03-22 17:21:29 +08:00
										 |  |  |         BIO_set_shutdown(b, num); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         ssl = (SSL *)ptr; | 
					
						
							| 
									
										
										
										
											2016-03-22 17:21:29 +08:00
										 |  |  |         bs->ssl = ssl; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         bio = SSL_get_rbio(ssl); | 
					
						
							|  |  |  |         if (bio != NULL) { | 
					
						
							| 
									
										
										
										
											2016-03-22 17:21:29 +08:00
										 |  |  |             if (next != NULL) | 
					
						
							|  |  |  |                 BIO_push(bio, next); | 
					
						
							|  |  |  |             BIO_set_next(b, bio); | 
					
						
							| 
									
										
										
										
											2016-02-26 19:51:31 +08:00
										 |  |  |             BIO_up_ref(bio); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2016-03-22 17:21:29 +08:00
										 |  |  |         BIO_set_init(b, 1); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         break; | 
					
						
							|  |  |  |     case BIO_C_GET_SSL: | 
					
						
							|  |  |  |         if (ptr != NULL) { | 
					
						
							|  |  |  |             sslp = (SSL **)ptr; | 
					
						
							|  |  |  |             *sslp = ssl; | 
					
						
							|  |  |  |         } else | 
					
						
							|  |  |  |             ret = 0; | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     case BIO_CTRL_GET_CLOSE: | 
					
						
							| 
									
										
										
										
											2016-03-22 17:21:29 +08:00
										 |  |  |         ret = BIO_get_shutdown(b); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         break; | 
					
						
							|  |  |  |     case BIO_CTRL_SET_CLOSE: | 
					
						
							| 
									
										
										
										
											2016-03-22 17:21:29 +08:00
										 |  |  |         BIO_set_shutdown(b, (int)num); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         break; | 
					
						
							|  |  |  |     case BIO_CTRL_WPENDING: | 
					
						
							|  |  |  |         ret = BIO_ctrl(ssl->wbio, cmd, num, ptr); | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     case BIO_CTRL_PENDING: | 
					
						
							|  |  |  |         ret = SSL_pending(ssl); | 
					
						
							|  |  |  |         if (ret == 0) | 
					
						
							|  |  |  |             ret = BIO_pending(ssl->rbio); | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     case BIO_CTRL_FLUSH: | 
					
						
							|  |  |  |         BIO_clear_retry_flags(b); | 
					
						
							|  |  |  |         ret = BIO_ctrl(ssl->wbio, cmd, num, ptr); | 
					
						
							|  |  |  |         BIO_copy_next_retry(b); | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     case BIO_CTRL_PUSH: | 
					
						
							| 
									
										
										
										
											2016-03-22 17:21:29 +08:00
										 |  |  |         if ((next != NULL) && (next != ssl->rbio)) { | 
					
						
							|  |  |  |             SSL_set_bio(ssl, next, next); | 
					
						
							| 
									
										
										
										
											2016-02-26 19:51:31 +08:00
										 |  |  |             BIO_up_ref(b); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         } | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     case BIO_CTRL_POP: | 
					
						
							|  |  |  |         /* Only detach if we are the BIO explicitly being popped */ | 
					
						
							|  |  |  |         if (b == ptr) { | 
					
						
							|  |  |  |             /*
 | 
					
						
							|  |  |  |              * Shouldn't happen in practice because the rbio and wbio are the | 
					
						
							|  |  |  |              * same when pushed. | 
					
						
							|  |  |  |              */ | 
					
						
							|  |  |  |             if (ssl->rbio != ssl->wbio) | 
					
						
							|  |  |  |                 BIO_free_all(ssl->wbio); | 
					
						
							| 
									
										
										
										
											2016-03-22 17:21:29 +08:00
										 |  |  |             if (next != NULL) | 
					
						
							|  |  |  |                 BIO_free(next); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |             ssl->wbio = NULL; | 
					
						
							|  |  |  |             ssl->rbio = NULL; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     case BIO_C_DO_STATE_MACHINE: | 
					
						
							|  |  |  |         BIO_clear_retry_flags(b); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-22 17:21:29 +08:00
										 |  |  |         BIO_set_retry_reason(b, 0); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         ret = (int)SSL_do_handshake(ssl); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         switch (SSL_get_error(ssl, (int)ret)) { | 
					
						
							|  |  |  |         case SSL_ERROR_WANT_READ: | 
					
						
							|  |  |  |             BIO_set_flags(b, BIO_FLAGS_READ | BIO_FLAGS_SHOULD_RETRY); | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         case SSL_ERROR_WANT_WRITE: | 
					
						
							|  |  |  |             BIO_set_flags(b, BIO_FLAGS_WRITE | BIO_FLAGS_SHOULD_RETRY); | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         case SSL_ERROR_WANT_CONNECT: | 
					
						
							|  |  |  |             BIO_set_flags(b, BIO_FLAGS_IO_SPECIAL | BIO_FLAGS_SHOULD_RETRY); | 
					
						
							| 
									
										
										
										
											2016-03-22 17:21:29 +08:00
										 |  |  |             BIO_set_retry_reason(b, BIO_get_retry_reason(next)); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |             break; | 
					
						
							| 
									
										
										
										
											2015-09-14 02:04:58 +08:00
										 |  |  |         case SSL_ERROR_WANT_X509_LOOKUP: | 
					
						
							|  |  |  |             BIO_set_retry_special(b); | 
					
						
							| 
									
										
										
										
											2016-03-22 17:21:29 +08:00
										 |  |  |             BIO_set_retry_reason(b, BIO_RR_SSL_X509_LOOKUP); | 
					
						
							| 
									
										
										
										
											2015-09-14 02:04:58 +08:00
										 |  |  |             break; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         default: | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     case BIO_CTRL_DUP: | 
					
						
							|  |  |  |         dbio = (BIO *)ptr; | 
					
						
							| 
									
										
										
										
											2016-03-22 17:21:29 +08:00
										 |  |  |         dbs = BIO_get_data(dbio); | 
					
						
							|  |  |  |         SSL_free(dbs->ssl); | 
					
						
							|  |  |  |         dbs->ssl = SSL_dup(ssl); | 
					
						
							| 
									
										
										
										
											2016-04-27 00:52:21 +08:00
										 |  |  |         dbs->num_renegotiates = bs->num_renegotiates; | 
					
						
							|  |  |  |         dbs->renegotiate_count = bs->renegotiate_count; | 
					
						
							|  |  |  |         dbs->byte_count = bs->byte_count; | 
					
						
							|  |  |  |         dbs->renegotiate_timeout = bs->renegotiate_timeout; | 
					
						
							|  |  |  |         dbs->last_time = bs->last_time; | 
					
						
							| 
									
										
										
										
											2016-03-22 17:21:29 +08:00
										 |  |  |         ret = (dbs->ssl != NULL); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         break; | 
					
						
							|  |  |  |     case BIO_C_GET_FD: | 
					
						
							|  |  |  |         ret = BIO_ctrl(ssl->rbio, cmd, num, ptr); | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     case BIO_CTRL_SET_CALLBACK: | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  | #if 0                           /* FIXME: Should this be used? -- Richard
 | 
					
						
							|  |  |  |                                  * Levitte */ | 
					
						
							|  |  |  |             SSLerr(SSL_F_SSL_CTRL, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED); | 
					
						
							|  |  |  |             ret = -1; | 
					
						
							| 
									
										
										
										
											2000-02-21 07:43:02 +08:00
										 |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |             ret = 0; | 
					
						
							| 
									
										
										
										
											2000-02-21 07:43:02 +08:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         } | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     case BIO_CTRL_GET_CALLBACK: | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |             void (**fptr) (const SSL *xssl, int type, int val); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             fptr = (void (**)(const SSL *xssl, int type, int val))ptr; | 
					
						
							|  |  |  |             *fptr = SSL_get_info_callback(ssl); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     default: | 
					
						
							|  |  |  |         ret = BIO_ctrl(ssl->rbio, cmd, num, ptr); | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return (ret); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-06-21 10:25:30 +08:00
										 |  |  | static long ssl_callback_ctrl(BIO *b, int cmd, bio_info_cb *fp) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     SSL *ssl; | 
					
						
							|  |  |  |     BIO_SSL *bs; | 
					
						
							|  |  |  |     long ret = 1; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-22 17:21:29 +08:00
										 |  |  |     bs = BIO_get_data(b); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     ssl = bs->ssl; | 
					
						
							|  |  |  |     switch (cmd) { | 
					
						
							|  |  |  |     case BIO_CTRL_SET_CALLBACK: | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |             /*
 | 
					
						
							|  |  |  |              * FIXME: setting this via a completely different prototype seems | 
					
						
							|  |  |  |              * like a crap idea | 
					
						
							|  |  |  |              */ | 
					
						
							|  |  |  |             SSL_set_info_callback(ssl, (void (*)(const SSL *, int, int))fp); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     default: | 
					
						
							|  |  |  |         ret = BIO_callback_ctrl(ssl->rbio, cmd, fp); | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return (ret); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2000-02-21 07:43:02 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-05-16 06:54:43 +08:00
										 |  |  | static int ssl_puts(BIO *bp, const char *str) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     int n, ret; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     n = strlen(str); | 
					
						
							|  |  |  |     ret = BIO_write(bp, str, n); | 
					
						
							|  |  |  |     return (ret); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-04-20 05:31:43 +08:00
										 |  |  | BIO *BIO_new_buffer_ssl_connect(SSL_CTX *ctx) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2003-02-14 09:02:58 +08:00
										 |  |  | #ifndef OPENSSL_NO_SOCK
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     BIO *ret = NULL, *buf = NULL, *ssl = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if ((buf = BIO_new(BIO_f_buffer())) == NULL) | 
					
						
							|  |  |  |         return (NULL); | 
					
						
							|  |  |  |     if ((ssl = BIO_new_ssl_connect(ctx)) == NULL) | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  |     if ((ret = BIO_push(buf, ssl)) == NULL) | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  |     return (ret); | 
					
						
							|  |  |  |  err: | 
					
						
							| 
									
										
										
										
											2015-03-25 23:31:18 +08:00
										 |  |  |     BIO_free(buf); | 
					
						
							|  |  |  |     BIO_free(ssl); | 
					
						
							| 
									
										
										
										
											2003-02-14 09:02:58 +08:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     return (NULL); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-04-20 05:31:43 +08:00
										 |  |  | BIO *BIO_new_ssl_connect(SSL_CTX *ctx) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2012-04-17 01:42:36 +08:00
										 |  |  | #ifndef OPENSSL_NO_SOCK
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     BIO *ret = NULL, *con = NULL, *ssl = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if ((con = BIO_new(BIO_s_connect())) == NULL) | 
					
						
							|  |  |  |         return (NULL); | 
					
						
							|  |  |  |     if ((ssl = BIO_new_ssl(ctx, 1)) == NULL) | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  |     if ((ret = BIO_push(ssl, con)) == NULL) | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  |     return (ret); | 
					
						
							|  |  |  |  err: | 
					
						
							| 
									
										
										
										
											2015-03-25 23:31:18 +08:00
										 |  |  |     BIO_free(con); | 
					
						
							| 
									
										
										
										
											2012-04-17 01:42:36 +08:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     return (NULL); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-04-20 05:31:43 +08:00
										 |  |  | BIO *BIO_new_ssl(SSL_CTX *ctx, int client) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     BIO *ret; | 
					
						
							|  |  |  |     SSL *ssl; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if ((ret = BIO_new(BIO_f_ssl())) == NULL) | 
					
						
							|  |  |  |         return (NULL); | 
					
						
							|  |  |  |     if ((ssl = SSL_new(ctx)) == NULL) { | 
					
						
							|  |  |  |         BIO_free(ret); | 
					
						
							|  |  |  |         return (NULL); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (client) | 
					
						
							|  |  |  |         SSL_set_connect_state(ssl); | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  |         SSL_set_accept_state(ssl); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     BIO_set_ssl(ret, ssl, BIO_CLOSE); | 
					
						
							|  |  |  |     return (ret); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-04-20 05:31:43 +08:00
										 |  |  | int BIO_ssl_copy_session_id(BIO *t, BIO *f) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2016-03-22 17:21:29 +08:00
										 |  |  |     BIO_SSL *tdata, *fdata; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     t = BIO_find_type(t, BIO_TYPE_SSL); | 
					
						
							|  |  |  |     f = BIO_find_type(f, BIO_TYPE_SSL); | 
					
						
							|  |  |  |     if ((t == NULL) || (f == NULL)) | 
					
						
							| 
									
										
										
										
											2016-03-22 17:21:29 +08:00
										 |  |  |         return 0; | 
					
						
							|  |  |  |     tdata = BIO_get_data(t); | 
					
						
							|  |  |  |     fdata = BIO_get_data(f); | 
					
						
							|  |  |  |     if ((tdata->ssl == NULL) || (fdata->ssl == NULL)) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         return (0); | 
					
						
							| 
									
										
										
										
											2016-03-22 17:21:29 +08:00
										 |  |  |     if (!SSL_copy_session_id(tdata->ssl, (fdata->ssl))) | 
					
						
							| 
									
										
										
										
											2015-03-24 23:10:15 +08:00
										 |  |  |         return 0; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     return (1); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-04-20 05:31:43 +08:00
										 |  |  | void BIO_ssl_shutdown(BIO *b) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     SSL *s; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-22 17:21:29 +08:00
										 |  |  |     b = BIO_find_type(b, BIO_TYPE_SSL); | 
					
						
							|  |  |  |     if (b == NULL) | 
					
						
							|  |  |  |         return; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     s = BIO_get_data(b); | 
					
						
							|  |  |  |     SSL_shutdown(s); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | } |