| 
									
										
										
										
											2016-05-18 02:20:24 +08:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2025-09-02 21:05:45 +08:00
										 |  |  |  * Copyright 1995-2025 The OpenSSL Project Authors. All Rights Reserved. | 
					
						
							| 
									
										
										
										
											2017-06-15 22:16:46 +08:00
										 |  |  |  * Copyright (c) 2002, Oracle and/or its affiliates. All rights reserved | 
					
						
							| 
									
										
										
										
											2017-06-20 22:14:36 +08:00
										 |  |  |  * Copyright 2005 Nokia. All rights reserved. | 
					
						
							| 
									
										
										
										
											2000-12-16 00:40:35 +08:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2018-12-06 20:05:25 +08:00
										 |  |  |  * Licensed under the Apache License 2.0 (the "License").  You may not use | 
					
						
							| 
									
										
										
										
											2016-05-18 02:20:24 +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
 | 
					
						
							| 
									
										
										
										
											2000-12-16 00:40:35 +08:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2016-05-18 02:20:24 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-02-04 22:13:01 +08:00
										 |  |  | #include "internal/e_os.h"
 | 
					
						
							| 
									
										
										
										
											2017-08-24 07:05:07 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-21 19:09:58 +08:00
										 |  |  | /* Or gethostname won't be declared properly on Linux and GNU platforms. */ | 
					
						
							| 
									
										
										
										
											2016-06-09 03:10:50 +08:00
										 |  |  | #ifndef _BSD_SOURCE
 | 
					
						
							|  |  |  | # define _BSD_SOURCE 1
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | #ifndef _DEFAULT_SOURCE
 | 
					
						
							|  |  |  | # define _DEFAULT_SOURCE 1
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2001-07-31 16:50:20 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-09-10 22:03:21 +08:00
										 |  |  | #include <assert.h>
 | 
					
						
							|  |  |  | #include <errno.h>
 | 
					
						
							|  |  |  | #include <limits.h>
 | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | #include <stdio.h>
 | 
					
						
							|  |  |  | #include <stdlib.h>
 | 
					
						
							|  |  |  | #include <string.h>
 | 
					
						
							| 
									
										
										
										
											2000-03-13 23:06:54 +08:00
										 |  |  | #include <time.h>
 | 
					
						
							| 
									
										
										
										
											1999-05-21 05:59:20 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-22 20:35:43 +08:00
										 |  |  | #include "internal/nelem.h"
 | 
					
						
							| 
									
										
										
										
											2017-08-18 07:50:25 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-01-25 00:57:20 +08:00
										 |  |  | #ifdef OPENSSL_SYS_VMS
 | 
					
						
							| 
									
										
										
										
											2015-01-21 19:09:58 +08:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Or isascii won't be declared properly on VMS (at least with DECompHP C). | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | # define _XOPEN_SOURCE 500
 | 
					
						
							| 
									
										
										
										
											2010-01-25 00:57:20 +08:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-01-20 01:03:07 +08:00
										 |  |  | #include <ctype.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-04-24 06:13:45 +08:00
										 |  |  | #include <openssl/bio.h>
 | 
					
						
							|  |  |  | #include <openssl/crypto.h>
 | 
					
						
							| 
									
										
										
										
											2000-03-13 23:06:54 +08:00
										 |  |  | #include <openssl/evp.h>
 | 
					
						
							| 
									
										
										
										
											1999-04-24 06:13:45 +08:00
										 |  |  | #include <openssl/x509.h>
 | 
					
						
							| 
									
										
										
										
											2005-01-18 01:06:58 +08:00
										 |  |  | #include <openssl/x509v3.h>
 | 
					
						
							| 
									
										
										
										
											1999-04-24 06:13:45 +08:00
										 |  |  | #include <openssl/ssl.h>
 | 
					
						
							|  |  |  | #include <openssl/err.h>
 | 
					
						
							| 
									
										
										
										
											2000-01-16 20:21:22 +08:00
										 |  |  | #include <openssl/rand.h>
 | 
					
						
							| 
									
										
										
										
											2020-12-18 04:37:15 +08:00
										 |  |  | #include <openssl/rsa.h>
 | 
					
						
							| 
									
										
										
										
											2005-07-16 20:37:36 +08:00
										 |  |  | #ifndef OPENSSL_NO_DSA
 | 
					
						
							| 
									
										
										
										
											2004-04-20 02:09:28 +08:00
										 |  |  | # include <openssl/dsa.h>
 | 
					
						
							| 
									
										
										
										
											2005-07-16 20:37:36 +08:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2004-05-18 02:53:47 +08:00
										 |  |  | #include <openssl/bn.h>
 | 
					
						
							| 
									
										
										
										
											2016-03-02 21:34:05 +08:00
										 |  |  | #ifndef OPENSSL_NO_CT
 | 
					
						
							|  |  |  | # include <openssl/ct.h>
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2020-04-10 21:31:19 +08:00
										 |  |  | #include <openssl/provider.h>
 | 
					
						
							| 
									
										
										
										
											2020-09-26 21:21:48 +08:00
										 |  |  | #include "testutil.h"
 | 
					
						
							| 
									
										
										
										
											2024-01-03 17:43:16 +08:00
										 |  |  | #include "testutil/output.h"
 | 
					
						
							| 
									
										
										
											
												If _XOPEN_SOURCE_EXTENDED or _XOPEN_SOURCE are defined, _POSIX_C_SOURCE gets
defined in DECC$TYPES.H.  If _POSIX_C_SOURCE is defined, certain types do
not get defined (u_char, u_int, ...).  DECC.H gets included by assert.h
and others.  Now, in6.h uses the types u_char, u_int and so on, and gets
included as part of other header inclusions, and will of course fail because
of the missing types.
On the other hand, _XOPEN_SOURCE_EXTENDED is needed to get gethostname()
properly declared...
Solution: define _XOPEN_SOURCE_EXTENDED much later, so DECC$TYPES.H has
a chance to be included *first*, so the otherwise missing types get defined
properly.
Personal: *mumble* *mumble*
											
										 
											2002-12-20 03:39:30 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-21 19:09:58 +08:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Or gethostname won't be declared properly | 
					
						
							|  |  |  |  * on Compaq platforms (at least with DEC C). | 
					
						
							|  |  |  |  * Do not try to put it earlier, or IPv6 includes | 
					
						
							|  |  |  |  * get screwed... | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | #define _XOPEN_SOURCE_EXTENDED  1
 | 
					
						
							| 
									
										
										
											
												If _XOPEN_SOURCE_EXTENDED or _XOPEN_SOURCE are defined, _POSIX_C_SOURCE gets
defined in DECC$TYPES.H.  If _POSIX_C_SOURCE is defined, certain types do
not get defined (u_char, u_int, ...).  DECC.H gets included by assert.h
and others.  Now, in6.h uses the types u_char, u_int and so on, and gets
included as part of other header inclusions, and will of course fail because
of the missing types.
On the other hand, _XOPEN_SOURCE_EXTENDED is needed to get gethostname()
properly declared...
Solution: define _XOPEN_SOURCE_EXTENDED much later, so DECC$TYPES.H has
a chance to be included *first*, so the otherwise missing types get defined
properly.
Personal: *mumble* *mumble*
											
										 
											2002-12-20 03:39:30 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-02-20 16:13:47 +08:00
										 |  |  | #ifdef OPENSSL_SYS_WINDOWS
 | 
					
						
							| 
									
										
										
										
											2000-12-01 06:53:34 +08:00
										 |  |  | # include <winsock.h>
 | 
					
						
							| 
									
										
										
										
											2001-07-31 16:50:20 +08:00
										 |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2019-06-21 05:07:25 +08:00
										 |  |  | # include <unistd.h>
 | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-29 19:40:10 +08:00
										 |  |  | #include "helpers/predefined_dhparams.h"
 | 
					
						
							| 
									
										
										
										
											2020-11-28 05:03:29 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-08 22:38:30 +08:00
										 |  |  | static SSL_CTX *s_ctx = NULL; | 
					
						
							|  |  |  | static SSL_CTX *s_ctx2 = NULL; | 
					
						
							| 
									
										
										
										
											2016-03-05 21:47:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-11-30 19:57:31 +08:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2015-05-02 23:19:06 +08:00
										 |  |  |  * There is really no standard for this, so let's assign something | 
					
						
							|  |  |  |  * only for this test | 
					
						
							| 
									
										
										
										
											2000-11-30 19:57:31 +08:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2003-10-06 19:00:15 +08:00
										 |  |  | #define COMP_ZLIB       1
 | 
					
						
							| 
									
										
										
										
											2000-11-30 19:57:31 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-13 06:29:26 +08:00
										 |  |  | static int verify_callback(int ok, X509_STORE_CTX *ctx); | 
					
						
							|  |  |  | static int app_verify_callback(X509_STORE_CTX *ctx, void *arg); | 
					
						
							| 
									
										
										
										
											2005-01-18 01:06:58 +08:00
										 |  |  | #define APP_CALLBACK_STRING "Test Callback Argument"
 | 
					
						
							|  |  |  | struct app_verify_arg { | 
					
						
							|  |  |  |     char *string; | 
					
						
							|  |  |  |     int app_verify; | 
					
						
							|  |  |  | }; | 
					
						
							| 
									
										
										
										
											2002-02-28 18:52:56 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-03-11 07:06:27 +08:00
										 |  |  | static char *psk_key = NULL;    /* by default PSK is not used */ | 
					
						
							|  |  |  | #ifndef OPENSSL_NO_PSK
 | 
					
						
							|  |  |  | static unsigned int psk_client_callback(SSL *ssl, const char *hint, | 
					
						
							|  |  |  |                                         char *identity, | 
					
						
							|  |  |  |                                         unsigned int max_identity_len, | 
					
						
							|  |  |  |                                         unsigned char *psk, | 
					
						
							|  |  |  |                                         unsigned int max_psk_len); | 
					
						
							|  |  |  | static unsigned int psk_server_callback(SSL *ssl, const char *identity, | 
					
						
							|  |  |  |                                         unsigned char *psk, | 
					
						
							|  |  |  |                                         unsigned int max_psk_len); | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-09-09 05:58:13 +08:00
										 |  |  | static BIO *bio_stdout = NULL; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-14 07:20:22 +08:00
										 |  |  | #ifndef OPENSSL_NO_NEXTPROTONEG
 | 
					
						
							| 
									
										
										
										
											2010-09-06 00:35:10 +08:00
										 |  |  | /* Note that this code assumes that this is only a one element list: */ | 
					
						
							|  |  |  | static const char NEXT_PROTO_STRING[] = "\x09testproto"; | 
					
						
							| 
									
										
										
										
											2015-09-05 20:32:58 +08:00
										 |  |  | static int npn_client = 0; | 
					
						
							|  |  |  | static int npn_server = 0; | 
					
						
							|  |  |  | static int npn_server_reject = 0; | 
					
						
							| 
									
										
										
										
											2010-09-06 00:35:10 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | static int cb_client_npn(SSL *s, unsigned char **out, unsigned char *outlen, | 
					
						
							|  |  |  |                          const unsigned char *in, unsigned int inlen, | 
					
						
							|  |  |  |                          void *arg) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     /*
 | 
					
						
							|  |  |  |      * This callback only returns the protocol string, rather than a length | 
					
						
							|  |  |  |      * prefixed set. We assume that NEXT_PROTO_STRING is a one element list | 
					
						
							|  |  |  |      * and remove the first byte to chop off the length prefix. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     *out = (unsigned char *)NEXT_PROTO_STRING + 1; | 
					
						
							|  |  |  |     *outlen = sizeof(NEXT_PROTO_STRING) - 2; | 
					
						
							|  |  |  |     return SSL_TLSEXT_ERR_OK; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-06 00:35:10 +08:00
										 |  |  | static int cb_server_npn(SSL *s, const unsigned char **data, | 
					
						
							|  |  |  |                          unsigned int *len, void *arg) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     *data = (const unsigned char *)NEXT_PROTO_STRING; | 
					
						
							|  |  |  |     *len = sizeof(NEXT_PROTO_STRING) - 1; | 
					
						
							|  |  |  |     return SSL_TLSEXT_ERR_OK; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-06 00:35:10 +08:00
										 |  |  | static int cb_server_rejects_npn(SSL *s, const unsigned char **data, | 
					
						
							|  |  |  |                                  unsigned int *len, void *arg) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return SSL_TLSEXT_ERR_NOACK; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int verify_npn(SSL *client, SSL *server) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     const unsigned char *client_s; | 
					
						
							|  |  |  |     unsigned client_len; | 
					
						
							|  |  |  |     const unsigned char *server_s; | 
					
						
							|  |  |  |     unsigned server_len; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-06 00:35:10 +08:00
										 |  |  |     SSL_get0_next_proto_negotiated(client, &client_s, &client_len); | 
					
						
							|  |  |  |     SSL_get0_next_proto_negotiated(server, &server_s, &server_len); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-06 00:35:10 +08:00
										 |  |  |     if (client_len) { | 
					
						
							|  |  |  |         BIO_printf(bio_stdout, "Client NPN: "); | 
					
						
							|  |  |  |         BIO_write(bio_stdout, client_s, client_len); | 
					
						
							|  |  |  |         BIO_printf(bio_stdout, "\n"); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-06 00:35:10 +08:00
										 |  |  |     if (server_len) { | 
					
						
							|  |  |  |         BIO_printf(bio_stdout, "Server NPN: "); | 
					
						
							|  |  |  |         BIO_write(bio_stdout, server_s, server_len); | 
					
						
							|  |  |  |         BIO_printf(bio_stdout, "\n"); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-06 00:35:10 +08:00
										 |  |  |     /*
 | 
					
						
							|  |  |  |      * If an NPN string was returned, it must be the protocol that we | 
					
						
							|  |  |  |      * expected to negotiate. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     if (client_len && (client_len != sizeof(NEXT_PROTO_STRING) - 2 || | 
					
						
							|  |  |  |                        memcmp(client_s, NEXT_PROTO_STRING + 1, client_len))) | 
					
						
							|  |  |  |         return -1; | 
					
						
							|  |  |  |     if (server_len && (server_len != sizeof(NEXT_PROTO_STRING) - 2 || | 
					
						
							|  |  |  |                        memcmp(server_s, NEXT_PROTO_STRING + 1, server_len))) | 
					
						
							|  |  |  |         return -1; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-06 00:35:10 +08:00
										 |  |  |     if (!npn_client && client_len) | 
					
						
							|  |  |  |         return -1; | 
					
						
							|  |  |  |     if (!npn_server && server_len) | 
					
						
							|  |  |  |         return -1; | 
					
						
							|  |  |  |     if (npn_server_reject && server_len) | 
					
						
							|  |  |  |         return -1; | 
					
						
							|  |  |  |     if (npn_client && npn_server && (!client_len || !server_len)) | 
					
						
							|  |  |  |         return -1; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-06 00:35:10 +08:00
										 |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-16 03:57:16 +08:00
										 |  |  | static const char *alpn_client; | 
					
						
							| 
									
										
										
										
											2016-03-05 21:47:55 +08:00
										 |  |  | static char *alpn_server; | 
					
						
							|  |  |  | static char *alpn_server2; | 
					
						
							| 
									
										
										
										
											2013-07-16 03:57:16 +08:00
										 |  |  | static const char *alpn_expected; | 
					
						
							|  |  |  | static unsigned char *alpn_selected; | 
					
						
							| 
									
										
										
										
											2015-12-07 00:56:41 +08:00
										 |  |  | static const char *server_min_proto; | 
					
						
							|  |  |  | static const char *server_max_proto; | 
					
						
							|  |  |  | static const char *client_min_proto; | 
					
						
							|  |  |  | static const char *client_max_proto; | 
					
						
							|  |  |  | static const char *should_negotiate; | 
					
						
							| 
									
										
										
										
											2016-03-05 21:47:55 +08:00
										 |  |  | static const char *sn_client; | 
					
						
							|  |  |  | static const char *sn_server1; | 
					
						
							|  |  |  | static const char *sn_server2; | 
					
						
							|  |  |  | static int sn_expect = 0; | 
					
						
							| 
									
										
										
										
											2016-03-28 02:53:01 +08:00
										 |  |  | static const char *server_sess_out; | 
					
						
							|  |  |  | static const char *server_sess_in; | 
					
						
							|  |  |  | static const char *client_sess_out; | 
					
						
							|  |  |  | static const char *client_sess_in; | 
					
						
							|  |  |  | static SSL_SESSION *server_sess; | 
					
						
							|  |  |  | static SSL_SESSION *client_sess; | 
					
						
							| 
									
										
										
										
											2016-03-05 21:47:55 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | static int servername_cb(SSL *s, int *ad, void *arg) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     const char *servername = SSL_get_servername(s, TLSEXT_NAMETYPE_host_name); | 
					
						
							|  |  |  |     if (sn_server2 == NULL) { | 
					
						
							|  |  |  |         BIO_printf(bio_stdout, "Servername 2 is NULL\n"); | 
					
						
							|  |  |  |         return SSL_TLSEXT_ERR_NOACK; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (servername) { | 
					
						
							|  |  |  |         if (s_ctx2 != NULL && sn_server2 != NULL && | 
					
						
							| 
									
										
										
										
											2022-04-12 18:30:08 +08:00
										 |  |  |             !OPENSSL_strcasecmp(servername, sn_server2)) { | 
					
						
							| 
									
										
										
										
											2016-03-05 21:47:55 +08:00
										 |  |  |             BIO_printf(bio_stdout, "Switching server context.\n"); | 
					
						
							|  |  |  |             SSL_set_SSL_CTX(s, s_ctx2); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return SSL_TLSEXT_ERR_OK; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | static int verify_servername(SSL *client, SSL *server) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     /* just need to see if sn_context is what we expect */ | 
					
						
							|  |  |  |     SSL_CTX* ctx = SSL_get_SSL_CTX(server); | 
					
						
							|  |  |  |     if (sn_expect == 0) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     if (sn_expect == 1 && ctx == s_ctx) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     if (sn_expect == 2 && ctx == s_ctx2) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     BIO_printf(bio_stdout, "Servername: expected context %d\n", sn_expect); | 
					
						
							|  |  |  |     if (ctx == s_ctx2) | 
					
						
							|  |  |  |         BIO_printf(bio_stdout, "Servername: context is 2\n"); | 
					
						
							|  |  |  |     else if (ctx == s_ctx) | 
					
						
							|  |  |  |         BIO_printf(bio_stdout, "Servername: context is 1\n"); | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  |         BIO_printf(bio_stdout, "Servername: context is unknown\n"); | 
					
						
							|  |  |  |     return -1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-16 03:57:16 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-05 08:34:00 +08:00
										 |  |  | /*-
 | 
					
						
							|  |  |  |  * next_protos_parse parses a comma separated list of strings into a string | 
					
						
							| 
									
										
										
										
											2013-07-16 03:57:16 +08:00
										 |  |  |  * in a format suitable for passing to SSL_CTX_set_next_protos_advertised. | 
					
						
							|  |  |  |  *   outlen: (output) set to the length of the resulting buffer on success. | 
					
						
							| 
									
										
										
										
											2014-09-10 01:48:00 +08:00
										 |  |  |  *   in: a NUL terminated string like "abc,def,ghi" | 
					
						
							| 
									
										
										
										
											2013-07-16 03:57:16 +08:00
										 |  |  |  * | 
					
						
							|  |  |  |  *   returns: a malloced buffer or NULL on failure. | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2016-03-05 21:47:55 +08:00
										 |  |  | static unsigned char *next_protos_parse(size_t *outlen, | 
					
						
							| 
									
										
										
										
											2013-07-16 03:57:16 +08:00
										 |  |  |                                         const char *in) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     size_t len; | 
					
						
							|  |  |  |     unsigned char *out; | 
					
						
							|  |  |  |     size_t i, start = 0; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-16 03:57:16 +08:00
										 |  |  |     len = strlen(in); | 
					
						
							|  |  |  |     if (len >= 65535) | 
					
						
							|  |  |  |         return NULL; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-16 03:57:16 +08:00
										 |  |  |     out = OPENSSL_malloc(strlen(in) + 1); | 
					
						
							|  |  |  |     if (!out) | 
					
						
							|  |  |  |         return NULL; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-16 03:57:16 +08:00
										 |  |  |     for (i = 0; i <= len; ++i) { | 
					
						
							|  |  |  |         if (i == len || in[i] == ',') { | 
					
						
							|  |  |  |             if (i - start > 255) { | 
					
						
							|  |  |  |                 OPENSSL_free(out); | 
					
						
							|  |  |  |                 return NULL; | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2017-11-12 05:23:12 +08:00
										 |  |  |             out[start] = (unsigned char)(i - start); | 
					
						
							| 
									
										
										
										
											2013-07-16 03:57:16 +08:00
										 |  |  |             start = i + 1; | 
					
						
							|  |  |  |         } else | 
					
						
							|  |  |  |             out[i + 1] = in[i]; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-16 03:57:16 +08:00
										 |  |  |     *outlen = len + 1; | 
					
						
							|  |  |  |     return out; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-16 03:57:16 +08:00
										 |  |  | static int cb_server_alpn(SSL *s, const unsigned char **out, | 
					
						
							|  |  |  |                           unsigned char *outlen, const unsigned char *in, | 
					
						
							|  |  |  |                           unsigned int inlen, void *arg) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     unsigned char *protos; | 
					
						
							| 
									
										
										
										
											2016-03-05 21:47:55 +08:00
										 |  |  |     size_t protos_len; | 
					
						
							|  |  |  |     char* alpn_str = arg; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-05 21:47:55 +08:00
										 |  |  |     protos = next_protos_parse(&protos_len, alpn_str); | 
					
						
							| 
									
										
										
										
											2013-07-16 03:57:16 +08:00
										 |  |  |     if (protos == NULL) { | 
					
						
							|  |  |  |         fprintf(stderr, "failed to parser ALPN server protocol string: %s\n", | 
					
						
							| 
									
										
										
										
											2016-03-05 21:47:55 +08:00
										 |  |  |                 alpn_str); | 
					
						
							| 
									
										
										
										
											2013-07-16 03:57:16 +08:00
										 |  |  |         abort(); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-06-18 17:59:04 +08:00
										 |  |  |     if (SSL_select_next_proto((unsigned char **)out, outlen, protos, | 
					
						
							|  |  |  |                               (unsigned int)protos_len, | 
					
						
							|  |  |  |                               in, inlen) != OPENSSL_NPN_NEGOTIATED) { | 
					
						
							| 
									
										
										
										
											2013-07-16 03:57:16 +08:00
										 |  |  |         OPENSSL_free(protos); | 
					
						
							|  |  |  |         return SSL_TLSEXT_ERR_NOACK; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-16 03:57:16 +08:00
										 |  |  |     /*
 | 
					
						
							|  |  |  |      * Make a copy of the selected protocol which will be freed in | 
					
						
							|  |  |  |      * verify_alpn. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     alpn_selected = OPENSSL_malloc(*outlen); | 
					
						
							| 
									
										
										
										
											2022-06-14 17:15:05 +08:00
										 |  |  |     if (alpn_selected == NULL) { | 
					
						
							|  |  |  |         fprintf(stderr, "failed to allocate memory\n"); | 
					
						
							|  |  |  |         OPENSSL_free(protos); | 
					
						
							|  |  |  |         abort(); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2013-07-16 03:57:16 +08:00
										 |  |  |     memcpy(alpn_selected, *out, *outlen); | 
					
						
							|  |  |  |     *out = alpn_selected; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-16 03:57:16 +08:00
										 |  |  |     OPENSSL_free(protos); | 
					
						
							|  |  |  |     return SSL_TLSEXT_ERR_OK; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int verify_alpn(SSL *client, SSL *server) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     const unsigned char *client_proto, *server_proto; | 
					
						
							|  |  |  |     unsigned int client_proto_len = 0, server_proto_len = 0; | 
					
						
							|  |  |  |     SSL_get0_alpn_selected(client, &client_proto, &client_proto_len); | 
					
						
							|  |  |  |     SSL_get0_alpn_selected(server, &server_proto, &server_proto_len); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-01 22:02:07 +08:00
										 |  |  |     OPENSSL_free(alpn_selected); | 
					
						
							|  |  |  |     alpn_selected = NULL; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-08-16 22:07:10 +08:00
										 |  |  |     if (client_proto == NULL && client_proto_len != 0) { | 
					
						
							|  |  |  |         BIO_printf(bio_stdout, | 
					
						
							|  |  |  |                    "Inconsistent SSL_get0_alpn_selected() for client!\n"); | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (server_proto == NULL && server_proto_len != 0) { | 
					
						
							|  |  |  |         BIO_printf(bio_stdout, | 
					
						
							|  |  |  |                    "Inconsistent SSL_get0_alpn_selected() for server!\n"); | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-10-18 03:28:25 +08:00
										 |  |  |     if (client_proto_len != server_proto_len) { | 
					
						
							|  |  |  |         BIO_printf(bio_stdout, "ALPN selected protocols differ!\n"); | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (client_proto != NULL && | 
					
						
							| 
									
										
										
										
											2013-07-16 03:57:16 +08:00
										 |  |  |         memcmp(client_proto, server_proto, client_proto_len) != 0) { | 
					
						
							|  |  |  |         BIO_printf(bio_stdout, "ALPN selected protocols differ!\n"); | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-16 03:57:16 +08:00
										 |  |  |     if (client_proto_len > 0 && alpn_expected == NULL) { | 
					
						
							|  |  |  |         BIO_printf(bio_stdout, "ALPN unexpectedly negotiated\n"); | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-16 03:57:16 +08:00
										 |  |  |     if (alpn_expected != NULL && | 
					
						
							|  |  |  |         (client_proto_len != strlen(alpn_expected) || | 
					
						
							|  |  |  |          memcmp(client_proto, alpn_expected, client_proto_len) != 0)) { | 
					
						
							|  |  |  |         BIO_printf(bio_stdout, | 
					
						
							|  |  |  |                    "ALPN selected protocols not equal to expected protocol: %s\n", | 
					
						
							|  |  |  |                    alpn_expected); | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-16 03:57:16 +08:00
										 |  |  |     return 0; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-16 03:57:16 +08:00
										 |  |  |  err: | 
					
						
							|  |  |  |     BIO_printf(bio_stdout, "ALPN results: client: '"); | 
					
						
							|  |  |  |     BIO_write(bio_stdout, client_proto, client_proto_len); | 
					
						
							|  |  |  |     BIO_printf(bio_stdout, "', server: '"); | 
					
						
							|  |  |  |     BIO_write(bio_stdout, server_proto, server_proto_len); | 
					
						
							|  |  |  |     BIO_printf(bio_stdout, "'\n"); | 
					
						
							| 
									
										
										
										
											2016-03-05 21:47:55 +08:00
										 |  |  |     BIO_printf(bio_stdout, "ALPN configured: client: '%s', server: '", | 
					
						
							|  |  |  |                    alpn_client); | 
					
						
							|  |  |  |     if (SSL_get_SSL_CTX(server) == s_ctx2) { | 
					
						
							|  |  |  |         BIO_printf(bio_stdout, "%s'\n", | 
					
						
							|  |  |  |                    alpn_server2); | 
					
						
							|  |  |  |     } else { | 
					
						
							|  |  |  |         BIO_printf(bio_stdout, "%s'\n", | 
					
						
							|  |  |  |                    alpn_server); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2013-07-16 03:57:16 +08:00
										 |  |  |     return -1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-06-14 13:36:45 +08:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * WARNING : below extension types are *NOT* IETF assigned, and could | 
					
						
							|  |  |  |  * conflict if these types are reassigned and handled specially by OpenSSL | 
					
						
							|  |  |  |  * in the future | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2013-05-13 09:55:27 +08:00
										 |  |  | #define TACK_EXT_TYPE 62208
 | 
					
						
							| 
									
										
										
										
											2013-06-14 13:36:45 +08:00
										 |  |  | #define CUSTOM_EXT_TYPE_0 1000
 | 
					
						
							|  |  |  | #define CUSTOM_EXT_TYPE_1 1001
 | 
					
						
							|  |  |  | #define CUSTOM_EXT_TYPE_2 1002
 | 
					
						
							|  |  |  | #define CUSTOM_EXT_TYPE_3 1003
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-05 20:32:58 +08:00
										 |  |  | static const char custom_ext_cli_string[] = "abc"; | 
					
						
							|  |  |  | static const char custom_ext_srv_string[] = "defg"; | 
					
						
							| 
									
										
										
										
											2013-05-13 09:55:27 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* These set from cmdline */ | 
					
						
							| 
									
										
										
										
											2015-09-05 20:32:58 +08:00
										 |  |  | static char *serverinfo_file = NULL; | 
					
						
							|  |  |  | static int serverinfo_sct = 0; | 
					
						
							|  |  |  | static int serverinfo_tack = 0; | 
					
						
							| 
									
										
										
										
											2013-06-14 13:36:45 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* These set based on extension callbacks */ | 
					
						
							| 
									
										
										
										
											2015-09-05 20:32:58 +08:00
										 |  |  | static int serverinfo_sct_seen = 0; | 
					
						
							|  |  |  | static int serverinfo_tack_seen = 0; | 
					
						
							|  |  |  | static int serverinfo_other_seen = 0; | 
					
						
							| 
									
										
										
										
											2013-05-13 09:55:27 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-06-14 13:36:45 +08:00
										 |  |  | /* This set from cmdline */ | 
					
						
							| 
									
										
										
										
											2015-09-05 20:32:58 +08:00
										 |  |  | static int custom_ext = 0; | 
					
						
							| 
									
										
										
										
											2013-06-14 13:36:45 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* This set based on extension callbacks */ | 
					
						
							| 
									
										
										
										
											2015-09-05 20:32:58 +08:00
										 |  |  | static int custom_ext_error = 0; | 
					
						
							| 
									
										
										
										
											2013-06-14 13:36:45 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-08-19 21:02:50 +08:00
										 |  |  | static int serverinfo_cli_parse_cb(SSL *s, unsigned int ext_type, | 
					
						
							|  |  |  |                                    const unsigned char *in, size_t inlen, | 
					
						
							|  |  |  |                                    int *al, void *arg) | 
					
						
							| 
									
										
										
										
											2013-05-13 09:55:27 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2016-03-02 21:34:05 +08:00
										 |  |  |     if (ext_type == TLSEXT_TYPE_signed_certificate_timestamp) | 
					
						
							| 
									
										
										
										
											2013-06-14 13:36:45 +08:00
										 |  |  |         serverinfo_sct_seen++; | 
					
						
							|  |  |  |     else if (ext_type == TACK_EXT_TYPE) | 
					
						
							|  |  |  |         serverinfo_tack_seen++; | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  |         serverinfo_other_seen++; | 
					
						
							|  |  |  |     return 1; | 
					
						
							| 
									
										
										
										
											2013-05-13 09:55:27 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-05-09 23:09:50 +08:00
										 |  |  | static int verify_serverinfo(void) | 
					
						
							| 
									
										
										
										
											2013-05-13 09:55:27 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     if (serverinfo_sct != serverinfo_sct_seen) | 
					
						
							|  |  |  |         return -1; | 
					
						
							|  |  |  |     if (serverinfo_tack != serverinfo_tack_seen) | 
					
						
							|  |  |  |         return -1; | 
					
						
							|  |  |  |     if (serverinfo_other_seen) | 
					
						
							|  |  |  |         return -1; | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-12-28 10:48:40 +08:00
										 |  |  | /*-
 | 
					
						
							|  |  |  |  * Four test cases for custom extensions: | 
					
						
							| 
									
										
										
										
											2013-06-14 13:36:45 +08:00
										 |  |  |  * 0 - no ClientHello extension or ServerHello response | 
					
						
							|  |  |  |  * 1 - ClientHello with "abc", no response | 
					
						
							|  |  |  |  * 2 - ClientHello with "abc", empty response | 
					
						
							|  |  |  |  * 3 - ClientHello with "abc", "defg" response | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-08-14 20:25:50 +08:00
										 |  |  | static int custom_ext_0_cli_add_cb(SSL *s, unsigned int ext_type, | 
					
						
							| 
									
										
										
										
											2014-02-05 07:16:46 +08:00
										 |  |  |                                    const unsigned char **out, | 
					
						
							| 
									
										
										
										
											2014-08-14 20:25:50 +08:00
										 |  |  |                                    size_t *outlen, int *al, void *arg) | 
					
						
							| 
									
										
										
										
											2013-06-14 13:36:45 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     if (ext_type != CUSTOM_EXT_TYPE_0) | 
					
						
							|  |  |  |         custom_ext_error = 1; | 
					
						
							| 
									
										
										
										
											2014-08-17 01:16:26 +08:00
										 |  |  |     return 0;                   /* Don't send an extension */ | 
					
						
							| 
									
										
										
										
											2013-06-14 13:36:45 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-08-14 20:25:50 +08:00
										 |  |  | static int custom_ext_0_cli_parse_cb(SSL *s, unsigned int ext_type, | 
					
						
							| 
									
										
										
										
											2014-02-05 07:16:46 +08:00
										 |  |  |                                      const unsigned char *in, | 
					
						
							| 
									
										
										
										
											2014-08-14 20:25:50 +08:00
										 |  |  |                                      size_t inlen, int *al, void *arg) | 
					
						
							| 
									
										
										
										
											2013-06-14 13:36:45 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2014-02-05 10:48:59 +08:00
										 |  |  |     return 1; | 
					
						
							| 
									
										
										
										
											2013-06-14 13:36:45 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-08-14 20:25:50 +08:00
										 |  |  | static int custom_ext_1_cli_add_cb(SSL *s, unsigned int ext_type, | 
					
						
							| 
									
										
										
										
											2014-02-05 07:16:46 +08:00
										 |  |  |                                    const unsigned char **out, | 
					
						
							| 
									
										
										
										
											2014-08-14 20:25:50 +08:00
										 |  |  |                                    size_t *outlen, int *al, void *arg) | 
					
						
							| 
									
										
										
										
											2013-06-14 13:36:45 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     if (ext_type != CUSTOM_EXT_TYPE_1) | 
					
						
							|  |  |  |         custom_ext_error = 1; | 
					
						
							|  |  |  |     *out = (const unsigned char *)custom_ext_cli_string; | 
					
						
							|  |  |  |     *outlen = strlen(custom_ext_cli_string); | 
					
						
							|  |  |  |     return 1;                   /* Send "abc" */ | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-08-14 20:25:50 +08:00
										 |  |  | static int custom_ext_1_cli_parse_cb(SSL *s, unsigned int ext_type, | 
					
						
							| 
									
										
										
										
											2014-02-05 07:16:46 +08:00
										 |  |  |                                      const unsigned char *in, | 
					
						
							| 
									
										
										
										
											2014-08-14 20:25:50 +08:00
										 |  |  |                                      size_t inlen, int *al, void *arg) | 
					
						
							| 
									
										
										
										
											2013-06-14 13:36:45 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2014-02-05 10:48:59 +08:00
										 |  |  |     return 1; | 
					
						
							| 
									
										
										
										
											2013-06-14 13:36:45 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-08-14 20:25:50 +08:00
										 |  |  | static int custom_ext_2_cli_add_cb(SSL *s, unsigned int ext_type, | 
					
						
							| 
									
										
										
										
											2014-02-05 07:16:46 +08:00
										 |  |  |                                    const unsigned char **out, | 
					
						
							| 
									
										
										
										
											2014-08-14 20:25:50 +08:00
										 |  |  |                                    size_t *outlen, int *al, void *arg) | 
					
						
							| 
									
										
										
										
											2013-06-14 13:36:45 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     if (ext_type != CUSTOM_EXT_TYPE_2) | 
					
						
							|  |  |  |         custom_ext_error = 1; | 
					
						
							|  |  |  |     *out = (const unsigned char *)custom_ext_cli_string; | 
					
						
							|  |  |  |     *outlen = strlen(custom_ext_cli_string); | 
					
						
							|  |  |  |     return 1;                   /* Send "abc" */ | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-08-14 20:25:50 +08:00
										 |  |  | static int custom_ext_2_cli_parse_cb(SSL *s, unsigned int ext_type, | 
					
						
							| 
									
										
										
										
											2014-02-05 07:16:46 +08:00
										 |  |  |                                      const unsigned char *in, | 
					
						
							| 
									
										
										
										
											2014-08-14 20:25:50 +08:00
										 |  |  |                                      size_t inlen, int *al, void *arg) | 
					
						
							| 
									
										
										
										
											2013-06-14 13:36:45 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     if (ext_type != CUSTOM_EXT_TYPE_2) | 
					
						
							|  |  |  |         custom_ext_error = 1; | 
					
						
							|  |  |  |     if (inlen != 0) | 
					
						
							|  |  |  |         custom_ext_error = 1;   /* Should be empty response */ | 
					
						
							|  |  |  |     return 1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-08-14 20:25:50 +08:00
										 |  |  | static int custom_ext_3_cli_add_cb(SSL *s, unsigned int ext_type, | 
					
						
							| 
									
										
										
										
											2014-02-05 07:16:46 +08:00
										 |  |  |                                    const unsigned char **out, | 
					
						
							| 
									
										
										
										
											2014-08-14 20:25:50 +08:00
										 |  |  |                                    size_t *outlen, int *al, void *arg) | 
					
						
							| 
									
										
										
										
											2013-06-14 13:36:45 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     if (ext_type != CUSTOM_EXT_TYPE_3) | 
					
						
							|  |  |  |         custom_ext_error = 1; | 
					
						
							|  |  |  |     *out = (const unsigned char *)custom_ext_cli_string; | 
					
						
							|  |  |  |     *outlen = strlen(custom_ext_cli_string); | 
					
						
							|  |  |  |     return 1;                   /* Send "abc" */ | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-08-14 20:25:50 +08:00
										 |  |  | static int custom_ext_3_cli_parse_cb(SSL *s, unsigned int ext_type, | 
					
						
							| 
									
										
										
										
											2014-02-05 07:16:46 +08:00
										 |  |  |                                      const unsigned char *in, | 
					
						
							| 
									
										
										
										
											2014-08-14 20:25:50 +08:00
										 |  |  |                                      size_t inlen, int *al, void *arg) | 
					
						
							| 
									
										
										
										
											2013-06-14 13:36:45 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     if (ext_type != CUSTOM_EXT_TYPE_3) | 
					
						
							|  |  |  |         custom_ext_error = 1; | 
					
						
							|  |  |  |     if (inlen != strlen(custom_ext_srv_string)) | 
					
						
							|  |  |  |         custom_ext_error = 1; | 
					
						
							|  |  |  |     if (memcmp(custom_ext_srv_string, in, inlen) != 0) | 
					
						
							|  |  |  |         custom_ext_error = 1;   /* Check for "defg" */ | 
					
						
							|  |  |  |     return 1; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-08-26 08:20:26 +08:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * custom_ext_0_cli_add_cb returns 0 - the server won't receive a callback | 
					
						
							|  |  |  |  * for this extension | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2014-08-14 20:25:50 +08:00
										 |  |  | static int custom_ext_0_srv_parse_cb(SSL *s, unsigned int ext_type, | 
					
						
							| 
									
										
										
										
											2014-02-05 07:16:46 +08:00
										 |  |  |                                      const unsigned char *in, | 
					
						
							| 
									
										
										
										
											2014-08-14 20:25:50 +08:00
										 |  |  |                                      size_t inlen, int *al, void *arg) | 
					
						
							| 
									
										
										
										
											2013-06-14 13:36:45 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2014-08-26 08:20:26 +08:00
										 |  |  |     custom_ext_error = 1; | 
					
						
							| 
									
										
										
										
											2014-02-05 10:48:59 +08:00
										 |  |  |     return 1; | 
					
						
							| 
									
										
										
										
											2013-06-14 13:36:45 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-08-26 08:20:26 +08:00
										 |  |  | /* 'add' callbacks are only called if the 'parse' callback is called */ | 
					
						
							| 
									
										
										
										
											2014-08-14 20:25:50 +08:00
										 |  |  | static int custom_ext_0_srv_add_cb(SSL *s, unsigned int ext_type, | 
					
						
							| 
									
										
										
										
											2014-02-05 07:16:46 +08:00
										 |  |  |                                    const unsigned char **out, | 
					
						
							| 
									
										
										
										
											2014-08-14 20:25:50 +08:00
										 |  |  |                                    size_t *outlen, int *al, void *arg) | 
					
						
							| 
									
										
										
										
											2013-06-14 13:36:45 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2014-08-26 08:20:26 +08:00
										 |  |  |     /* Error: should not have been called */ | 
					
						
							|  |  |  |     custom_ext_error = 1; | 
					
						
							| 
									
										
										
										
											2014-08-17 01:16:26 +08:00
										 |  |  |     return 0;                   /* Don't send an extension */ | 
					
						
							| 
									
										
										
										
											2013-06-14 13:36:45 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-08-14 20:25:50 +08:00
										 |  |  | static int custom_ext_1_srv_parse_cb(SSL *s, unsigned int ext_type, | 
					
						
							| 
									
										
										
										
											2014-02-05 05:08:43 +08:00
										 |  |  |                                      const unsigned char *in, | 
					
						
							| 
									
										
										
										
											2014-08-14 20:25:50 +08:00
										 |  |  |                                      size_t inlen, int *al, void *arg) | 
					
						
							| 
									
										
										
										
											2013-06-14 13:36:45 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     if (ext_type != CUSTOM_EXT_TYPE_1) | 
					
						
							|  |  |  |         custom_ext_error = 1; | 
					
						
							|  |  |  |     /* Check for "abc" */ | 
					
						
							|  |  |  |     if (inlen != strlen(custom_ext_cli_string)) | 
					
						
							|  |  |  |         custom_ext_error = 1; | 
					
						
							|  |  |  |     if (memcmp(in, custom_ext_cli_string, inlen) != 0) | 
					
						
							|  |  |  |         custom_ext_error = 1; | 
					
						
							|  |  |  |     return 1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-08-14 20:25:50 +08:00
										 |  |  | static int custom_ext_1_srv_add_cb(SSL *s, unsigned int ext_type, | 
					
						
							| 
									
										
										
										
											2014-02-05 07:16:46 +08:00
										 |  |  |                                    const unsigned char **out, | 
					
						
							| 
									
										
										
										
											2014-08-14 20:25:50 +08:00
										 |  |  |                                    size_t *outlen, int *al, void *arg) | 
					
						
							| 
									
										
										
										
											2013-06-14 13:36:45 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2014-08-17 01:16:26 +08:00
										 |  |  |     return 0;                   /* Don't send an extension */ | 
					
						
							| 
									
										
										
										
											2013-06-14 13:36:45 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-08-14 20:25:50 +08:00
										 |  |  | static int custom_ext_2_srv_parse_cb(SSL *s, unsigned int ext_type, | 
					
						
							| 
									
										
										
										
											2014-02-05 07:16:46 +08:00
										 |  |  |                                      const unsigned char *in, | 
					
						
							| 
									
										
										
										
											2014-08-14 20:25:50 +08:00
										 |  |  |                                      size_t inlen, int *al, void *arg) | 
					
						
							| 
									
										
										
										
											2013-06-14 13:36:45 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     if (ext_type != CUSTOM_EXT_TYPE_2) | 
					
						
							|  |  |  |         custom_ext_error = 1; | 
					
						
							|  |  |  |     /* Check for "abc" */ | 
					
						
							|  |  |  |     if (inlen != strlen(custom_ext_cli_string)) | 
					
						
							|  |  |  |         custom_ext_error = 1; | 
					
						
							|  |  |  |     if (memcmp(in, custom_ext_cli_string, inlen) != 0) | 
					
						
							|  |  |  |         custom_ext_error = 1; | 
					
						
							|  |  |  |     return 1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-08-14 20:25:50 +08:00
										 |  |  | static int custom_ext_2_srv_add_cb(SSL *s, unsigned int ext_type, | 
					
						
							| 
									
										
										
										
											2014-02-05 07:16:46 +08:00
										 |  |  |                                    const unsigned char **out, | 
					
						
							| 
									
										
										
										
											2014-08-14 20:25:50 +08:00
										 |  |  |                                    size_t *outlen, int *al, void *arg) | 
					
						
							| 
									
										
										
										
											2013-06-14 13:36:45 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     *out = NULL; | 
					
						
							|  |  |  |     *outlen = 0; | 
					
						
							|  |  |  |     return 1;                   /* Send empty extension */ | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-08-14 20:25:50 +08:00
										 |  |  | static int custom_ext_3_srv_parse_cb(SSL *s, unsigned int ext_type, | 
					
						
							| 
									
										
										
										
											2014-02-05 07:16:46 +08:00
										 |  |  |                                      const unsigned char *in, | 
					
						
							| 
									
										
										
										
											2014-08-14 20:25:50 +08:00
										 |  |  |                                      size_t inlen, int *al, void *arg) | 
					
						
							| 
									
										
										
										
											2013-06-14 13:36:45 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     if (ext_type != CUSTOM_EXT_TYPE_3) | 
					
						
							|  |  |  |         custom_ext_error = 1; | 
					
						
							|  |  |  |     /* Check for "abc" */ | 
					
						
							|  |  |  |     if (inlen != strlen(custom_ext_cli_string)) | 
					
						
							|  |  |  |         custom_ext_error = 1; | 
					
						
							|  |  |  |     if (memcmp(in, custom_ext_cli_string, inlen) != 0) | 
					
						
							|  |  |  |         custom_ext_error = 1; | 
					
						
							|  |  |  |     return 1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-08-14 20:25:50 +08:00
										 |  |  | static int custom_ext_3_srv_add_cb(SSL *s, unsigned int ext_type, | 
					
						
							| 
									
										
										
										
											2014-02-05 07:16:46 +08:00
										 |  |  |                                    const unsigned char **out, | 
					
						
							| 
									
										
										
										
											2014-08-14 20:25:50 +08:00
										 |  |  |                                    size_t *outlen, int *al, void *arg) | 
					
						
							| 
									
										
										
										
											2013-06-14 13:36:45 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     *out = (const unsigned char *)custom_ext_srv_string; | 
					
						
							|  |  |  |     *outlen = strlen(custom_ext_srv_string); | 
					
						
							|  |  |  |     return 1;                   /* Send "defg" */ | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | static char *cipher = NULL; | 
					
						
							| 
									
										
										
										
											2018-02-16 19:26:02 +08:00
										 |  |  | static char *ciphersuites = NULL; | 
					
						
							| 
									
										
										
										
											1999-10-26 03:36:01 +08:00
										 |  |  | static int verbose = 0; | 
					
						
							|  |  |  | static int debug = 0; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-03 06:50:52 +08:00
										 |  |  | int doit_localhost(SSL *s_ssl, SSL *c_ssl, int family, | 
					
						
							|  |  |  |                    long bytes, clock_t *s_time, clock_t *c_time); | 
					
						
							| 
									
										
										
										
											2000-03-13 23:06:54 +08:00
										 |  |  | int doit_biopair(SSL *s_ssl, SSL *c_ssl, long bytes, clock_t *s_time, | 
					
						
							|  |  |  |                  clock_t *c_time); | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  | int doit(SSL *s_ssl, SSL *c_ssl, long bytes); | 
					
						
							| 
									
										
										
										
											2015-02-03 00:11:34 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-04-20 05:31:43 +08:00
										 |  |  | static void sv_usage(void) | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     fprintf(stderr, "usage: ssltest [args ...]\n"); | 
					
						
							|  |  |  |     fprintf(stderr, "\n"); | 
					
						
							|  |  |  |     fprintf(stderr, " -server_auth  - check server certificate\n"); | 
					
						
							|  |  |  |     fprintf(stderr, " -client_auth  - do client authentication\n"); | 
					
						
							|  |  |  |     fprintf(stderr, " -v            - more output\n"); | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  |     fprintf(stderr, " -d            - debug output\n"); | 
					
						
							|  |  |  |     fprintf(stderr, " -reuse        - use session-id reuse\n"); | 
					
						
							|  |  |  |     fprintf(stderr, " -num <val>    - number of connections to perform\n"); | 
					
						
							|  |  |  |     fprintf(stderr, | 
					
						
							|  |  |  |             " -bytes <val>  - number of bytes to swap between client/server\n"); | 
					
						
							| 
									
										
										
										
											2020-11-28 05:03:29 +08:00
										 |  |  | #ifndef OPENSSL_NO_DH
 | 
					
						
							| 
									
										
										
										
											2000-03-10 21:23:20 +08:00
										 |  |  |     fprintf(stderr, | 
					
						
							| 
									
										
										
										
											2015-05-23 00:35:50 +08:00
										 |  |  |             " -dhe512       - use 512 bit key for DHE (to test failure)\n"); | 
					
						
							| 
									
										
										
										
											2000-03-10 21:23:20 +08:00
										 |  |  |     fprintf(stderr, | 
					
						
							|  |  |  |             " -dhe1024dsa   - use 1024 bit key (with 160-bit subprime) for DHE\n"); | 
					
						
							| 
									
										
										
										
											2022-02-24 05:05:22 +08:00
										 |  |  |     fprintf(stderr, | 
					
						
							|  |  |  |             " -dhe2048      - use 2048 bit key (safe prime) for DHE (default, no-op)\n"); | 
					
						
							|  |  |  |     fprintf(stderr, | 
					
						
							|  |  |  |             " -dhe4096      - use 4096 bit key (safe prime) for DHE\n"); | 
					
						
							| 
									
										
										
										
											2020-11-28 05:03:29 +08:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											1999-09-04 00:31:36 +08:00
										 |  |  |     fprintf(stderr, " -no_dhe       - disable DHE\n"); | 
					
						
							| 
									
										
										
										
											2015-03-11 07:09:27 +08:00
										 |  |  | #ifndef OPENSSL_NO_EC
 | 
					
						
							| 
									
										
										
										
											2021-05-31 12:27:31 +08:00
										 |  |  |     fprintf(stderr, " -no_ecdhe     - disable ECDHE\n"); | 
					
						
							| 
									
										
										
										
											2002-08-09 16:56:08 +08:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2006-03-11 07:06:27 +08:00
										 |  |  | #ifndef OPENSSL_NO_PSK
 | 
					
						
							|  |  |  |     fprintf(stderr, " -psk arg      - PSK in hex (without 0x)\n"); | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2016-01-19 02:10:21 +08:00
										 |  |  | #ifndef OPENSSL_NO_SSL3
 | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |     fprintf(stderr, " -ssl3         - use SSLv3\n"); | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2016-01-19 02:10:21 +08:00
										 |  |  | #ifndef OPENSSL_NO_TLS1
 | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  |     fprintf(stderr, " -tls1         - use TLSv1\n"); | 
					
						
							| 
									
										
										
										
											2016-01-19 02:10:21 +08:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2022-02-24 05:05:22 +08:00
										 |  |  | #ifndef OPENSSL_NO_TLS1_1
 | 
					
						
							|  |  |  |     fprintf(stderr, " -tls1_1       - use TLSv1.1\n"); | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | #ifndef OPENSSL_NO_TLS1_2
 | 
					
						
							|  |  |  |     fprintf(stderr, " -tls1_2       - use TLSv1.2\n"); | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2015-03-03 23:47:08 +08:00
										 |  |  | #ifndef OPENSSL_NO_DTLS
 | 
					
						
							| 
									
										
										
										
											2016-02-03 06:58:49 +08:00
										 |  |  |     fprintf(stderr, " -dtls         - use DTLS\n"); | 
					
						
							| 
									
										
										
										
											2016-01-19 02:10:21 +08:00
										 |  |  | #ifndef OPENSSL_NO_DTLS1
 | 
					
						
							| 
									
										
										
										
											2015-03-03 23:47:08 +08:00
										 |  |  |     fprintf(stderr, " -dtls1        - use DTLSv1\n"); | 
					
						
							| 
									
										
										
										
											2016-01-19 02:10:21 +08:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | #ifndef OPENSSL_NO_DTLS1_2
 | 
					
						
							| 
									
										
										
										
											2015-03-03 23:47:08 +08:00
										 |  |  |     fprintf(stderr, " -dtls12       - use DTLSv1.2\n"); | 
					
						
							| 
									
										
										
										
											2016-01-19 02:10:21 +08:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2015-03-03 23:47:08 +08:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |     fprintf(stderr, " -CApath arg   - PEM format directory of CA's\n"); | 
					
						
							|  |  |  |     fprintf(stderr, " -CAfile arg   - PEM format file of CA's\n"); | 
					
						
							| 
									
										
											  
											
												Fix KTLS with BIO_new_connect
