os/ossrv/ssl/tsrc/BC/libcrypto/topenssl/src/s_client.c
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 /* apps/s_client.c */
     2 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
     3  * All rights reserved.
     4  *
     5  * This package is an SSL implementation written
     6  * by Eric Young (eay@cryptsoft.com).
     7  * The implementation was written so as to conform with Netscapes SSL.
     8  * 
     9  * This library is free for commercial and non-commercial use as long as
    10  * the following conditions are aheared to.  The following conditions
    11  * apply to all code found in this distribution, be it the RC4, RSA,
    12  * lhash, DES, etc., code; not just the SSL code.  The SSL documentation
    13  * included with this distribution is covered by the same copyright terms
    14  * except that the holder is Tim Hudson (tjh@cryptsoft.com).
    15  * 
    16  * Copyright remains Eric Young's, and as such any Copyright notices in
    17  * the code are not to be removed.
    18  * If this package is used in a product, Eric Young should be given attribution
    19  * as the author of the parts of the library used.
    20  * This can be in the form of a textual message at program startup or
    21  * in documentation (online or textual) provided with the package.
    22  * 
    23  * Redistribution and use in source and binary forms, with or without
    24  * modification, are permitted provided that the following conditions
    25  * are met:
    26  * 1. Redistributions of source code must retain the copyright
    27  *    notice, this list of conditions and the following disclaimer.
    28  * 2. Redistributions in binary form must reproduce the above copyright
    29  *    notice, this list of conditions and the following disclaimer in the
    30  *    documentation and/or other materials provided with the distribution.
    31  * 3. All advertising materials mentioning features or use of this software
    32  *    must display the following acknowledgement:
    33  *    "This product includes cryptographic software written by
    34  *     Eric Young (eay@cryptsoft.com)"
    35  *    The word 'cryptographic' can be left out if the rouines from the library
    36  *    being used are not cryptographic related :-).
    37  * 4. If you include any Windows specific code (or a derivative thereof) from 
    38  *    the apps directory (application code) you must include an acknowledgement:
    39  *    "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
    40  * 
    41  * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
    42  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
    43  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    44  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
    45  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
    46  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
    47  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
    48  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
    49  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
    50  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
    51  * SUCH DAMAGE.
    52  * 
    53  * The licence and distribution terms for any publically available version or
    54  * derivative of this code cannot be changed.  i.e. this code cannot simply be
    55  * copied and put under another distribution licence
    56  * [including the GNU Public Licence.]
    57  */
    58 /* ====================================================================
    59  * Copyright (c) 1998-2001 The OpenSSL Project.  All rights reserved.
    60  *
    61  * Redistribution and use in source and binary forms, with or without
    62  * modification, are permitted provided that the following conditions
    63  * are met:
    64  *
    65  * 1. Redistributions of source code must retain the above copyright
    66  *    notice, this list of conditions and the following disclaimer. 
    67  *
    68  * 2. Redistributions in binary form must reproduce the above copyright
    69  *    notice, this list of conditions and the following disclaimer in
    70  *    the documentation and/or other materials provided with the
    71  *    distribution.
    72  *
    73  * 3. All advertising materials mentioning features or use of this
    74  *    software must display the following acknowledgment:
    75  *    "This product includes software developed by the OpenSSL Project
    76  *    for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
    77  *
    78  * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
    79  *    endorse or promote products derived from this software without
    80  *    prior written permission. For written permission, please contact
    81  *    openssl-core@openssl.org.
    82  *
    83  * 5. Products derived from this software may not be called "OpenSSL"
    84  *    nor may "OpenSSL" appear in their names without prior written
    85  *    permission of the OpenSSL Project.
    86  *
    87  * 6. Redistributions of any form whatsoever must retain the following
    88  *    acknowledgment:
    89  *    "This product includes software developed by the OpenSSL Project
    90  *    for use in the OpenSSL Toolkit (http://www.openssl.org/)"
    91  *
    92  * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
    93  * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
    94  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
    95  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE OpenSSL PROJECT OR
    96  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
    97  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
    98  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
    99  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
   100  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
   101  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
   102  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
   103  * OF THE POSSIBILITY OF SUCH DAMAGE.
   104  * ====================================================================
   105  *
   106  * This product includes cryptographic software written by Eric Young
   107  * (eay@cryptsoft.com).  This product includes software written by Tim
   108  * Hudson (tjh@cryptsoft.com).
   109  *
   110  */
   111 
   112 #include <assert.h>
   113 #include <stdio.h>
   114 #include <stdlib.h>
   115 #include <string.h>
   116 #include <sys/select.h>
   117 #include <openssl/e_os2.h>
   118 #ifdef OPENSSL_NO_STDIO
   119 #define APPS_WIN16
   120 #endif
   121 
   122 /* With IPv6, it looks like Digital has mixed up the proper order of
   123    recursive header file inclusion, resulting in the compiler complaining
   124    that u_int isn't defined, but only if _POSIX_C_SOURCE is defined, which
   125    is needed to have fileno() declared correctly...  So let's define u_int */
   126 #if defined(OPENSSL_SYS_VMS_DECC) && !defined(__U_INT)
   127 #define __U_INT
   128 typedef unsigned int u_int;
   129 #endif
   130 
   131 #define USE_SOCKETS
   132 #include "apps.h"
   133 #include <openssl/x509.h>
   134 #include <openssl/ssl.h>
   135 #include <openssl/err.h>
   136 #include <openssl/pem.h>
   137 #include <openssl/rand.h>
   138 #include "s_apps.h"
   139 #include "timeouts.h"
   140 
   141 #ifdef OPENSSL_SYS_WINCE
   142 /* Windows CE incorrectly defines fileno as returning void*, so to avoid problems below... */
   143 #ifdef fileno
   144 #undef fileno
   145 #endif
   146 #define fileno(a) (int)_fileno(a)
   147 #endif
   148 
   149 
   150 #if (defined(OPENSSL_SYS_VMS) && __VMS_VER < 70000000)
   151 /* FIONBIO used as a switch to enable ioctl, and that isn't in VMS < 7.0 */
   152 #undef FIONBIO
   153 #endif
   154 
   155 #undef PROG
   156 #define PROG	s_client_main
   157 
   158 /*#define SSL_HOST_NAME	"www.netscape.com" */
   159 /*#define SSL_HOST_NAME	"193.118.187.102" */
   160 #define SSL_HOST_NAME	"localhost"
   161 
   162 /*#define TEST_CERT "client.pem" */ /* no default cert. */
   163 
   164 #undef BUFSIZZ
   165 #define BUFSIZZ 1024*8
   166 
   167 extern int verify_depth;
   168 extern int verify_error;
   169 
   170 #ifdef FIONBIO
   171 static int c_nbio=0;
   172 #endif
   173 static int c_Pause=0;
   174 static int c_debug=0;
   175 static int c_msg=0;
   176 static int c_showcerts=0;
   177 
   178 static void sc_usage(void);
   179 static void print_stuff(BIO *berr,SSL *con,int full);
   180 static BIO *bio_c_out=NULL;
   181 static int c_quiet=0;
   182 static int c_ign_eof=0;
   183 
   184 
   185 static void sc_usage(void)
   186 	{
   187 	BIO_printf(bio_err,"usage: s_client args\n");
   188 	BIO_printf(bio_err,"\n");
   189 	BIO_printf(bio_err," -host host     - use -connect instead\n");
   190 	BIO_printf(bio_err," -port port     - use -connect instead\n");
   191 	BIO_printf(bio_err," -connect host:port - who to connect to (default is %s:%s)\n",SSL_HOST_NAME,PORT_STR);
   192 
   193 	BIO_printf(bio_err," -verify arg   - turn on peer certificate verification\n");
   194 	BIO_printf(bio_err," -cert arg     - certificate file to use, PEM format assumed\n");
   195 	BIO_printf(bio_err," -certform arg - certificate format (PEM or DER) PEM default\n");
   196 	BIO_printf(bio_err," -key arg      - Private key file to use, in cert file if\n");
   197 	BIO_printf(bio_err,"                 not specified but cert file is.\n");
   198 	BIO_printf(bio_err," -keyform arg  - key format (PEM or DER) PEM default\n");
   199 	BIO_printf(bio_err," -pass arg     - private key file pass phrase source\n");
   200 	BIO_printf(bio_err," -CApath arg   - PEM format directory of CA's\n");
   201 	BIO_printf(bio_err," -CAfile arg   - PEM format file of CA's\n");
   202 	BIO_printf(bio_err," -reconnect    - Drop and re-make the connection with the same Session-ID\n");
   203 	BIO_printf(bio_err," -pause        - sleep(1) after each read(2) and write(2) system call\n");
   204 	BIO_printf(bio_err," -showcerts    - show all certificates in the chain\n");
   205 	BIO_printf(bio_err," -debug        - extra output\n");
   206 #ifdef WATT32
   207 	BIO_printf(bio_err," -wdebug       - WATT-32 tcp debugging\n");
   208 #endif
   209 	BIO_printf(bio_err," -msg          - Show protocol messages\n");
   210 	BIO_printf(bio_err," -nbio_test    - more ssl protocol testing\n");
   211 	BIO_printf(bio_err," -state        - print the 'ssl' states\n");
   212 #ifdef FIONBIO
   213 	BIO_printf(bio_err," -nbio         - Run with non-blocking IO\n");
   214 #endif
   215 	BIO_printf(bio_err," -crlf         - convert LF from terminal into CRLF\n");
   216 	BIO_printf(bio_err," -quiet        - no s_client output\n");
   217 	BIO_printf(bio_err," -ign_eof      - ignore input eof (default when -quiet)\n");
   218 	BIO_printf(bio_err," -ssl2         - just use SSLv2\n");
   219 	BIO_printf(bio_err," -ssl3         - just use SSLv3\n");
   220 	BIO_printf(bio_err," -tls1         - just use TLSv1\n");
   221 	BIO_printf(bio_err," -dtls1        - just use DTLSv1\n");    
   222 	BIO_printf(bio_err," -mtu          - set the MTU\n");
   223 	BIO_printf(bio_err," -no_tls1/-no_ssl3/-no_ssl2 - turn off that protocol\n");
   224 	BIO_printf(bio_err," -bugs         - Switch on all SSL implementation bug workarounds\n");
   225 	BIO_printf(bio_err," -serverpref   - Use server's cipher preferences (only SSLv2)\n");
   226 	BIO_printf(bio_err," -cipher       - preferred cipher to use, use the 'openssl ciphers'\n");
   227 	BIO_printf(bio_err,"                 command to see what is available\n");
   228 	BIO_printf(bio_err," -starttls prot - use the STARTTLS command before starting TLS\n");
   229 	BIO_printf(bio_err,"                 for those protocols that support it, where\n");
   230 	BIO_printf(bio_err,"                 'prot' defines which one to assume.  Currently,\n");
   231 	BIO_printf(bio_err,"                 only \"smtp\" and \"pop3\" are supported.\n");
   232 #ifndef OPENSSL_NO_ENGINE
   233 	BIO_printf(bio_err," -engine id    - Initialise and use the specified engine\n");
   234 #endif
   235 	BIO_printf(bio_err," -rand file%cfile%c...\n", LIST_SEPARATOR_CHAR, LIST_SEPARATOR_CHAR);
   236 
   237 	}
   238 
   239 int MAIN(int, char **);
   240 
   241 int MAIN(int argc, char **argv)
   242 	{
   243 	int off=0;
   244 	SSL *con=NULL,*con2=NULL;
   245 	X509_STORE *store = NULL;
   246 	int s,k,width,state=0;
   247 	char *cbuf=NULL,*sbuf=NULL,*mbuf=NULL;
   248 	int cbuf_len,cbuf_off;
   249 	int sbuf_len,sbuf_off;
   250 	fd_set readfds,writefds;
   251 	short port=PORT;
   252 	int full_log=1;
   253 	char *host=SSL_HOST_NAME;
   254 	char *cert_file=NULL,*key_file=NULL;
   255 	int cert_format = FORMAT_PEM, key_format = FORMAT_PEM;
   256 	char *passarg = NULL, *pass = NULL;
   257 	X509 *cert = NULL;
   258 	EVP_PKEY *key = NULL;
   259 	char *CApath=NULL,*CAfile=NULL,*cipher=NULL;
   260 	int reconnect=0,badop=0,verify=SSL_VERIFY_NONE,bugs=0;
   261 	int crlf=0;
   262 	int write_tty,read_tty,write_ssl,read_ssl,tty_on,ssl_pending;
   263 	SSL_CTX *ctx=NULL;
   264 	int ret=1,in_init=1,i,nbio_test=0;
   265 	int starttls_proto = 0;
   266 	int prexit = 0, vflags = 0;
   267 	SSL_METHOD *meth=NULL;
   268 #ifdef sock_type
   269 #undef sock_type
   270 #endif
   271 	int sock_type=SOCK_STREAM;
   272 	BIO *sbio;
   273 	char *inrand=NULL;
   274 #ifndef OPENSSL_NO_ENGINE
   275 	char *engine_id=NULL;
   276 	ENGINE *e=NULL;
   277 #endif
   278 #if defined(OPENSSL_SYS_WINDOWS) || defined(OPENSSL_SYS_MSDOS) || defined(OPENSSL_SYS_NETWARE)
   279 	struct timeval tv;
   280 #endif
   281 
   282 	struct sockaddr peer;
   283 	int peerlen = sizeof(peer);
   284 	int enable_timeouts = 0 ;
   285 	long mtu = 0;
   286 
   287 #if !defined(OPENSSL_NO_SSL2) && !defined(OPENSSL_NO_SSL3)
   288 	meth=SSLv23_client_method();
   289 #elif !defined(OPENSSL_NO_SSL3)
   290 	meth=SSLv3_client_method();
   291 #elif !defined(OPENSSL_NO_SSL2)
   292 	meth=SSLv2_client_method();
   293 #endif
   294 
   295 	apps_startup();
   296 	c_Pause=0;
   297 	c_quiet=0;
   298 	c_ign_eof=0;
   299 	c_debug=0;
   300 	c_msg=0;
   301 	c_showcerts=0;
   302 
   303 	if (bio_err == NULL)
   304 		bio_err=BIO_new_fp(stderr,BIO_NOCLOSE);
   305 
   306 	if (!load_config(bio_err, NULL))
   307 		goto end;
   308 
   309 	if (	((cbuf=OPENSSL_malloc(BUFSIZZ)) == NULL) ||
   310 		((sbuf=OPENSSL_malloc(BUFSIZZ)) == NULL) ||
   311 		((mbuf=OPENSSL_malloc(BUFSIZZ)) == NULL))
   312 		{
   313 		BIO_printf(bio_err,"out of memory\n");
   314 		goto end;
   315 		}
   316 
   317 	verify_depth=0;
   318 	verify_error=X509_V_OK;
   319 #ifdef FIONBIO
   320 	c_nbio=0;
   321 #endif
   322 
   323 	argc--;
   324 	argv++;
   325 	while (argc >= 1)
   326 		{
   327 		if	(strcmp(*argv,"-host") == 0)
   328 			{
   329 			if (--argc < 1) goto bad;
   330 			host= *(++argv);
   331 			}
   332 		else if	(strcmp(*argv,"-port") == 0)
   333 			{
   334 			if (--argc < 1) goto bad;
   335 			port=atoi(*(++argv));
   336 			if (port == 0) goto bad;
   337 			}
   338 		else if (strcmp(*argv,"-connect") == 0)
   339 			{
   340 			if (--argc < 1) goto bad;
   341 			if (!extract_host_port(*(++argv),&host,NULL,&port))
   342 				goto bad;
   343 			}
   344 		else if	(strcmp(*argv,"-verify") == 0)
   345 			{
   346 			verify=SSL_VERIFY_PEER;
   347 			if (--argc < 1) goto bad;
   348 			verify_depth=atoi(*(++argv));
   349 			BIO_printf(bio_err,"verify depth is %d\n",verify_depth);
   350 			}
   351 		else if	(strcmp(*argv,"-cert") == 0)
   352 			{
   353 			if (--argc < 1) goto bad;
   354 			cert_file= *(++argv);
   355 			}
   356 		else if	(strcmp(*argv,"-certform") == 0)
   357 			{
   358 			if (--argc < 1) goto bad;
   359 			cert_format = str2fmt(*(++argv));
   360 			}
   361 		else if	(strcmp(*argv,"-crl_check") == 0)
   362 			vflags |= X509_V_FLAG_CRL_CHECK;
   363 		else if	(strcmp(*argv,"-crl_check_all") == 0)
   364 			vflags |= X509_V_FLAG_CRL_CHECK|X509_V_FLAG_CRL_CHECK_ALL;
   365 		else if	(strcmp(*argv,"-prexit") == 0)
   366 			prexit=1;
   367 		else if	(strcmp(*argv,"-crlf") == 0)
   368 			crlf=1;
   369 		else if	(strcmp(*argv,"-quiet") == 0)
   370 			{
   371 			c_quiet=1;
   372 			c_ign_eof=1;
   373 			}
   374 		else if	(strcmp(*argv,"-ign_eof") == 0)
   375 			c_ign_eof=1;
   376 		else if	(strcmp(*argv,"-pause") == 0)
   377 			c_Pause=1;
   378 		else if	(strcmp(*argv,"-debug") == 0)
   379 			c_debug=1;
   380 #ifdef WATT32
   381 		else if (strcmp(*argv,"-wdebug") == 0)
   382 			dbug_init();
   383 #endif
   384 		else if	(strcmp(*argv,"-msg") == 0)
   385 			c_msg=1;
   386 		else if	(strcmp(*argv,"-showcerts") == 0)
   387 			c_showcerts=1;
   388 		else if	(strcmp(*argv,"-nbio_test") == 0)
   389 			nbio_test=1;
   390 		else if	(strcmp(*argv,"-state") == 0)
   391 			state=1;
   392 #ifndef OPENSSL_NO_SSL2
   393 		else if	(strcmp(*argv,"-ssl2") == 0)
   394 			meth=SSLv2_client_method();
   395 #endif
   396 #ifndef OPENSSL_NO_SSL3
   397 		else if	(strcmp(*argv,"-ssl3") == 0)
   398 			meth=SSLv3_client_method();
   399 #endif
   400 #ifndef OPENSSL_NO_TLS1
   401 		else if	(strcmp(*argv,"-tls1") == 0)
   402 			meth=TLSv1_client_method();
   403 #endif
   404 #ifndef OPENSSL_NO_DTLS1
   405 		else if	(strcmp(*argv,"-dtls1") == 0)
   406 			{
   407 			meth=DTLSv1_client_method();
   408 			sock_type=SOCK_DGRAM;
   409 			}
   410 		else if (strcmp(*argv,"-timeout") == 0)
   411 			enable_timeouts=1;
   412 		else if (strcmp(*argv,"-mtu") == 0)
   413 			{
   414 			if (--argc < 1) goto bad;
   415 			mtu = atol(*(++argv));
   416 			}
   417 #endif
   418 		else if (strcmp(*argv,"-bugs") == 0)
   419 			bugs=1;
   420 		else if	(strcmp(*argv,"-keyform") == 0)
   421 			{
   422 			if (--argc < 1) goto bad;
   423 			key_format = str2fmt(*(++argv));
   424 			}
   425 		else if	(strcmp(*argv,"-pass") == 0)
   426 			{
   427 			if (--argc < 1) goto bad;
   428 			passarg = *(++argv);
   429 			}
   430 		else if	(strcmp(*argv,"-key") == 0)
   431 			{
   432 			if (--argc < 1) goto bad;
   433 			key_file= *(++argv);
   434 			}
   435 		else if	(strcmp(*argv,"-reconnect") == 0)
   436 			{
   437 			reconnect=5;
   438 			}
   439 		else if	(strcmp(*argv,"-CApath") == 0)
   440 			{
   441 			if (--argc < 1) goto bad;
   442 			CApath= *(++argv);
   443 			}
   444 		else if	(strcmp(*argv,"-CAfile") == 0)
   445 			{
   446 			if (--argc < 1) goto bad;
   447 			CAfile= *(++argv);
   448 			}
   449 		else if (strcmp(*argv,"-no_tls1") == 0)
   450 			off|=SSL_OP_NO_TLSv1;
   451 		else if (strcmp(*argv,"-no_ssl3") == 0)
   452 			off|=SSL_OP_NO_SSLv3;
   453 		else if (strcmp(*argv,"-no_ssl2") == 0)
   454 			off|=SSL_OP_NO_SSLv2;
   455 		else if (strcmp(*argv,"-serverpref") == 0)
   456 			off|=SSL_OP_CIPHER_SERVER_PREFERENCE;
   457 		else if	(strcmp(*argv,"-cipher") == 0)
   458 			{
   459 			if (--argc < 1) goto bad;
   460 			cipher= *(++argv);
   461 			}
   462 #ifdef FIONBIO
   463 		else if (strcmp(*argv,"-nbio") == 0)
   464 			{ c_nbio=1; }
   465 #endif
   466 		else if	(strcmp(*argv,"-starttls") == 0)
   467 			{
   468 			if (--argc < 1) goto bad;
   469 			++argv;
   470 			if (strcmp(*argv,"smtp") == 0)
   471 				starttls_proto = 1;
   472 			else if (strcmp(*argv,"pop3") == 0)
   473 				starttls_proto = 2;
   474 			else
   475 				goto bad;
   476 			}
   477 #ifndef OPENSSL_NO_ENGINE
   478 		else if	(strcmp(*argv,"-engine") == 0)
   479 			{
   480 			if (--argc < 1) goto bad;
   481 			engine_id = *(++argv);
   482 			}
   483 #endif
   484 		else if (strcmp(*argv,"-rand") == 0)
   485 			{
   486 			if (--argc < 1) goto bad;
   487 			inrand= *(++argv);
   488 			}
   489 		else
   490 			{
   491 			BIO_printf(bio_err,"unknown option %s\n",*argv);
   492 			badop=1;
   493 			break;
   494 			}
   495 		argc--;
   496 		argv++;
   497 		}
   498 	if (badop)
   499 		{
   500 bad:
   501 		sc_usage();
   502 		goto end;
   503 		}
   504 
   505 	OpenSSL_add_ssl_algorithms();
   506 	SSL_load_error_strings();
   507 
   508 #ifndef OPENSSL_NO_ENGINE
   509         e = setup_engine(bio_err, engine_id, 1);
   510 #endif
   511 	if (!app_passwd(bio_err, passarg, NULL, &pass, NULL))
   512 		{
   513 		BIO_printf(bio_err, "Error getting password\n");
   514 		goto end;
   515 		}
   516 
   517 	if (key_file == NULL)
   518 		key_file = cert_file;
   519 
   520 
   521 	if (key_file)
   522 
   523 		{
   524 
   525 		key = load_key(bio_err, key_file, key_format, 0, pass, e,
   526 			       "client certificate private key file");
   527 		if (!key)
   528 			{
   529 			ERR_print_errors(bio_err);
   530 			goto end;
   531 			}
   532 
   533 		}
   534 
   535 	if (cert_file)
   536 
   537 		{
   538 		cert = load_cert(bio_err,cert_file,cert_format,
   539 				NULL, e, "client certificate file");
   540 
   541 		if (!cert)
   542 			{
   543 			ERR_print_errors(bio_err);
   544 			goto end;
   545 			}
   546 		}
   547 
   548 	if (!app_RAND_load_file(NULL, bio_err, 1) && inrand == NULL
   549 		&& !RAND_status())
   550 		{
   551 		BIO_printf(bio_err,"warning, not much extra random data, consider using the -rand option\n");
   552 		}
   553 	if (inrand != NULL)
   554 		BIO_printf(bio_err,"%ld semi-random bytes loaded\n",
   555 			app_RAND_load_files(inrand));
   556 
   557 	if (bio_c_out == NULL)
   558 		{
   559 		if (c_quiet && !c_debug && !c_msg)
   560 			{
   561 			bio_c_out=BIO_new(BIO_s_null());
   562 			}
   563 		else
   564 			{
   565 			if (bio_c_out == NULL)
   566 				bio_c_out=BIO_new_fp(stdout,BIO_NOCLOSE);
   567 				
   568 			}
   569 		}
   570 
   571 	ctx=SSL_CTX_new(meth);
   572 	if (ctx == NULL)
   573 		{
   574 		ERR_print_errors(bio_err);
   575 		goto end;
   576 		}
   577 
   578 	if (bugs)
   579 		SSL_CTX_set_options(ctx,SSL_OP_ALL|off);
   580 	else
   581 		SSL_CTX_set_options(ctx,off);
   582 	/* DTLS: partial reads end up discarding unread UDP bytes :-( 
   583 	 * Setting read ahead solves this problem.
   584 	 */
   585 	if (sock_type == SOCK_DGRAM) SSL_CTX_set_read_ahead(ctx, 1);
   586 
   587 	if (state) SSL_CTX_set_info_callback(ctx,apps_ssl_info_callback);
   588 	if (cipher != NULL)
   589 		if(!SSL_CTX_set_cipher_list(ctx,cipher)) {
   590 		BIO_printf(bio_err,"error setting cipher list\n");
   591 		ERR_print_errors(bio_err);
   592 		goto end;
   593 	}
   594 #if 0
   595 	else
   596 		SSL_CTX_set_cipher_list(ctx,getenv("SSL_CIPHER"));
   597 #endif
   598 
   599 	SSL_CTX_set_verify(ctx,verify,verify_callback);
   600 	if (!set_cert_key_stuff(ctx,cert,key))
   601 		goto end;
   602 
   603 	if ((!SSL_CTX_load_verify_locations(ctx,CAfile,CApath)) ||
   604 		(!SSL_CTX_set_default_verify_paths(ctx)))
   605 		{
   606 		/* BIO_printf(bio_err,"error setting default verify locations\n"); */
   607 		ERR_print_errors(bio_err);
   608 		/* goto end; */
   609 		}
   610 
   611 	store = SSL_CTX_get_cert_store(ctx);
   612 	X509_STORE_set_flags(store, vflags);
   613 
   614 	con=SSL_new(ctx);
   615 #ifndef OPENSSL_NO_KRB5
   616 	if (con  &&  (con->kssl_ctx = kssl_ctx_new()) != NULL)
   617                 {
   618                 kssl_ctx_setstring(con->kssl_ctx, KSSL_SERVER, host);
   619 		}
   620 #endif	/* OPENSSL_NO_KRB5  */
   621 /*	SSL_set_cipher_list(con,"RC4-MD5"); */
   622 
   623 re_start:
   624 
   625 	if (init_client(&s,host,port,sock_type) == 0)
   626 		{
   627 		BIO_printf(bio_err,"connect:errno=%d\n",get_last_socket_error());
   628 		SHUTDOWN(s);
   629 		goto end;
   630 		}
   631 	BIO_printf(bio_c_out,"CONNECTED(%08X)\n",s);
   632 
   633 #ifdef FIONBIO
   634 	if (c_nbio)
   635 		{
   636 		unsigned long l=1;
   637 		BIO_printf(bio_c_out,"turning on non blocking io\n");
   638 		if (BIO_socket_ioctl(s,FIONBIO,&l) < 0)
   639 			{
   640 			ERR_print_errors(bio_err);
   641 			goto end;
   642 			}
   643 		}
   644 #endif                                              
   645 	if (c_Pause & 0x01) con->debug=1;
   646 
   647 	if ( SSL_version(con) == DTLS1_VERSION)
   648 		{
   649 		struct timeval timeout;
   650 
   651 		sbio=BIO_new_dgram(s,BIO_NOCLOSE);
   652 		if (getsockname(s, &peer, (void *)&peerlen) < 0)
   653 			{
   654 			BIO_printf(bio_err, "getsockname:errno=%d\n",
   655 				get_last_socket_error());
   656 			SHUTDOWN(s);
   657 			goto end;
   658 			}
   659 
   660 		BIO_ctrl_set_connected(sbio, 1, &peer);
   661 
   662 		if ( enable_timeouts)
   663 			{
   664 			timeout.tv_sec = 0;
   665 			timeout.tv_usec = DGRAM_RCV_TIMEOUT;
   666 			BIO_ctrl(sbio, BIO_CTRL_DGRAM_SET_RECV_TIMEOUT, 0, &timeout);
   667 			
   668 			timeout.tv_sec = 0;
   669 			timeout.tv_usec = DGRAM_SND_TIMEOUT;
   670 			BIO_ctrl(sbio, BIO_CTRL_DGRAM_SET_SEND_TIMEOUT, 0, &timeout);
   671 			}
   672 
   673 		if ( mtu > 0)
   674 			{
   675 			SSL_set_options(con, SSL_OP_NO_QUERY_MTU);
   676 			SSL_set_mtu(con, mtu);
   677 			}
   678 		else
   679 			/* want to do MTU discovery */
   680 			BIO_ctrl(sbio, BIO_CTRL_DGRAM_MTU_DISCOVER, 0, NULL);
   681 		}
   682 	else
   683 		sbio=BIO_new_socket(s,BIO_NOCLOSE);
   684 
   685 
   686 
   687 	if (nbio_test)
   688 		{
   689 		BIO *test;
   690 
   691 		test=BIO_new(BIO_f_nbio_test());
   692 		sbio=BIO_push(test,sbio);
   693 		}
   694 
   695 	if (c_debug)
   696 		{
   697 		con->debug=1;
   698 		BIO_set_callback(sbio,bio_dump_callback);
   699 		BIO_set_callback_arg(sbio,(char*)bio_c_out);
   700 		}
   701 	if (c_msg)
   702 		{
   703 		SSL_set_msg_callback(con, msg_cb);
   704 		SSL_set_msg_callback_arg(con, bio_c_out);
   705 		}
   706 
   707 	SSL_set_bio(con,sbio,sbio);
   708 	SSL_set_connect_state(con);
   709 
   710 	/* ok, lets connect */
   711 	width=SSL_get_fd(con)+1;
   712 
   713 	read_tty=1;
   714 	write_tty=0;
   715 	tty_on=0;
   716 	read_ssl=1;
   717 	write_ssl=1;
   718 	
   719 	cbuf_len=0;
   720 	cbuf_off=0;
   721 	sbuf_len=0;
   722 	sbuf_off=0;
   723 
   724 	/* This is an ugly hack that does a lot of assumptions */
   725 	if (starttls_proto == 1)
   726 		{
   727 		BIO_read(sbio,mbuf,BUFSIZZ);
   728 		BIO_printf(sbio,"STARTTLS\r\n");
   729 		BIO_read(sbio,sbuf,BUFSIZZ);
   730 		}
   731 	if (starttls_proto == 2)
   732 		{
   733 		BIO_read(sbio,mbuf,BUFSIZZ);
   734 		BIO_printf(sbio,"STLS\r\n");
   735 		BIO_read(sbio,sbuf,BUFSIZZ);
   736 		}
   737 
   738 	for (;;)
   739 		{
   740 		FD_ZERO(&readfds);
   741 		FD_ZERO(&writefds);
   742 
   743 		if (SSL_in_init(con) && !SSL_total_renegotiations(con))
   744 			{
   745 			in_init=1;
   746 			tty_on=0;
   747 			}
   748 		else
   749 			{
   750 			tty_on=1;
   751 			if (in_init)
   752 				{
   753 				in_init=0;
   754 				print_stuff(bio_c_out,con,full_log);
   755 				if (full_log > 0) full_log--;
   756 
   757 				if (starttls_proto)
   758 					{
   759 					BIO_printf(bio_err,"%s",mbuf);
   760 					/* We don't need to know any more */
   761 					starttls_proto = 0;
   762 					}
   763 
   764 				if (reconnect)
   765 					{
   766 					reconnect--;
   767 					BIO_printf(bio_c_out,"drop connection and then reconnect\n");
   768 					SSL_shutdown(con);
   769 					SSL_set_connect_state(con);
   770 					SHUTDOWN(SSL_get_fd(con));
   771 					goto re_start;
   772 					}
   773 				}
   774 			}
   775 
   776 		ssl_pending = read_ssl && SSL_pending(con);
   777 
   778 		if (!ssl_pending)
   779 			{
   780 #if !defined(OPENSSL_SYS_WINDOWS) && !defined(OPENSSL_SYS_MSDOS) && !defined(OPENSSL_SYS_NETWARE)
   781 			if (tty_on)
   782 				{
   783 				if (read_tty)  FD_SET(fileno(stdin),&readfds);
   784 				if (write_tty) FD_SET(fileno(stdout),&writefds);
   785 				
   786 				}
   787 			if (read_ssl)
   788 				FD_SET(SSL_get_fd(con),&readfds);
   789 			if (write_ssl)
   790 				FD_SET(SSL_get_fd(con),&writefds);
   791 #else
   792 			if(!tty_on || !write_tty) {
   793 				if (read_ssl)
   794 					FD_SET(SSL_get_fd(con),&readfds);
   795 				if (write_ssl)
   796 					FD_SET(SSL_get_fd(con),&writefds);
   797 			}
   798 #endif
   799 /*			printf("mode tty(%d %d%d) ssl(%d%d)\n",
   800 				tty_on,read_tty,write_tty,read_ssl,write_ssl);*/
   801 
   802 			/* Note: under VMS with SOCKETSHR the second parameter
   803 			 * is currently of type (int *) whereas under other
   804 			 * systems it is (void *) if you don't have a cast it
   805 			 * will choke the compiler: if you do have a cast then
   806 			 * you can either go for (int *) or (void *).
   807 			 */
   808 #if defined(OPENSSL_SYS_WINDOWS) || defined(OPENSSL_SYS_MSDOS)
   809                         /* Under Windows/DOS we make the assumption that we can
   810 			 * always write to the tty: therefore if we need to
   811 			 * write to the tty we just fall through. Otherwise
   812 			 * we timeout the select every second and see if there
   813 			 * are any keypresses. Note: this is a hack, in a proper
   814 			 * Windows application we wouldn't do this.
   815 			 */
   816 			i=0;
   817 			if(!write_tty) {
   818 				if(read_tty) {
   819 					tv.tv_sec = 1;
   820 					tv.tv_usec = 0;
   821 					i=select(width,(void *)&readfds,(void *)&writefds,
   822 						 NULL,&tv);
   823 #if defined(OPENSSL_SYS_WINCE) || defined(OPENSSL_SYS_MSDOS)
   824 					if(!i && (!_kbhit() || !read_tty) ) continue;
   825 #else
   826 					if(!i && (!((_kbhit()) || (WAIT_OBJECT_0 == WaitForSingleObject(GetStdHandle(STD_INPUT_HANDLE), 0))) || !read_tty) ) continue;
   827 #endif
   828 				} else 	i=select(width,(void *)&readfds,(void *)&writefds,
   829 					 NULL,NULL);
   830 			}
   831 #elif defined(OPENSSL_SYS_NETWARE)
   832 			if(!write_tty) {
   833 				if(read_tty) {
   834 					tv.tv_sec = 1;
   835 					tv.tv_usec = 0;
   836 					i=select(width,(void *)&readfds,(void *)&writefds,
   837 						NULL,&tv);
   838 				} else 	i=select(width,(void *)&readfds,(void *)&writefds,
   839 					NULL,NULL);
   840 			}
   841 #else
   842 			i=select(width,(void *)&readfds,(void *)&writefds,
   843 				 NULL,NULL);
   844 #endif
   845 			if ( i < 0)
   846 				{
   847 				BIO_printf(bio_err,"bad select %d\n",
   848 				get_last_socket_error());
   849 				goto shut;
   850 				/* goto end; */
   851 				}
   852 			}
   853 
   854 		if (!ssl_pending && FD_ISSET(SSL_get_fd(con),&writefds))
   855 			{
   856 			k=SSL_write(con,&(cbuf[cbuf_off]),
   857 				(unsigned int)cbuf_len);
   858 			switch (SSL_get_error(con,k))
   859 				{
   860 			case SSL_ERROR_NONE:
   861 				cbuf_off+=k;
   862 				cbuf_len-=k;
   863 				if (k <= 0) goto end;
   864 				/* we have done a  write(con,NULL,0); */
   865 				if (cbuf_len <= 0)
   866 					{
   867 					read_tty=1;
   868 					write_ssl=0;
   869 					}
   870 				else /* if (cbuf_len > 0) */
   871 					{
   872 					read_tty=0;
   873 					write_ssl=1;
   874 					}
   875 				break;
   876 			case SSL_ERROR_WANT_WRITE:
   877 				BIO_printf(bio_c_out,"write W BLOCK\n");
   878 				write_ssl=1;
   879 				read_tty=0;
   880 				break;
   881 			case SSL_ERROR_WANT_READ:
   882 				BIO_printf(bio_c_out,"write R BLOCK\n");
   883 				write_tty=0;
   884 				read_ssl=1;
   885 				write_ssl=0;
   886 				break;
   887 			case SSL_ERROR_WANT_X509_LOOKUP:
   888 				BIO_printf(bio_c_out,"write X BLOCK\n");
   889 				break;
   890 			case SSL_ERROR_ZERO_RETURN:
   891 				if (cbuf_len != 0)
   892 					{
   893 					BIO_printf(bio_c_out,"shutdown\n");
   894 					goto shut;
   895 					}
   896 				else
   897 					{
   898 					read_tty=1;
   899 					write_ssl=0;
   900 					break;
   901 					}
   902 				
   903 			case SSL_ERROR_SYSCALL:
   904 				if ((k != 0) || (cbuf_len != 0))
   905 					{
   906 					BIO_printf(bio_err,"write:errno=%d\n",
   907 						get_last_socket_error());
   908 					goto shut;
   909 					}
   910 				else
   911 					{
   912 					read_tty=1;
   913 					write_ssl=0;
   914 					}
   915 				break;
   916 			case SSL_ERROR_SSL:
   917 				ERR_print_errors(bio_err);
   918 				goto shut;
   919 				}
   920 			}
   921 #if defined(OPENSSL_SYS_WINDOWS) || defined(OPENSSL_SYS_MSDOS) || defined(OPENSSL_SYS_NETWARE)
   922 		/* Assume Windows/DOS can always write */
   923 		else if (!ssl_pending && write_tty)
   924 #else
   925 
   926 		else if (!ssl_pending && FD_ISSET(fileno(stdout),&writefds))
   927 
   928 #endif
   929 			{
   930 #ifdef CHARSET_EBCDIC
   931 			ascii2ebcdic(&(sbuf[sbuf_off]),&(sbuf[sbuf_off]),sbuf_len);
   932 #endif
   933 
   934 			i=write(fileno(stdout),&(sbuf[sbuf_off]),sbuf_len);
   935 
   936 			if (i <= 0)
   937 				{
   938 				BIO_printf(bio_c_out,"DONE\n");
   939 				goto shut;
   940 				/* goto end; */
   941 				}
   942 
   943 			sbuf_len-=i;;
   944 			sbuf_off+=i;
   945 			if (sbuf_len <= 0)
   946 				{
   947 				read_ssl=1;
   948 				write_tty=0;
   949 				}
   950 			}
   951 		else if (ssl_pending || FD_ISSET(SSL_get_fd(con),&readfds))
   952 			{
   953 #ifdef RENEG
   954 { static int iiii; if (++iiii == 52) { SSL_renegotiate(con); iiii=0; } }
   955 #endif
   956 #if 1
   957 			k=SSL_read(con,sbuf,1024 /* BUFSIZZ */ );
   958 #else
   959 /* Demo for pending and peek :-) */
   960 			k=SSL_read(con,sbuf,16);
   961 { char zbuf[10240]; 
   962 printf("read=%d pending=%d peek=%d\n",k,SSL_pending(con),SSL_peek(con,zbuf,10240));
   963 
   964 }
   965 #endif
   966 
   967 			switch (SSL_get_error(con,k))
   968 				{
   969 			case SSL_ERROR_NONE:
   970 				if (k <= 0)
   971 					goto end;
   972 				sbuf_off=0;
   973 				sbuf_len=k;
   974 
   975 				read_ssl=0;
   976 				write_tty=1;
   977 				break;
   978 			case SSL_ERROR_WANT_WRITE:
   979 				BIO_printf(bio_c_out,"read W BLOCK\n");
   980 				write_ssl=1;
   981 				read_tty=0;
   982 				break;
   983 			case SSL_ERROR_WANT_READ:
   984 				BIO_printf(bio_c_out,"read R BLOCK\n");
   985 				write_tty=0;
   986 				read_ssl=1;
   987 				if ((read_tty == 0) && (write_ssl == 0))
   988 					write_ssl=1;
   989 				break;
   990 			case SSL_ERROR_WANT_X509_LOOKUP:
   991 				BIO_printf(bio_c_out,"read X BLOCK\n");
   992 				break;
   993 			case SSL_ERROR_SYSCALL:
   994 				BIO_printf(bio_err,"read:errno=%d\n",get_last_socket_error());
   995 				goto shut;
   996 			case SSL_ERROR_ZERO_RETURN:
   997 				BIO_printf(bio_c_out,"closed\n");
   998 				goto shut;
   999 			case SSL_ERROR_SSL:
  1000 				ERR_print_errors(bio_err);
  1001 				goto shut;
  1002 				/* break; */
  1003 				}
  1004 			}
  1005 
  1006 #if defined(OPENSSL_SYS_WINDOWS) || defined(OPENSSL_SYS_MSDOS)
  1007 #if defined(OPENSSL_SYS_WINCE) || defined(OPENSSL_SYS_MSDOS)
  1008 		else if (_kbhit())
  1009 #else
  1010 		else if ((_kbhit()) || (WAIT_OBJECT_0 == WaitForSingleObject(GetStdHandle(STD_INPUT_HANDLE), 0)))
  1011 #endif
  1012 #elif defined (OPENSSL_SYS_NETWARE)
  1013         else if (_kbhit())
  1014 #else
  1015 		else if (FD_ISSET(fileno(stdin),&readfds))
  1016 		
  1017 #endif
  1018 			{
  1019 			if (crlf)
  1020 				{
  1021 				int j, lf_num;
  1022 				i=read(fileno(stdin),cbuf,BUFSIZZ/2);
  1023 				
  1024 				lf_num = 0;
  1025 				/* both loops are skipped when i <= 0 */
  1026 				for (j = 0; j < i; j++)
  1027 					if (cbuf[j] == '\n')
  1028 						lf_num++;
  1029 				for (j = i-1; j >= 0; j--)
  1030 					{
  1031 					cbuf[j+lf_num] = cbuf[j];
  1032 					if (cbuf[j] == '\n')
  1033 						{
  1034 						lf_num--;
  1035 						i++;
  1036 						cbuf[j+lf_num] = '\r';
  1037 						}
  1038 					}
  1039 				assert(lf_num == 0);
  1040 				}
  1041 			else
  1042 				i=read(fileno(stdin),cbuf,BUFSIZZ);
  1043 
  1044 			if ((!c_ign_eof) && ((i <= 0) || (cbuf[0] == 'Q')))
  1045 				{
  1046 				BIO_printf(bio_err,"DONE\n");
  1047 				goto shut;
  1048 				}
  1049 
  1050 			if ((!c_ign_eof) && (cbuf[0] == 'R'))
  1051 				{
  1052 				BIO_printf(bio_err,"RENEGOTIATING\n");
  1053 				SSL_renegotiate(con);
  1054 				cbuf_len=0;
  1055 				}
  1056 			else
  1057 				{
  1058 				cbuf_len=i;
  1059 				cbuf_off=0;
  1060 #ifdef CHARSET_EBCDIC
  1061 				ebcdic2ascii(cbuf, cbuf, i);
  1062 #endif
  1063 				}
  1064 
  1065 			write_ssl=1;
  1066 			read_tty=0;
  1067 			}
  1068 		}
  1069 shut:
  1070 	SSL_shutdown(con);
  1071 	SHUTDOWN(SSL_get_fd(con));
  1072 	ret=0;
  1073 end:
  1074 	if(prexit) print_stuff(bio_c_out,con,1);
  1075 	if (con != NULL) SSL_free(con);
  1076 	if (con2 != NULL) SSL_free(con2);
  1077 	if (ctx != NULL) SSL_CTX_free(ctx);
  1078 	if (cert)
  1079 		X509_free(cert);
  1080 	if (key)
  1081 		EVP_PKEY_free(key);
  1082 	if (pass)
  1083 		OPENSSL_free(pass);
  1084 	if (cbuf != NULL) { OPENSSL_cleanse(cbuf,BUFSIZZ); OPENSSL_free(cbuf); }
  1085 	if (sbuf != NULL) { OPENSSL_cleanse(sbuf,BUFSIZZ); OPENSSL_free(sbuf); }
  1086 	if (mbuf != NULL) { OPENSSL_cleanse(mbuf,BUFSIZZ); OPENSSL_free(mbuf); }
  1087 	if (bio_c_out != NULL)
  1088 		{
  1089 		BIO_free(bio_c_out);
  1090 		bio_c_out=NULL;
  1091 		}
  1092 	apps_shutdown();
  1093 	OPENSSL_EXIT(ret);
  1094 	}
  1095 
  1096 
  1097 static void print_stuff(BIO *bio, SSL *s, int full)
  1098 	{
  1099 	X509 *peer=NULL;
  1100 	char *p;
  1101 	static const char *space="                ";
  1102 	char buf[BUFSIZ];
  1103 	STACK_OF(X509) *sk;
  1104 	STACK_OF(X509_NAME) *sk2;
  1105 	SSL_CIPHER *c;
  1106 	X509_NAME *xn;
  1107 	int j,i;
  1108 #ifndef OPENSSL_NO_COMP
  1109 	const COMP_METHOD *comp, *expansion;
  1110 #endif
  1111 
  1112 	if (full)
  1113 		{
  1114 		int got_a_chain = 0;
  1115 
  1116 		sk=SSL_get_peer_cert_chain(s);
  1117 		if (sk != NULL)
  1118 			{
  1119 			got_a_chain = 1; /* we don't have it for SSL2 (yet) */
  1120 
  1121 			BIO_printf(bio,"---\nCertificate chain\n");
  1122 			for (i=0; i<sk_X509_num(sk); i++)
  1123 				{
  1124 				X509_NAME_oneline(X509_get_subject_name(
  1125 					sk_X509_value(sk,i)),buf,sizeof buf);
  1126 				BIO_printf(bio,"%2d s:%s\n",i,buf);
  1127 				X509_NAME_oneline(X509_get_issuer_name(
  1128 					sk_X509_value(sk,i)),buf,sizeof buf);
  1129 				BIO_printf(bio,"   i:%s\n",buf);
  1130 				if (c_showcerts)
  1131 					PEM_write_bio_X509(bio,sk_X509_value(sk,i));
  1132 				}
  1133 			}
  1134 
  1135 		BIO_printf(bio,"---\n");
  1136 		peer=SSL_get_peer_certificate(s);
  1137 		if (peer != NULL)
  1138 			{
  1139 			BIO_printf(bio,"Server certificate\n");
  1140 			if (!(c_showcerts && got_a_chain)) /* Redundant if we showed the whole chain */
  1141 				PEM_write_bio_X509(bio,peer);
  1142 			X509_NAME_oneline(X509_get_subject_name(peer),
  1143 				buf,sizeof buf);
  1144 			BIO_printf(bio,"subject=%s\n",buf);
  1145 			X509_NAME_oneline(X509_get_issuer_name(peer),
  1146 				buf,sizeof buf);
  1147 			BIO_printf(bio,"issuer=%s\n",buf);
  1148 			}
  1149 		else
  1150 			BIO_printf(bio,"no peer certificate available\n");
  1151 
  1152 		sk2=SSL_get_client_CA_list(s);
  1153 		if ((sk2 != NULL) && (sk_X509_NAME_num(sk2) > 0))
  1154 			{
  1155 			BIO_printf(bio,"---\nAcceptable client certificate CA names\n");
  1156 			for (i=0; i<sk_X509_NAME_num(sk2); i++)
  1157 				{
  1158 				xn=sk_X509_NAME_value(sk2,i);
  1159 				X509_NAME_oneline(xn,buf,sizeof(buf));
  1160 				BIO_write(bio,buf,strlen(buf));
  1161 				BIO_write(bio,"\n",1);
  1162 				}
  1163 			}
  1164 		else
  1165 			{
  1166 			BIO_printf(bio,"---\nNo client certificate CA names sent\n");
  1167 			}
  1168 		p=SSL_get_shared_ciphers(s,buf,sizeof buf);
  1169 		if (p != NULL)
  1170 			{
  1171 			/* This works only for SSL 2.  In later protocol
  1172 			 * versions, the client does not know what other
  1173 			 * ciphers (in addition to the one to be used
  1174 			 * in the current connection) the server supports. */
  1175 
  1176 			BIO_printf(bio,"---\nCiphers common between both SSL endpoints:\n");
  1177 			j=i=0;
  1178 			while (*p)
  1179 				{
  1180 				if (*p == ':')
  1181 					{
  1182 					BIO_write(bio,space,15-j%25);
  1183 					i++;
  1184 					j=0;
  1185 					BIO_write(bio,((i%3)?" ":"\n"),1);
  1186 					}
  1187 				else
  1188 					{
  1189 					BIO_write(bio,p,1);
  1190 					j++;
  1191 					}
  1192 				p++;
  1193 				}
  1194 			BIO_write(bio,"\n",1);
  1195 			}
  1196 
  1197 		BIO_printf(bio,"---\nSSL handshake has read %ld bytes and written %ld bytes\n",
  1198 			BIO_number_read(SSL_get_rbio(s)),
  1199 			BIO_number_written(SSL_get_wbio(s)));
  1200 		}
  1201 	BIO_printf(bio,((s->hit)?"---\nReused, ":"---\nNew, "));
  1202 	c=SSL_get_current_cipher(s);
  1203 	BIO_printf(bio,"%s, Cipher is %s\n",
  1204 		SSL_CIPHER_get_version(c),
  1205 		SSL_CIPHER_get_name(c));
  1206 	if (peer != NULL) {
  1207 		EVP_PKEY *pktmp;
  1208 		pktmp = X509_get_pubkey(peer);
  1209 		BIO_printf(bio,"Server public key is %d bit\n",
  1210 							 EVP_PKEY_bits(pktmp));
  1211 		EVP_PKEY_free(pktmp);
  1212 	}
  1213 #ifndef OPENSSL_NO_COMP
  1214 	comp=SSL_get_current_compression(s);
  1215 	expansion=SSL_get_current_expansion(s);
  1216 	BIO_printf(bio,"Compression: %s\n",
  1217 		comp ? SSL_COMP_get_name(comp) : "NONE");
  1218 	BIO_printf(bio,"Expansion: %s\n",
  1219 		expansion ? SSL_COMP_get_name(expansion) : "NONE");
  1220 #endif
  1221 	SSL_SESSION_print(bio,SSL_get_session(s));
  1222 	BIO_printf(bio,"---\n");
  1223 	if (peer != NULL)
  1224 		X509_free(peer);
  1225 	/* flush, or debugging output gets mixed with http response */
  1226 	BIO_flush(bio);
  1227 	}
  1228