When a socket connection is done using BIO_new_connect,
the ktls_enable is done too early, and fails with ENOTCONN.
Therefore the KLTS ioctl will fail later with ENOPROTOOPT.
Fix that by doing the ktls_enable after the connection
succeeded, not when the socket is created as that will
always fail.
One example where this happens is doit_localhost in
test/ssl_old_test.c, and therefore, contrary to the expectation
the -client_ktls option did never enable the client KTLS
connection, but this was not noticed, because there was no
diagnostic output, and it was only visible with strace output.
Also enhanced the ssl_old_test -client_ktls/-server_ktls
options together with -v option to print a summary line
if and how KTLS was negotiated in server and client.
While I am already there adjusted the usage info of
the -s_cert, -s_key commands, and allow -time to print the
timings of ktls connections.
Reviewed-by: Matt Caswell <matt@openssl.org>
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/18318)
											
										 
											2022-05-16 13:06:42 +08:00
										 |  |  |     fprintf(stderr, " -s_cert arg   - Server certificate file\n"); | 
					
						
							| 
									
										
										
										
											2000-03-14 03:30:59 +08:00
										 |  |  |     fprintf(stderr, | 
					
						
							| 
									
										
											  
											
												Fix KTLS with BIO_new_connect
When a socket connection is done using BIO_new_connect,
the ktls_enable is done too early, and fails with ENOTCONN.
Therefore the KLTS ioctl will fail later with ENOPROTOOPT.
Fix that by doing the ktls_enable after the connection
succeeded, not when the socket is created as that will
always fail.
One example where this happens is doit_localhost in
test/ssl_old_test.c, and therefore, contrary to the expectation
the -client_ktls option did never enable the client KTLS
connection, but this was not noticed, because there was no
diagnostic output, and it was only visible with strace output.
Also enhanced the ssl_old_test -client_ktls/-server_ktls
options together with -v option to print a summary line
if and how KTLS was negotiated in server and client.
While I am already there adjusted the usage info of
the -s_cert, -s_key commands, and allow -time to print the
timings of ktls connections.
Reviewed-by: Matt Caswell <matt@openssl.org>
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/18318)
											
										 
											2022-05-16 13:06:42 +08:00
										 |  |  |             " -s_key arg    - Server key file (default: same as -cert)\n"); | 
					
						
							| 
									
										
										
										
											2000-03-14 03:30:59 +08:00
										 |  |  |     fprintf(stderr, " -c_cert arg   - Client certificate file\n"); | 
					
						
							|  |  |  |     fprintf(stderr, | 
					
						
							|  |  |  |             " -c_key arg    - Client key file (default: same as -c_cert)\n"); | 
					
						
							| 
									
										
										
										
											2018-02-16 19:26:02 +08:00
										 |  |  |     fprintf(stderr, " -cipher arg   - The TLSv1.2 and below cipher list\n"); | 
					
						
							|  |  |  |     fprintf(stderr, " -ciphersuites arg   - The TLSv1.3 ciphersuites\n"); | 
					
						
							| 
									
										
										
										
											1999-06-12 09:03:40 +08:00
										 |  |  |     fprintf(stderr, " -bio_pair     - Use BIO pairs\n"); | 
					
						
							| 
									
										
										
										
											2016-02-03 06:50:52 +08:00
										 |  |  |     fprintf(stderr, " -ipv4         - Use IPv4 connection on localhost\n"); | 
					
						
							|  |  |  |     fprintf(stderr, " -ipv6         - Use IPv6 connection on localhost\n"); | 
					
						
							| 
									
										
										
										
											1999-06-12 09:03:40 +08:00
										 |  |  |     fprintf(stderr, " -f            - Test even cases that can't work\n"); | 
					
						
							| 
									
										
										
										
											2000-03-13 23:06:54 +08:00
										 |  |  |     fprintf(stderr, | 
					
						
							|  |  |  |             " -time         - measure processor time used by client and server\n"); | 
					
						
							| 
									
										
										
										
											2000-11-30 19:57:31 +08:00
										 |  |  |     fprintf(stderr, " -zlib         - use zlib compression\n"); | 
					
						
							| 
									
										
										
										
											2013-11-14 07:20:22 +08:00
										 |  |  | #ifndef OPENSSL_NO_NEXTPROTONEG
 | 
					
						
							| 
									
										
										
										
											2010-09-06 00:35:10 +08:00
										 |  |  |     fprintf(stderr, " -npn_client - have client side offer NPN\n"); | 
					
						
							|  |  |  |     fprintf(stderr, " -npn_server - have server side offer NPN\n"); | 
					
						
							|  |  |  |     fprintf(stderr, " -npn_server_reject - have server reject NPN\n"); | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2013-06-14 13:36:45 +08:00
										 |  |  |     fprintf(stderr, " -serverinfo_file file - have server use this file\n"); | 
					
						
							| 
									
										
										
										
											2013-05-13 09:55:27 +08:00
										 |  |  |     fprintf(stderr, " -serverinfo_sct  - have client offer and expect SCT\n"); | 
					
						
							|  |  |  |     fprintf(stderr, | 
					
						
							|  |  |  |             " -serverinfo_tack - have client offer and expect TACK\n"); | 
					
						
							| 
									
										
										
										
											2013-06-14 13:36:45 +08:00
										 |  |  |     fprintf(stderr, | 
					
						
							|  |  |  |             " -custom_ext - try various custom extension callbacks\n"); | 
					
						
							| 
									
										
										
										
											2013-07-16 03:57:16 +08:00
										 |  |  |     fprintf(stderr, " -alpn_client <string> - have client side offer ALPN\n"); | 
					
						
							|  |  |  |     fprintf(stderr, " -alpn_server <string> - have server side offer ALPN\n"); | 
					
						
							| 
									
										
										
										
											2016-03-05 21:47:55 +08:00
										 |  |  |     fprintf(stderr, " -alpn_server1 <string> - alias for -alpn_server\n"); | 
					
						
							|  |  |  |     fprintf(stderr, " -alpn_server2 <string> - have server side context 2 offer ALPN\n"); | 
					
						
							| 
									
										
										
										
											2013-07-16 03:57:16 +08:00
										 |  |  |     fprintf(stderr, | 
					
						
							|  |  |  |             " -alpn_expected <string> - the ALPN protocol that should be negotiated\n"); | 
					
						
							| 
									
										
										
										
											2015-12-07 00:56:41 +08:00
										 |  |  |     fprintf(stderr, " -server_min_proto <string> - Minimum version the server should support\n"); | 
					
						
							|  |  |  |     fprintf(stderr, " -server_max_proto <string> - Maximum version the server should support\n"); | 
					
						
							|  |  |  |     fprintf(stderr, " -client_min_proto <string> - Minimum version the client should support\n"); | 
					
						
							|  |  |  |     fprintf(stderr, " -client_max_proto <string> - Maximum version the client should support\n"); | 
					
						
							|  |  |  |     fprintf(stderr, " -should_negotiate <string> - The version that should be negotiated, fail-client or fail-server\n"); | 
					
						
							| 
									
										
										
										
											2016-03-02 21:34:05 +08:00
										 |  |  | #ifndef OPENSSL_NO_CT
 | 
					
						
							|  |  |  |     fprintf(stderr, " -noct         - no certificate transparency\n"); | 
					
						
							|  |  |  |     fprintf(stderr, " -requestct    - request certificate transparency\n"); | 
					
						
							|  |  |  |     fprintf(stderr, " -requirect    - require certificate transparency\n"); | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2016-03-05 21:47:55 +08:00
										 |  |  |     fprintf(stderr, " -sn_client <string>  - have client request this servername\n"); | 
					
						
							|  |  |  |     fprintf(stderr, " -sn_server1 <string> - have server context 1 respond to this servername\n"); | 
					
						
							|  |  |  |     fprintf(stderr, " -sn_server2 <string> - have server context 2 respond to this servername\n"); | 
					
						
							|  |  |  |     fprintf(stderr, " -sn_expect1          - expected server 1\n"); | 
					
						
							|  |  |  |     fprintf(stderr, " -sn_expect2          - expected server 2\n"); | 
					
						
							| 
									
										
										
										
											2016-03-28 02:53:01 +08:00
										 |  |  |     fprintf(stderr, " -server_sess_out <file>    - Save the server session to a file\n"); | 
					
						
							|  |  |  |     fprintf(stderr, " -server_sess_in <file>     - Read the server session from a file\n"); | 
					
						
							|  |  |  |     fprintf(stderr, " -client_sess_out <file>    - Save the client session to a file\n"); | 
					
						
							|  |  |  |     fprintf(stderr, " -client_sess_in <file>     - Read the client session from a file\n"); | 
					
						
							|  |  |  |     fprintf(stderr, " -should_reuse <number>     - The expected state of reusing the session\n"); | 
					
						
							|  |  |  |     fprintf(stderr, " -no_ticket    - do not issue TLS session ticket\n"); | 
					
						
							| 
									
										
										
										
											2022-01-14 17:01:29 +08:00
										 |  |  |     fprintf(stderr, " -client_ktls  - try to enable client KTLS\n"); | 
					
						
							|  |  |  |     fprintf(stderr, " -server_ktls  - try to enable server KTLS\n"); | 
					
						
							| 
									
										
										
										
											2020-04-10 21:31:19 +08:00
										 |  |  |     fprintf(stderr, " -provider <name>    - Load the given provider into the library context\n"); | 
					
						
							| 
									
										
										
										
											2020-04-13 21:32:51 +08:00
										 |  |  |     fprintf(stderr, " -config <cnf>    - Load the given config file into the library context\n"); | 
					
						
							| 
									
										
										
										
											2000-03-13 23:06:54 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-27 22:39:37 +08:00
										 |  |  | static void print_key_details(BIO *out, EVP_PKEY *key) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
											
												Rename all getters to use get/get0 in name
For functions that exist in 1.1.1 provide a simple aliases via #define.
Fixes #15236
Functions with OSSL_DECODER_, OSSL_ENCODER_, OSSL_STORE_LOADER_,
EVP_KEYEXCH_, EVP_KEM_, EVP_ASYM_CIPHER_, EVP_SIGNATURE_,
EVP_KEYMGMT_, EVP_RAND_, EVP_MAC_, EVP_KDF_, EVP_PKEY_,
EVP_MD_, and EVP_CIPHER_ prefixes are renamed.
Reviewed-by: Paul Dale <pauli@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/15405)
											
										 
											2021-05-21 22:58:08 +08:00
										 |  |  |     int keyid = EVP_PKEY_get_id(key); | 
					
						
							| 
									
										
										
										
											2021-01-21 19:37:21 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-27 22:39:37 +08:00
										 |  |  | #ifndef OPENSSL_NO_EC
 | 
					
						
							|  |  |  |     if (keyid == EVP_PKEY_EC) { | 
					
						
							| 
									
										
										
										
											2021-01-21 19:37:21 +08:00
										 |  |  |         char group[80]; | 
					
						
							|  |  |  |         size_t size; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (!EVP_PKEY_get_group_name(key, group, sizeof(group), &size)) | 
					
						
							|  |  |  |             strcpy(group, "unknown group"); | 
					
						
							| 
									
										
										
											
												Rename all getters to use get/get0 in name
For functions that exist in 1.1.1 provide a simple aliases via #define.
Fixes #15236
Functions with OSSL_DECODER_, OSSL_ENCODER_, OSSL_STORE_LOADER_,
EVP_KEYEXCH_, EVP_KEM_, EVP_ASYM_CIPHER_, EVP_SIGNATURE_,
EVP_KEYMGMT_, EVP_RAND_, EVP_MAC_, EVP_KDF_, EVP_PKEY_,
EVP_MD_, and EVP_CIPHER_ prefixes are renamed.
Reviewed-by: Paul Dale <pauli@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/15405)
											
										 
											2021-05-21 22:58:08 +08:00
										 |  |  |         BIO_printf(out, "%d bits EC (%s)", EVP_PKEY_get_bits(key), group); | 
					
						
							| 
									
										
										
										
											2014-10-27 22:39:37 +08:00
										 |  |  |     } else | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         const char *algname; | 
					
						
							|  |  |  |         switch (keyid) { | 
					
						
							|  |  |  |         case EVP_PKEY_RSA: | 
					
						
							|  |  |  |             algname = "RSA"; | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         case EVP_PKEY_DSA: | 
					
						
							|  |  |  |             algname = "DSA"; | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         case EVP_PKEY_DH: | 
					
						
							|  |  |  |             algname = "DH"; | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         default: | 
					
						
							|  |  |  |             algname = OBJ_nid2sn(keyid); | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
											
												Rename all getters to use get/get0 in name
For functions that exist in 1.1.1 provide a simple aliases via #define.
Fixes #15236
Functions with OSSL_DECODER_, OSSL_ENCODER_, OSSL_STORE_LOADER_,
EVP_KEYEXCH_, EVP_KEM_, EVP_ASYM_CIPHER_, EVP_SIGNATURE_,
EVP_KEYMGMT_, EVP_RAND_, EVP_MAC_, EVP_KDF_, EVP_PKEY_,
EVP_MD_, and EVP_CIPHER_ prefixes are renamed.
Reviewed-by: Paul Dale <pauli@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/15405)
											
										 
											2021-05-21 22:58:08 +08:00
										 |  |  |         BIO_printf(out, "%d bits %s", EVP_PKEY_get_bits(key), algname); | 
					
						
							| 
									
										
										
										
											2014-10-27 22:39:37 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-13 23:06:54 +08:00
										 |  |  | static void print_details(SSL *c_ssl, const char *prefix) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2008-10-12 22:32:47 +08:00
										 |  |  |     const SSL_CIPHER *ciph; | 
					
						
							| 
									
										
										
										
											2014-10-27 22:39:37 +08:00
										 |  |  |     int mdnid; | 
					
						
							| 
									
										
										
										
											2000-03-13 23:06:54 +08:00
										 |  |  |     X509 *cert; | 
					
						
							| 
									
										
										
										
											2014-10-27 22:39:37 +08:00
										 |  |  |     EVP_PKEY *pkey; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-13 23:06:54 +08:00
										 |  |  |     ciph = SSL_get_current_cipher(c_ssl); | 
					
						
							|  |  |  |     BIO_printf(bio_stdout, "%s%s, cipher %s %s", | 
					
						
							|  |  |  |                prefix, | 
					
						
							|  |  |  |                SSL_get_version(c_ssl), | 
					
						
							|  |  |  |                SSL_CIPHER_get_version(ciph), SSL_CIPHER_get_name(ciph)); | 
					
						
							| 
									
										
										
										
											2019-04-11 22:47:13 +08:00
										 |  |  |     cert = SSL_get0_peer_certificate(c_ssl); | 
					
						
							| 
									
										
										
										
											2000-03-13 23:06:54 +08:00
										 |  |  |     if (cert != NULL) { | 
					
						
							| 
									
										
										
										
											2016-04-07 06:20:11 +08:00
										 |  |  |         EVP_PKEY* pubkey = X509_get0_pubkey(cert); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (pubkey != NULL) { | 
					
						
							| 
									
										
										
										
											2014-10-27 22:39:37 +08:00
										 |  |  |             BIO_puts(bio_stdout, ", "); | 
					
						
							| 
									
										
										
										
											2016-04-07 06:20:11 +08:00
										 |  |  |             print_key_details(bio_stdout, pubkey); | 
					
						
							| 
									
										
										
										
											2000-03-13 23:06:54 +08:00
										 |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-11-10 14:53:56 +08:00
										 |  |  |     if (SSL_get_peer_tmp_key(c_ssl, &pkey)) { | 
					
						
							| 
									
										
										
										
											2014-10-27 22:39:37 +08:00
										 |  |  |         BIO_puts(bio_stdout, ", temp key: "); | 
					
						
							|  |  |  |         print_key_details(bio_stdout, pkey); | 
					
						
							|  |  |  |         EVP_PKEY_free(pkey); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (SSL_get_peer_signature_nid(c_ssl, &mdnid)) | 
					
						
							|  |  |  |         BIO_printf(bio_stdout, ", digest=%s", OBJ_nid2sn(mdnid)); | 
					
						
							| 
									
										
										
										
											2000-03-13 23:06:54 +08:00
										 |  |  |     BIO_printf(bio_stdout, "\n"); | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-07 00:56:41 +08:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * protocol_from_string - converts a protocol version string to a number | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Returns -1 on failure or the version on success | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | static int protocol_from_string(const char *value) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     struct protocol_versions { | 
					
						
							|  |  |  |         const char *name; | 
					
						
							|  |  |  |         int version; | 
					
						
							|  |  |  |     }; | 
					
						
							|  |  |  |     static const struct protocol_versions versions[] = { | 
					
						
							|  |  |  |         {"ssl3", SSL3_VERSION}, | 
					
						
							|  |  |  |         {"tls1", TLS1_VERSION}, | 
					
						
							|  |  |  |         {"tls1.1", TLS1_1_VERSION}, | 
					
						
							|  |  |  |         {"tls1.2", TLS1_2_VERSION}, | 
					
						
							| 
									
										
										
										
											2016-10-22 00:39:33 +08:00
										 |  |  |         {"tls1.3", TLS1_3_VERSION}, | 
					
						
							| 
									
										
										
										
											2015-12-07 00:56:41 +08:00
										 |  |  |         {"dtls1", DTLS1_VERSION}, | 
					
						
							| 
									
										
										
										
											2023-10-04 16:03:45 +08:00
										 |  |  |         {"dtls1.2", DTLS1_2_VERSION}, | 
					
						
							|  |  |  |         {"dtls1.3", DTLS1_3_VERSION}}; | 
					
						
							| 
									
										
										
										
											2015-12-07 00:56:41 +08:00
										 |  |  |     size_t i; | 
					
						
							|  |  |  |     size_t n = OSSL_NELEM(versions); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     for (i = 0; i < n; i++) | 
					
						
							|  |  |  |         if (strcmp(versions[i].name, value) == 0) | 
					
						
							|  |  |  |             return versions[i].version; | 
					
						
							|  |  |  |     return -1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-28 02:53:01 +08:00
										 |  |  | static SSL_SESSION *read_session(const char *filename) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     SSL_SESSION *sess; | 
					
						
							|  |  |  |     BIO *f = BIO_new_file(filename, "r"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (f == NULL) { | 
					
						
							|  |  |  |         BIO_printf(bio_err, "Can't open session file %s\n", filename); | 
					
						
							|  |  |  |         ERR_print_errors(bio_err); | 
					
						
							|  |  |  |         return NULL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     sess = PEM_read_bio_SSL_SESSION(f, NULL, 0, NULL); | 
					
						
							|  |  |  |     if (sess == NULL) { | 
					
						
							|  |  |  |         BIO_printf(bio_err, "Can't parse session file %s\n", filename); | 
					
						
							|  |  |  |         ERR_print_errors(bio_err); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     BIO_free(f); | 
					
						
							|  |  |  |     return sess; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int write_session(const char *filename, SSL_SESSION *sess) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2021-10-12 10:50:12 +08:00
										 |  |  |     BIO *f; | 
					
						
							| 
									
										
										
										
											2016-03-28 02:53:01 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (sess == NULL) { | 
					
						
							|  |  |  |         BIO_printf(bio_err, "No session information\n"); | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-10-12 10:50:12 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     f = BIO_new_file(filename, "w"); | 
					
						
							| 
									
										
										
										
											2016-03-28 02:53:01 +08:00
										 |  |  |     if (f == NULL) { | 
					
						
							|  |  |  |         BIO_printf(bio_err, "Can't open session file %s\n", filename); | 
					
						
							|  |  |  |         ERR_print_errors(bio_err); | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     PEM_write_bio_SSL_SESSION(f, sess); | 
					
						
							|  |  |  |     BIO_free(f); | 
					
						
							|  |  |  |     return 1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-07 00:56:41 +08:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * set_protocol_version - Sets protocol version minimum or maximum | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Returns 0 on failure and 1 on success | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | static int set_protocol_version(const char *version, SSL *ssl, int setting) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (version != NULL) { | 
					
						
							|  |  |  |         int ver = protocol_from_string(version); | 
					
						
							|  |  |  |         if (ver < 0) { | 
					
						
							|  |  |  |             BIO_printf(bio_err, "Error parsing: %s\n", version); | 
					
						
							|  |  |  |             return 0; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         return SSL_ctrl(ssl, setting, ver, NULL); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return 1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-04-20 05:31:43 +08:00
										 |  |  | int main(int argc, char *argv[]) | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2016-08-05 05:52:22 +08:00
										 |  |  |     const char *CApath = NULL, *CAfile = NULL; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |     int badop = 0; | 
					
						
							| 
									
										
										
										
											2016-02-03 06:50:52 +08:00
										 |  |  |     enum { BIO_MEM, BIO_PAIR, BIO_IPV4, BIO_IPV6 } bio_type = BIO_MEM; | 
					
						
							| 
									
										
										
										
											1999-06-12 09:03:40 +08:00
										 |  |  |     int force = 0; | 
					
						
							| 
									
										
										
										
											2022-02-24 05:05:22 +08:00
										 |  |  |     int dtls1 = 0, dtls12 = 0, dtls = 0, tls1 = 0, tls1_1 = 0, tls1_2 = 0, ssl3 = 0; | 
					
						
							| 
									
										
										
										
											2017-07-13 05:37:01 +08:00
										 |  |  |     int ret = EXIT_FAILURE; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |     int client_auth = 0; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  |     int server_auth = 0, i; | 
					
						
							| 
									
										
										
										
											2023-09-14 02:32:54 +08:00
										 |  |  |     struct app_verify_arg app_verify_arg = { APP_CALLBACK_STRING, 0 }; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |     SSL_CTX *c_ctx = NULL; | 
					
						
							| 
									
										
										
										
											2005-08-15 05:48:33 +08:00
										 |  |  |     const SSL_METHOD *meth = NULL; | 
					
						
							| 
									
										
										
										
											2023-10-13 22:18:52 +08:00
										 |  |  |     SSL *c_ssl = NULL; | 
					
						
							|  |  |  |     SSL *s_ssl = NULL; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  |     int number = 1, reuse = 0; | 
					
						
							| 
									
										
										
										
											2016-03-28 02:53:01 +08:00
										 |  |  |     int should_reuse = -1; | 
					
						
							|  |  |  |     int no_ticket = 0; | 
					
						
							| 
									
										
										
										
											2022-01-14 17:01:29 +08:00
										 |  |  |     int client_ktls = 0, server_ktls = 0; | 
					
						
							| 
									
										
										
										
											2003-10-06 19:00:15 +08:00
										 |  |  |     long bytes = 256L; | 
					
						
							| 
									
										
										
										
											2020-11-28 05:03:29 +08:00
										 |  |  | #ifndef OPENSSL_NO_DH
 | 
					
						
							| 
									
										
										
										
											2020-11-03 00:59:15 +08:00
										 |  |  |     EVP_PKEY *dhpkey; | 
					
						
							| 
									
										
										
										
											2022-02-24 05:05:22 +08:00
										 |  |  |     int dhe512 = 0, dhe1024dsa = 0, dhe4096 = 0; | 
					
						
							| 
									
										
										
										
											2000-03-10 21:23:20 +08:00
										 |  |  |     int no_dhe = 0; | 
					
						
							| 
									
										
										
										
											2020-11-03 00:59:15 +08:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2006-03-11 07:06:27 +08:00
										 |  |  |     int no_psk = 0; | 
					
						
							| 
									
										
										
										
											2000-03-13 23:06:54 +08:00
										 |  |  |     int print_time = 0; | 
					
						
							|  |  |  |     clock_t s_time = 0, c_time = 0; | 
					
						
							| 
									
										
										
										
											2005-10-01 07:35:33 +08:00
										 |  |  | #ifndef OPENSSL_NO_COMP
 | 
					
						
							| 
									
										
										
										
											2015-05-09 00:05:36 +08:00
										 |  |  |     int n, comp = 0; | 
					
						
							| 
									
										
										
										
											2000-12-01 07:41:58 +08:00
										 |  |  |     COMP_METHOD *cm = NULL; | 
					
						
							| 
									
										
										
										
											2003-10-06 19:00:15 +08:00
										 |  |  |     STACK_OF(SSL_COMP) *ssl_comp_methods = NULL; | 
					
						
							| 
									
										
										
										
											2011-05-20 02:09:02 +08:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2016-01-19 02:10:21 +08:00
										 |  |  |     int no_protocol; | 
					
						
							| 
									
										
										
										
											2016-02-03 06:58:49 +08:00
										 |  |  |     int min_version = 0, max_version = 0; | 
					
						
							| 
									
										
										
										
											2016-03-02 21:34:05 +08:00
										 |  |  | #ifndef OPENSSL_NO_CT
 | 
					
						
							|  |  |  |     /*
 | 
					
						
							|  |  |  |      * Disable CT validation by default, because it will interfere with | 
					
						
							|  |  |  |      * anything using custom extension handlers to deal with SCT extensions. | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2016-04-08 02:17:37 +08:00
										 |  |  |     int ct_validation = 0; | 
					
						
							| 
									
										
										
										
											2016-03-02 21:34:05 +08:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2016-03-05 21:47:55 +08:00
										 |  |  |     SSL_CONF_CTX *s_cctx = NULL, *c_cctx = NULL, *s_cctx2 = NULL; | 
					
						
							| 
									
										
										
										
											2014-10-27 22:07:12 +08:00
										 |  |  |     STACK_OF(OPENSSL_STRING) *conf_args = NULL; | 
					
						
							| 
									
										
										
										
											2015-12-23 08:47:28 +08:00
										 |  |  |     char *arg = NULL, *argn = NULL; | 
					
						
							| 
									
										
										
										
											2020-04-10 21:31:19 +08:00
										 |  |  |     const char *provider = NULL, *config = NULL; | 
					
						
							|  |  |  |     OSSL_PROVIDER *thisprov = NULL, *defctxnull = NULL; | 
					
						
							| 
									
										
										
										
											2020-10-15 17:55:50 +08:00
										 |  |  |     OSSL_LIB_CTX *libctx = NULL; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-10-26 03:36:01 +08:00
										 |  |  |     verbose = 0; | 
					
						
							|  |  |  |     debug = 0; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-01-03 17:43:16 +08:00
										 |  |  |     test_open_streams(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-03-13 06:16:57 +08:00
										 |  |  |     bio_stdout = BIO_new_fp(stdout, BIO_NOCLOSE | BIO_FP_TEXT); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-27 22:07:12 +08:00
										 |  |  |     s_cctx = SSL_CONF_CTX_new(); | 
					
						
							| 
									
										
										
										
											2016-03-05 21:47:55 +08:00
										 |  |  |     s_cctx2 = SSL_CONF_CTX_new(); | 
					
						
							| 
									
										
										
										
											2014-10-27 22:07:12 +08:00
										 |  |  |     c_cctx = SSL_CONF_CTX_new(); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-05 21:47:55 +08:00
										 |  |  |     if (!s_cctx || !c_cctx || !s_cctx2) { | 
					
						
							| 
									
										
										
										
											2014-10-27 22:07:12 +08:00
										 |  |  |         ERR_print_errors(bio_err); | 
					
						
							|  |  |  |         goto end; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-27 22:07:12 +08:00
										 |  |  |     SSL_CONF_CTX_set_flags(s_cctx, | 
					
						
							| 
									
										
										
										
											2015-08-26 19:22:39 +08:00
										 |  |  |                            SSL_CONF_FLAG_CMDLINE | SSL_CONF_FLAG_SERVER | | 
					
						
							|  |  |  |                            SSL_CONF_FLAG_CERTIFICATE | | 
					
						
							|  |  |  |                            SSL_CONF_FLAG_REQUIRE_PRIVATE); | 
					
						
							| 
									
										
										
										
											2016-03-05 21:47:55 +08:00
										 |  |  |     SSL_CONF_CTX_set_flags(s_cctx2, | 
					
						
							|  |  |  |                            SSL_CONF_FLAG_CMDLINE | SSL_CONF_FLAG_SERVER | | 
					
						
							|  |  |  |                            SSL_CONF_FLAG_CERTIFICATE | | 
					
						
							|  |  |  |                            SSL_CONF_FLAG_REQUIRE_PRIVATE); | 
					
						
							| 
									
										
										
										
											2014-10-27 22:07:12 +08:00
										 |  |  |     if (!SSL_CONF_CTX_set1_prefix(s_cctx, "-s_")) { | 
					
						
							|  |  |  |         ERR_print_errors(bio_err); | 
					
						
							|  |  |  |         goto end; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2016-03-05 21:47:55 +08:00
										 |  |  |     if (!SSL_CONF_CTX_set1_prefix(s_cctx2, "-s_")) { | 
					
						
							|  |  |  |         ERR_print_errors(bio_err); | 
					
						
							|  |  |  |         goto end; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-27 22:07:12 +08:00
										 |  |  |     SSL_CONF_CTX_set_flags(c_cctx, | 
					
						
							| 
									
										
										
										
											2015-08-26 19:22:39 +08:00
										 |  |  |                            SSL_CONF_FLAG_CMDLINE | SSL_CONF_FLAG_CLIENT | | 
					
						
							|  |  |  |                            SSL_CONF_FLAG_CERTIFICATE | | 
					
						
							|  |  |  |                            SSL_CONF_FLAG_REQUIRE_PRIVATE); | 
					
						
							| 
									
										
										
										
											2014-10-27 22:07:12 +08:00
										 |  |  |     if (!SSL_CONF_CTX_set1_prefix(c_cctx, "-c_")) { | 
					
						
							|  |  |  |         ERR_print_errors(bio_err); | 
					
						
							|  |  |  |         goto end; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |     argc--; | 
					
						
							|  |  |  |     argv++; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |     while (argc >= 1) { | 
					
						
							| 
									
										
										
										
											2015-05-07 02:56:14 +08:00
										 |  |  |         if (strcmp(*argv, "-F") == 0) { | 
					
						
							| 
									
										
										
										
											2014-09-10 01:48:00 +08:00
										 |  |  |             fprintf(stderr, | 
					
						
							|  |  |  |                     "not compiled with FIPS support, so exiting without running.\n"); | 
					
						
							| 
									
										
										
										
											2024-01-03 17:43:16 +08:00
										 |  |  |             ret = EXIT_SUCCESS; | 
					
						
							|  |  |  |             goto end; | 
					
						
							| 
									
										
										
										
											2011-05-20 02:09:02 +08:00
										 |  |  |         } else if (strcmp(*argv, "-server_auth") == 0) | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |             server_auth = 1; | 
					
						
							|  |  |  |         else if (strcmp(*argv, "-client_auth") == 0) | 
					
						
							|  |  |  |             client_auth = 1; | 
					
						
							| 
									
										
										
										
											2016-04-08 01:07:50 +08:00
										 |  |  |         else if (strcmp(*argv, "-v") == 0) | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |             verbose = 1; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  |         else if (strcmp(*argv, "-d") == 0) | 
					
						
							|  |  |  |             debug = 1; | 
					
						
							|  |  |  |         else if (strcmp(*argv, "-reuse") == 0) | 
					
						
							|  |  |  |             reuse = 1; | 
					
						
							| 
									
										
										
										
											2020-11-28 05:03:29 +08:00
										 |  |  |         else if (strcmp(*argv, "-no_dhe") == 0) | 
					
						
							|  |  |  | #ifdef OPENSSL_NO_DH
 | 
					
						
							|  |  |  |             /* unused in this case */; | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  |             no_dhe = 1; | 
					
						
							|  |  |  |         else if (strcmp(*argv, "-dhe512") == 0) | 
					
						
							| 
									
										
										
										
											2015-05-23 00:35:50 +08:00
										 |  |  |             dhe512 = 1; | 
					
						
							| 
									
										
										
										
											2020-11-28 05:03:29 +08:00
										 |  |  |         else if (strcmp(*argv, "-dhe1024dsa") == 0) | 
					
						
							| 
									
										
										
										
											2000-03-10 21:23:20 +08:00
										 |  |  |             dhe1024dsa = 1; | 
					
						
							| 
									
										
										
										
											2022-02-24 05:05:22 +08:00
										 |  |  |         else if (strcmp(*argv, "-dhe4096") == 0) | 
					
						
							|  |  |  |             dhe4096 = 1; | 
					
						
							| 
									
										
										
										
											2020-11-28 05:03:29 +08:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2002-08-09 16:56:08 +08:00
										 |  |  |         else if (strcmp(*argv, "-no_ecdhe") == 0) | 
					
						
							| 
									
										
										
										
											2016-03-05 21:47:55 +08:00
										 |  |  |             /* obsolete */; | 
					
						
							| 
									
										
										
										
											2006-03-11 07:06:27 +08:00
										 |  |  |         else if (strcmp(*argv, "-psk") == 0) { | 
					
						
							|  |  |  |             if (--argc < 1) | 
					
						
							|  |  |  |                 goto bad; | 
					
						
							|  |  |  |             psk_key = *(++argv); | 
					
						
							|  |  |  | #ifndef OPENSSL_NO_PSK
 | 
					
						
							|  |  |  |             if (strspn(psk_key, "abcdefABCDEF1234567890") != strlen(psk_key)) { | 
					
						
							|  |  |  |                 BIO_printf(bio_err, "Not a hex number '%s'\n", *argv); | 
					
						
							|  |  |  |                 goto bad; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  |             no_psk = 1; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2016-10-22 00:39:33 +08:00
										 |  |  |         else if (strcmp(*argv, "-tls1_2") == 0) { | 
					
						
							|  |  |  |             tls1_2 = 1; | 
					
						
							| 
									
										
										
										
											2022-02-24 05:05:22 +08:00
										 |  |  |         } else if (strcmp(*argv, "-tls1_1") == 0) { | 
					
						
							|  |  |  |             tls1_1 = 1; | 
					
						
							| 
									
										
										
										
											2016-10-22 00:39:33 +08:00
										 |  |  |         } else if (strcmp(*argv, "-tls1") == 0) { | 
					
						
							| 
									
										
										
										
											2014-10-27 23:25:17 +08:00
										 |  |  |             tls1 = 1; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |         } else if (strcmp(*argv, "-ssl3") == 0) { | 
					
						
							| 
									
										
										
										
											2014-10-27 23:25:17 +08:00
										 |  |  |             ssl3 = 1; | 
					
						
							| 
									
										
										
										
											2015-03-03 23:47:08 +08:00
										 |  |  |         } else if (strcmp(*argv, "-dtls1") == 0) { | 
					
						
							|  |  |  |             dtls1 = 1; | 
					
						
							|  |  |  |         } else if (strcmp(*argv, "-dtls12") == 0) { | 
					
						
							|  |  |  |             dtls12 = 1; | 
					
						
							| 
									
										
										
										
											2015-12-07 00:56:41 +08:00
										 |  |  |         } else if (strcmp(*argv, "-dtls") == 0) { | 
					
						
							|  |  |  |             dtls = 1; | 
					
						
							| 
									
										
										
										
											2021-06-21 14:55:50 +08:00
										 |  |  |         } else if (HAS_PREFIX(*argv, "-num")) { | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  |             if (--argc < 1) | 
					
						
							|  |  |  |                 goto bad; | 
					
						
							|  |  |  |             number = atoi(*(++argv)); | 
					
						
							|  |  |  |             if (number == 0) | 
					
						
							|  |  |  |                 number = 1; | 
					
						
							|  |  |  |         } else if (strcmp(*argv, "-bytes") == 0) { | 
					
						
							|  |  |  |             if (--argc < 1) | 
					
						
							|  |  |  |                 goto bad; | 
					
						
							|  |  |  |             bytes = atol(*(++argv)); | 
					
						
							|  |  |  |             if (bytes == 0L) | 
					
						
							|  |  |  |                 bytes = 1L; | 
					
						
							| 
									
										
										
										
											2025-06-18 17:59:04 +08:00
										 |  |  |             i = (int)strlen(argv[0]); | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  |             if (argv[0][i - 1] == 'k') | 
					
						
							|  |  |  |                 bytes *= 1024L; | 
					
						
							|  |  |  |             if (argv[0][i - 1] == 'm') | 
					
						
							|  |  |  |                 bytes *= 1024L * 1024L; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |         } else if (strcmp(*argv, "-cipher") == 0) { | 
					
						
							|  |  |  |             if (--argc < 1) | 
					
						
							|  |  |  |                 goto bad; | 
					
						
							|  |  |  |             cipher = *(++argv); | 
					
						
							| 
									
										
										
										
											2018-02-16 19:26:02 +08:00
										 |  |  |         } else if (strcmp(*argv, "-ciphersuites") == 0) { | 
					
						
							|  |  |  |             if (--argc < 1) | 
					
						
							|  |  |  |                 goto bad; | 
					
						
							|  |  |  |             ciphersuites = *(++argv); | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |         } else if (strcmp(*argv, "-CApath") == 0) { | 
					
						
							|  |  |  |             if (--argc < 1) | 
					
						
							|  |  |  |                 goto bad; | 
					
						
							|  |  |  |             CApath = *(++argv); | 
					
						
							|  |  |  |         } else if (strcmp(*argv, "-CAfile") == 0) { | 
					
						
							|  |  |  |             if (--argc < 1) | 
					
						
							|  |  |  |                 goto bad; | 
					
						
							|  |  |  |             CAfile = *(++argv); | 
					
						
							| 
									
										
										
										
											1999-06-12 09:03:40 +08:00
										 |  |  |         } else if (strcmp(*argv, "-bio_pair") == 0) { | 
					
						
							| 
									
										
										
										
											2016-02-03 06:50:52 +08:00
										 |  |  |             bio_type = BIO_PAIR; | 
					
						
							| 
									
										
										
										
											2016-03-21 23:32:40 +08:00
										 |  |  |         } | 
					
						
							|  |  |  | #ifndef OPENSSL_NO_SOCK
 | 
					
						
							|  |  |  |         else if (strcmp(*argv, "-ipv4") == 0) { | 
					
						
							| 
									
										
										
										
											2016-02-03 06:50:52 +08:00
										 |  |  |             bio_type = BIO_IPV4; | 
					
						
							|  |  |  |         } else if (strcmp(*argv, "-ipv6") == 0) { | 
					
						
							|  |  |  |             bio_type = BIO_IPV6; | 
					
						
							| 
									
										
										
										
											2016-03-21 23:32:40 +08:00
										 |  |  |         } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  |         else if (strcmp(*argv, "-f") == 0) { | 
					
						
							| 
									
										
										
										
											1999-06-12 09:03:40 +08:00
										 |  |  |             force = 1; | 
					
						
							| 
									
										
										
										
											2000-03-13 23:06:54 +08:00
										 |  |  |         } else if (strcmp(*argv, "-time") == 0) { | 
					
						
							|  |  |  |             print_time = 1; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2016-03-02 21:34:05 +08:00
										 |  |  | #ifndef OPENSSL_NO_CT
 | 
					
						
							|  |  |  |         else if (strcmp(*argv, "-noct") == 0) { | 
					
						
							| 
									
										
										
										
											2016-04-08 02:17:37 +08:00
										 |  |  |             ct_validation = 0; | 
					
						
							| 
									
										
										
										
											2016-03-02 21:34:05 +08:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2016-04-08 02:17:37 +08:00
										 |  |  |         else if (strcmp(*argv, "-ct") == 0) { | 
					
						
							|  |  |  |             ct_validation = 1; | 
					
						
							| 
									
										
										
										
											2016-03-02 21:34:05 +08:00
										 |  |  |         } | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2012-12-30 07:37:56 +08:00
										 |  |  | #ifndef OPENSSL_NO_COMP
 | 
					
						
							| 
									
										
										
										
											2000-11-30 19:57:31 +08:00
										 |  |  |         else if (strcmp(*argv, "-zlib") == 0) { | 
					
						
							|  |  |  |             comp = COMP_ZLIB; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2012-12-30 07:37:56 +08:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2016-03-05 21:47:55 +08:00
										 |  |  |         else if (strcmp(*argv, "-app_verify") == 0) { | 
					
						
							| 
									
										
										
										
											2005-01-18 01:06:58 +08:00
										 |  |  |             app_verify_arg.app_verify = 1; | 
					
						
							| 
									
										
										
										
											2005-08-25 15:29:54 +08:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2013-11-14 07:20:22 +08:00
										 |  |  | #ifndef OPENSSL_NO_NEXTPROTONEG
 | 
					
						
							| 
									
										
										
										
											2016-04-06 22:03:06 +08:00
										 |  |  |           else if (strcmp(*argv, "-npn_client") == 0) { | 
					
						
							| 
									
										
										
										
											2010-09-06 00:35:10 +08:00
										 |  |  |             npn_client = 1; | 
					
						
							|  |  |  |         } else if (strcmp(*argv, "-npn_server") == 0) { | 
					
						
							|  |  |  |             npn_server = 1; | 
					
						
							|  |  |  |         } else if (strcmp(*argv, "-npn_server_reject") == 0) { | 
					
						
							|  |  |  |             npn_server_reject = 1; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2013-05-13 09:55:27 +08:00
										 |  |  |         else if (strcmp(*argv, "-serverinfo_sct") == 0) { | 
					
						
							|  |  |  |             serverinfo_sct = 1; | 
					
						
							|  |  |  |         } else if (strcmp(*argv, "-serverinfo_tack") == 0) { | 
					
						
							|  |  |  |             serverinfo_tack = 1; | 
					
						
							|  |  |  |         } else if (strcmp(*argv, "-serverinfo_file") == 0) { | 
					
						
							|  |  |  |             if (--argc < 1) | 
					
						
							|  |  |  |                 goto bad; | 
					
						
							|  |  |  |             serverinfo_file = *(++argv); | 
					
						
							| 
									
										
										
										
											2013-06-14 13:36:45 +08:00
										 |  |  |         } else if (strcmp(*argv, "-custom_ext") == 0) { | 
					
						
							|  |  |  |             custom_ext = 1; | 
					
						
							| 
									
										
										
										
											2013-07-16 03:57:16 +08:00
										 |  |  |         } else if (strcmp(*argv, "-alpn_client") == 0) { | 
					
						
							|  |  |  |             if (--argc < 1) | 
					
						
							|  |  |  |                 goto bad; | 
					
						
							|  |  |  |             alpn_client = *(++argv); | 
					
						
							| 
									
										
										
										
											2016-03-05 21:47:55 +08:00
										 |  |  |         } else if (strcmp(*argv, "-alpn_server") == 0 || | 
					
						
							|  |  |  |                    strcmp(*argv, "-alpn_server1") == 0) { | 
					
						
							| 
									
										
										
										
											2013-07-16 03:57:16 +08:00
										 |  |  |             if (--argc < 1) | 
					
						
							|  |  |  |                 goto bad; | 
					
						
							|  |  |  |             alpn_server = *(++argv); | 
					
						
							| 
									
										
										
										
											2016-03-05 21:47:55 +08:00
										 |  |  |         } else if (strcmp(*argv, "-alpn_server2") == 0) { | 
					
						
							|  |  |  |             if (--argc < 1) | 
					
						
							|  |  |  |                 goto bad; | 
					
						
							|  |  |  |             alpn_server2 = *(++argv); | 
					
						
							| 
									
										
										
										
											2013-07-16 03:57:16 +08:00
										 |  |  |         } else if (strcmp(*argv, "-alpn_expected") == 0) { | 
					
						
							|  |  |  |             if (--argc < 1) | 
					
						
							|  |  |  |                 goto bad; | 
					
						
							|  |  |  |             alpn_expected = *(++argv); | 
					
						
							| 
									
										
										
										
											2015-12-07 00:56:41 +08:00
										 |  |  |         } else if (strcmp(*argv, "-server_min_proto") == 0) { | 
					
						
							|  |  |  |             if (--argc < 1) | 
					
						
							|  |  |  |                 goto bad; | 
					
						
							|  |  |  |             server_min_proto = *(++argv); | 
					
						
							|  |  |  |         } else if (strcmp(*argv, "-server_max_proto") == 0) { | 
					
						
							|  |  |  |             if (--argc < 1) | 
					
						
							|  |  |  |                 goto bad; | 
					
						
							|  |  |  |             server_max_proto = *(++argv); | 
					
						
							|  |  |  |         } else if (strcmp(*argv, "-client_min_proto") == 0) { | 
					
						
							|  |  |  |             if (--argc < 1) | 
					
						
							|  |  |  |                 goto bad; | 
					
						
							|  |  |  |             client_min_proto = *(++argv); | 
					
						
							|  |  |  |         } else if (strcmp(*argv, "-client_max_proto") == 0) { | 
					
						
							|  |  |  |             if (--argc < 1) | 
					
						
							|  |  |  |                 goto bad; | 
					
						
							|  |  |  |             client_max_proto = *(++argv); | 
					
						
							|  |  |  |         } else if (strcmp(*argv, "-should_negotiate") == 0) { | 
					
						
							|  |  |  |             if (--argc < 1) | 
					
						
							|  |  |  |                 goto bad; | 
					
						
							|  |  |  |             should_negotiate = *(++argv); | 
					
						
							| 
									
										
										
										
											2016-03-05 21:47:55 +08:00
										 |  |  |         } else if (strcmp(*argv, "-sn_client") == 0) { | 
					
						
							|  |  |  |             if (--argc < 1) | 
					
						
							|  |  |  |                 goto bad; | 
					
						
							|  |  |  |             sn_client = *(++argv); | 
					
						
							|  |  |  |         } else if (strcmp(*argv, "-sn_server1") == 0) { | 
					
						
							|  |  |  |             if (--argc < 1) | 
					
						
							|  |  |  |                 goto bad; | 
					
						
							|  |  |  |             sn_server1 = *(++argv); | 
					
						
							|  |  |  |         } else if (strcmp(*argv, "-sn_server2") == 0) { | 
					
						
							|  |  |  |             if (--argc < 1) | 
					
						
							|  |  |  |                 goto bad; | 
					
						
							|  |  |  |             sn_server2 = *(++argv); | 
					
						
							|  |  |  |         } else if (strcmp(*argv, "-sn_expect1") == 0) { | 
					
						
							|  |  |  |             sn_expect = 1; | 
					
						
							|  |  |  |         } else if (strcmp(*argv, "-sn_expect2") == 0) { | 
					
						
							|  |  |  |             sn_expect = 2; | 
					
						
							| 
									
										
										
										
											2016-03-28 02:53:01 +08:00
										 |  |  |         } else if (strcmp(*argv, "-server_sess_out") == 0) { | 
					
						
							|  |  |  |             if (--argc < 1) | 
					
						
							|  |  |  |                 goto bad; | 
					
						
							|  |  |  |             server_sess_out = *(++argv); | 
					
						
							|  |  |  |         } else if (strcmp(*argv, "-server_sess_in") == 0) { | 
					
						
							|  |  |  |             if (--argc < 1) | 
					
						
							|  |  |  |                 goto bad; | 
					
						
							|  |  |  |             server_sess_in = *(++argv); | 
					
						
							|  |  |  |         } else if (strcmp(*argv, "-client_sess_out") == 0) { | 
					
						
							|  |  |  |             if (--argc < 1) | 
					
						
							|  |  |  |                 goto bad; | 
					
						
							|  |  |  |             client_sess_out = *(++argv); | 
					
						
							|  |  |  |         } else if (strcmp(*argv, "-client_sess_in") == 0) { | 
					
						
							|  |  |  |             if (--argc < 1) | 
					
						
							|  |  |  |                 goto bad; | 
					
						
							|  |  |  |             client_sess_in = *(++argv); | 
					
						
							|  |  |  |         } else if (strcmp(*argv, "-should_reuse") == 0) { | 
					
						
							|  |  |  |             if (--argc < 1) | 
					
						
							|  |  |  |                 goto bad; | 
					
						
							|  |  |  |             should_reuse = !!atoi(*(++argv)); | 
					
						
							|  |  |  |         } else if (strcmp(*argv, "-no_ticket") == 0) { | 
					
						
							|  |  |  |             no_ticket = 1; | 
					
						
							| 
									
										
										
										
											2022-01-14 17:01:29 +08:00
										 |  |  |         } else if (strcmp(*argv, "-client_ktls") == 0) { | 
					
						
							|  |  |  |             client_ktls = 1; | 
					
						
							|  |  |  |         } else if (strcmp(*argv, "-server_ktls") == 0) { | 
					
						
							|  |  |  |             server_ktls = 1; | 
					
						
							| 
									
										
										
										
											2020-04-10 21:31:19 +08:00
										 |  |  |         } else if (strcmp(*argv, "-provider") == 0) { | 
					
						
							|  |  |  |             if (--argc < 1) | 
					
						
							|  |  |  |                 goto bad; | 
					
						
							|  |  |  |             provider = *(++argv); | 
					
						
							| 
									
										
										
										
											2020-04-13 21:32:51 +08:00
										 |  |  |         } else if (strcmp(*argv, "-config") == 0) { | 
					
						
							|  |  |  |             if (--argc < 1) | 
					
						
							|  |  |  |                 goto bad; | 
					
						
							|  |  |  |             config = *(++argv); | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |         } else { | 
					
						
							| 
									
										
										
										
											2014-10-27 22:07:12 +08:00
										 |  |  |             int rv; | 
					
						
							|  |  |  |             arg = argv[0]; | 
					
						
							|  |  |  |             argn = argv[1]; | 
					
						
							|  |  |  |             /* Try to process command using SSL_CONF */ | 
					
						
							|  |  |  |             rv = SSL_CONF_cmd_argv(c_cctx, &argc, &argv); | 
					
						
							|  |  |  |             /* If not processed try server */ | 
					
						
							|  |  |  |             if (rv == 0) | 
					
						
							|  |  |  |                 rv = SSL_CONF_cmd_argv(s_cctx, &argc, &argv); | 
					
						
							|  |  |  |             /* Recognised: store it for later use */ | 
					
						
							|  |  |  |             if (rv > 0) { | 
					
						
							|  |  |  |                 if (rv == 1) | 
					
						
							|  |  |  |                     argn = NULL; | 
					
						
							|  |  |  |                 if (!conf_args) { | 
					
						
							|  |  |  |                     conf_args = sk_OPENSSL_STRING_new_null(); | 
					
						
							|  |  |  |                     if (!conf_args) | 
					
						
							|  |  |  |                         goto end; | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |                 if (!sk_OPENSSL_STRING_push(conf_args, arg)) | 
					
						
							|  |  |  |                     goto end; | 
					
						
							|  |  |  |                 if (!sk_OPENSSL_STRING_push(conf_args, argn)) | 
					
						
							|  |  |  |                     goto end; | 
					
						
							|  |  |  |                 continue; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             if (rv == -3) | 
					
						
							|  |  |  |                 BIO_printf(bio_err, "Missing argument for %s\n", arg); | 
					
						
							|  |  |  |             else if (rv < 0) | 
					
						
							|  |  |  |                 BIO_printf(bio_err, "Error with command %s\n", arg); | 
					
						
							|  |  |  |             else if (rv == 0) | 
					
						
							|  |  |  |                 BIO_printf(bio_err, "unknown option %s\n", arg); | 
					
						
							|  |  |  |             badop = 1; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |             break; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         argc--; | 
					
						
							|  |  |  |         argv++; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (badop) { | 
					
						
							|  |  |  |  bad: | 
					
						
							|  |  |  |         sv_usage(); | 
					
						
							|  |  |  |         goto end; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-02-24 05:05:22 +08:00
										 |  |  |     if (ssl3 + tls1 + tls1_1 + tls1_2 + dtls + dtls1 + dtls12 > 1) { | 
					
						
							|  |  |  |         fprintf(stderr, "At most one of -ssl3, -tls1, -tls1_1, -tls1_2, -dtls, -dtls1 or -dtls12 should " | 
					
						
							| 
									
										
										
										
											2014-10-27 23:25:17 +08:00
										 |  |  |                 "be requested.\n"); | 
					
						
							| 
									
										
										
										
											2024-01-03 17:43:16 +08:00
										 |  |  |         goto end; | 
					
						
							| 
									
										
										
										
											2014-10-27 23:25:17 +08:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-19 02:10:21 +08:00
										 |  |  | #ifdef OPENSSL_NO_SSL3
 | 
					
						
							|  |  |  |     if (ssl3) | 
					
						
							|  |  |  |         no_protocol = 1; | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | #ifdef OPENSSL_NO_TLS1
 | 
					
						
							|  |  |  |     if (tls1) | 
					
						
							|  |  |  |         no_protocol = 1; | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2022-02-24 05:05:22 +08:00
										 |  |  | #ifdef OPENSSL_NO_TLS1_1
 | 
					
						
							|  |  |  |     if (tls1_1) | 
					
						
							|  |  |  |         no_protocol = 1; | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2016-10-22 00:39:33 +08:00
										 |  |  | #ifdef OPENSSL_NO_TLS1_2
 | 
					
						
							|  |  |  |     if (tls1_2) | 
					
						
							|  |  |  |         no_protocol = 1; | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2016-01-19 02:10:21 +08:00
										 |  |  | #if defined(OPENSSL_NO_DTLS) || defined(OPENSSL_NO_DTLS1)
 | 
					
						
							|  |  |  |     if (dtls1) | 
					
						
							|  |  |  |         no_protocol = 1; | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | #if defined(OPENSSL_NO_DTLS) || defined(OPENSSL_NO_DTLS1_2)
 | 
					
						
							|  |  |  |     if (dtls12) | 
					
						
							|  |  |  |         no_protocol = 1; | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  |         no_protocol = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-27 23:25:17 +08:00
										 |  |  |     /*
 | 
					
						
							| 
									
										
										
										
											2014-11-30 22:35:22 +08:00
										 |  |  |      * Testing was requested for a compiled-out protocol (e.g. SSLv3). | 
					
						
							| 
									
										
										
										
											2014-10-27 23:25:17 +08:00
										 |  |  |      * Ideally, we would error out, but the generic test wrapper can't know | 
					
						
							|  |  |  |      * when to expect failure. So we do nothing and return success. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     if (no_protocol) { | 
					
						
							|  |  |  |         fprintf(stderr, "Testing was requested for a disabled protocol. " | 
					
						
							|  |  |  |                 "Skipping tests.\n"); | 
					
						
							| 
									
										
										
										
											2017-07-13 05:37:01 +08:00
										 |  |  |         ret = EXIT_SUCCESS; | 
					
						
							| 
									
										
										
										
											2014-10-27 23:25:17 +08:00
										 |  |  |         goto end; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-02-24 05:05:22 +08:00
										 |  |  |     if (!ssl3 && !tls1 && !tls1_1 && !tls1_2 && !dtls && !dtls1 && !dtls12 && number > 1 | 
					
						
							| 
									
										
										
										
											2016-10-22 00:39:33 +08:00
										 |  |  |             && !reuse && !force) { | 
					
						
							| 
									
										
										
										
											2000-03-13 23:06:54 +08:00
										 |  |  |         fprintf(stderr, "This case cannot work.  Use -f to perform " | 
					
						
							|  |  |  |                 "the test anyway (and\n-d to see what happens), " | 
					
						
							| 
									
										
										
										
											2022-02-24 05:05:22 +08:00
										 |  |  |                 "or add one of -ssl3, -tls1, -tls1_1, -tls1_2, -dtls, -dtls1, -dtls12, -reuse\n" | 
					
						
							| 
									
										
										
										
											2000-03-13 23:06:54 +08:00
										 |  |  |                 "to avoid protocol mismatch.\n"); | 
					
						
							| 
									
										
										
										
											2024-01-03 17:43:16 +08:00
										 |  |  |         goto end; | 
					
						
							| 
									
										
										
										
											1999-06-12 09:03:40 +08:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-13 23:06:54 +08:00
										 |  |  |     if (print_time) { | 
					
						
							| 
									
										
											  
											
												Fix KTLS with BIO_new_connect
When a socket connection is done using BIO_new_connect,
the ktls_enable is done too early, and fails with ENOTCONN.
Therefore the KLTS ioctl will fail later with ENOPROTOOPT.
Fix that by doing the ktls_enable after the connection
succeeded, not when the socket is created as that will
always fail.
One example where this happens is doit_localhost in
test/ssl_old_test.c, and therefore, contrary to the expectation
the -client_ktls option did never enable the client KTLS
connection, but this was not noticed, because there was no
diagnostic output, and it was only visible with strace output.
Also enhanced the ssl_old_test -client_ktls/-server_ktls
options together with -v option to print a summary line
if and how KTLS was negotiated in server and client.
While I am already there adjusted the usage info of
the -s_cert, -s_key commands, and allow -time to print the
timings of ktls connections.
Reviewed-by: Matt Caswell <matt@openssl.org>
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/18318)
											
										 
											2022-05-16 13:06:42 +08:00
										 |  |  |         if (bio_type == BIO_MEM) { | 
					
						
							| 
									
										
										
										
											2000-03-13 23:06:54 +08:00
										 |  |  |             fprintf(stderr, "Using BIO pair (-bio_pair)\n"); | 
					
						
							| 
									
										
										
										
											2016-02-03 06:50:52 +08:00
										 |  |  |             bio_type = BIO_PAIR; | 
					
						
							| 
									
										
										
										
											2000-03-13 23:06:54 +08:00
										 |  |  |         } | 
					
						
							|  |  |  |         if (number < 50 && !force) | 
					
						
							|  |  |  |             fprintf(stderr, | 
					
						
							|  |  |  |                     "Warning: For accurate timings, use more connections (e.g. -num 1000)\n"); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-10-01 07:35:33 +08:00
										 |  |  | #ifndef OPENSSL_NO_COMP
 | 
					
						
							| 
									
										
										
										
											2000-11-30 20:22:35 +08:00
										 |  |  |     if (comp == COMP_ZLIB) | 
					
						
							|  |  |  |         cm = COMP_zlib(); | 
					
						
							|  |  |  |     if (cm != NULL) { | 
					
						
							| 
									
										
										
										
											2022-08-30 02:58:57 +08:00
										 |  |  |         if (SSL_COMP_add_compression_method(comp, cm) != 0) { | 
					
						
							|  |  |  |             fprintf(stderr, "Failed to add compression method\n"); | 
					
						
							| 
									
										
										
										
											2000-11-30 20:53:15 +08:00
										 |  |  |             ERR_print_errors_fp(stderr); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2022-08-30 02:58:57 +08:00
										 |  |  |     } else { | 
					
						
							|  |  |  |         fprintf(stderr, | 
					
						
							|  |  |  |                 "Warning: %s compression not supported\n", | 
					
						
							|  |  |  |                 comp == COMP_ZLIB ? "zlib" : "unknown"); | 
					
						
							|  |  |  |         ERR_print_errors_fp(stderr); | 
					
						
							| 
									
										
										
										
											2000-11-30 20:53:15 +08:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2003-10-06 19:00:15 +08:00
										 |  |  |     ssl_comp_methods = SSL_COMP_get_compression_methods(); | 
					
						
							| 
									
										
										
										
											2015-04-22 03:52:51 +08:00
										 |  |  |     n = sk_SSL_COMP_num(ssl_comp_methods); | 
					
						
							|  |  |  |     if (n) { | 
					
						
							|  |  |  |         int j; | 
					
						
							|  |  |  |         printf("Available compression methods:"); | 
					
						
							|  |  |  |         for (j = 0; j < n; j++) { | 
					
						
							| 
									
										
										
										
											2024-05-16 12:33:55 +08:00
										 |  |  |             const SSL_COMP *c = sk_SSL_COMP_value(ssl_comp_methods, j); | 
					
						
							| 
									
										
										
										
											2016-11-16 00:31:26 +08:00
										 |  |  |             printf("  %s:%d", SSL_COMP_get0_name(c), SSL_COMP_get_id(c)); | 
					
						
							| 
									
										
										
										
											2015-04-03 03:58:10 +08:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2015-04-22 03:52:51 +08:00
										 |  |  |         printf("\n"); | 
					
						
							| 
									
										
										
										
											2003-10-06 19:00:15 +08:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2005-10-02 20:28:40 +08:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-03 06:58:49 +08:00
										 |  |  | #ifndef OPENSSL_NO_TLS
 | 
					
						
							|  |  |  |     meth = TLS_method(); | 
					
						
							|  |  |  |     if (ssl3) { | 
					
						
							|  |  |  |         min_version = SSL3_VERSION; | 
					
						
							|  |  |  |         max_version = SSL3_VERSION; | 
					
						
							|  |  |  |     } else if (tls1) { | 
					
						
							|  |  |  |         min_version = TLS1_VERSION; | 
					
						
							|  |  |  |         max_version = TLS1_VERSION; | 
					
						
							| 
									
										
										
										
											2022-02-24 05:05:22 +08:00
										 |  |  |     } else if (tls1_1) { | 
					
						
							|  |  |  |         min_version = TLS1_1_VERSION; | 
					
						
							|  |  |  |         max_version = TLS1_1_VERSION; | 
					
						
							| 
									
										
										
										
											2016-10-22 00:39:33 +08:00
										 |  |  |     } else if (tls1_2) { | 
					
						
							|  |  |  |         min_version = TLS1_2_VERSION; | 
					
						
							|  |  |  |         max_version = TLS1_2_VERSION; | 
					
						
							| 
									
										
										
										
											2018-03-19 16:08:06 +08:00
										 |  |  |     } else { | 
					
						
							| 
									
										
										
										
											2018-12-10 03:53:05 +08:00
										 |  |  |         min_version = 0; | 
					
						
							| 
									
										
										
										
											2021-01-14 23:50:20 +08:00
										 |  |  | # if defined(OPENSSL_NO_EC) && defined(OPENSSL_NO_DH)
 | 
					
						
							|  |  |  |         /* We only have ec and dh based built-in groups for TLSv1.3 */ | 
					
						
							|  |  |  |         max_version = TLS1_2_VERSION; | 
					
						
							|  |  |  | # else
 | 
					
						
							| 
									
										
										
										
											2018-12-10 03:53:05 +08:00
										 |  |  |         max_version = 0; | 
					
						
							| 
									
										
										
										
											2021-01-14 23:50:20 +08:00
										 |  |  | # endif
 | 
					
						
							| 
									
										
										
										
											2016-02-03 06:58:49 +08:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2016-01-19 02:10:21 +08:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2016-02-03 06:58:49 +08:00
										 |  |  | #ifndef OPENSSL_NO_DTLS
 | 
					
						
							| 
									
										
										
										
											2018-03-19 16:08:06 +08:00
										 |  |  |     if (dtls || dtls1 || dtls12) { | 
					
						
							| 
									
										
										
										
											2015-12-07 00:56:41 +08:00
										 |  |  |         meth = DTLS_method(); | 
					
						
							| 
									
										
										
										
											2018-03-19 16:08:06 +08:00
										 |  |  |         if (dtls1) { | 
					
						
							|  |  |  |             min_version = DTLS1_VERSION; | 
					
						
							|  |  |  |             max_version = DTLS1_VERSION; | 
					
						
							|  |  |  |         } else if (dtls12) { | 
					
						
							|  |  |  |             min_version = DTLS1_2_VERSION; | 
					
						
							|  |  |  |             max_version = DTLS1_2_VERSION; | 
					
						
							|  |  |  |         } else { | 
					
						
							| 
									
										
										
										
											2018-12-10 03:53:05 +08:00
										 |  |  |             min_version = 0; | 
					
						
							|  |  |  |             max_version = 0; | 
					
						
							| 
									
										
										
										
											2018-03-19 16:08:06 +08:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2016-02-03 06:58:49 +08:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2016-01-19 02:10:21 +08:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-09-26 21:21:48 +08:00
										 |  |  |     if (provider != NULL | 
					
						
							|  |  |  |             && !test_get_libctx(&libctx, &defctxnull, config, &thisprov, provider)) | 
					
						
							|  |  |  |         goto end; | 
					
						
							| 
									
										
										
										
											2020-04-10 21:31:19 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-09-24 17:42:23 +08:00
										 |  |  |     c_ctx = SSL_CTX_new_ex(libctx, NULL, meth); | 
					
						
							|  |  |  |     s_ctx = SSL_CTX_new_ex(libctx, NULL, meth); | 
					
						
							|  |  |  |     s_ctx2 = SSL_CTX_new_ex(libctx, NULL, meth); /* no SSL_CTX_dup! */ | 
					
						
							| 
									
										
										
										
											2016-03-05 21:47:55 +08:00
										 |  |  |     if ((c_ctx == NULL) || (s_ctx == NULL) || (s_ctx2 == NULL)) { | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |         ERR_print_errors(bio_err); | 
					
						
							|  |  |  |         goto end; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2014-02-16 20:50:18 +08:00
										 |  |  |     /*
 | 
					
						
							|  |  |  |      * Since we will use low security ciphersuites and keys for testing set | 
					
						
							| 
									
										
										
										
											2015-05-26 20:32:57 +08:00
										 |  |  |      * security level to zero by default. Tests can override this by adding | 
					
						
							|  |  |  |      * "@SECLEVEL=n" to the cipher string. | 
					
						
							| 
									
										
										
										
											2014-02-16 20:50:18 +08:00
										 |  |  |      */ | 
					
						
							|  |  |  |     SSL_CTX_set_security_level(c_ctx, 0); | 
					
						
							|  |  |  |     SSL_CTX_set_security_level(s_ctx, 0); | 
					
						
							| 
									
										
										
										
											2016-03-05 21:47:55 +08:00
										 |  |  |     SSL_CTX_set_security_level(s_ctx2, 0); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-28 02:53:01 +08:00
										 |  |  |     if (no_ticket) { | 
					
						
							|  |  |  |         SSL_CTX_set_options(c_ctx, SSL_OP_NO_TICKET); | 
					
						
							|  |  |  |         SSL_CTX_set_options(s_ctx, SSL_OP_NO_TICKET); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-03 06:58:49 +08:00
										 |  |  |     if (SSL_CTX_set_min_proto_version(c_ctx, min_version) == 0) | 
					
						
							|  |  |  |         goto end; | 
					
						
							|  |  |  |     if (SSL_CTX_set_max_proto_version(c_ctx, max_version) == 0) | 
					
						
							|  |  |  |         goto end; | 
					
						
							|  |  |  |     if (SSL_CTX_set_min_proto_version(s_ctx, min_version) == 0) | 
					
						
							|  |  |  |         goto end; | 
					
						
							|  |  |  |     if (SSL_CTX_set_max_proto_version(s_ctx, max_version) == 0) | 
					
						
							|  |  |  |         goto end; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |     if (cipher != NULL) { | 
					
						
							| 
									
										
										
										
											2018-11-27 05:58:52 +08:00
										 |  |  |         if (strcmp(cipher, "") == 0) { | 
					
						
							|  |  |  |             if (!SSL_CTX_set_cipher_list(c_ctx, cipher)) { | 
					
						
							|  |  |  |                 if (ERR_GET_REASON(ERR_peek_error()) == SSL_R_NO_CIPHER_MATCH) { | 
					
						
							|  |  |  |                     ERR_clear_error(); | 
					
						
							|  |  |  |                 } else { | 
					
						
							|  |  |  |                     ERR_print_errors(bio_err); | 
					
						
							|  |  |  |                     goto end; | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |             } else { | 
					
						
							|  |  |  |                 /* Should have failed when clearing all TLSv1.2 ciphers. */ | 
					
						
							|  |  |  |                 fprintf(stderr, "CLEARING ALL TLSv1.2 CIPHERS SHOULD FAIL\n"); | 
					
						
							|  |  |  |                 goto end; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             if (!SSL_CTX_set_cipher_list(s_ctx, cipher)) { | 
					
						
							|  |  |  |                 if (ERR_GET_REASON(ERR_peek_error()) == SSL_R_NO_CIPHER_MATCH) { | 
					
						
							|  |  |  |                     ERR_clear_error(); | 
					
						
							|  |  |  |                 } else { | 
					
						
							|  |  |  |                     ERR_print_errors(bio_err); | 
					
						
							|  |  |  |                     goto end; | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |             } else { | 
					
						
							|  |  |  |                 /* Should have failed when clearing all TLSv1.2 ciphers. */ | 
					
						
							|  |  |  |                 fprintf(stderr, "CLEARING ALL TLSv1.2 CIPHERS SHOULD FAIL\n"); | 
					
						
							|  |  |  |                 goto end; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             if (!SSL_CTX_set_cipher_list(s_ctx2, cipher)) { | 
					
						
							|  |  |  |                 if (ERR_GET_REASON(ERR_peek_error()) == SSL_R_NO_CIPHER_MATCH) { | 
					
						
							|  |  |  |                     ERR_clear_error(); | 
					
						
							|  |  |  |                 } else { | 
					
						
							|  |  |  |                     ERR_print_errors(bio_err); | 
					
						
							|  |  |  |                     goto end; | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |             } else { | 
					
						
							|  |  |  |                 /* Should have failed when clearing all TLSv1.2 ciphers. */ | 
					
						
							|  |  |  |                 fprintf(stderr, "CLEARING ALL TLSv1.2 CIPHERS SHOULD FAIL\n"); | 
					
						
							|  |  |  |                 goto end; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } else { | 
					
						
							|  |  |  |             if (!SSL_CTX_set_cipher_list(c_ctx, cipher) | 
					
						
							|  |  |  |                     || !SSL_CTX_set_cipher_list(s_ctx, cipher) | 
					
						
							|  |  |  |                     || !SSL_CTX_set_cipher_list(s_ctx2, cipher)) { | 
					
						
							|  |  |  |                 ERR_print_errors(bio_err); | 
					
						
							|  |  |  |                 goto end; | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2018-02-16 19:26:02 +08:00
										 |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (ciphersuites != NULL) { | 
					
						
							|  |  |  |         if (!SSL_CTX_set_ciphersuites(c_ctx, ciphersuites) | 
					
						
							|  |  |  |             || !SSL_CTX_set_ciphersuites(s_ctx, ciphersuites) | 
					
						
							|  |  |  |             || !SSL_CTX_set_ciphersuites(s_ctx2, ciphersuites)) { | 
					
						
							|  |  |  |             ERR_print_errors(bio_err); | 
					
						
							| 
									
										
										
										
											2015-03-06 22:37:17 +08:00
										 |  |  |             goto end; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-02 21:34:05 +08:00
										 |  |  | #ifndef OPENSSL_NO_CT
 | 
					
						
							| 
									
										
										
										
											2016-04-08 02:17:37 +08:00
										 |  |  |     if (ct_validation && | 
					
						
							|  |  |  |         !SSL_CTX_enable_ct(c_ctx, SSL_CT_VALIDATION_STRICT)) { | 
					
						
							| 
									
										
										
										
											2016-03-02 21:34:05 +08:00
										 |  |  |         ERR_print_errors(bio_err); | 
					
						
							|  |  |  |         goto end; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-27 22:07:12 +08:00
										 |  |  |     /* Process SSL_CONF arguments */ | 
					
						
							|  |  |  |     SSL_CONF_CTX_set_ssl_ctx(c_cctx, c_ctx); | 
					
						
							|  |  |  |     SSL_CONF_CTX_set_ssl_ctx(s_cctx, s_ctx); | 
					
						
							| 
									
										
										
										
											2016-03-05 21:47:55 +08:00
										 |  |  |     SSL_CONF_CTX_set_ssl_ctx(s_cctx2, s_ctx2); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-27 22:07:12 +08:00
										 |  |  |     for (i = 0; i < sk_OPENSSL_STRING_num(conf_args); i += 2) { | 
					
						
							|  |  |  |         int rv; | 
					
						
							|  |  |  |         arg = sk_OPENSSL_STRING_value(conf_args, i); | 
					
						
							|  |  |  |         argn = sk_OPENSSL_STRING_value(conf_args, i + 1); | 
					
						
							|  |  |  |         rv = SSL_CONF_cmd(c_cctx, arg, argn); | 
					
						
							|  |  |  |         /* If not recognised use server context */ | 
					
						
							| 
									
										
										
										
											2016-03-05 21:47:55 +08:00
										 |  |  |         if (rv == -2) { | 
					
						
							| 
									
										
										
										
											2016-03-09 05:13:05 +08:00
										 |  |  |             rv = SSL_CONF_cmd(s_cctx2, arg, argn); | 
					
						
							|  |  |  |             if (rv > 0) | 
					
						
							|  |  |  |                 rv = SSL_CONF_cmd(s_cctx, arg, argn); | 
					
						
							| 
									
										
										
										
											2016-03-05 21:47:55 +08:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2014-10-27 22:07:12 +08:00
										 |  |  |         if (rv <= 0) { | 
					
						
							|  |  |  |             BIO_printf(bio_err, "Error processing %s %s\n", | 
					
						
							|  |  |  |                        arg, argn ? argn : ""); | 
					
						
							|  |  |  |             ERR_print_errors(bio_err); | 
					
						
							|  |  |  |             goto end; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-05 21:47:55 +08:00
										 |  |  |     if (!SSL_CONF_CTX_finish(s_cctx) || !SSL_CONF_CTX_finish(c_cctx) || !SSL_CONF_CTX_finish(s_cctx2)) { | 
					
						
							| 
									
										
										
										
											2014-10-27 22:07:12 +08:00
										 |  |  |         BIO_puts(bio_err, "Error finishing context\n"); | 
					
						
							|  |  |  |         ERR_print_errors(bio_err); | 
					
						
							|  |  |  |         goto end; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2020-11-28 05:03:29 +08:00
										 |  |  | #ifndef OPENSSL_NO_DH
 | 
					
						
							| 
									
										
										
										
											1999-09-04 00:31:36 +08:00
										 |  |  |     if (!no_dhe) { | 
					
						
							| 
									
										
										
										
											2020-11-11 01:04:02 +08:00
										 |  |  |         if (dhe1024dsa) | 
					
						
							| 
									
										
										
										
											2020-11-03 00:59:15 +08:00
										 |  |  |             dhpkey = get_dh1024dsa(libctx); | 
					
						
							| 
									
										
										
										
											2020-11-11 01:04:02 +08:00
										 |  |  |         else if (dhe512) | 
					
						
							| 
									
										
										
										
											2020-11-03 00:59:15 +08:00
										 |  |  |             dhpkey = get_dh512(libctx); | 
					
						
							| 
									
										
										
										
											2022-02-24 05:05:22 +08:00
										 |  |  |         else if (dhe4096) | 
					
						
							|  |  |  |             dhpkey = get_dh4096(libctx); | 
					
						
							| 
									
										
										
										
											2015-05-23 00:35:50 +08:00
										 |  |  |         else | 
					
						
							| 
									
										
										
										
											2020-11-11 01:04:02 +08:00
										 |  |  |             dhpkey = get_dh2048(libctx); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-03 00:59:15 +08:00
										 |  |  |         if (dhpkey == NULL || !EVP_PKEY_up_ref(dhpkey)) { | 
					
						
							|  |  |  |             EVP_PKEY_free(dhpkey); | 
					
						
							|  |  |  |             BIO_puts(bio_err, "Error getting DH parameters\n"); | 
					
						
							|  |  |  |             ERR_print_errors(bio_err); | 
					
						
							|  |  |  |             goto end; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2023-09-11 18:26:46 +08:00
										 |  |  |         if (!SSL_CTX_set0_tmp_dh_pkey(s_ctx, dhpkey)) | 
					
						
							|  |  |  |             EVP_PKEY_free(dhpkey); | 
					
						
							|  |  |  |         if (!SSL_CTX_set0_tmp_dh_pkey(s_ctx2, dhpkey)) | 
					
						
							|  |  |  |             EVP_PKEY_free(dhpkey); | 
					
						
							| 
									
										
										
										
											1999-09-04 00:31:36 +08:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2020-11-28 05:03:29 +08:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-03-08 08:09:44 +08:00
										 |  |  |     if (!(SSL_CTX_load_verify_file(s_ctx, CAfile) | 
					
						
							|  |  |  |           || SSL_CTX_load_verify_dir(s_ctx, CApath)) | 
					
						
							|  |  |  |         || !SSL_CTX_set_default_verify_paths(s_ctx) | 
					
						
							|  |  |  |         || !(SSL_CTX_load_verify_file(s_ctx2, CAfile) | 
					
						
							|  |  |  |              || SSL_CTX_load_verify_dir(s_ctx2, CApath)) | 
					
						
							|  |  |  |         || !SSL_CTX_set_default_verify_paths(s_ctx2) | 
					
						
							|  |  |  |         || !(SSL_CTX_load_verify_file(c_ctx, CAfile) | 
					
						
							|  |  |  |              || SSL_CTX_load_verify_dir(c_ctx, CApath)) | 
					
						
							|  |  |  |         || !SSL_CTX_set_default_verify_paths(c_ctx)) { | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |         ERR_print_errors(bio_err); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-11 07:10:02 +08:00
										 |  |  | #ifndef OPENSSL_NO_CT
 | 
					
						
							| 
									
										
										
										
											2016-03-02 21:34:05 +08:00
										 |  |  |     if (!SSL_CTX_set_default_ctlog_list_file(s_ctx) || | 
					
						
							| 
									
										
										
										
											2016-03-05 21:47:55 +08:00
										 |  |  |         !SSL_CTX_set_default_ctlog_list_file(s_ctx2) || | 
					
						
							| 
									
										
										
										
											2016-03-02 21:34:05 +08:00
										 |  |  |         !SSL_CTX_set_default_ctlog_list_file(c_ctx)) { | 
					
						
							|  |  |  |         ERR_print_errors(bio_err); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2016-03-11 07:10:02 +08:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2016-03-02 21:34:05 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |     if (client_auth) { | 
					
						
							| 
									
										
										
										
											2015-04-22 03:52:51 +08:00
										 |  |  |         printf("client authentication\n"); | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |         SSL_CTX_set_verify(s_ctx, | 
					
						
							|  |  |  |                            SSL_VERIFY_PEER | SSL_VERIFY_FAIL_IF_NO_PEER_CERT, | 
					
						
							|  |  |  |                            verify_callback); | 
					
						
							| 
									
										
										
										
											2016-03-05 21:47:55 +08:00
										 |  |  |         SSL_CTX_set_verify(s_ctx2, | 
					
						
							|  |  |  |                            SSL_VERIFY_PEER | SSL_VERIFY_FAIL_IF_NO_PEER_CERT, | 
					
						
							|  |  |  |                            verify_callback); | 
					
						
							| 
									
										
										
										
											2005-01-18 01:06:58 +08:00
										 |  |  |         SSL_CTX_set_cert_verify_callback(s_ctx, app_verify_callback, | 
					
						
							|  |  |  |                                          &app_verify_arg); | 
					
						
							| 
									
										
										
										
											2016-03-05 21:47:55 +08:00
										 |  |  |         SSL_CTX_set_cert_verify_callback(s_ctx2, app_verify_callback, | 
					
						
							|  |  |  |                                          &app_verify_arg); | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |     } | 
					
						
							|  |  |  |     if (server_auth) { | 
					
						
							| 
									
										
										
										
											2015-04-22 03:52:51 +08:00
										 |  |  |         printf("server authentication\n"); | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |         SSL_CTX_set_verify(c_ctx, SSL_VERIFY_PEER, verify_callback); | 
					
						
							| 
									
										
										
										
											2005-01-18 01:06:58 +08:00
										 |  |  |         SSL_CTX_set_cert_verify_callback(c_ctx, app_verify_callback, | 
					
						
							|  |  |  |                                          &app_verify_arg); | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-11-17 07:15:41 +08:00
										 |  |  |     { | 
					
						
							|  |  |  |         int session_id_context = 0; | 
					
						
							| 
									
										
										
										
											2015-04-16 13:50:03 +08:00
										 |  |  |         if (!SSL_CTX_set_session_id_context(s_ctx, (void *)&session_id_context, | 
					
						
							| 
									
										
										
										
											2017-12-08 02:39:34 +08:00
										 |  |  |                                             sizeof(session_id_context)) || | 
					
						
							| 
									
										
										
										
											2016-03-05 21:47:55 +08:00
										 |  |  |             !SSL_CTX_set_session_id_context(s_ctx2, (void *)&session_id_context, | 
					
						
							| 
									
										
										
										
											2017-12-08 02:39:34 +08:00
										 |  |  |                                             sizeof(session_id_context))) { | 
					
						
							| 
									
										
										
										
											2015-03-06 22:37:17 +08:00
										 |  |  |             ERR_print_errors(bio_err); | 
					
						
							|  |  |  |             goto end; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											1999-11-17 07:15:41 +08:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-03-11 07:06:27 +08:00
										 |  |  |     /* Use PSK only if PSK key is given */ | 
					
						
							|  |  |  |     if (psk_key != NULL) { | 
					
						
							|  |  |  |         /*
 | 
					
						
							|  |  |  |          * no_psk is used to avoid putting psk command to openssl tool | 
					
						
							|  |  |  |          */ | 
					
						
							|  |  |  |         if (no_psk) { | 
					
						
							|  |  |  |             /*
 | 
					
						
							|  |  |  |              * if PSK is not compiled in and psk key is given, do nothing and | 
					
						
							|  |  |  |              * exit successfully | 
					
						
							|  |  |  |              */ | 
					
						
							| 
									
										
										
										
											2017-07-13 05:37:01 +08:00
										 |  |  |             ret = EXIT_SUCCESS; | 
					
						
							| 
									
										
										
										
											2006-03-11 07:06:27 +08:00
										 |  |  |             goto end; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | #ifndef OPENSSL_NO_PSK
 | 
					
						
							|  |  |  |         SSL_CTX_set_psk_client_callback(c_ctx, psk_client_callback); | 
					
						
							|  |  |  |         SSL_CTX_set_psk_server_callback(s_ctx, psk_server_callback); | 
					
						
							| 
									
										
										
										
											2016-03-05 21:47:55 +08:00
										 |  |  |         SSL_CTX_set_psk_server_callback(s_ctx2, psk_server_callback); | 
					
						
							| 
									
										
										
										
											2006-03-11 07:06:27 +08:00
										 |  |  |         if (debug) | 
					
						
							|  |  |  |             BIO_printf(bio_err, "setting PSK identity hint to s_ctx\n"); | 
					
						
							| 
									
										
										
										
											2016-03-05 21:47:55 +08:00
										 |  |  |         if (!SSL_CTX_use_psk_identity_hint(s_ctx, "ctx server identity_hint") || | 
					
						
							|  |  |  |             !SSL_CTX_use_psk_identity_hint(s_ctx2, "ctx server identity_hint")) { | 
					
						
							| 
									
										
										
										
											2006-03-11 07:06:27 +08:00
										 |  |  |             BIO_printf(bio_err, "error setting PSK identity hint to s_ctx\n"); | 
					
						
							|  |  |  |             ERR_print_errors(bio_err); | 
					
						
							|  |  |  |             goto end; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-14 07:20:22 +08:00
										 |  |  | #ifndef OPENSSL_NO_NEXTPROTONEG
 | 
					
						
							| 
									
										
										
										
											2010-09-06 00:35:10 +08:00
										 |  |  |     if (npn_client) { | 
					
						
							|  |  |  |         SSL_CTX_set_next_proto_select_cb(c_ctx, cb_client_npn, NULL); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (npn_server) { | 
					
						
							|  |  |  |         if (npn_server_reject) { | 
					
						
							|  |  |  |             BIO_printf(bio_err, | 
					
						
							|  |  |  |                        "Can't have both -npn_server and -npn_server_reject\n"); | 
					
						
							|  |  |  |             goto end; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2016-12-09 03:18:40 +08:00
										 |  |  |         SSL_CTX_set_npn_advertised_cb(s_ctx, cb_server_npn, NULL); | 
					
						
							|  |  |  |         SSL_CTX_set_npn_advertised_cb(s_ctx2, cb_server_npn, NULL); | 
					
						
							| 
									
										
										
										
											2010-09-06 00:35:10 +08:00
										 |  |  |     } | 
					
						
							|  |  |  |     if (npn_server_reject) { | 
					
						
							| 
									
										
										
										
											2016-12-09 03:18:40 +08:00
										 |  |  |         SSL_CTX_set_npn_advertised_cb(s_ctx, cb_server_rejects_npn, NULL); | 
					
						
							|  |  |  |         SSL_CTX_set_npn_advertised_cb(s_ctx2, cb_server_rejects_npn, NULL); | 
					
						
							| 
									
										
										
										
											2010-09-06 00:35:10 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-03-06 22:37:17 +08:00
										 |  |  |     if (serverinfo_sct) { | 
					
						
							| 
									
										
										
										
											2016-03-02 21:34:05 +08:00
										 |  |  |         if (!SSL_CTX_add_client_custom_ext(c_ctx, | 
					
						
							|  |  |  |                 TLSEXT_TYPE_signed_certificate_timestamp, | 
					
						
							|  |  |  |                 NULL, NULL, NULL, | 
					
						
							|  |  |  |                 serverinfo_cli_parse_cb, NULL)) { | 
					
						
							| 
									
										
										
										
											2015-03-06 22:37:17 +08:00
										 |  |  |             BIO_printf(bio_err, "Error adding SCT extension\n"); | 
					
						
							|  |  |  |             goto end; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (serverinfo_tack) { | 
					
						
							| 
									
										
										
										
											2015-04-16 13:50:03 +08:00
										 |  |  |         if (!SSL_CTX_add_client_custom_ext(c_ctx, TACK_EXT_TYPE, | 
					
						
							| 
									
										
										
										
											2014-08-19 21:02:50 +08:00
										 |  |  |                                       NULL, NULL, NULL, | 
					
						
							| 
									
										
										
										
											2015-03-06 22:37:17 +08:00
										 |  |  |                                       serverinfo_cli_parse_cb, NULL)) { | 
					
						
							|  |  |  |             BIO_printf(bio_err, "Error adding TACK extension\n"); | 
					
						
							|  |  |  |             goto end; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2013-05-13 09:55:27 +08:00
										 |  |  |     if (serverinfo_file) | 
					
						
							| 
									
										
										
										
											2016-03-05 21:47:55 +08:00
										 |  |  |         if (!SSL_CTX_use_serverinfo_file(s_ctx, serverinfo_file) || | 
					
						
							|  |  |  |             !SSL_CTX_use_serverinfo_file(s_ctx2, serverinfo_file)) { | 
					
						
							| 
									
										
										
										
											2013-05-13 09:55:27 +08:00
										 |  |  |             BIO_printf(bio_err, "missing serverinfo file\n"); | 
					
						
							|  |  |  |             goto end; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-06-14 13:36:45 +08:00
										 |  |  |     if (custom_ext) { | 
					
						
							| 
									
										
										
										
											2015-04-16 13:50:03 +08:00
										 |  |  |         if (!SSL_CTX_add_client_custom_ext(c_ctx, CUSTOM_EXT_TYPE_0, | 
					
						
							| 
									
										
										
										
											2014-08-19 21:02:50 +08:00
										 |  |  |                                       custom_ext_0_cli_add_cb, | 
					
						
							|  |  |  |                                       NULL, NULL, | 
					
						
							| 
									
										
										
										
											2015-03-06 22:37:17 +08:00
										 |  |  |                                       custom_ext_0_cli_parse_cb, NULL) | 
					
						
							| 
									
										
										
										
											2015-04-16 13:50:03 +08:00
										 |  |  |             || !SSL_CTX_add_client_custom_ext(c_ctx, CUSTOM_EXT_TYPE_1, | 
					
						
							| 
									
										
										
										
											2014-08-19 21:02:50 +08:00
										 |  |  |                                       custom_ext_1_cli_add_cb, | 
					
						
							|  |  |  |                                       NULL, NULL, | 
					
						
							| 
									
										
										
										
											2015-03-06 22:37:17 +08:00
										 |  |  |                                       custom_ext_1_cli_parse_cb, NULL) | 
					
						
							| 
									
										
										
										
											2015-04-16 13:50:03 +08:00
										 |  |  |             || !SSL_CTX_add_client_custom_ext(c_ctx, CUSTOM_EXT_TYPE_2, | 
					
						
							| 
									
										
										
										
											2014-08-19 21:02:50 +08:00
										 |  |  |                                       custom_ext_2_cli_add_cb, | 
					
						
							|  |  |  |                                       NULL, NULL, | 
					
						
							| 
									
										
										
										
											2015-03-06 22:37:17 +08:00
										 |  |  |                                       custom_ext_2_cli_parse_cb, NULL) | 
					
						
							| 
									
										
										
										
											2015-04-16 13:50:03 +08:00
										 |  |  |             || !SSL_CTX_add_client_custom_ext(c_ctx, CUSTOM_EXT_TYPE_3, | 
					
						
							| 
									
										
										
										
											2014-08-19 21:02:50 +08:00
										 |  |  |                                       custom_ext_3_cli_add_cb, | 
					
						
							|  |  |  |                                       NULL, NULL, | 
					
						
							| 
									
										
										
										
											2015-03-06 22:37:17 +08:00
										 |  |  |                                       custom_ext_3_cli_parse_cb, NULL) | 
					
						
							| 
									
										
										
										
											2015-04-16 13:50:03 +08:00
										 |  |  |             || !SSL_CTX_add_server_custom_ext(s_ctx, CUSTOM_EXT_TYPE_0, | 
					
						
							| 
									
										
										
										
											2014-08-19 21:02:50 +08:00
										 |  |  |                                       custom_ext_0_srv_add_cb, | 
					
						
							|  |  |  |                                       NULL, NULL, | 
					
						
							| 
									
										
										
										
											2015-03-06 22:37:17 +08:00
										 |  |  |                                       custom_ext_0_srv_parse_cb, NULL) | 
					
						
							| 
									
										
										
										
											2016-03-05 21:47:55 +08:00
										 |  |  |             || !SSL_CTX_add_server_custom_ext(s_ctx2, CUSTOM_EXT_TYPE_0, | 
					
						
							|  |  |  |                                       custom_ext_0_srv_add_cb, | 
					
						
							|  |  |  |                                       NULL, NULL, | 
					
						
							|  |  |  |                                       custom_ext_0_srv_parse_cb, NULL) | 
					
						
							| 
									
										
										
										
											2015-04-16 13:50:03 +08:00
										 |  |  |             || !SSL_CTX_add_server_custom_ext(s_ctx, CUSTOM_EXT_TYPE_1, | 
					
						
							| 
									
										
										
										
											2014-08-19 21:02:50 +08:00
										 |  |  |                                       custom_ext_1_srv_add_cb, | 
					
						
							|  |  |  |                                       NULL, NULL, | 
					
						
							| 
									
										
										
										
											2015-03-06 22:37:17 +08:00
										 |  |  |                                       custom_ext_1_srv_parse_cb, NULL) | 
					
						
							| 
									
										
										
										
											2016-03-05 21:47:55 +08:00
										 |  |  |             || !SSL_CTX_add_server_custom_ext(s_ctx2, CUSTOM_EXT_TYPE_1, | 
					
						
							|  |  |  |                                       custom_ext_1_srv_add_cb, | 
					
						
							|  |  |  |                                       NULL, NULL, | 
					
						
							|  |  |  |                                       custom_ext_1_srv_parse_cb, NULL) | 
					
						
							| 
									
										
										
										
											2015-04-16 13:50:03 +08:00
										 |  |  |             || !SSL_CTX_add_server_custom_ext(s_ctx, CUSTOM_EXT_TYPE_2, | 
					
						
							| 
									
										
										
										
											2014-08-19 21:02:50 +08:00
										 |  |  |                                       custom_ext_2_srv_add_cb, | 
					
						
							|  |  |  |                                       NULL, NULL, | 
					
						
							| 
									
										
										
										
											2015-03-06 22:37:17 +08:00
										 |  |  |                                       custom_ext_2_srv_parse_cb, NULL) | 
					
						
							| 
									
										
										
										
											2016-03-05 21:47:55 +08:00
										 |  |  |             || !SSL_CTX_add_server_custom_ext(s_ctx2, CUSTOM_EXT_TYPE_2, | 
					
						
							|  |  |  |                                       custom_ext_2_srv_add_cb, | 
					
						
							|  |  |  |                                       NULL, NULL, | 
					
						
							|  |  |  |                                       custom_ext_2_srv_parse_cb, NULL) | 
					
						
							| 
									
										
										
										
											2015-04-16 13:50:03 +08:00
										 |  |  |             || !SSL_CTX_add_server_custom_ext(s_ctx, CUSTOM_EXT_TYPE_3, | 
					
						
							| 
									
										
										
										
											2016-03-05 21:47:55 +08:00
										 |  |  |                                       custom_ext_3_srv_add_cb, | 
					
						
							|  |  |  |                                       NULL, NULL, | 
					
						
							|  |  |  |                                       custom_ext_3_srv_parse_cb, NULL) | 
					
						
							|  |  |  |             || !SSL_CTX_add_server_custom_ext(s_ctx2, CUSTOM_EXT_TYPE_3, | 
					
						
							| 
									
										
										
										
											2014-08-19 21:02:50 +08:00
										 |  |  |                                       custom_ext_3_srv_add_cb, | 
					
						
							|  |  |  |                                       NULL, NULL, | 
					
						
							| 
									
										
										
										
											2015-03-06 22:37:17 +08:00
										 |  |  |                                       custom_ext_3_srv_parse_cb, NULL)) { | 
					
						
							|  |  |  |             BIO_printf(bio_err, "Error setting custom extensions\n"); | 
					
						
							|  |  |  |             goto end; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2013-06-14 13:36:45 +08:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-16 03:57:16 +08:00
										 |  |  |     if (alpn_server) | 
					
						
							| 
									
										
										
										
											2016-03-05 21:47:55 +08:00
										 |  |  |         SSL_CTX_set_alpn_select_cb(s_ctx, cb_server_alpn, alpn_server); | 
					
						
							|  |  |  |     if (alpn_server2) | 
					
						
							|  |  |  |         SSL_CTX_set_alpn_select_cb(s_ctx2, cb_server_alpn, alpn_server2); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-16 03:57:16 +08:00
										 |  |  |     if (alpn_client) { | 
					
						
							| 
									
										
										
										
											2016-03-05 21:47:55 +08:00
										 |  |  |         size_t alpn_len; | 
					
						
							| 
									
										
										
										
											2013-07-16 03:57:16 +08:00
										 |  |  |         unsigned char *alpn = next_protos_parse(&alpn_len, alpn_client); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-16 03:57:16 +08:00
										 |  |  |         if (alpn == NULL) { | 
					
						
							|  |  |  |             BIO_printf(bio_err, "Error parsing -alpn_client argument\n"); | 
					
						
							|  |  |  |             goto end; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2015-03-06 22:37:17 +08:00
										 |  |  |         /* Returns 0 on success!! */ | 
					
						
							| 
									
										
										
										
											2025-06-18 17:59:04 +08:00
										 |  |  |         if (SSL_CTX_set_alpn_protos(c_ctx, alpn, (unsigned int)alpn_len)) { | 
					
						
							| 
									
										
										
										
											2015-03-06 22:37:17 +08:00
										 |  |  |             BIO_printf(bio_err, "Error setting ALPN\n"); | 
					
						
							|  |  |  |             OPENSSL_free(alpn); | 
					
						
							|  |  |  |             goto end; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2013-07-16 03:57:16 +08:00
										 |  |  |         OPENSSL_free(alpn); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-28 02:53:01 +08:00
										 |  |  |     if (server_sess_in != NULL) { | 
					
						
							|  |  |  |         server_sess = read_session(server_sess_in); | 
					
						
							|  |  |  |         if (server_sess == NULL) | 
					
						
							|  |  |  |             goto end; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (client_sess_in != NULL) { | 
					
						
							|  |  |  |         client_sess = read_session(client_sess_in); | 
					
						
							|  |  |  |         if (client_sess == NULL) | 
					
						
							|  |  |  |             goto end; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (server_sess_out != NULL || server_sess_in != NULL) { | 
					
						
							|  |  |  |         char *keys; | 
					
						
							|  |  |  |         long size; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         /* Use a fixed key so that we can decrypt the ticket. */ | 
					
						
							|  |  |  |         size = SSL_CTX_set_tlsext_ticket_keys(s_ctx, NULL, 0); | 
					
						
							|  |  |  |         keys = OPENSSL_zalloc(size); | 
					
						
							| 
									
										
										
										
											2022-06-14 15:06:23 +08:00
										 |  |  |         if (keys == NULL) | 
					
						
							|  |  |  |             goto end; | 
					
						
							| 
									
										
										
										
											2016-03-28 02:53:01 +08:00
										 |  |  |         SSL_CTX_set_tlsext_ticket_keys(s_ctx, keys, size); | 
					
						
							|  |  |  |         OPENSSL_free(keys); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-05 21:47:55 +08:00
										 |  |  |     if (sn_server1 != NULL || sn_server2 != NULL) | 
					
						
							|  |  |  |         SSL_CTX_set_tlsext_servername_callback(s_ctx, servername_cb); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  |     c_ssl = SSL_new(c_ctx); | 
					
						
							|  |  |  |     s_ssl = SSL_new(s_ctx); | 
					
						
							| 
									
										
										
										
											2023-10-13 22:18:52 +08:00
										 |  |  |     if (c_ssl == NULL || s_ssl == NULL) | 
					
						
							|  |  |  |         goto end; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-05 21:47:55 +08:00
										 |  |  |     if (sn_client) | 
					
						
							|  |  |  |         SSL_set_tlsext_host_name(c_ssl, sn_client); | 
					
						
							| 
									
										
										
										
											2022-01-14 17:01:29 +08:00
										 |  |  |     if (client_ktls) | 
					
						
							|  |  |  |         SSL_set_options(c_ssl, SSL_OP_ENABLE_KTLS); | 
					
						
							|  |  |  |     if (server_ktls) | 
					
						
							|  |  |  |         SSL_set_options(s_ssl, SSL_OP_ENABLE_KTLS); | 
					
						
							| 
									
										
										
										
											2016-03-05 21:47:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-07 00:56:41 +08:00
										 |  |  |     if (!set_protocol_version(server_min_proto, s_ssl, SSL_CTRL_SET_MIN_PROTO_VERSION)) | 
					
						
							|  |  |  |         goto end; | 
					
						
							|  |  |  |     if (!set_protocol_version(server_max_proto, s_ssl, SSL_CTRL_SET_MAX_PROTO_VERSION)) | 
					
						
							|  |  |  |         goto end; | 
					
						
							|  |  |  |     if (!set_protocol_version(client_min_proto, c_ssl, SSL_CTRL_SET_MIN_PROTO_VERSION)) | 
					
						
							|  |  |  |         goto end; | 
					
						
							|  |  |  |     if (!set_protocol_version(client_max_proto, c_ssl, SSL_CTRL_SET_MAX_PROTO_VERSION)) | 
					
						
							|  |  |  |         goto end; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-28 02:53:01 +08:00
										 |  |  |     if (server_sess) { | 
					
						
							|  |  |  |         if (SSL_CTX_add_session(s_ctx, server_sess) == 0) { | 
					
						
							|  |  |  |             BIO_printf(bio_err, "Can't add server session\n"); | 
					
						
							|  |  |  |             ERR_print_errors(bio_err); | 
					
						
							|  |  |  |             goto end; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-04-22 03:52:51 +08:00
										 |  |  |     BIO_printf(bio_stdout, "Doing handshakes=%d bytes=%ld\n", number, bytes); | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  |     for (i = 0; i < number; i++) { | 
					
						
							| 
									
										
										
										
											2015-03-06 22:37:17 +08:00
										 |  |  |         if (!reuse) { | 
					
						
							| 
									
										
										
										
											2015-04-16 13:50:03 +08:00
										 |  |  |             if (!SSL_set_session(c_ssl, NULL)) { | 
					
						
							| 
									
										
										
										
											2015-03-06 22:37:17 +08:00
										 |  |  |                 BIO_printf(bio_err, "Failed to set session\n"); | 
					
						
							|  |  |  |                 goto end; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2016-03-28 02:53:01 +08:00
										 |  |  |         if (client_sess_in != NULL) { | 
					
						
							|  |  |  |             if (SSL_set_session(c_ssl, client_sess) == 0) { | 
					
						
							|  |  |  |                 BIO_printf(bio_err, "Can't set client session\n"); | 
					
						
							|  |  |  |                 ERR_print_errors(bio_err); | 
					
						
							|  |  |  |                 goto end; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2016-02-03 06:50:52 +08:00
										 |  |  |         switch (bio_type) { | 
					
						
							|  |  |  |         case BIO_MEM: | 
					
						
							| 
									
										
										
										
											1999-06-12 09:03:40 +08:00
										 |  |  |             ret = doit(s_ssl, c_ssl, bytes); | 
					
						
							| 
									
										
										
										
											2016-02-03 06:50:52 +08:00
										 |  |  |             break; | 
					
						
							|  |  |  |         case BIO_PAIR: | 
					
						
							|  |  |  |             ret = doit_biopair(s_ssl, c_ssl, bytes, &s_time, &c_time); | 
					
						
							|  |  |  |             break; | 
					
						
							| 
									
										
										
										
											2016-03-21 23:32:40 +08:00
										 |  |  | #ifndef OPENSSL_NO_SOCK
 | 
					
						
							| 
									
										
										
										
											2016-02-03 06:50:52 +08:00
										 |  |  |         case BIO_IPV4: | 
					
						
							|  |  |  |             ret = doit_localhost(s_ssl, c_ssl, BIO_FAMILY_IPV4, | 
					
						
							|  |  |  |                                  bytes, &s_time, &c_time); | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         case BIO_IPV6: | 
					
						
							|  |  |  |             ret = doit_localhost(s_ssl, c_ssl, BIO_FAMILY_IPV6, | 
					
						
							|  |  |  |                                  bytes, &s_time, &c_time); | 
					
						
							|  |  |  |             break; | 
					
						
							| 
									
										
										
										
											2016-03-21 23:32:40 +08:00
										 |  |  | #else
 | 
					
						
							|  |  |  |         case BIO_IPV4: | 
					
						
							|  |  |  |         case BIO_IPV6: | 
					
						
							| 
									
										
										
										
											2017-07-13 05:37:01 +08:00
										 |  |  |             ret = EXIT_FAILURE; | 
					
						
							| 
									
										
										
										
											2023-10-13 22:18:52 +08:00
										 |  |  |             goto end; | 
					
						
							| 
									
										
										
										
											2016-03-21 23:32:40 +08:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2016-02-03 06:50:52 +08:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2023-10-13 22:18:52 +08:00
										 |  |  |         if (ret != EXIT_SUCCESS) | 
					
						
							|  |  |  |             break; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-13 05:37:01 +08:00
										 |  |  |     if (should_negotiate && ret == EXIT_SUCCESS && | 
					
						
							| 
									
										
										
										
											2015-12-07 00:56:41 +08:00
										 |  |  |         strcmp(should_negotiate, "fail-server") != 0 && | 
					
						
							|  |  |  |         strcmp(should_negotiate, "fail-client") != 0) { | 
					
						
							|  |  |  |         int version = protocol_from_string(should_negotiate); | 
					
						
							|  |  |  |         if (version < 0) { | 
					
						
							|  |  |  |             BIO_printf(bio_err, "Error parsing: %s\n", should_negotiate); | 
					
						
							| 
									
										
										
										
											2017-07-13 05:37:01 +08:00
										 |  |  |             ret = EXIT_FAILURE; | 
					
						
							| 
									
										
										
										
											2023-10-13 22:18:52 +08:00
										 |  |  |             goto end; | 
					
						
							| 
									
										
										
										
											2015-12-07 00:56:41 +08:00
										 |  |  |         } | 
					
						
							|  |  |  |         if (SSL_version(c_ssl) != version) { | 
					
						
							| 
									
										
										
										
											2017-03-29 05:57:28 +08:00
										 |  |  |             BIO_printf(bio_err, "Unexpected version negotiated. " | 
					
						
							| 
									
										
										
										
											2015-12-07 00:56:41 +08:00
										 |  |  |                 "Expected: %s, got %s\n", should_negotiate, SSL_get_version(c_ssl)); | 
					
						
							| 
									
										
										
										
											2017-07-13 05:37:01 +08:00
										 |  |  |             ret = EXIT_FAILURE; | 
					
						
							| 
									
										
										
										
											2023-10-13 22:18:52 +08:00
										 |  |  |             goto end; | 
					
						
							| 
									
										
										
										
											2015-12-07 00:56:41 +08:00
										 |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-28 02:53:01 +08:00
										 |  |  |     if (should_reuse != -1) { | 
					
						
							|  |  |  |         if (SSL_session_reused(s_ssl) != should_reuse || | 
					
						
							|  |  |  |             SSL_session_reused(c_ssl) != should_reuse) { | 
					
						
							|  |  |  |             BIO_printf(bio_err, "Unexpected session reuse state. " | 
					
						
							|  |  |  |                 "Expected: %d, server: %d, client: %d\n", should_reuse, | 
					
						
							|  |  |  |                 SSL_session_reused(s_ssl), SSL_session_reused(c_ssl)); | 
					
						
							| 
									
										
										
										
											2017-07-13 05:37:01 +08:00
										 |  |  |             ret = EXIT_FAILURE; | 
					
						
							| 
									
										
										
										
											2023-10-13 22:18:52 +08:00
										 |  |  |             goto end; | 
					
						
							| 
									
										
										
										
											2016-03-28 02:53:01 +08:00
										 |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (server_sess_out != NULL) { | 
					
						
							|  |  |  |         if (write_session(server_sess_out, SSL_get_session(s_ssl)) == 0) { | 
					
						
							| 
									
										
										
										
											2017-07-13 05:37:01 +08:00
										 |  |  |             ret = EXIT_FAILURE; | 
					
						
							| 
									
										
										
										
											2023-10-13 22:18:52 +08:00
										 |  |  |             goto end; | 
					
						
							| 
									
										
										
										
											2016-03-28 02:53:01 +08:00
										 |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (client_sess_out != NULL) { | 
					
						
							|  |  |  |         if (write_session(client_sess_out, SSL_get_session(c_ssl)) == 0) { | 
					
						
							| 
									
										
										
										
											2017-07-13 05:37:01 +08:00
										 |  |  |             ret = EXIT_FAILURE; | 
					
						
							| 
									
										
										
										
											2023-10-13 22:18:52 +08:00
										 |  |  |             goto end; | 
					
						
							| 
									
										
										
										
											2016-03-28 02:53:01 +08:00
										 |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  |     if (!verbose) { | 
					
						
							| 
									
										
										
										
											2000-03-13 23:06:54 +08:00
										 |  |  |         print_details(c_ssl, ""); | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2000-03-13 23:06:54 +08:00
										 |  |  |     if (print_time) { | 
					
						
							| 
									
										
										
										
											2000-03-26 20:27:30 +08:00
										 |  |  | #ifdef CLOCKS_PER_SEC
 | 
					
						
							|  |  |  |         /*
 | 
					
						
							|  |  |  |          * "To determine the time in seconds, the value returned by the clock | 
					
						
							|  |  |  |          * function should be divided by the value of the macro | 
					
						
							|  |  |  |          * CLOCKS_PER_SEC." -- ISO/IEC 9899 | 
					
						
							|  |  |  |          */ | 
					
						
							| 
									
										
										
										
											2000-03-13 23:06:54 +08:00
										 |  |  |         BIO_printf(bio_stdout, "Approximate total server time: %6.2f s\n" | 
					
						
							|  |  |  |                    "Approximate total client time: %6.2f s\n", | 
					
						
							|  |  |  |                    (double)s_time / CLOCKS_PER_SEC, | 
					
						
							|  |  |  |                    (double)c_time / CLOCKS_PER_SEC); | 
					
						
							| 
									
										
										
										
											2000-03-26 20:27:30 +08:00
										 |  |  | #else
 | 
					
						
							|  |  |  |         BIO_printf(bio_stdout, | 
					
						
							|  |  |  |                    "Approximate total server time: %6.2f units\n" | 
					
						
							|  |  |  |                    "Approximate total client time: %6.2f units\n", | 
					
						
							|  |  |  |                    (double)s_time, (double)c_time); | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2000-03-13 23:06:54 +08:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-10-13 22:18:52 +08:00
										 |  |  |  end: | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  |     SSL_free(s_ssl); | 
					
						
							|  |  |  |     SSL_free(c_ssl); | 
					
						
							| 
									
										
										
										
											2015-04-11 22:22:36 +08:00
										 |  |  |     SSL_CTX_free(s_ctx); | 
					
						
							| 
									
										
										
										
											2016-03-05 21:47:55 +08:00
										 |  |  |     SSL_CTX_free(s_ctx2); | 
					
						
							| 
									
										
										
										
											2015-04-11 22:22:36 +08:00
										 |  |  |     SSL_CTX_free(c_ctx); | 
					
						
							|  |  |  |     SSL_CONF_CTX_free(s_cctx); | 
					
						
							| 
									
										
										
										
											2016-03-05 21:47:55 +08:00
										 |  |  |     SSL_CONF_CTX_free(s_cctx2); | 
					
						
							| 
									
										
										
										
											2015-04-11 22:22:36 +08:00
										 |  |  |     SSL_CONF_CTX_free(c_cctx); | 
					
						
							| 
									
										
										
										
											2014-10-27 22:07:12 +08:00
										 |  |  |     sk_OPENSSL_STRING_free(conf_args); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-03-25 23:31:18 +08:00
										 |  |  |     BIO_free(bio_stdout); | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-28 02:53:01 +08:00
										 |  |  |     SSL_SESSION_free(server_sess); | 
					
						
							|  |  |  |     SSL_SESSION_free(client_sess); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-10 21:31:19 +08:00
										 |  |  |     OSSL_PROVIDER_unload(defctxnull); | 
					
						
							|  |  |  |     OSSL_PROVIDER_unload(thisprov); | 
					
						
							| 
									
										
										
										
											2020-10-15 17:55:50 +08:00
										 |  |  |     OSSL_LIB_CTX_free(libctx); | 
					
						
							| 
									
										
										
										
											2020-04-10 21:31:19 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-01-03 17:43:16 +08:00
										 |  |  |     test_close_streams(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |     EXIT(ret); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-21 23:32:40 +08:00
										 |  |  | #ifndef OPENSSL_NO_SOCK
 | 
					
						
							| 
									
										
										
										
											2016-02-03 06:50:52 +08:00
										 |  |  | int doit_localhost(SSL *s_ssl, SSL *c_ssl, int family, long count, | 
					
						
							|  |  |  |                    clock_t *s_time, clock_t *c_time) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     long cw_num = count, cr_num = count, sw_num = count, sr_num = count; | 
					
						
							|  |  |  |     BIO *s_ssl_bio = NULL, *c_ssl_bio = NULL; | 
					
						
							|  |  |  |     BIO *acpt = NULL, *server = NULL, *client = NULL; | 
					
						
							|  |  |  |     char addr_str[40]; | 
					
						
							| 
									
										
										
										
											2017-07-13 05:37:01 +08:00
										 |  |  |     int ret = EXIT_FAILURE; | 
					
						
							| 
									
										
										
										
											2016-02-03 06:50:52 +08:00
										 |  |  |     int err_in_client = 0; | 
					
						
							|  |  |  |     int err_in_server = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-12 05:16:52 +08:00
										 |  |  |     acpt = BIO_new_accept(family == BIO_FAMILY_IPV4 ? "127.0.0.1:0" | 
					
						
							|  |  |  |                                                     : "[::1]:0"); | 
					
						
							| 
									
										
										
										
											2016-02-03 06:50:52 +08:00
										 |  |  |     if (acpt == NULL) | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  |     BIO_set_accept_ip_family(acpt, family); | 
					
						
							|  |  |  |     BIO_set_bind_mode(acpt, BIO_SOCK_NONBLOCK | BIO_SOCK_REUSEADDR); | 
					
						
							|  |  |  |     if (BIO_do_accept(acpt) <= 0) | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-04 05:41:14 +08:00
										 |  |  |     BIO_snprintf(addr_str, sizeof(addr_str), ":%s", BIO_get_accept_port(acpt)); | 
					
						
							| 
									
										
										
										
											2016-02-03 06:50:52 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     client = BIO_new_connect(addr_str); | 
					
						
							|  |  |  |     if (!client) | 
					
						
							|  |  |  |         goto err; | 
					
						
							| 
									
										
										
										
											2021-10-26 10:40:20 +08:00
										 |  |  |     BIO_set_conn_ip_family(client, family); | 
					
						
							| 
									
										
										
										
											2016-02-03 06:50:52 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (BIO_set_nbio(client, 1) <= 0) | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  |     if (BIO_set_nbio(acpt, 1) <= 0) | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         int st_connect = 0, st_accept = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-26 15:16:18 +08:00
										 |  |  |         while (!st_connect || !st_accept) { | 
					
						
							| 
									
										
										
										
											2016-02-03 06:50:52 +08:00
										 |  |  |             if (!st_connect) { | 
					
						
							|  |  |  |                 if (BIO_do_connect(client) <= 0) { | 
					
						
							|  |  |  |                     if (!BIO_should_retry(client)) | 
					
						
							|  |  |  |                         goto err; | 
					
						
							|  |  |  |                 } else { | 
					
						
							|  |  |  |                     st_connect = 1; | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             if (!st_accept) { | 
					
						
							|  |  |  |                 if (BIO_do_accept(acpt) <= 0) { | 
					
						
							|  |  |  |                     if (!BIO_should_retry(acpt)) | 
					
						
							|  |  |  |                         goto err; | 
					
						
							|  |  |  |                 } else { | 
					
						
							|  |  |  |                     st_accept = 1; | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     /* We're not interested in accepting further connects */ | 
					
						
							|  |  |  |     server = BIO_pop(acpt); | 
					
						
							|  |  |  |     BIO_free_all(acpt); | 
					
						
							|  |  |  |     acpt = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     s_ssl_bio = BIO_new(BIO_f_ssl()); | 
					
						
							|  |  |  |     if (!s_ssl_bio) | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     c_ssl_bio = BIO_new(BIO_f_ssl()); | 
					
						
							|  |  |  |     if (!c_ssl_bio) | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     SSL_set_connect_state(c_ssl); | 
					
						
							|  |  |  |     SSL_set_bio(c_ssl, client, client); | 
					
						
							|  |  |  |     (void)BIO_set_ssl(c_ssl_bio, c_ssl, BIO_NOCLOSE); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     SSL_set_accept_state(s_ssl); | 
					
						
							|  |  |  |     SSL_set_bio(s_ssl, server, server); | 
					
						
							|  |  |  |     (void)BIO_set_ssl(s_ssl_bio, s_ssl, BIO_NOCLOSE); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     do { | 
					
						
							|  |  |  |         /*-
 | 
					
						
							|  |  |  |          * c_ssl_bio:          SSL filter BIO | 
					
						
							|  |  |  |          * | 
					
						
							|  |  |  |          * client:             I/O for SSL library | 
					
						
							|  |  |  |          * | 
					
						
							|  |  |  |          * | 
					
						
							|  |  |  |          * server:             I/O for SSL library | 
					
						
							|  |  |  |          * | 
					
						
							|  |  |  |          * s_ssl_bio:          SSL filter BIO | 
					
						
							|  |  |  |          */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         /*
 | 
					
						
							|  |  |  |          * We have non-blocking behaviour throughout this test program, but | 
					
						
							|  |  |  |          * can be sure that there is *some* progress in each iteration; so we | 
					
						
							|  |  |  |          * don't have to worry about ..._SHOULD_READ or ..._SHOULD_WRITE -- | 
					
						
							|  |  |  |          * we just try everything in each iteration | 
					
						
							|  |  |  |          */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |             /* CLIENT */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             char cbuf[1024 * 8]; | 
					
						
							|  |  |  |             int i, r; | 
					
						
							|  |  |  |             clock_t c_clock = clock(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             memset(cbuf, 0, sizeof(cbuf)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             if (debug) | 
					
						
							|  |  |  |                 if (SSL_in_init(c_ssl)) | 
					
						
							|  |  |  |                     printf("client waiting in SSL_connect - %s\n", | 
					
						
							|  |  |  |                            SSL_state_string_long(c_ssl)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             if (cw_num > 0) { | 
					
						
							|  |  |  |                 /* Write to server. */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-08 02:39:34 +08:00
										 |  |  |                 if (cw_num > (long)sizeof(cbuf)) | 
					
						
							|  |  |  |                     i = sizeof(cbuf); | 
					
						
							| 
									
										
										
										
											2016-02-03 06:50:52 +08:00
										 |  |  |                 else | 
					
						
							|  |  |  |                     i = (int)cw_num; | 
					
						
							|  |  |  |                 r = BIO_write(c_ssl_bio, cbuf, i); | 
					
						
							|  |  |  |                 if (r < 0) { | 
					
						
							|  |  |  |                     if (!BIO_should_retry(c_ssl_bio)) { | 
					
						
							| 
									
										
											  
											
												Fix KTLS with BIO_new_connect
When a socket connection is done using BIO_new_connect,
the ktls_enable is done too early, and fails with ENOTCONN.
Therefore the KLTS ioctl will fail later with ENOPROTOOPT.
Fix that by doing the ktls_enable after the connection
succeeded, not when the socket is created as that will
always fail.
One example where this happens is doit_localhost in
test/ssl_old_test.c, and therefore, contrary to the expectation
the -client_ktls option did never enable the client KTLS
connection, but this was not noticed, because there was no
diagnostic output, and it was only visible with strace output.
Also enhanced the ssl_old_test -client_ktls/-server_ktls
options together with -v option to print a summary line
if and how KTLS was negotiated in server and client.
While I am already there adjusted the usage info of
the -s_cert, -s_key commands, and allow -time to print the
timings of ktls connections.
Reviewed-by: Matt Caswell <matt@openssl.org>
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/18318)
											
										 
											2022-05-16 13:06:42 +08:00
										 |  |  |                         fprintf(stderr, "ERROR in CLIENT (write)\n"); | 
					
						
							| 
									
										
										
										
											2016-02-03 06:50:52 +08:00
										 |  |  |                         err_in_client = 1; | 
					
						
							|  |  |  |                         goto err; | 
					
						
							|  |  |  |                     } | 
					
						
							|  |  |  |                     /*
 | 
					
						
							|  |  |  |                      * BIO_should_retry(...) can just be ignored here. The | 
					
						
							|  |  |  |                      * library expects us to call BIO_write with the same | 
					
						
							|  |  |  |                      * arguments again, and that's what we will do in the | 
					
						
							|  |  |  |                      * next iteration. | 
					
						
							|  |  |  |                      */ | 
					
						
							|  |  |  |                 } else if (r == 0) { | 
					
						
							|  |  |  |                     fprintf(stderr, "SSL CLIENT STARTUP FAILED\n"); | 
					
						
							|  |  |  |                     goto err; | 
					
						
							|  |  |  |                 } else { | 
					
						
							|  |  |  |                     if (debug) | 
					
						
							|  |  |  |                         printf("client wrote %d\n", r); | 
					
						
							|  |  |  |                     cw_num -= r; | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             if (cr_num > 0) { | 
					
						
							|  |  |  |                 /* Read from server. */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                 r = BIO_read(c_ssl_bio, cbuf, sizeof(cbuf)); | 
					
						
							|  |  |  |                 if (r < 0) { | 
					
						
							|  |  |  |                     if (!BIO_should_retry(c_ssl_bio)) { | 
					
						
							| 
									
										
											  
											
												Fix KTLS with BIO_new_connect
When a socket connection is done using BIO_new_connect,
the ktls_enable is done too early, and fails with ENOTCONN.
Therefore the KLTS ioctl will fail later with ENOPROTOOPT.
Fix that by doing the ktls_enable after the connection
succeeded, not when the socket is created as that will
always fail.
One example where this happens is doit_localhost in
test/ssl_old_test.c, and therefore, contrary to the expectation
the -client_ktls option did never enable the client KTLS
connection, but this was not noticed, because there was no
diagnostic output, and it was only visible with strace output.
Also enhanced the ssl_old_test -client_ktls/-server_ktls
options together with -v option to print a summary line
if and how KTLS was negotiated in server and client.
While I am already there adjusted the usage info of
the -s_cert, -s_key commands, and allow -time to print the
timings of ktls connections.
Reviewed-by: Matt Caswell <matt@openssl.org>
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/18318)
											
										 
											2022-05-16 13:06:42 +08:00
										 |  |  |                         fprintf(stderr, "ERROR in CLIENT (read)\n"); | 
					
						
							| 
									
										
										
										
											2016-02-03 06:50:52 +08:00
										 |  |  |                         err_in_client = 1; | 
					
						
							|  |  |  |                         goto err; | 
					
						
							|  |  |  |                     } | 
					
						
							|  |  |  |                     /*
 | 
					
						
							|  |  |  |                      * Again, "BIO_should_retry" can be ignored. | 
					
						
							|  |  |  |                      */ | 
					
						
							|  |  |  |                 } else if (r == 0) { | 
					
						
							|  |  |  |                     fprintf(stderr, "SSL CLIENT STARTUP FAILED\n"); | 
					
						
							|  |  |  |                     goto err; | 
					
						
							|  |  |  |                 } else { | 
					
						
							|  |  |  |                     if (debug) | 
					
						
							|  |  |  |                         printf("client read %d\n", r); | 
					
						
							|  |  |  |                     cr_num -= r; | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             /*
 | 
					
						
							|  |  |  |              * c_time and s_time increments will typically be very small | 
					
						
							|  |  |  |              * (depending on machine speed and clock tick intervals), but | 
					
						
							|  |  |  |              * sampling over a large number of connections should result in | 
					
						
							|  |  |  |              * fairly accurate figures.  We cannot guarantee a lot, however | 
					
						
							|  |  |  |              * -- if each connection lasts for exactly one clock tick, it | 
					
						
							|  |  |  |              * will be counted only for the client or only for the server or | 
					
						
							|  |  |  |              * even not at all. | 
					
						
							|  |  |  |              */ | 
					
						
							|  |  |  |             *c_time += (clock() - c_clock); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |             /* SERVER */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             char sbuf[1024 * 8]; | 
					
						
							|  |  |  |             int i, r; | 
					
						
							|  |  |  |             clock_t s_clock = clock(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             memset(sbuf, 0, sizeof(sbuf)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             if (debug) | 
					
						
							|  |  |  |                 if (SSL_in_init(s_ssl)) | 
					
						
							|  |  |  |                     printf("server waiting in SSL_accept - %s\n", | 
					
						
							|  |  |  |                            SSL_state_string_long(s_ssl)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             if (sw_num > 0) { | 
					
						
							|  |  |  |                 /* Write to client. */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-08 02:39:34 +08:00
										 |  |  |                 if (sw_num > (long)sizeof(sbuf)) | 
					
						
							|  |  |  |                     i = sizeof(sbuf); | 
					
						
							| 
									
										
										
										
											2016-02-03 06:50:52 +08:00
										 |  |  |                 else | 
					
						
							|  |  |  |                     i = (int)sw_num; | 
					
						
							|  |  |  |                 r = BIO_write(s_ssl_bio, sbuf, i); | 
					
						
							|  |  |  |                 if (r < 0) { | 
					
						
							|  |  |  |                     if (!BIO_should_retry(s_ssl_bio)) { | 
					
						
							| 
									
										
											  
											
												Fix KTLS with BIO_new_connect
When a socket connection is done using BIO_new_connect,
the ktls_enable is done too early, and fails with ENOTCONN.
Therefore the KLTS ioctl will fail later with ENOPROTOOPT.
Fix that by doing the ktls_enable after the connection
succeeded, not when the socket is created as that will
always fail.
One example where this happens is doit_localhost in
test/ssl_old_test.c, and therefore, contrary to the expectation
the -client_ktls option did never enable the client KTLS
connection, but this was not noticed, because there was no
diagnostic output, and it was only visible with strace output.
Also enhanced the ssl_old_test -client_ktls/-server_ktls
options together with -v option to print a summary line
if and how KTLS was negotiated in server and client.
While I am already there adjusted the usage info of
the -s_cert, -s_key commands, and allow -time to print the
timings of ktls connections.
Reviewed-by: Matt Caswell <matt@openssl.org>
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/18318)
											
										 
											2022-05-16 13:06:42 +08:00
										 |  |  |                         fprintf(stderr, "ERROR in SERVER (write)\n"); | 
					
						
							| 
									
										
										
										
											2016-02-03 06:50:52 +08:00
										 |  |  |                         err_in_server = 1; | 
					
						
							|  |  |  |                         goto err; | 
					
						
							|  |  |  |                     } | 
					
						
							|  |  |  |                     /* Ignore "BIO_should_retry". */ | 
					
						
							|  |  |  |                 } else if (r == 0) { | 
					
						
							|  |  |  |                     fprintf(stderr, "SSL SERVER STARTUP FAILED\n"); | 
					
						
							|  |  |  |                     goto err; | 
					
						
							|  |  |  |                 } else { | 
					
						
							|  |  |  |                     if (debug) | 
					
						
							|  |  |  |                         printf("server wrote %d\n", r); | 
					
						
							|  |  |  |                     sw_num -= r; | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             if (sr_num > 0) { | 
					
						
							|  |  |  |                 /* Read from client. */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                 r = BIO_read(s_ssl_bio, sbuf, sizeof(sbuf)); | 
					
						
							|  |  |  |                 if (r < 0) { | 
					
						
							|  |  |  |                     if (!BIO_should_retry(s_ssl_bio)) { | 
					
						
							| 
									
										
											  
											
												Fix KTLS with BIO_new_connect
When a socket connection is done using BIO_new_connect,
the ktls_enable is done too early, and fails with ENOTCONN.
Therefore the KLTS ioctl will fail later with ENOPROTOOPT.
Fix that by doing the ktls_enable after the connection
succeeded, not when the socket is created as that will
always fail.
One example where this happens is doit_localhost in
test/ssl_old_test.c, and therefore, contrary to the expectation
the -client_ktls option did never enable the client KTLS
connection, but this was not noticed, because there was no
diagnostic output, and it was only visible with strace output.
Also enhanced the ssl_old_test -client_ktls/-server_ktls
options together with -v option to print a summary line
if and how KTLS was negotiated in server and client.
While I am already there adjusted the usage info of
the -s_cert, -s_key commands, and allow -time to print the
timings of ktls connections.
Reviewed-by: Matt Caswell <matt@openssl.org>
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/18318)
											
										 
											2022-05-16 13:06:42 +08:00
										 |  |  |                         fprintf(stderr, "ERROR in SERVER (read)\n"); | 
					
						
							| 
									
										
										
										
											2016-02-03 06:50:52 +08:00
										 |  |  |                         err_in_server = 1; | 
					
						
							|  |  |  |                         goto err; | 
					
						
							|  |  |  |                     } | 
					
						
							|  |  |  |                     /* blah, blah */ | 
					
						
							|  |  |  |                 } else if (r == 0) { | 
					
						
							|  |  |  |                     fprintf(stderr, "SSL SERVER STARTUP FAILED\n"); | 
					
						
							|  |  |  |                     goto err; | 
					
						
							|  |  |  |                 } else { | 
					
						
							|  |  |  |                     if (debug) | 
					
						
							|  |  |  |                         printf("server read %d\n", r); | 
					
						
							|  |  |  |                     sr_num -= r; | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             *s_time += (clock() - s_clock); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     while (cw_num > 0 || cr_num > 0 || sw_num > 0 || sr_num > 0); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
											  
											
												Fix KTLS with BIO_new_connect
When a socket connection is done using BIO_new_connect,
the ktls_enable is done too early, and fails with ENOTCONN.
Therefore the KLTS ioctl will fail later with ENOPROTOOPT.
Fix that by doing the ktls_enable after the connection
succeeded, not when the socket is created as that will
always fail.
One example where this happens is doit_localhost in
test/ssl_old_test.c, and therefore, contrary to the expectation
the -client_ktls option did never enable the client KTLS
connection, but this was not noticed, because there was no
diagnostic output, and it was only visible with strace output.
Also enhanced the ssl_old_test -client_ktls/-server_ktls
options together with -v option to print a summary line
if and how KTLS was negotiated in server and client.
While I am already there adjusted the usage info of
the -s_cert, -s_key commands, and allow -time to print the
timings of ktls connections.
Reviewed-by: Matt Caswell <matt@openssl.org>
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/18318)
											
										 
											2022-05-16 13:06:42 +08:00
										 |  |  |     if (verbose) { | 
					
						
							| 
									
										
										
										
											2016-02-03 06:50:52 +08:00
										 |  |  |         print_details(c_ssl, "DONE via TCP connect: "); | 
					
						
							| 
									
										
											  
											
												Fix KTLS with BIO_new_connect
When a socket connection is done using BIO_new_connect,
the ktls_enable is done too early, and fails with ENOTCONN.
Therefore the KLTS ioctl will fail later with ENOPROTOOPT.
Fix that by doing the ktls_enable after the connection
succeeded, not when the socket is created as that will
always fail.
One example where this happens is doit_localhost in
test/ssl_old_test.c, and therefore, contrary to the expectation
the -client_ktls option did never enable the client KTLS
connection, but this was not noticed, because there was no
diagnostic output, and it was only visible with strace output.
Also enhanced the ssl_old_test -client_ktls/-server_ktls
options together with -v option to print a summary line
if and how KTLS was negotiated in server and client.
While I am already there adjusted the usage info of
the -s_cert, -s_key commands, and allow -time to print the
timings of ktls connections.
Reviewed-by: Matt Caswell <matt@openssl.org>
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/18318)
											
										 
											2022-05-16 13:06:42 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |         if (BIO_get_ktls_send(SSL_get_wbio(s_ssl)) | 
					
						
							|  |  |  |                 && BIO_get_ktls_recv(SSL_get_rbio(s_ssl))) | 
					
						
							|  |  |  |             BIO_printf(bio_stdout, "Server using Kernel TLS in both directions\n"); | 
					
						
							|  |  |  |         else if (BIO_get_ktls_send(SSL_get_wbio(s_ssl))) | 
					
						
							|  |  |  |             BIO_printf(bio_stdout, "Server using Kernel TLS for sending\n"); | 
					
						
							|  |  |  |         else if (BIO_get_ktls_recv(SSL_get_rbio(s_ssl))) | 
					
						
							|  |  |  |             BIO_printf(bio_stdout, "Server using Kernel TLS for receiving\n"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (BIO_get_ktls_send(SSL_get_wbio(c_ssl)) | 
					
						
							|  |  |  |                 && BIO_get_ktls_recv(SSL_get_rbio(c_ssl))) | 
					
						
							|  |  |  |             BIO_printf(bio_stdout, "Client using Kernel TLS in both directions\n"); | 
					
						
							|  |  |  |         else if (BIO_get_ktls_send(SSL_get_wbio(c_ssl))) | 
					
						
							|  |  |  |             BIO_printf(bio_stdout, "Client using Kernel TLS for sending\n"); | 
					
						
							|  |  |  |         else if (BIO_get_ktls_recv(SSL_get_rbio(c_ssl))) | 
					
						
							|  |  |  |             BIO_printf(bio_stdout, "Client using Kernel TLS for receiving\n"); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2016-03-21 23:32:40 +08:00
										 |  |  | # ifndef OPENSSL_NO_NEXTPROTONEG
 | 
					
						
							| 
									
										
										
										
											2017-07-13 05:37:01 +08:00
										 |  |  |     if (verify_npn(c_ssl, s_ssl) < 0) | 
					
						
							| 
									
										
										
										
											2016-02-03 06:50:52 +08:00
										 |  |  |         goto end; | 
					
						
							| 
									
										
										
										
											2016-03-21 23:32:40 +08:00
										 |  |  | # endif
 | 
					
						
							| 
									
										
										
										
											2016-02-03 06:50:52 +08:00
										 |  |  |     if (verify_serverinfo() < 0) { | 
					
						
							|  |  |  |         fprintf(stderr, "Server info verify error\n"); | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2017-07-13 05:37:01 +08:00
										 |  |  |     if (verify_alpn(c_ssl, s_ssl) < 0 | 
					
						
							|  |  |  |             || verify_servername(c_ssl, s_ssl) < 0) | 
					
						
							| 
									
										
										
										
											2016-03-05 21:47:55 +08:00
										 |  |  |         goto err; | 
					
						
							| 
									
										
										
										
											2016-02-03 06:50:52 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (custom_ext_error) { | 
					
						
							|  |  |  |         fprintf(stderr, "Custom extension error\n"); | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-11 18:41:19 +08:00
										 |  |  | # ifndef OPENSSL_NO_NEXTPROTONEG
 | 
					
						
							| 
									
										
										
										
											2016-02-03 06:50:52 +08:00
										 |  |  |  end: | 
					
						
							| 
									
										
										
										
											2016-04-11 18:41:19 +08:00
										 |  |  | # endif
 | 
					
						
							| 
									
										
										
										
											2017-07-13 05:37:01 +08:00
										 |  |  |     ret = EXIT_SUCCESS; | 
					
						
							| 
									
										
										
										
											2016-02-03 06:50:52 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |  err: | 
					
						
							|  |  |  |     ERR_print_errors(bio_err); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     BIO_free_all(acpt); | 
					
						
							|  |  |  |     BIO_free(server); | 
					
						
							|  |  |  |     BIO_free(client); | 
					
						
							|  |  |  |     BIO_free(s_ssl_bio); | 
					
						
							|  |  |  |     BIO_free(c_ssl_bio); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (should_negotiate != NULL && strcmp(should_negotiate, "fail-client") == 0) | 
					
						
							| 
									
										
										
										
											2017-07-13 05:37:01 +08:00
										 |  |  |         ret = (err_in_client != 0) ? EXIT_SUCCESS : EXIT_FAILURE; | 
					
						
							| 
									
										
										
										
											2016-02-03 06:50:52 +08:00
										 |  |  |     else if (should_negotiate != NULL && strcmp(should_negotiate, "fail-server") == 0) | 
					
						
							| 
									
										
										
										
											2017-07-13 05:37:01 +08:00
										 |  |  |         ret = (err_in_server != 0) ? EXIT_SUCCESS : EXIT_FAILURE; | 
					
						
							| 
									
										
										
										
											2016-02-03 06:50:52 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     return ret; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2016-03-21 23:32:40 +08:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2016-02-03 06:50:52 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-13 23:06:54 +08:00
										 |  |  | int doit_biopair(SSL *s_ssl, SSL *c_ssl, long count, | 
					
						
							|  |  |  |                  clock_t *s_time, clock_t *c_time) | 
					
						
							| 
									
										
										
										
											1999-06-12 09:03:40 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     long cw_num = count, cr_num = count, sw_num = count, sr_num = count; | 
					
						
							|  |  |  |     BIO *s_ssl_bio = NULL, *c_ssl_bio = NULL; | 
					
						
							|  |  |  |     BIO *server = NULL, *server_io = NULL, *client = NULL, *client_io = NULL; | 
					
						
							| 
									
										
										
										
											2017-07-13 05:37:01 +08:00
										 |  |  |     int ret = EXIT_FAILURE; | 
					
						
							| 
									
										
										
										
											2015-12-07 00:56:41 +08:00
										 |  |  |     int err_in_client = 0; | 
					
						
							|  |  |  |     int err_in_server = 0; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-06-12 09:03:40 +08:00
										 |  |  |     size_t bufsiz = 256;        /* small buffer for testing */ | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-06-12 09:03:40 +08:00
										 |  |  |     if (!BIO_new_bio_pair(&server, bufsiz, &server_io, bufsiz)) | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  |     if (!BIO_new_bio_pair(&client, bufsiz, &client_io, bufsiz)) | 
					
						
							|  |  |  |         goto err; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-06-12 09:03:40 +08:00
										 |  |  |     s_ssl_bio = BIO_new(BIO_f_ssl()); | 
					
						
							|  |  |  |     if (!s_ssl_bio) | 
					
						
							|  |  |  |         goto err; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-06-12 09:03:40 +08:00
										 |  |  |     c_ssl_bio = BIO_new(BIO_f_ssl()); | 
					
						
							|  |  |  |     if (!c_ssl_bio) | 
					
						
							|  |  |  |         goto err; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-06-12 09:03:40 +08:00
										 |  |  |     SSL_set_connect_state(c_ssl); | 
					
						
							|  |  |  |     SSL_set_bio(c_ssl, client, client); | 
					
						
							|  |  |  |     (void)BIO_set_ssl(c_ssl_bio, c_ssl, BIO_NOCLOSE); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-06-12 09:03:40 +08:00
										 |  |  |     SSL_set_accept_state(s_ssl); | 
					
						
							|  |  |  |     SSL_set_bio(s_ssl, server, server); | 
					
						
							|  |  |  |     (void)BIO_set_ssl(s_ssl_bio, s_ssl, BIO_NOCLOSE); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-06-12 09:03:40 +08:00
										 |  |  |     do { | 
					
						
							| 
									
										
										
										
											2015-01-17 08:06:54 +08:00
										 |  |  |         /*-
 | 
					
						
							|  |  |  |          * c_ssl_bio:          SSL filter BIO | 
					
						
							|  |  |  |          * | 
					
						
							|  |  |  |          * client:             pseudo-I/O for SSL library | 
					
						
							|  |  |  |          * | 
					
						
							|  |  |  |          * client_io:          client's SSL communication; usually to be | 
					
						
							|  |  |  |          *                     relayed over some I/O facility, but in this | 
					
						
							|  |  |  |          *                     test program, we're the server, too: | 
					
						
							|  |  |  |          * | 
					
						
							|  |  |  |          * server_io:          server's SSL communication | 
					
						
							|  |  |  |          * | 
					
						
							|  |  |  |          * server:             pseudo-I/O for SSL library | 
					
						
							|  |  |  |          * | 
					
						
							|  |  |  |          * s_ssl_bio:          SSL filter BIO | 
					
						
							|  |  |  |          * | 
					
						
							|  |  |  |          * The client and the server each employ a "BIO pair": | 
					
						
							|  |  |  |          * client + client_io, server + server_io. | 
					
						
							|  |  |  |          * BIO pairs are symmetric.  A BIO pair behaves similar | 
					
						
							|  |  |  |          * to a non-blocking socketpair (but both endpoints must | 
					
						
							|  |  |  |          * be handled by the same thread). | 
					
						
							|  |  |  |          * [Here we could connect client and server to the ends | 
					
						
							|  |  |  |          * of a single BIO pair, but then this code would be less | 
					
						
							|  |  |  |          * suitable as an example for BIO pairs in general.] | 
					
						
							|  |  |  |          * | 
					
						
							|  |  |  |          * Useful functions for querying the state of BIO pair endpoints: | 
					
						
							|  |  |  |          * | 
					
						
							|  |  |  |          * BIO_ctrl_pending(bio)              number of bytes we can read now | 
					
						
							| 
									
										
										
										
											2017-08-11 22:15:22 +08:00
										 |  |  |          * BIO_ctrl_get_read_request(bio)     number of bytes needed to fulfill | 
					
						
							| 
									
										
										
										
											2015-01-17 08:06:54 +08:00
										 |  |  |          *                                      other side's read attempt | 
					
						
							|  |  |  |          * BIO_ctrl_get_write_guarantee(bio)   number of bytes we can write now | 
					
						
							|  |  |  |          * | 
					
						
							|  |  |  |          * ..._read_request is never more than ..._write_guarantee; | 
					
						
							|  |  |  |          * it depends on the application which one you should use. | 
					
						
							|  |  |  |          */ | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-06-12 09:03:40 +08:00
										 |  |  |         /*
 | 
					
						
							|  |  |  |          * We have non-blocking behaviour throughout this test program, but | 
					
						
							|  |  |  |          * can be sure that there is *some* progress in each iteration; so we | 
					
						
							|  |  |  |          * don't have to worry about ..._SHOULD_READ or ..._SHOULD_WRITE -- | 
					
						
							|  |  |  |          * we just try everything in each iteration | 
					
						
							|  |  |  |          */ | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-06-12 09:03:40 +08:00
										 |  |  |         { | 
					
						
							|  |  |  |             /* CLIENT */ | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-24 00:58:26 +08:00
										 |  |  |             char cbuf[1024 * 8]; | 
					
						
							| 
									
										
										
										
											1999-06-12 09:03:40 +08:00
										 |  |  |             int i, r; | 
					
						
							| 
									
										
										
										
											2000-03-13 23:06:54 +08:00
										 |  |  |             clock_t c_clock = clock(); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-11-05 21:54:41 +08:00
										 |  |  |             memset(cbuf, 0, sizeof(cbuf)); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-06-12 09:03:40 +08:00
										 |  |  |             if (debug) | 
					
						
							|  |  |  |                 if (SSL_in_init(c_ssl)) | 
					
						
							|  |  |  |                     printf("client waiting in SSL_connect - %s\n", | 
					
						
							|  |  |  |                            SSL_state_string_long(c_ssl)); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-06-12 09:03:40 +08:00
										 |  |  |             if (cw_num > 0) { | 
					
						
							|  |  |  |                 /* Write to server. */ | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-08 02:39:34 +08:00
										 |  |  |                 if (cw_num > (long)sizeof(cbuf)) | 
					
						
							|  |  |  |                     i = sizeof(cbuf); | 
					
						
							| 
									
										
										
										
											1999-06-12 09:03:40 +08:00
										 |  |  |                 else | 
					
						
							|  |  |  |                     i = (int)cw_num; | 
					
						
							|  |  |  |                 r = BIO_write(c_ssl_bio, cbuf, i); | 
					
						
							| 
									
										
										
										
											1999-08-10 00:33:34 +08:00
										 |  |  |                 if (r < 0) { | 
					
						
							| 
									
										
										
										
											1999-06-12 09:03:40 +08:00
										 |  |  |                     if (!BIO_should_retry(c_ssl_bio)) { | 
					
						
							|  |  |  |                         fprintf(stderr, "ERROR in CLIENT\n"); | 
					
						
							| 
									
										
										
										
											2015-12-07 00:56:41 +08:00
										 |  |  |                         err_in_client = 1; | 
					
						
							| 
									
										
										
										
											1999-06-12 09:03:40 +08:00
										 |  |  |                         goto err; | 
					
						
							|  |  |  |                     } | 
					
						
							|  |  |  |                     /*
 | 
					
						
							|  |  |  |                      * BIO_should_retry(...) can just be ignored here. The | 
					
						
							|  |  |  |                      * library expects us to call BIO_write with the same | 
					
						
							|  |  |  |                      * arguments again, and that's what we will do in the | 
					
						
							|  |  |  |                      * next iteration. | 
					
						
							|  |  |  |                      */ | 
					
						
							|  |  |  |                 } else if (r == 0) { | 
					
						
							|  |  |  |                     fprintf(stderr, "SSL CLIENT STARTUP FAILED\n"); | 
					
						
							|  |  |  |                     goto err; | 
					
						
							|  |  |  |                 } else { | 
					
						
							|  |  |  |                     if (debug) | 
					
						
							|  |  |  |                         printf("client wrote %d\n", r); | 
					
						
							|  |  |  |                     cw_num -= r; | 
					
						
							|  |  |  |                 } | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |             } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-06-12 09:03:40 +08:00
										 |  |  |             if (cr_num > 0) { | 
					
						
							|  |  |  |                 /* Read from server. */ | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-06-12 09:03:40 +08:00
										 |  |  |                 r = BIO_read(c_ssl_bio, cbuf, sizeof(cbuf)); | 
					
						
							|  |  |  |                 if (r < 0) { | 
					
						
							|  |  |  |                     if (!BIO_should_retry(c_ssl_bio)) { | 
					
						
							|  |  |  |                         fprintf(stderr, "ERROR in CLIENT\n"); | 
					
						
							| 
									
										
										
										
											2015-12-07 00:56:41 +08:00
										 |  |  |                         err_in_client = 1; | 
					
						
							| 
									
										
										
										
											1999-06-12 09:03:40 +08:00
										 |  |  |                         goto err; | 
					
						
							|  |  |  |                     } | 
					
						
							|  |  |  |                     /*
 | 
					
						
							|  |  |  |                      * Again, "BIO_should_retry" can be ignored. | 
					
						
							|  |  |  |                      */ | 
					
						
							|  |  |  |                 } else if (r == 0) { | 
					
						
							|  |  |  |                     fprintf(stderr, "SSL CLIENT STARTUP FAILED\n"); | 
					
						
							|  |  |  |                     goto err; | 
					
						
							|  |  |  |                 } else { | 
					
						
							|  |  |  |                     if (debug) | 
					
						
							|  |  |  |                         printf("client read %d\n", r); | 
					
						
							|  |  |  |                     cr_num -= r; | 
					
						
							|  |  |  |                 } | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |             } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-13 23:06:54 +08:00
										 |  |  |             /*
 | 
					
						
							|  |  |  |              * c_time and s_time increments will typically be very small | 
					
						
							|  |  |  |              * (depending on machine speed and clock tick intervals), but | 
					
						
							|  |  |  |              * sampling over a large number of connections should result in | 
					
						
							|  |  |  |              * fairly accurate figures.  We cannot guarantee a lot, however | 
					
						
							|  |  |  |              * -- if each connection lasts for exactly one clock tick, it | 
					
						
							|  |  |  |              * will be counted only for the client or only for the server or | 
					
						
							|  |  |  |              * even not at all. | 
					
						
							|  |  |  |              */ | 
					
						
							|  |  |  |             *c_time += (clock() - c_clock); | 
					
						
							| 
									
										
										
										
											1999-06-12 09:03:40 +08:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-06-12 09:03:40 +08:00
										 |  |  |         { | 
					
						
							|  |  |  |             /* SERVER */ | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-24 00:58:26 +08:00
										 |  |  |             char sbuf[1024 * 8]; | 
					
						
							| 
									
										
										
										
											1999-06-12 09:03:40 +08:00
										 |  |  |             int i, r; | 
					
						
							| 
									
										
										
										
											2000-03-13 23:06:54 +08:00
										 |  |  |             clock_t s_clock = clock(); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-11-05 21:54:41 +08:00
										 |  |  |             memset(sbuf, 0, sizeof(sbuf)); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-06-12 09:03:40 +08:00
										 |  |  |             if (debug) | 
					
						
							|  |  |  |                 if (SSL_in_init(s_ssl)) | 
					
						
							|  |  |  |                     printf("server waiting in SSL_accept - %s\n", | 
					
						
							|  |  |  |                            SSL_state_string_long(s_ssl)); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-06-12 09:03:40 +08:00
										 |  |  |             if (sw_num > 0) { | 
					
						
							|  |  |  |                 /* Write to client. */ | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-08 02:39:34 +08:00
										 |  |  |                 if (sw_num > (long)sizeof(sbuf)) | 
					
						
							|  |  |  |                     i = sizeof(sbuf); | 
					
						
							| 
									
										
										
										
											1999-06-12 09:03:40 +08:00
										 |  |  |                 else | 
					
						
							|  |  |  |                     i = (int)sw_num; | 
					
						
							|  |  |  |                 r = BIO_write(s_ssl_bio, sbuf, i); | 
					
						
							| 
									
										
										
										
											1999-08-10 00:33:34 +08:00
										 |  |  |                 if (r < 0) { | 
					
						
							| 
									
										
										
										
											1999-06-12 09:03:40 +08:00
										 |  |  |                     if (!BIO_should_retry(s_ssl_bio)) { | 
					
						
							|  |  |  |                         fprintf(stderr, "ERROR in SERVER\n"); | 
					
						
							| 
									
										
										
										
											2015-12-07 00:56:41 +08:00
										 |  |  |                         err_in_server = 1; | 
					
						
							| 
									
										
										
										
											1999-06-12 09:03:40 +08:00
										 |  |  |                         goto err; | 
					
						
							|  |  |  |                     } | 
					
						
							|  |  |  |                     /* Ignore "BIO_should_retry". */ | 
					
						
							|  |  |  |                 } else if (r == 0) { | 
					
						
							|  |  |  |                     fprintf(stderr, "SSL SERVER STARTUP FAILED\n"); | 
					
						
							|  |  |  |                     goto err; | 
					
						
							|  |  |  |                 } else { | 
					
						
							|  |  |  |                     if (debug) | 
					
						
							|  |  |  |                         printf("server wrote %d\n", r); | 
					
						
							|  |  |  |                     sw_num -= r; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |                 } | 
					
						
							| 
									
										
										
										
											1999-06-12 09:03:40 +08:00
										 |  |  |             } | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-06-12 09:03:40 +08:00
										 |  |  |             if (sr_num > 0) { | 
					
						
							|  |  |  |                 /* Read from client. */ | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-06-12 09:03:40 +08:00
										 |  |  |                 r = BIO_read(s_ssl_bio, sbuf, sizeof(sbuf)); | 
					
						
							|  |  |  |                 if (r < 0) { | 
					
						
							|  |  |  |                     if (!BIO_should_retry(s_ssl_bio)) { | 
					
						
							|  |  |  |                         fprintf(stderr, "ERROR in SERVER\n"); | 
					
						
							| 
									
										
										
										
											2015-12-07 00:56:41 +08:00
										 |  |  |                         err_in_server = 1; | 
					
						
							| 
									
										
										
										
											1999-06-12 09:03:40 +08:00
										 |  |  |                         goto err; | 
					
						
							|  |  |  |                     } | 
					
						
							|  |  |  |                     /* blah, blah */ | 
					
						
							|  |  |  |                 } else if (r == 0) { | 
					
						
							|  |  |  |                     fprintf(stderr, "SSL SERVER STARTUP FAILED\n"); | 
					
						
							|  |  |  |                     goto err; | 
					
						
							|  |  |  |                 } else { | 
					
						
							|  |  |  |                     if (debug) | 
					
						
							|  |  |  |                         printf("server read %d\n", r); | 
					
						
							|  |  |  |                     sr_num -= r; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |                 } | 
					
						
							| 
									
										
										
										
											1999-06-12 09:03:40 +08:00
										 |  |  |             } | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-13 23:06:54 +08:00
										 |  |  |             *s_time += (clock() - s_clock); | 
					
						
							| 
									
										
										
										
											1999-06-12 09:03:40 +08:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-06-12 09:03:40 +08:00
										 |  |  |         { | 
					
						
							|  |  |  |             /* "I/O" BETWEEN CLIENT AND SERVER. */ | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-06-12 09:03:40 +08:00
										 |  |  |             size_t r1, r2; | 
					
						
							| 
									
										
										
										
											1999-09-10 22:03:21 +08:00
										 |  |  |             BIO *io1 = server_io, *io2 = client_io; | 
					
						
							|  |  |  |             /*
 | 
					
						
							|  |  |  |              * we use the non-copying interface for io1 and the standard | 
					
						
							|  |  |  |              * BIO_write/BIO_read interface for io2 | 
					
						
							|  |  |  |              */ | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-06-12 09:03:40 +08:00
										 |  |  |             static int prev_progress = 1; | 
					
						
							|  |  |  |             int progress = 0; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-09-10 22:03:21 +08:00
										 |  |  |             /* io1 to io2 */ | 
					
						
							| 
									
										
										
										
											1999-06-12 09:03:40 +08:00
										 |  |  |             do { | 
					
						
							| 
									
										
										
										
											1999-09-10 22:03:21 +08:00
										 |  |  |                 size_t num; | 
					
						
							| 
									
										
										
										
											2002-04-29 19:03:06 +08:00
										 |  |  |                 int r; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-09-10 22:03:21 +08:00
										 |  |  |                 r1 = BIO_ctrl_pending(io1); | 
					
						
							|  |  |  |                 r2 = BIO_ctrl_get_write_guarantee(io2); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-06-12 09:03:40 +08:00
										 |  |  |                 num = r1; | 
					
						
							|  |  |  |                 if (r2 < num) | 
					
						
							|  |  |  |                     num = r2; | 
					
						
							|  |  |  |                 if (num) { | 
					
						
							| 
									
										
										
										
											1999-09-10 22:03:21 +08:00
										 |  |  |                     char *dataptr; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-06-12 09:03:40 +08:00
										 |  |  |                     if (INT_MAX < num) /* yeah, right */ | 
					
						
							|  |  |  |                         num = INT_MAX; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-09-10 22:03:21 +08:00
										 |  |  |                     r = BIO_nread(io1, &dataptr, (int)num); | 
					
						
							|  |  |  |                     assert(r > 0); | 
					
						
							|  |  |  |                     assert(r <= (int)num); | 
					
						
							|  |  |  |                     /*
 | 
					
						
							|  |  |  |                      * possibly r < num (non-contiguous data) | 
					
						
							|  |  |  |                      */ | 
					
						
							|  |  |  |                     num = r; | 
					
						
							|  |  |  |                     r = BIO_write(io2, dataptr, (int)num); | 
					
						
							| 
									
										
										
										
											1999-06-12 09:03:40 +08:00
										 |  |  |                     if (r != (int)num) { /* can't happen */ | 
					
						
							|  |  |  |                         fprintf(stderr, "ERROR: BIO_write could not write " | 
					
						
							|  |  |  |                                 "BIO_ctrl_get_write_guarantee() bytes"); | 
					
						
							|  |  |  |                         goto err; | 
					
						
							|  |  |  |                     } | 
					
						
							|  |  |  |                     progress = 1; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-06-12 09:03:40 +08:00
										 |  |  |                     if (debug) | 
					
						
							| 
									
										
										
										
											1999-09-10 22:03:21 +08:00
										 |  |  |                         printf((io1 == client_io) ? | 
					
						
							|  |  |  |                                "C->S relaying: %d bytes\n" : | 
					
						
							|  |  |  |                                "S->C relaying: %d bytes\n", (int)num); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |                 } | 
					
						
							| 
									
										
										
										
											1999-06-12 09:03:40 +08:00
										 |  |  |             } | 
					
						
							|  |  |  |             while (r1 && r2); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-09-10 22:03:21 +08:00
										 |  |  |             /* io2 to io1 */ | 
					
						
							|  |  |  |             { | 
					
						
							|  |  |  |                 size_t num; | 
					
						
							|  |  |  |                 int r; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-09-10 22:03:21 +08:00
										 |  |  |                 r1 = BIO_ctrl_pending(io2); | 
					
						
							|  |  |  |                 r2 = BIO_ctrl_get_read_request(io1); | 
					
						
							|  |  |  |                 /*
 | 
					
						
							|  |  |  |                  * here we could use ..._get_write_guarantee instead of | 
					
						
							|  |  |  |                  * ..._get_read_request, but by using the latter we test | 
					
						
							|  |  |  |                  * restartability of the SSL implementation more thoroughly | 
					
						
							|  |  |  |                  */ | 
					
						
							| 
									
										
										
										
											1999-06-12 09:03:40 +08:00
										 |  |  |                 num = r1; | 
					
						
							|  |  |  |                 if (r2 < num) | 
					
						
							|  |  |  |                     num = r2; | 
					
						
							|  |  |  |                 if (num) { | 
					
						
							| 
									
										
										
										
											1999-09-10 22:03:21 +08:00
										 |  |  |                     char *dataptr; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-06-12 09:03:40 +08:00
										 |  |  |                     if (INT_MAX < num) | 
					
						
							|  |  |  |                         num = INT_MAX; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-09-10 22:03:21 +08:00
										 |  |  |                     if (num > 1) | 
					
						
							| 
									
										
										
										
											1999-09-11 00:41:01 +08:00
										 |  |  |                         --num;  /* test restartability even more thoroughly */ | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-03-14 17:48:54 +08:00
										 |  |  |                     r = BIO_nwrite0(io1, &dataptr); | 
					
						
							| 
									
										
										
										
											1999-09-10 22:03:21 +08:00
										 |  |  |                     assert(r > 0); | 
					
						
							| 
									
										
										
										
											2002-04-29 18:29:38 +08:00
										 |  |  |                     if (r < (int)num) | 
					
						
							| 
									
										
										
										
											2002-03-14 17:48:54 +08:00
										 |  |  |                         num = r; | 
					
						
							| 
									
										
										
										
											1999-09-10 22:03:21 +08:00
										 |  |  |                     r = BIO_read(io2, dataptr, (int)num); | 
					
						
							| 
									
										
										
										
											1999-06-12 09:03:40 +08:00
										 |  |  |                     if (r != (int)num) { /* can't happen */ | 
					
						
							|  |  |  |                         fprintf(stderr, "ERROR: BIO_read could not read " | 
					
						
							|  |  |  |                                 "BIO_ctrl_pending() bytes"); | 
					
						
							|  |  |  |                         goto err; | 
					
						
							|  |  |  |                     } | 
					
						
							|  |  |  |                     progress = 1; | 
					
						
							| 
									
										
										
										
											2002-03-14 17:48:54 +08:00
										 |  |  |                     r = BIO_nwrite(io1, &dataptr, (int)num); | 
					
						
							|  |  |  |                     if (r != (int)num) { /* can't happen */ | 
					
						
							|  |  |  |                         fprintf(stderr, "ERROR: BIO_nwrite() did not accept " | 
					
						
							|  |  |  |                                 "BIO_nwrite0() bytes"); | 
					
						
							|  |  |  |                         goto err; | 
					
						
							|  |  |  |                     } | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-06-12 09:03:40 +08:00
										 |  |  |                     if (debug) | 
					
						
							| 
									
										
										
										
											1999-09-10 22:03:21 +08:00
										 |  |  |                         printf((io2 == client_io) ? | 
					
						
							|  |  |  |                                "C->S relaying: %d bytes\n" : | 
					
						
							|  |  |  |                                "S->C relaying: %d bytes\n", (int)num); | 
					
						
							| 
									
										
										
										
											1999-06-12 09:03:40 +08:00
										 |  |  |                 } | 
					
						
							| 
									
										
										
										
											1999-09-10 22:03:21 +08:00
										 |  |  |             }                   /* no loop, BIO_ctrl_get_read_request now
 | 
					
						
							|  |  |  |                                  * returns 0 anyway */ | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-06-12 09:03:40 +08:00
										 |  |  |             if (!progress && !prev_progress) | 
					
						
							|  |  |  |                 if (cw_num > 0 || cr_num > 0 || sw_num > 0 || sr_num > 0) { | 
					
						
							|  |  |  |                     fprintf(stderr, "ERROR: got stuck\n"); | 
					
						
							| 
									
										
										
										
											1999-06-12 19:07:52 +08:00
										 |  |  |                     fprintf(stderr, " ERROR.\n"); | 
					
						
							| 
									
										
										
										
											1999-06-12 09:03:40 +08:00
										 |  |  |                     goto err; | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |             prev_progress = progress; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     while (cw_num > 0 || cr_num > 0 || sw_num > 0 || sr_num > 0); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-06-12 09:03:40 +08:00
										 |  |  |     if (verbose) | 
					
						
							| 
									
										
										
										
											2000-03-13 23:06:54 +08:00
										 |  |  |         print_details(c_ssl, "DONE via BIO pair: "); | 
					
						
							| 
									
										
										
										
											2013-11-14 07:20:22 +08:00
										 |  |  | #ifndef OPENSSL_NO_NEXTPROTONEG
 | 
					
						
							| 
									
										
										
										
											2017-07-13 05:37:01 +08:00
										 |  |  |     if (verify_npn(c_ssl, s_ssl) < 0) | 
					
						
							| 
									
										
										
										
											2010-09-06 00:35:10 +08:00
										 |  |  |         goto end; | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2013-05-13 09:55:27 +08:00
										 |  |  |     if (verify_serverinfo() < 0) { | 
					
						
							| 
									
										
										
										
											2014-08-12 05:03:21 +08:00
										 |  |  |         fprintf(stderr, "Server info verify error\n"); | 
					
						
							| 
									
										
										
										
											2013-07-16 03:57:16 +08:00
										 |  |  |         goto err; | 
					
						
							| 
									
										
										
										
											2016-03-05 21:47:55 +08:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2017-07-13 05:37:01 +08:00
										 |  |  |     if (verify_alpn(c_ssl, s_ssl) < 0 | 
					
						
							|  |  |  |             || verify_servername(c_ssl, s_ssl) < 0) | 
					
						
							| 
									
										
										
										
											2016-03-05 21:47:55 +08:00
										 |  |  |         goto err; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-06-14 13:36:45 +08:00
										 |  |  |     if (custom_ext_error) { | 
					
						
							| 
									
										
										
										
											2014-08-12 05:03:21 +08:00
										 |  |  |         fprintf(stderr, "Custom extension error\n"); | 
					
						
							| 
									
										
										
										
											2013-06-14 13:36:45 +08:00
										 |  |  |         goto err; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-11 18:41:19 +08:00
										 |  |  | #ifndef OPENSSL_NO_NEXTPROTONEG
 | 
					
						
							| 
									
										
										
										
											2000-03-13 23:06:54 +08:00
										 |  |  |  end: | 
					
						
							| 
									
										
										
										
											2016-04-11 18:41:19 +08:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2017-07-13 05:37:01 +08:00
										 |  |  |     ret = EXIT_SUCCESS; | 
					
						
							| 
									
										
										
										
											1999-06-12 09:03:40 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |  err: | 
					
						
							|  |  |  |     ERR_print_errors(bio_err); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-03-25 23:31:18 +08:00
										 |  |  |     BIO_free(server); | 
					
						
							|  |  |  |     BIO_free(server_io); | 
					
						
							|  |  |  |     BIO_free(client); | 
					
						
							|  |  |  |     BIO_free(client_io); | 
					
						
							|  |  |  |     BIO_free(s_ssl_bio); | 
					
						
							|  |  |  |     BIO_free(c_ssl_bio); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-07 00:56:41 +08:00
										 |  |  |     if (should_negotiate != NULL && strcmp(should_negotiate, "fail-client") == 0) | 
					
						
							| 
									
										
										
										
											2017-07-13 05:37:01 +08:00
										 |  |  |         ret = (err_in_client != 0) ? EXIT_SUCCESS : EXIT_FAILURE; | 
					
						
							| 
									
										
										
										
											2015-12-07 00:56:41 +08:00
										 |  |  |     else if (should_negotiate != NULL && strcmp(should_negotiate, "fail-server") == 0) | 
					
						
							| 
									
										
										
										
											2017-07-13 05:37:01 +08:00
										 |  |  |         ret = (err_in_server != 0) ? EXIT_SUCCESS : EXIT_FAILURE; | 
					
						
							| 
									
										
										
										
											2015-12-07 00:56:41 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-06-12 09:03:40 +08:00
										 |  |  |     return ret; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | #define W_READ  1
 | 
					
						
							|  |  |  | #define W_WRITE 2
 | 
					
						
							|  |  |  | #define C_DONE  1
 | 
					
						
							|  |  |  | #define S_DONE  2
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-04-20 05:31:43 +08:00
										 |  |  | int doit(SSL *s_ssl, SSL *c_ssl, long count) | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2014-06-12 02:40:51 +08:00
										 |  |  |     char *cbuf = NULL, *sbuf = NULL; | 
					
						
							|  |  |  |     long bufsiz; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  |     long cw_num = count, cr_num = count; | 
					
						
							|  |  |  |     long sw_num = count, sr_num = count; | 
					
						
							| 
									
										
										
										
											2017-07-13 05:37:01 +08:00
										 |  |  |     int ret = EXIT_FAILURE; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |     BIO *c_to_s = NULL; | 
					
						
							|  |  |  |     BIO *s_to_c = NULL; | 
					
						
							|  |  |  |     BIO *c_bio = NULL; | 
					
						
							|  |  |  |     BIO *s_bio = NULL; | 
					
						
							|  |  |  |     int c_r, c_w, s_r, s_w; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  |     int i, j; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |     int done = 0; | 
					
						
							|  |  |  |     int c_write, s_write; | 
					
						
							|  |  |  |     int do_server = 0, do_client = 0; | 
					
						
							| 
									
										
										
										
											2014-06-12 02:40:51 +08:00
										 |  |  |     int max_frag = 5 * 1024; | 
					
						
							| 
									
										
										
										
											2015-12-07 00:56:41 +08:00
										 |  |  |     int err_in_client = 0; | 
					
						
							|  |  |  |     int err_in_server = 0; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-12 02:40:51 +08:00
										 |  |  |     bufsiz = count > 40 * 1024 ? 40 * 1024 : count; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-08-26 01:25:58 +08:00
										 |  |  |     if ((cbuf = OPENSSL_zalloc(bufsiz)) == NULL) | 
					
						
							| 
									
										
										
										
											2014-06-12 02:40:51 +08:00
										 |  |  |         goto err; | 
					
						
							| 
									
										
										
										
											2015-08-26 01:25:58 +08:00
										 |  |  |     if ((sbuf = OPENSSL_zalloc(bufsiz)) == NULL) | 
					
						
							| 
									
										
										
										
											2014-06-12 02:40:51 +08:00
										 |  |  |         goto err; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |     c_to_s = BIO_new(BIO_s_mem()); | 
					
						
							|  |  |  |     s_to_c = BIO_new(BIO_s_mem()); | 
					
						
							|  |  |  |     if ((s_to_c == NULL) || (c_to_s == NULL)) { | 
					
						
							|  |  |  |         ERR_print_errors(bio_err); | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |     c_bio = BIO_new(BIO_f_ssl()); | 
					
						
							|  |  |  |     s_bio = BIO_new(BIO_f_ssl()); | 
					
						
							|  |  |  |     if ((c_bio == NULL) || (s_bio == NULL)) { | 
					
						
							|  |  |  |         ERR_print_errors(bio_err); | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |     SSL_set_connect_state(c_ssl); | 
					
						
							|  |  |  |     SSL_set_bio(c_ssl, s_to_c, c_to_s); | 
					
						
							| 
									
										
										
										
											2014-06-12 02:40:51 +08:00
										 |  |  |     SSL_set_max_send_fragment(c_ssl, max_frag); | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  |     BIO_set_ssl(c_bio, c_ssl, BIO_NOCLOSE); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-16 00:31:26 +08:00
										 |  |  |     /*
 | 
					
						
							|  |  |  |      * We've just given our ref to these BIOs to c_ssl. We need another one to | 
					
						
							|  |  |  |      * give to s_ssl | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     if (!BIO_up_ref(c_to_s)) { | 
					
						
							|  |  |  |         /* c_to_s and s_to_c will get freed when we free c_ssl */ | 
					
						
							|  |  |  |         c_to_s = NULL; | 
					
						
							|  |  |  |         s_to_c = NULL; | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (!BIO_up_ref(s_to_c)) { | 
					
						
							|  |  |  |         /* s_to_c will get freed when we free c_ssl */ | 
					
						
							|  |  |  |         s_to_c = NULL; | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |     SSL_set_accept_state(s_ssl); | 
					
						
							|  |  |  |     SSL_set_bio(s_ssl, c_to_s, s_to_c); | 
					
						
							| 
									
										
										
										
											2016-11-16 00:31:26 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* We've used up all our refs to these now */ | 
					
						
							|  |  |  |     c_to_s = NULL; | 
					
						
							|  |  |  |     s_to_c = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-12 02:40:51 +08:00
										 |  |  |     SSL_set_max_send_fragment(s_ssl, max_frag); | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  |     BIO_set_ssl(s_bio, s_ssl, BIO_NOCLOSE); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |     c_r = 0; | 
					
						
							|  |  |  |     s_r = 1; | 
					
						
							|  |  |  |     c_w = 1; | 
					
						
							|  |  |  |     s_w = 0; | 
					
						
							|  |  |  |     c_write = 1, s_write = 0; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |     /* We can always do writes */ | 
					
						
							|  |  |  |     for (;;) { | 
					
						
							|  |  |  |         do_server = 0; | 
					
						
							|  |  |  |         do_client = 0; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |         i = (int)BIO_pending(s_bio); | 
					
						
							|  |  |  |         if ((i && s_r) || s_w) | 
					
						
							|  |  |  |             do_server = 1; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |         i = (int)BIO_pending(c_bio); | 
					
						
							|  |  |  |         if ((i && c_r) || c_w) | 
					
						
							|  |  |  |             do_client = 1; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  |         if (do_server && debug) { | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |             if (SSL_in_init(s_ssl)) | 
					
						
							|  |  |  |                 printf("server waiting in SSL_accept - %s\n", | 
					
						
							|  |  |  |                        SSL_state_string_long(s_ssl)); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  |         if (do_client && debug) { | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |             if (SSL_in_init(c_ssl)) | 
					
						
							|  |  |  |                 printf("client waiting in SSL_connect - %s\n", | 
					
						
							|  |  |  |                        SSL_state_string_long(c_ssl)); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |         if (!do_client && !do_server) { | 
					
						
							|  |  |  |             fprintf(stdout, "ERROR IN STARTUP\n"); | 
					
						
							|  |  |  |             ERR_print_errors(bio_err); | 
					
						
							| 
									
										
										
										
											2015-02-05 18:19:55 +08:00
										 |  |  |             goto err; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |         } | 
					
						
							|  |  |  |         if (do_client && !(done & C_DONE)) { | 
					
						
							|  |  |  |             if (c_write) { | 
					
						
							| 
									
										
										
										
											2014-06-12 02:40:51 +08:00
										 |  |  |                 j = (cw_num > bufsiz) ? (int)bufsiz : (int)cw_num; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  |                 i = BIO_write(c_bio, cbuf, j); | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |                 if (i < 0) { | 
					
						
							|  |  |  |                     c_r = 0; | 
					
						
							|  |  |  |                     c_w = 0; | 
					
						
							|  |  |  |                     if (BIO_should_retry(c_bio)) { | 
					
						
							|  |  |  |                         if (BIO_should_read(c_bio)) | 
					
						
							|  |  |  |                             c_r = 1; | 
					
						
							|  |  |  |                         if (BIO_should_write(c_bio)) | 
					
						
							|  |  |  |                             c_w = 1; | 
					
						
							|  |  |  |                     } else { | 
					
						
							|  |  |  |                         fprintf(stderr, "ERROR in CLIENT\n"); | 
					
						
							| 
									
										
										
										
											2015-12-07 00:56:41 +08:00
										 |  |  |                         err_in_client = 1; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |                         ERR_print_errors(bio_err); | 
					
						
							|  |  |  |                         goto err; | 
					
						
							|  |  |  |                     } | 
					
						
							|  |  |  |                 } else if (i == 0) { | 
					
						
							|  |  |  |                     fprintf(stderr, "SSL CLIENT STARTUP FAILED\n"); | 
					
						
							|  |  |  |                     goto err; | 
					
						
							|  |  |  |                 } else { | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  |                     if (debug) | 
					
						
							|  |  |  |                         printf("client wrote %d\n", i); | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |                     /* ok */ | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  |                     s_r = 1; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |                     c_write = 0; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  |                     cw_num -= i; | 
					
						
							| 
									
										
										
										
											2014-06-12 02:40:51 +08:00
										 |  |  |                     if (max_frag > 1029) | 
					
						
							|  |  |  |                         SSL_set_max_send_fragment(c_ssl, max_frag -= 5); | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |                 } | 
					
						
							|  |  |  |             } else { | 
					
						
							| 
									
										
										
										
											2014-06-12 02:40:51 +08:00
										 |  |  |                 i = BIO_read(c_bio, cbuf, bufsiz); | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |                 if (i < 0) { | 
					
						
							|  |  |  |                     c_r = 0; | 
					
						
							|  |  |  |                     c_w = 0; | 
					
						
							|  |  |  |                     if (BIO_should_retry(c_bio)) { | 
					
						
							|  |  |  |                         if (BIO_should_read(c_bio)) | 
					
						
							|  |  |  |                             c_r = 1; | 
					
						
							|  |  |  |                         if (BIO_should_write(c_bio)) | 
					
						
							|  |  |  |                             c_w = 1; | 
					
						
							|  |  |  |                     } else { | 
					
						
							|  |  |  |                         fprintf(stderr, "ERROR in CLIENT\n"); | 
					
						
							| 
									
										
										
										
											2015-12-07 00:56:41 +08:00
										 |  |  |                         err_in_client = 1; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |                         ERR_print_errors(bio_err); | 
					
						
							|  |  |  |                         goto err; | 
					
						
							|  |  |  |                     } | 
					
						
							|  |  |  |                 } else if (i == 0) { | 
					
						
							|  |  |  |                     fprintf(stderr, "SSL CLIENT STARTUP FAILED\n"); | 
					
						
							|  |  |  |                     goto err; | 
					
						
							|  |  |  |                 } else { | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  |                     if (debug) | 
					
						
							|  |  |  |                         printf("client read %d\n", i); | 
					
						
							|  |  |  |                     cr_num -= i; | 
					
						
							|  |  |  |                     if (sw_num > 0) { | 
					
						
							|  |  |  |                         s_write = 1; | 
					
						
							|  |  |  |                         s_w = 1; | 
					
						
							|  |  |  |                     } | 
					
						
							|  |  |  |                     if (cr_num <= 0) { | 
					
						
							|  |  |  |                         s_write = 1; | 
					
						
							|  |  |  |                         s_w = 1; | 
					
						
							|  |  |  |                         done = S_DONE | C_DONE; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |                     } | 
					
						
							|  |  |  |                 } | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  |             } | 
					
						
							| 
									
										
										
										
											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 (do_server && !(done & S_DONE)) { | 
					
						
							|  |  |  |             if (!s_write) { | 
					
						
							| 
									
										
										
										
											2014-06-12 02:40:51 +08:00
										 |  |  |                 i = BIO_read(s_bio, sbuf, bufsiz); | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |                 if (i < 0) { | 
					
						
							|  |  |  |                     s_r = 0; | 
					
						
							|  |  |  |                     s_w = 0; | 
					
						
							|  |  |  |                     if (BIO_should_retry(s_bio)) { | 
					
						
							|  |  |  |                         if (BIO_should_read(s_bio)) | 
					
						
							|  |  |  |                             s_r = 1; | 
					
						
							|  |  |  |                         if (BIO_should_write(s_bio)) | 
					
						
							|  |  |  |                             s_w = 1; | 
					
						
							|  |  |  |                     } else { | 
					
						
							|  |  |  |                         fprintf(stderr, "ERROR in SERVER\n"); | 
					
						
							| 
									
										
										
										
											2015-12-07 00:56:41 +08:00
										 |  |  |                         err_in_server = 1; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |                         ERR_print_errors(bio_err); | 
					
						
							|  |  |  |                         goto err; | 
					
						
							|  |  |  |                     } | 
					
						
							|  |  |  |                 } else if (i == 0) { | 
					
						
							|  |  |  |                     ERR_print_errors(bio_err); | 
					
						
							|  |  |  |                     fprintf(stderr, | 
					
						
							|  |  |  |                             "SSL SERVER STARTUP FAILED in SSL_read\n"); | 
					
						
							|  |  |  |                     goto err; | 
					
						
							|  |  |  |                 } else { | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  |                     if (debug) | 
					
						
							|  |  |  |                         printf("server read %d\n", i); | 
					
						
							|  |  |  |                     sr_num -= i; | 
					
						
							|  |  |  |                     if (cw_num > 0) { | 
					
						
							|  |  |  |                         c_write = 1; | 
					
						
							|  |  |  |                         c_w = 1; | 
					
						
							|  |  |  |                     } | 
					
						
							|  |  |  |                     if (sr_num <= 0) { | 
					
						
							|  |  |  |                         s_write = 1; | 
					
						
							|  |  |  |                         s_w = 1; | 
					
						
							|  |  |  |                         c_write = 0; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |                     } | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  |                 } | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |             } else { | 
					
						
							| 
									
										
										
										
											2014-06-12 02:40:51 +08:00
										 |  |  |                 j = (sw_num > bufsiz) ? (int)bufsiz : (int)sw_num; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  |                 i = BIO_write(s_bio, sbuf, j); | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |                 if (i < 0) { | 
					
						
							|  |  |  |                     s_r = 0; | 
					
						
							|  |  |  |                     s_w = 0; | 
					
						
							|  |  |  |                     if (BIO_should_retry(s_bio)) { | 
					
						
							|  |  |  |                         if (BIO_should_read(s_bio)) | 
					
						
							|  |  |  |                             s_r = 1; | 
					
						
							|  |  |  |                         if (BIO_should_write(s_bio)) | 
					
						
							|  |  |  |                             s_w = 1; | 
					
						
							|  |  |  |                     } else { | 
					
						
							|  |  |  |                         fprintf(stderr, "ERROR in SERVER\n"); | 
					
						
							| 
									
										
										
										
											2015-12-07 00:56:41 +08:00
										 |  |  |                         err_in_server = 1; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |                         ERR_print_errors(bio_err); | 
					
						
							|  |  |  |                         goto err; | 
					
						
							|  |  |  |                     } | 
					
						
							|  |  |  |                 } else if (i == 0) { | 
					
						
							|  |  |  |                     ERR_print_errors(bio_err); | 
					
						
							|  |  |  |                     fprintf(stderr, | 
					
						
							|  |  |  |                             "SSL SERVER STARTUP FAILED in SSL_write\n"); | 
					
						
							|  |  |  |                     goto err; | 
					
						
							|  |  |  |                 } else { | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  |                     if (debug) | 
					
						
							|  |  |  |                         printf("server wrote %d\n", i); | 
					
						
							|  |  |  |                     sw_num -= i; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |                     s_write = 0; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  |                     c_r = 1; | 
					
						
							|  |  |  |                     if (sw_num <= 0) | 
					
						
							|  |  |  |                         done |= S_DONE; | 
					
						
							| 
									
										
										
										
											2014-06-12 02:40:51 +08:00
										 |  |  |                     if (max_frag > 1029) | 
					
						
							|  |  |  |                         SSL_set_max_send_fragment(s_ssl, max_frag -= 5); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |                 } | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											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 ((done & S_DONE) && (done & C_DONE)) | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  |     if (verbose) | 
					
						
							| 
									
										
										
										
											2000-03-13 23:06:54 +08:00
										 |  |  |         print_details(c_ssl, "DONE: "); | 
					
						
							| 
									
										
										
										
											2013-11-14 07:20:22 +08:00
										 |  |  | #ifndef OPENSSL_NO_NEXTPROTONEG
 | 
					
						
							| 
									
										
										
										
											2017-07-13 05:37:01 +08:00
										 |  |  |     if (verify_npn(c_ssl, s_ssl) < 0) | 
					
						
							| 
									
										
										
										
											2010-09-06 00:35:10 +08:00
										 |  |  |         goto err; | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2013-05-13 09:55:27 +08:00
										 |  |  |     if (verify_serverinfo() < 0) { | 
					
						
							| 
									
										
										
										
											2014-08-12 05:03:21 +08:00
										 |  |  |         fprintf(stderr, "Server info verify error\n"); | 
					
						
							| 
									
										
										
										
											2013-05-13 09:55:27 +08:00
										 |  |  |         goto err; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2013-06-14 13:36:45 +08:00
										 |  |  |     if (custom_ext_error) { | 
					
						
							| 
									
										
										
										
											2014-08-12 05:03:21 +08:00
										 |  |  |         fprintf(stderr, "Custom extension error\n"); | 
					
						
							| 
									
										
										
										
											2013-06-14 13:36:45 +08:00
										 |  |  |         goto err; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2017-07-13 05:37:01 +08:00
										 |  |  |     ret = EXIT_SUCCESS; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |  err: | 
					
						
							| 
									
										
										
										
											2015-03-25 23:31:18 +08:00
										 |  |  |     BIO_free(c_to_s); | 
					
						
							|  |  |  |     BIO_free(s_to_c); | 
					
						
							|  |  |  |     BIO_free_all(c_bio); | 
					
						
							|  |  |  |     BIO_free_all(s_bio); | 
					
						
							| 
									
										
										
										
											2015-05-01 22:02:07 +08:00
										 |  |  |     OPENSSL_free(cbuf); | 
					
						
							|  |  |  |     OPENSSL_free(sbuf); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-07 00:56:41 +08:00
										 |  |  |     if (should_negotiate != NULL && strcmp(should_negotiate, "fail-client") == 0) | 
					
						
							| 
									
										
										
										
											2017-07-13 05:37:01 +08:00
										 |  |  |         ret = (err_in_client != 0) ? EXIT_SUCCESS : EXIT_FAILURE; | 
					
						
							| 
									
										
										
										
											2015-12-07 00:56:41 +08:00
										 |  |  |     else if (should_negotiate != NULL && strcmp(should_negotiate, "fail-server") == 0) | 
					
						
							| 
									
										
										
										
											2017-07-13 05:37:01 +08:00
										 |  |  |         ret = (err_in_server != 0) ? EXIT_SUCCESS : EXIT_FAILURE; | 
					
						
							| 
									
										
										
										
											2015-12-07 00:56:41 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-13 05:37:01 +08:00
										 |  |  |     return ret; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-13 06:29:26 +08:00
										 |  |  | static int verify_callback(int ok, X509_STORE_CTX *ctx) | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     char *s, buf[256]; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-15 11:59:26 +08:00
										 |  |  |     s = X509_NAME_oneline(X509_get_subject_name(X509_STORE_CTX_get_current_cert(ctx)), | 
					
						
							| 
									
										
										
										
											2017-12-08 02:39:34 +08:00
										 |  |  |                           buf, sizeof(buf)); | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |     if (s != NULL) { | 
					
						
							|  |  |  |         if (ok) | 
					
						
							| 
									
										
										
										
											2016-04-15 11:59:26 +08:00
										 |  |  |             printf("depth=%d %s\n", X509_STORE_CTX_get_error_depth(ctx), buf); | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |         else { | 
					
						
							|  |  |  |             fprintf(stderr, "depth=%d error=%d %s\n", | 
					
						
							| 
									
										
										
										
											2016-04-15 11:59:26 +08:00
										 |  |  |                     X509_STORE_CTX_get_error_depth(ctx), | 
					
						
							|  |  |  |                     X509_STORE_CTX_get_error(ctx), buf); | 
					
						
							| 
									
										
										
										
											2005-04-10 00:07:12 +08:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											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 (ok == 0) { | 
					
						
							| 
									
										
										
										
											2016-04-15 11:59:26 +08:00
										 |  |  |         int i = X509_STORE_CTX_get_error(ctx); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         switch (i) { | 
					
						
							| 
									
										
										
										
											2015-04-22 03:52:51 +08:00
										 |  |  |         default: | 
					
						
							|  |  |  |             fprintf(stderr, "Error string: %s\n", | 
					
						
							| 
									
										
										
										
											2016-04-15 11:59:26 +08:00
										 |  |  |                     X509_verify_cert_error_string(i)); | 
					
						
							| 
									
										
										
										
											2015-04-22 03:52:51 +08:00
										 |  |  |             break; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |         case X509_V_ERR_CERT_NOT_YET_VALID: | 
					
						
							|  |  |  |         case X509_V_ERR_CERT_HAS_EXPIRED: | 
					
						
							|  |  |  |         case X509_V_ERR_DEPTH_ZERO_SELF_SIGNED_CERT: | 
					
						
							|  |  |  |             ok = 1; | 
					
						
							| 
									
										
										
										
											2016-04-15 11:59:26 +08:00
										 |  |  |             break; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-13 05:37:01 +08:00
										 |  |  |     return ok; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-13 06:29:26 +08:00
										 |  |  | static int app_verify_callback(X509_STORE_CTX *ctx, void *arg) | 
					
						
							| 
									
										
										
										
											2002-02-28 18:52:56 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     int ok = 1; | 
					
						
							| 
									
										
										
										
											2005-01-18 01:06:58 +08:00
										 |  |  |     struct app_verify_arg *cb_arg = arg; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-01-18 01:06:58 +08:00
										 |  |  |     if (cb_arg->app_verify) { | 
					
						
							|  |  |  |         char *s = NULL, buf[256]; | 
					
						
							| 
									
										
										
										
											2016-04-15 11:59:26 +08:00
										 |  |  |         X509 *c = X509_STORE_CTX_get0_cert(ctx); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-04-22 03:52:51 +08:00
										 |  |  |         printf("In app_verify_callback, allowing cert. "); | 
					
						
							|  |  |  |         printf("Arg is: %s\n", cb_arg->string); | 
					
						
							|  |  |  |         printf("Finished printing do we have a context? 0x%p a cert? 0x%p\n", | 
					
						
							| 
									
										
										
										
											2016-04-15 11:59:26 +08:00
										 |  |  |                 (void *)ctx, (void *)c); | 
					
						
							|  |  |  |         if (c) | 
					
						
							|  |  |  |             s = X509_NAME_oneline(X509_get_subject_name(c), buf, 256); | 
					
						
							| 
									
										
										
										
											2005-01-18 01:06:58 +08:00
										 |  |  |         if (s != NULL) { | 
					
						
							| 
									
										
										
										
											2016-04-15 11:59:26 +08:00
										 |  |  |             printf("cert depth=%d %s\n", | 
					
						
							|  |  |  |                     X509_STORE_CTX_get_error_depth(ctx), buf); | 
					
						
							| 
									
										
										
										
											2005-01-18 01:06:58 +08:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2017-07-13 05:37:01 +08:00
										 |  |  |         return 1; | 
					
						
							| 
									
										
										
										
											2005-01-18 01:06:58 +08:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-01-18 01:06:58 +08:00
										 |  |  |     ok = X509_verify_cert(ctx); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-13 05:37:01 +08:00
										 |  |  |     return ok; | 
					
						
							| 
									
										
										
										
											2002-02-28 18:52:56 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-03-11 07:06:27 +08:00
										 |  |  | #ifndef OPENSSL_NO_PSK
 | 
					
						
							|  |  |  | /* convert the PSK key (psk_key) in ascii to binary (psk) */ | 
					
						
							|  |  |  | static int psk_key2bn(const char *pskkey, unsigned char *psk, | 
					
						
							|  |  |  |                       unsigned int max_psk_len) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     int ret; | 
					
						
							|  |  |  |     BIGNUM *bn = NULL; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-03-11 07:06:27 +08:00
										 |  |  |     ret = BN_hex2bn(&bn, pskkey); | 
					
						
							|  |  |  |     if (!ret) { | 
					
						
							|  |  |  |         BIO_printf(bio_err, "Could not convert PSK key '%s' to BIGNUM\n", | 
					
						
							|  |  |  |                    pskkey); | 
					
						
							| 
									
										
										
										
											2015-05-01 09:37:06 +08:00
										 |  |  |         BN_free(bn); | 
					
						
							| 
									
										
										
										
											2006-03-11 07:06:27 +08:00
										 |  |  |         return 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (BN_num_bytes(bn) > (int)max_psk_len) { | 
					
						
							|  |  |  |         BIO_printf(bio_err, | 
					
						
							|  |  |  |                    "psk buffer of callback is too small (%d) for key (%d)\n", | 
					
						
							|  |  |  |                    max_psk_len, BN_num_bytes(bn)); | 
					
						
							|  |  |  |         BN_free(bn); | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     ret = BN_bn2bin(bn, psk); | 
					
						
							|  |  |  |     BN_free(bn); | 
					
						
							|  |  |  |     return ret; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-03-11 07:06:27 +08:00
										 |  |  | static unsigned int psk_client_callback(SSL *ssl, const char *hint, | 
					
						
							|  |  |  |                                         char *identity, | 
					
						
							|  |  |  |                                         unsigned int max_identity_len, | 
					
						
							|  |  |  |                                         unsigned char *psk, | 
					
						
							|  |  |  |                                         unsigned int max_psk_len) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     int ret; | 
					
						
							|  |  |  |     unsigned int psk_len = 0; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-03-13 06:16:57 +08:00
										 |  |  |     ret = BIO_snprintf(identity, max_identity_len, "Client_identity"); | 
					
						
							| 
									
										
										
										
											2006-03-11 07:06:27 +08:00
										 |  |  |     if (ret < 0) | 
					
						
							|  |  |  |         goto out_err; | 
					
						
							|  |  |  |     if (debug) | 
					
						
							|  |  |  |         fprintf(stderr, "client: created identity '%s' len=%d\n", identity, | 
					
						
							|  |  |  |                 ret); | 
					
						
							|  |  |  |     ret = psk_key2bn(psk_key, psk, max_psk_len); | 
					
						
							|  |  |  |     if (ret < 0) | 
					
						
							|  |  |  |         goto out_err; | 
					
						
							|  |  |  |     psk_len = ret; | 
					
						
							|  |  |  |  out_err: | 
					
						
							|  |  |  |     return psk_len; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static unsigned int psk_server_callback(SSL *ssl, const char *identity, | 
					
						
							|  |  |  |                                         unsigned char *psk, | 
					
						
							|  |  |  |                                         unsigned int max_psk_len) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     unsigned int psk_len = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (strcmp(identity, "Client_identity") != 0) { | 
					
						
							|  |  |  |         BIO_printf(bio_err, "server: PSK error: client identity not found\n"); | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     psk_len = psk_key2bn(psk_key, psk, max_psk_len); | 
					
						
							|  |  |  |     return psk_len; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #endif
 |