argv was set but unused
[openssl.git] / apps / s_client.c
1 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
2  * All rights reserved.
3  *
4  * This package is an SSL implementation written
5  * by Eric Young (eay@cryptsoft.com).
6  * The implementation was written so as to conform with Netscapes SSL.
7  *
8  * This library is free for commercial and non-commercial use as long as
9  * the following conditions are aheared to.  The following conditions
10  * apply to all code found in this distribution, be it the RC4, RSA,
11  * lhash, DES, etc., code; not just the SSL code.  The SSL documentation
12  * included with this distribution is covered by the same copyright terms
13  * except that the holder is Tim Hudson (tjh@cryptsoft.com).
14  *
15  * Copyright remains Eric Young's, and as such any Copyright notices in
16  * the code are not to be removed.
17  * If this package is used in a product, Eric Young should be given attribution
18  * as the author of the parts of the library used.
19  * This can be in the form of a textual message at program startup or
20  * in documentation (online or textual) provided with the package.
21  *
22  * Redistribution and use in source and binary forms, with or without
23  * modification, are permitted provided that the following conditions
24  * are met:
25  * 1. Redistributions of source code must retain the copyright
26  *    notice, this list of conditions and the following disclaimer.
27  * 2. Redistributions in binary form must reproduce the above copyright
28  *    notice, this list of conditions and the following disclaimer in the
29  *    documentation and/or other materials provided with the distribution.
30  * 3. All advertising materials mentioning features or use of this software
31  *    must display the following acknowledgement:
32  *    "This product includes cryptographic software written by
33  *     Eric Young (eay@cryptsoft.com)"
34  *    The word 'cryptographic' can be left out if the rouines from the library
35  *    being used are not cryptographic related :-).
36  * 4. If you include any Windows specific code (or a derivative thereof) from
37  *    the apps directory (application code) you must include an acknowledgement:
38  *    "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
39  *
40  * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
41  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
42  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
43  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
44  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
45  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
46  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
47  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
48  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
49  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
50  * SUCH DAMAGE.
51  *
52  * The licence and distribution terms for any publically available version or
53  * derivative of this code cannot be changed.  i.e. this code cannot simply be
54  * copied and put under another distribution licence
55  * [including the GNU Public Licence.]
56  */
57 /* ====================================================================
58  * Copyright (c) 1998-2006 The OpenSSL Project.  All rights reserved.
59  *
60  * Redistribution and use in source and binary forms, with or without
61  * modification, are permitted provided that the following conditions
62  * are met:
63  *
64  * 1. Redistributions of source code must retain the above copyright
65  *    notice, this list of conditions and the following disclaimer.
66  *
67  * 2. Redistributions in binary form must reproduce the above copyright
68  *    notice, this list of conditions and the following disclaimer in
69  *    the documentation and/or other materials provided with the
70  *    distribution.
71  *
72  * 3. All advertising materials mentioning features or use of this
73  *    software must display the following acknowledgment:
74  *    "This product includes software developed by the OpenSSL Project
75  *    for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
76  *
77  * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
78  *    endorse or promote products derived from this software without
79  *    prior written permission. For written permission, please contact
80  *    openssl-core@openssl.org.
81  *
82  * 5. Products derived from this software may not be called "OpenSSL"
83  *    nor may "OpenSSL" appear in their names without prior written
84  *    permission of the OpenSSL Project.
85  *
86  * 6. Redistributions of any form whatsoever must retain the following
87  *    acknowledgment:
88  *    "This product includes software developed by the OpenSSL Project
89  *    for use in the OpenSSL Toolkit (http://www.openssl.org/)"
90  *
91  * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
92  * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
93  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
94  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE OpenSSL PROJECT OR
95  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
96  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
97  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
98  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
99  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
100  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
101  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
102  * OF THE POSSIBILITY OF SUCH DAMAGE.
103  * ====================================================================
104  *
105  * This product includes cryptographic software written by Eric Young
106  * (eay@cryptsoft.com).  This product includes software written by Tim
107  * Hudson (tjh@cryptsoft.com).
108  *
109  */
110 /* ====================================================================
111  * Copyright 2005 Nokia. All rights reserved.
112  *
113  * The portions of the attached software ("Contribution") is developed by
114  * Nokia Corporation and is licensed pursuant to the OpenSSL open source
115  * license.
116  *
117  * The Contribution, originally written by Mika Kousa and Pasi Eronen of
118  * Nokia Corporation, consists of the "PSK" (Pre-Shared Key) ciphersuites
119  * support (see RFC 4279) to OpenSSL.
120  *
121  * No patent licenses or other rights except those expressly stated in
122  * the OpenSSL open source license shall be deemed granted or received
123  * expressly, by implication, estoppel, or otherwise.
124  *
125  * No assurances are provided by Nokia that the Contribution does not
126  * infringe the patent or other intellectual property rights of any third
127  * party or that the license provides you with all the necessary rights
128  * to make use of the Contribution.
129  *
130  * THE SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. IN
131  * ADDITION TO THE DISCLAIMERS INCLUDED IN THE LICENSE, NOKIA
132  * SPECIFICALLY DISCLAIMS ANY LIABILITY FOR CLAIMS BROUGHT BY YOU OR ANY
133  * OTHER ENTITY BASED ON INFRINGEMENT OF INTELLECTUAL PROPERTY RIGHTS OR
134  * OTHERWISE.
135  */
136
137 #include <ctype.h>
138 #include <stdio.h>
139 #include <stdlib.h>
140 #include <string.h>
141 #include <errno.h>
142 #include <openssl/e_os2.h>
143
144 /*
145  * With IPv6, it looks like Digital has mixed up the proper order of
146  * recursive header file inclusion, resulting in the compiler complaining
147  * that u_int isn't defined, but only if _POSIX_C_SOURCE is defined, which is
148  * needed to have fileno() declared correctly...  So let's define u_int
149  */
150 #if defined(OPENSSL_SYS_VMS_DECC) && !defined(__U_INT)
151 # define __U_INT
152 typedef unsigned int u_int;
153 #endif
154
155 #define USE_SOCKETS
156 #include "apps.h"
157 #include <openssl/x509.h>
158 #include <openssl/ssl.h>
159 #include <openssl/err.h>
160 #include <openssl/pem.h>
161 #include <openssl/rand.h>
162 #include <openssl/ocsp.h>
163 #include <openssl/bn.h>
164 #include <openssl/async.h>
165 #ifndef OPENSSL_NO_SRP
166 # include <openssl/srp.h>
167 #endif
168 #include "s_apps.h"
169 #include "timeouts.h"
170
171 #if (defined(OPENSSL_SYS_VMS) && __VMS_VER < 70000000)
172 /* FIONBIO used as a switch to enable ioctl, and that isn't in VMS < 7.0 */
173 # undef FIONBIO
174 #endif
175
176 #undef BUFSIZZ
177 #define BUFSIZZ 1024*8
178 #define S_CLIENT_IRC_READ_TIMEOUT 8
179
180 extern int verify_depth;
181 extern int verify_error;
182 extern int verify_return_error;
183 extern int verify_quiet;
184
185 static char *prog;
186 static int async = 0;
187 static int c_nbio = 0;
188 static int c_tlsextdebug = 0;
189 static int c_status_req = 0;
190 static int c_debug = 0;
191 static int c_msg = 0;
192 static int c_showcerts = 0;
193 static char *keymatexportlabel = NULL;
194 static int keymatexportlen = 20;
195 static BIO *bio_c_out = NULL;
196 static BIO *bio_c_msg = NULL;
197 static int c_quiet = 0;
198 static int c_ign_eof = 0;
199 static int c_brief = 0;
200
201 static void print_stuff(BIO *berr, SSL *con, int full);
202 static int ocsp_resp_cb(SSL *s, void *arg);
203
204 static int saved_errno;
205
206 static void save_errno(void)
207 {
208     saved_errno = errno;
209     errno = 0;
210 }
211
212 static int restore_errno(void)
213 {
214     int ret = errno;
215     errno = saved_errno;
216     return ret;
217 }
218
219 static void do_ssl_shutdown(SSL *ssl)
220 {
221     int ret;
222
223     do {
224         /* We only do unidirectional shutdown */
225         ret = SSL_shutdown(ssl);
226         if (ret < 0) {
227             switch (SSL_get_error(ssl, ret)) {
228             case SSL_ERROR_WANT_READ:
229             case SSL_ERROR_WANT_WRITE:
230             case SSL_ERROR_WANT_ASYNC:
231                 /* We just do busy waiting. Nothing clever */
232                 continue;
233             }
234             ret = 0;
235         }
236     } while (ret < 0);
237 }
238
239
240 #ifndef OPENSSL_NO_PSK
241 /* Default PSK identity and key */
242 static char *psk_identity = "Client_identity";
243 /*
244  * char *psk_key=NULL; by default PSK is not used
245  */
246
247 static unsigned int psk_client_cb(SSL *ssl, const char *hint, char *identity,
248                                   unsigned int max_identity_len,
249                                   unsigned char *psk,
250                                   unsigned int max_psk_len)
251 {
252     unsigned int psk_len = 0;
253     int ret;
254     BIGNUM *bn = NULL;
255
256     if (c_debug)
257         BIO_printf(bio_c_out, "psk_client_cb\n");
258     if (!hint) {
259         /* no ServerKeyExchange message */
260         if (c_debug)
261             BIO_printf(bio_c_out,
262                        "NULL received PSK identity hint, continuing anyway\n");
263     } else if (c_debug)
264         BIO_printf(bio_c_out, "Received PSK identity hint '%s'\n", hint);
265
266     /*
267      * lookup PSK identity and PSK key based on the given identity hint here
268      */
269     ret = BIO_snprintf(identity, max_identity_len, "%s", psk_identity);
270     if (ret < 0 || (unsigned int)ret > max_identity_len)
271         goto out_err;
272     if (c_debug)
273         BIO_printf(bio_c_out, "created identity '%s' len=%d\n", identity,
274                    ret);
275     ret = BN_hex2bn(&bn, psk_key);
276     if (!ret) {
277         BIO_printf(bio_err, "Could not convert PSK key '%s' to BIGNUM\n",
278                    psk_key);
279         BN_free(bn);
280         return 0;
281     }
282
283     if ((unsigned int)BN_num_bytes(bn) > max_psk_len) {
284         BIO_printf(bio_err,
285                    "psk buffer of callback is too small (%d) for key (%d)\n",
286                    max_psk_len, BN_num_bytes(bn));
287         BN_free(bn);
288         return 0;
289     }
290
291     psk_len = BN_bn2bin(bn, psk);
292     BN_free(bn);
293     if (psk_len == 0)
294         goto out_err;
295
296     if (c_debug)
297         BIO_printf(bio_c_out, "created PSK len=%d\n", psk_len);
298
299     return psk_len;
300  out_err:
301     if (c_debug)
302         BIO_printf(bio_err, "Error in PSK client callback\n");
303     return 0;
304 }
305 #endif
306
307 /* This is a context that we pass to callbacks */
308 typedef struct tlsextctx_st {
309     BIO *biodebug;
310     int ack;
311 } tlsextctx;
312
313 static int ssl_servername_cb(SSL *s, int *ad, void *arg)
314 {
315     tlsextctx *p = (tlsextctx *) arg;
316     const char *hn = SSL_get_servername(s, TLSEXT_NAMETYPE_host_name);
317     if (SSL_get_servername_type(s) != -1)
318         p->ack = !SSL_session_reused(s) && hn != NULL;
319     else
320         BIO_printf(bio_err, "Can't use SSL_get_servername\n");
321
322     return SSL_TLSEXT_ERR_OK;
323 }
324
325 #ifndef OPENSSL_NO_SRP
326
327 /* This is a context that we pass to all callbacks */
328 typedef struct srp_arg_st {
329     char *srppassin;
330     char *srplogin;
331     int msg;                    /* copy from c_msg */
332     int debug;                  /* copy from c_debug */
333     int amp;                    /* allow more groups */
334     int strength /* minimal size for N */ ;
335 } SRP_ARG;
336
337 # define SRP_NUMBER_ITERATIONS_FOR_PRIME 64
338
339 static int srp_Verify_N_and_g(const BIGNUM *N, const BIGNUM *g)
340 {
341     BN_CTX *bn_ctx = BN_CTX_new();
342     BIGNUM *p = BN_new();
343     BIGNUM *r = BN_new();
344     int ret =
345         g != NULL && N != NULL && bn_ctx != NULL && BN_is_odd(N) &&
346         BN_is_prime_ex(N, SRP_NUMBER_ITERATIONS_FOR_PRIME, bn_ctx, NULL) &&
347         p != NULL && BN_rshift1(p, N) &&
348         /* p = (N-1)/2 */
349         BN_is_prime_ex(p, SRP_NUMBER_ITERATIONS_FOR_PRIME, bn_ctx, NULL) &&
350         r != NULL &&
351         /* verify g^((N-1)/2) == -1 (mod N) */
352         BN_mod_exp(r, g, p, N, bn_ctx) &&
353         BN_add_word(r, 1) && BN_cmp(r, N) == 0;
354
355     BN_free(r);
356     BN_free(p);
357     BN_CTX_free(bn_ctx);
358     return ret;
359 }
360
361 /*-
362  * This callback is used here for two purposes:
363  * - extended debugging
364  * - making some primality tests for unknown groups
365  * The callback is only called for a non default group.
366  *
367  * An application does not need the call back at all if
368  * only the stanard groups are used.  In real life situations,
369  * client and server already share well known groups,
370  * thus there is no need to verify them.
371  * Furthermore, in case that a server actually proposes a group that
372  * is not one of those defined in RFC 5054, it is more appropriate
373  * to add the group to a static list and then compare since
374  * primality tests are rather cpu consuming.
375  */
376
377 static int ssl_srp_verify_param_cb(SSL *s, void *arg)
378 {
379     SRP_ARG *srp_arg = (SRP_ARG *)arg;
380     BIGNUM *N = NULL, *g = NULL;
381
382     if (((N = SSL_get_srp_N(s)) == NULL) || ((g = SSL_get_srp_g(s)) == NULL))
383         return 0;
384     if (srp_arg->debug || srp_arg->msg || srp_arg->amp == 1) {
385         BIO_printf(bio_err, "SRP parameters:\n");
386         BIO_printf(bio_err, "\tN=");
387         BN_print(bio_err, N);
388         BIO_printf(bio_err, "\n\tg=");
389         BN_print(bio_err, g);
390         BIO_printf(bio_err, "\n");
391     }
392
393     if (SRP_check_known_gN_param(g, N))
394         return 1;
395
396     if (srp_arg->amp == 1) {
397         if (srp_arg->debug)
398             BIO_printf(bio_err,
399                        "SRP param N and g are not known params, going to check deeper.\n");
400
401         /*
402          * The srp_moregroups is a real debugging feature. Implementors
403          * should rather add the value to the known ones. The minimal size
404          * has already been tested.
405          */
406         if (BN_num_bits(g) <= BN_BITS && srp_Verify_N_and_g(N, g))
407             return 1;
408     }
409     BIO_printf(bio_err, "SRP param N and g rejected.\n");
410     return 0;
411 }
412
413 # define PWD_STRLEN 1024
414
415 static char *ssl_give_srp_client_pwd_cb(SSL *s, void *arg)
416 {
417     SRP_ARG *srp_arg = (SRP_ARG *)arg;
418     char *pass = app_malloc(PWD_STRLEN + 1, "SRP password buffer");
419     PW_CB_DATA cb_tmp;
420     int l;
421
422     cb_tmp.password = (char *)srp_arg->srppassin;
423     cb_tmp.prompt_info = "SRP user";
424     if ((l = password_callback(pass, PWD_STRLEN, 0, &cb_tmp)) < 0) {
425         BIO_printf(bio_err, "Can't read Password\n");
426         OPENSSL_free(pass);
427         return NULL;
428     }
429     *(pass + l) = '\0';
430
431     return pass;
432 }
433
434 #endif
435
436 static char *srtp_profiles = NULL;
437
438 #ifndef OPENSSL_NO_NEXTPROTONEG
439 /* This the context that we pass to next_proto_cb */
440 typedef struct tlsextnextprotoctx_st {
441     unsigned char *data;
442     unsigned short len;
443     int status;
444 } tlsextnextprotoctx;
445
446 static tlsextnextprotoctx next_proto;
447
448 static int next_proto_cb(SSL *s, unsigned char **out, unsigned char *outlen,
449                          const unsigned char *in, unsigned int inlen,
450                          void *arg)
451 {
452     tlsextnextprotoctx *ctx = arg;
453
454     if (!c_quiet) {
455         /* We can assume that |in| is syntactically valid. */
456         unsigned i;
457         BIO_printf(bio_c_out, "Protocols advertised by server: ");
458         for (i = 0; i < inlen;) {
459             if (i)
460                 BIO_write(bio_c_out, ", ", 2);
461             BIO_write(bio_c_out, &in[i + 1], in[i]);
462             i += in[i] + 1;
463         }
464         BIO_write(bio_c_out, "\n", 1);
465     }
466
467     ctx->status =
468         SSL_select_next_proto(out, outlen, in, inlen, ctx->data, ctx->len);
469     return SSL_TLSEXT_ERR_OK;
470 }
471 #endif                         /* ndef OPENSSL_NO_NEXTPROTONEG */
472
473 static int serverinfo_cli_parse_cb(SSL *s, unsigned int ext_type,
474                                    const unsigned char *in, size_t inlen,
475                                    int *al, void *arg)
476 {
477     char pem_name[100];
478     unsigned char ext_buf[4 + 65536];
479
480     /* Reconstruct the type/len fields prior to extension data */
481     ext_buf[0] = ext_type >> 8;
482     ext_buf[1] = ext_type & 0xFF;
483     ext_buf[2] = inlen >> 8;
484     ext_buf[3] = inlen & 0xFF;
485     memcpy(ext_buf + 4, in, inlen);
486
487     BIO_snprintf(pem_name, sizeof(pem_name), "SERVERINFO FOR EXTENSION %d",
488                  ext_type);
489     PEM_write_bio(bio_c_out, pem_name, "", ext_buf, 4 + inlen);
490     return 1;
491 }
492
493 /*
494  * Hex decoder that tolerates optional whitespace.  Returns number of bytes
495  * produced, advances inptr to end of input string.
496  */
497 static ossl_ssize_t hexdecode(const char **inptr, void *result)
498 {
499     unsigned char **out = (unsigned char **)result;
500     const char *in = *inptr;
501     unsigned char *ret = OPENSSL_malloc(strlen(in)/2);
502     unsigned char *cp = ret;
503     uint8_t byte;
504     int nibble = 0;
505
506     if (ret == NULL)
507         return -1;
508
509     for (byte = 0; *in; ++in) {
510         char c;
511
512         if (isspace(_UC(*in)))
513             continue;
514         c = tolower(_UC(*in));
515         if ('0' <= c && c <= '9') {
516             byte |= c - '0';
517         } else if ('a' <= c && c <= 'f') {
518             byte |= c - 'a' + 10;
519         } else {
520             OPENSSL_free(ret);
521             return 0;
522         }
523         if ((nibble ^= 1) == 0) {
524             *cp++ = byte;
525             byte = 0;
526         } else {
527             byte <<= 4;
528         }
529     }
530     if (nibble != 0) {
531         OPENSSL_free(ret);
532         return 0;
533     }
534     *inptr = in;
535
536     return cp - (*out = ret);
537 }
538
539 /*
540  * Decode unsigned 0..255, returns 1 on success, <= 0 on failure. Advances
541  * inptr to next field skipping leading whitespace.
542  */
543 static ossl_ssize_t checked_uint8(const char **inptr, void *out)
544 {
545     uint8_t *result = (uint8_t *)out;
546     const char *in = *inptr;
547     char *endp;
548     long v;
549     int e;
550
551     save_errno();
552     v = strtol(in, &endp, 10);
553     e = restore_errno();
554
555     if (((v == LONG_MIN || v == LONG_MAX) && e == ERANGE) ||
556         endp == in || !isspace(_UC(*endp)) ||
557         v != (*result = (uint8_t) v)) {
558         return -1;
559     }
560     for (in = endp; isspace(_UC(*in)); ++in)
561         continue;
562
563     *inptr = in;
564     return 1;
565 }
566
567 struct tlsa_field {
568     void *var;
569     const char *name;
570     ossl_ssize_t (*parser)(const char **, void *);
571 };
572
573 static int tlsa_import_rr(SSL *con, const char *rrdata)
574 {
575     /* Not necessary to re-init these values; the "parsers" do that. */
576     static uint8_t usage;
577     static uint8_t selector;
578     static uint8_t mtype;
579     static unsigned char *data;
580     static struct tlsa_field tlsa_fields[] = {
581         { &usage, "usage", checked_uint8 },
582         { &selector, "selector", checked_uint8 },
583         { &mtype, "mtype", checked_uint8 },
584         { &data, "data", hexdecode },
585         { NULL, }
586     };
587     struct tlsa_field *f;
588     int ret;
589     const char *cp = rrdata;
590     ossl_ssize_t len = 0;
591
592     for (f = tlsa_fields; f->var; ++f) {
593         /* Returns number of bytes produced, advances cp to next field */
594         if ((len = f->parser(&cp, f->var)) <= 0) {
595             BIO_printf(bio_err, "%s: warning: bad TLSA %s field in: %s\n",
596                        prog, f->name, rrdata);
597             return 0;
598         }
599     }
600     /* The data field is last, so len is its length */
601     ret = SSL_dane_tlsa_add(con, usage, selector, mtype, data, len);
602     OPENSSL_free(data);
603
604     if (ret == 0) {
605         ERR_print_errors(bio_err);
606         BIO_printf(bio_err, "%s: warning: unusable TLSA rrdata: %s\n",
607                    prog, rrdata);
608         return 0;
609     }
610     if (ret < 0) {
611         ERR_print_errors(bio_err);
612         BIO_printf(bio_err, "%s: warning: error loading TLSA rrdata: %s\n",
613                    prog, rrdata);
614         return 0;
615     }
616     return ret;
617 }
618
619 static int tlsa_import_rrset(SSL *con, STACK_OF(OPENSSL_STRING) *rrset)
620 {
621     int num = sk_OPENSSL_STRING_num(rrset);
622     int count = 0;
623     int i;
624
625     for (i = 0; i < num; ++i) {
626         char *rrdata = sk_OPENSSL_STRING_value(rrset, i);
627         if (tlsa_import_rr(con, rrdata) > 0)
628             ++count;
629     }
630     return count > 0;
631 }
632
633 typedef enum OPTION_choice {
634     OPT_ERR = -1, OPT_EOF = 0, OPT_HELP,
635     OPT_4, OPT_6, OPT_HOST, OPT_PORT, OPT_CONNECT, OPT_UNIX,
636     OPT_XMPPHOST, OPT_VERIFY,
637     OPT_CERT, OPT_CRL, OPT_CRL_DOWNLOAD, OPT_SESS_OUT, OPT_SESS_IN,
638     OPT_CERTFORM, OPT_CRLFORM, OPT_VERIFY_RET_ERROR, OPT_VERIFY_QUIET,
639     OPT_BRIEF, OPT_PREXIT, OPT_CRLF, OPT_QUIET, OPT_NBIO,
640     OPT_SSL_CLIENT_ENGINE, OPT_RAND, OPT_IGN_EOF, OPT_NO_IGN_EOF,
641     OPT_DEBUG, OPT_TLSEXTDEBUG, OPT_STATUS, OPT_WDEBUG,
642     OPT_MSG, OPT_MSGFILE, OPT_ENGINE, OPT_TRACE, OPT_SECURITY_DEBUG,
643     OPT_SECURITY_DEBUG_VERBOSE, OPT_SHOWCERTS, OPT_NBIO_TEST, OPT_STATE,
644     OPT_PSK_IDENTITY, OPT_PSK, OPT_SRPUSER, OPT_SRPPASS, OPT_SRP_STRENGTH,
645     OPT_SRP_LATEUSER, OPT_SRP_MOREGROUPS, OPT_SSL3, OPT_SSL_CONFIG,
646     OPT_TLS1_2, OPT_TLS1_1, OPT_TLS1, OPT_DTLS, OPT_DTLS1,
647     OPT_DTLS1_2, OPT_TIMEOUT, OPT_MTU, OPT_KEYFORM, OPT_PASS,
648     OPT_CERT_CHAIN, OPT_CAPATH, OPT_NOCAPATH, OPT_CHAINCAPATH, OPT_VERIFYCAPATH,
649     OPT_KEY, OPT_RECONNECT, OPT_BUILD_CHAIN, OPT_CAFILE, OPT_NOCAFILE,
650     OPT_CHAINCAFILE, OPT_VERIFYCAFILE, OPT_NEXTPROTONEG, OPT_ALPN,
651     OPT_SERVERINFO, OPT_STARTTLS, OPT_SERVERNAME,
652     OPT_USE_SRTP, OPT_KEYMATEXPORT, OPT_KEYMATEXPORTLEN, OPT_SMTPHOST,
653     OPT_ASYNC,
654     OPT_V_ENUM,
655     OPT_X_ENUM,
656     OPT_S_ENUM,
657     OPT_FALLBACKSCSV, OPT_NOCMDS, OPT_PROXY, OPT_DANE_TLSA_DOMAIN,
658     OPT_DANE_TLSA_RRDATA
659 } OPTION_CHOICE;
660
661 OPTIONS s_client_options[] = {
662     {"help", OPT_HELP, '-', "Display this summary"},
663     {"host", OPT_HOST, 's', "Use -connect instead"},
664     {"port", OPT_PORT, 'p', "Use -connect instead"},
665     {"connect", OPT_CONNECT, 's',
666      "TCP/IP where to connect (default is :" PORT ")"},
667     {"proxy", OPT_PROXY, 's',
668      "Connect to via specified proxy to the real server"},
669 #ifdef AF_UNIX
670     {"unix", OPT_UNIX, 's', "Connect over unix domain sockets"},
671 #endif
672     {"4", OPT_4, '-', "Use IPv4 only"},
673     {"6", OPT_6, '-', "Use IPv6 only"},
674     {"verify", OPT_VERIFY, 'p', "Turn on peer certificate verification"},
675     {"cert", OPT_CERT, '<', "Certificate file to use, PEM format assumed"},
676     {"certform", OPT_CERTFORM, 'F',
677      "Certificate format (PEM or DER) PEM default"},
678     {"key", OPT_KEY, '<', "Private key file to use, if not in -cert file"},
679     {"keyform", OPT_KEYFORM, 'F', "Key format (PEM or DER) PEM default"},
680     {"pass", OPT_PASS, 's', "Private key file pass phrase source"},
681     {"CApath", OPT_CAPATH, '/', "PEM format directory of CA's"},
682     {"CAfile", OPT_CAFILE, '<', "PEM format file of CA's"},
683     {"no-CAfile", OPT_NOCAFILE, '-',
684      "Do not load the default certificates file"},
685     {"no-CApath", OPT_NOCAPATH, '-',
686      "Do not load certificates from the default certificates directory"},
687     {"dane_tlsa_domain", OPT_DANE_TLSA_DOMAIN, 's', "DANE TLSA base domain"},
688     {"dane_tlsa_rrdata", OPT_DANE_TLSA_RRDATA, 's',
689      "DANE TLSA rrdata presentation form"},
690     {"reconnect", OPT_RECONNECT, '-',
691      "Drop and re-make the connection with the same Session-ID"},
692     {"showcerts", OPT_SHOWCERTS, '-', "Show all certificates in the chain"},
693     {"debug", OPT_DEBUG, '-', "Extra output"},
694     {"msg", OPT_MSG, '-', "Show protocol messages"},
695     {"msgfile", OPT_MSGFILE, '>',
696      "File to send output of -msg or -trace, instead of stdout"},
697     {"nbio_test", OPT_NBIO_TEST, '-', "More ssl protocol testing"},
698     {"state", OPT_STATE, '-', "Print the ssl states"},
699     {"crlf", OPT_CRLF, '-', "Convert LF from terminal into CRLF"},
700     {"quiet", OPT_QUIET, '-', "No s_client output"},
701     {"ign_eof", OPT_IGN_EOF, '-', "Ignore input eof (default when -quiet)"},
702     {"no_ign_eof", OPT_NO_IGN_EOF, '-', "Don't ignore input eof"},
703     {"starttls", OPT_STARTTLS, 's',
704      "Use the appropriate STARTTLS command before starting TLS"},
705     {"xmpphost", OPT_XMPPHOST, 's',
706      "Host to use with \"-starttls xmpp[-server]\""},
707     {"rand", OPT_RAND, 's',
708      "Load the file(s) into the random number generator"},
709     {"sess_out", OPT_SESS_OUT, '>', "File to write SSL session to"},
710     {"sess_in", OPT_SESS_IN, '<', "File to read SSL session from"},
711     {"use_srtp", OPT_USE_SRTP, 's',
712      "Offer SRTP key management with a colon-separated profile list"},
713     {"keymatexport", OPT_KEYMATEXPORT, 's',
714      "Export keying material using label"},
715     {"keymatexportlen", OPT_KEYMATEXPORTLEN, 'p',
716      "Export len bytes of keying material (default 20)"},
717     {"fallback_scsv", OPT_FALLBACKSCSV, '-', "Send the fallback SCSV"},
718     {"name", OPT_SMTPHOST, 's', "Hostname to use for \"-starttls smtp\""},
719     {"CRL", OPT_CRL, '<', "CRL file to use"},
720     {"crl_download", OPT_CRL_DOWNLOAD, '-', "Download CRL from distribution points"},
721     {"CRLform", OPT_CRLFORM, 'F', "CRL format (PEM or DER) PEM is default"},
722     {"verify_return_error", OPT_VERIFY_RET_ERROR, '-',
723      "Close connection on verification error"},
724     {"verify_quiet", OPT_VERIFY_QUIET, '-', "Restrict verify output to errors"},
725     {"brief", OPT_BRIEF, '-',
726      "Restrict output to brief summary of connection parameters"},
727     {"prexit", OPT_PREXIT, '-',
728      "Print session information when the program exits"},
729     {"security_debug", OPT_SECURITY_DEBUG, '-',
730      "Enable security debug messages"},
731     {"security_debug_verbose", OPT_SECURITY_DEBUG_VERBOSE, '-',
732      "Output more security debug output"},
733     {"cert_chain", OPT_CERT_CHAIN, '<',
734      "Certificate chain file (in PEM format)"},
735     {"chainCApath", OPT_CHAINCAPATH, '/',
736      "Use dir as certificate store path to build CA certificate chain"},
737     {"verifyCApath", OPT_VERIFYCAPATH, '/',
738      "Use dir as certificate store path to verify CA certificate"},
739     {"build_chain", OPT_BUILD_CHAIN, '-', "Build certificate chain"},
740     {"chainCAfile", OPT_CHAINCAFILE, '<',
741      "CA file for certificate chain (PEM format)"},
742     {"verifyCAfile", OPT_VERIFYCAFILE, '<',
743      "CA file for certificate verification (PEM format)"},
744     {"nocommands", OPT_NOCMDS, '-', "Do not use interactive command letters"},
745     {"servername", OPT_SERVERNAME, 's',
746      "Set TLS extension servername in ClientHello"},
747     {"tlsextdebug", OPT_TLSEXTDEBUG, '-',
748      "Hex dump of all TLS extensions received"},
749     {"status", OPT_STATUS, '-', "Request certificate status from server"},
750     {"serverinfo", OPT_SERVERINFO, 's',
751      "types  Send empty ClientHello extensions (comma-separated numbers)"},
752     {"alpn", OPT_ALPN, 's',
753      "Enable ALPN extension, considering named protocols supported (comma-separated list)"},
754     {"async", OPT_ASYNC, '-', "Support asynchronous operation"},
755     {"ssl_config", OPT_SSL_CONFIG, 's', "Use specified configuration file"},
756     OPT_S_OPTIONS,
757     OPT_V_OPTIONS,
758     OPT_X_OPTIONS,
759 #ifndef OPENSSL_NO_SSL3
760     {"ssl3", OPT_SSL3, '-', "Just use SSLv3"},
761 #endif
762 #ifndef OPENSSL_NO_TLS1
763     {"tls1", OPT_TLS1, '-', "Just use TLSv1"},
764 #endif
765 #ifndef OPENSSL_NO_TLS1_1
766     {"tls1_1", OPT_TLS1_1, '-', "Just use TLSv1.1"},
767 #endif
768 #ifndef OPENSSL_NO_TLS1_2
769     {"tls1_2", OPT_TLS1_2, '-', "Just use TLSv1.2"},
770 #endif
771 #ifndef OPENSSL_NO_DTLS
772     {"dtls", OPT_DTLS, '-', "Use any version of DTLS"},
773     {"timeout", OPT_TIMEOUT, '-',
774      "Enable send/receive timeout on DTLS connections"},
775     {"mtu", OPT_MTU, 'p', "Set the link layer MTU"},
776 #endif
777 #ifndef OPENSSL_NO_DTLS1
778     {"dtls1", OPT_DTLS1, '-', "Just use DTLSv1"},
779 #endif
780 #ifndef OPENSSL_NO_DTLS1_2
781     {"dtls1_2", OPT_DTLS1_2, '-', "Just use DTLSv1.2"},
782 #endif
783 #ifndef OPENSSL_NO_SSL_TRACE
784     {"trace", OPT_TRACE, '-', "Show trace output of protocol messages"},
785 #endif
786 #ifdef WATT32
787     {"wdebug", OPT_WDEBUG, '-', "WATT-32 tcp debugging"},
788 #endif
789 #ifdef FIONBIO
790     {"nbio", OPT_NBIO, '-', "Use non-blocking IO"},
791 #endif
792 #ifndef OPENSSL_NO_PSK
793     {"psk_identity", OPT_PSK_IDENTITY, 's', "PSK identity"},
794     {"psk", OPT_PSK, 's', "PSK in hex (without 0x)"},
795 #endif
796 #ifndef OPENSSL_NO_SRP
797     {"srpuser", OPT_SRPUSER, 's', "SRP authentification for 'user'"},
798     {"srppass", OPT_SRPPASS, 's', "Password for 'user'"},
799     {"srp_lateuser", OPT_SRP_LATEUSER, '-',
800      "SRP username into second ClientHello message"},
801     {"srp_moregroups", OPT_SRP_MOREGROUPS, '-',
802      "Tolerate other than the known g N values."},
803     {"srp_strength", OPT_SRP_STRENGTH, 'p', "Minimal length in bits for N"},
804 #endif
805 #ifndef OPENSSL_NO_NEXTPROTONEG
806     {"nextprotoneg", OPT_NEXTPROTONEG, 's',
807      "Enable NPN extension, considering named protocols supported (comma-separated list)"},
808 #endif
809 #ifndef OPENSSL_NO_ENGINE
810     {"engine", OPT_ENGINE, 's', "Use engine, possibly a hardware device"},
811     {"ssl_client_engine", OPT_SSL_CLIENT_ENGINE, 's',
812      "Specify engine to be used for client certificate operations"},
813 #endif
814     {NULL}
815 };
816
817 typedef enum PROTOCOL_choice {
818     PROTO_OFF,
819     PROTO_SMTP,
820     PROTO_POP3,
821     PROTO_IMAP,
822     PROTO_FTP,
823     PROTO_TELNET,
824     PROTO_XMPP,
825     PROTO_XMPP_SERVER,
826     PROTO_CONNECT,
827     PROTO_IRC
828 } PROTOCOL_CHOICE;
829
830 static OPT_PAIR services[] = {
831     {"smtp", PROTO_SMTP},
832     {"pop3", PROTO_POP3},
833     {"imap", PROTO_IMAP},
834     {"ftp", PROTO_FTP},
835     {"xmpp", PROTO_XMPP},
836     {"xmpp-server", PROTO_XMPP_SERVER},
837     {"telnet", PROTO_TELNET},
838     {"irc", PROTO_IRC},
839     {NULL}
840 };
841
842 int s_client_main(int argc, char **argv)
843 {
844     BIO *sbio;
845     EVP_PKEY *key = NULL;
846     SSL *con = NULL;
847     SSL_CTX *ctx = NULL;
848     STACK_OF(X509) *chain = NULL;
849     X509 *cert = NULL;
850     X509_VERIFY_PARAM *vpm = NULL;
851     SSL_EXCERT *exc = NULL;
852     SSL_CONF_CTX *cctx = NULL;
853     STACK_OF(OPENSSL_STRING) *ssl_args = NULL;
854     char *dane_tlsa_domain = NULL;
855     STACK_OF(OPENSSL_STRING) *dane_tlsa_rrset = NULL;
856     STACK_OF(X509_CRL) *crls = NULL;
857     const SSL_METHOD *meth = TLS_client_method();
858     char *CApath = NULL, *CAfile = NULL, *cbuf = NULL, *sbuf = NULL;
859     char *mbuf = NULL, *proxystr = NULL, *connectstr = NULL;
860     char *cert_file = NULL, *key_file = NULL, *chain_file = NULL;
861     char *chCApath = NULL, *chCAfile = NULL, *host = NULL;
862     char *port = BUF_strdup(PORT);
863     char *inrand = NULL;
864     char *passarg = NULL, *pass = NULL, *vfyCApath = NULL, *vfyCAfile = NULL;
865     char *sess_in = NULL, *sess_out = NULL, *crl_file = NULL, *p;
866     char *xmpphost = NULL;
867     const char *ehlo = "mail.example.com";
868     struct sockaddr peer;
869     struct timeval timeout, *timeoutp;
870     fd_set readfds, writefds;
871     int noCApath = 0, noCAfile = 0;
872     int build_chain = 0, cbuf_len, cbuf_off, cert_format = FORMAT_PEM;
873     int key_format = FORMAT_PEM, crlf = 0, full_log = 1, mbuf_len = 0;
874     int prexit = 0;
875     int enable_timeouts = 0, sdebug = 0, peerlen = sizeof peer;
876     int reconnect = 0, verify = SSL_VERIFY_NONE, vpmtouched = 0;
877     int ret = 1, in_init = 1, i, nbio_test = 0, s = -1, k, width, state = 0;
878     int sbuf_len, sbuf_off, cmdletters = 1;
879     int socket_family = AF_UNSPEC, socket_type = SOCK_STREAM;
880     int starttls_proto = PROTO_OFF, crl_format = FORMAT_PEM, crl_download = 0;
881     int write_tty, read_tty, write_ssl, read_ssl, tty_on, ssl_pending;
882     int fallback_scsv = 0;
883     long socket_mtu = 0, randamt = 0;
884     OPTION_CHOICE o;
885 #ifndef OPENSSL_NO_ENGINE
886     ENGINE *ssl_client_engine = NULL;
887 #endif
888     ENGINE *e = NULL;
889 #if defined(OPENSSL_SYS_WINDOWS) || defined(OPENSSL_SYS_MSDOS) || defined(OPENSSL_SYS_NETWARE)
890     struct timeval tv;
891 #endif
892     char *servername = NULL;
893     const char *alpn_in = NULL;
894     tlsextctx tlsextcbp = { NULL, 0 };
895     const char *ssl_config = NULL;
896 #define MAX_SI_TYPES 100
897     unsigned short serverinfo_types[MAX_SI_TYPES];
898     int serverinfo_count = 0, start = 0, len;
899 #ifndef OPENSSL_NO_NEXTPROTONEG
900     const char *next_proto_neg_in = NULL;
901 #endif
902 #ifndef OPENSSL_NO_SRP
903     char *srppass = NULL;
904     int srp_lateuser = 0;
905     SRP_ARG srp_arg = { NULL, NULL, 0, 0, 0, 1024 };
906 #endif
907
908     prog = opt_progname(argv[0]);
909     c_quiet = 0;
910     c_ign_eof = 0;
911     c_debug = 0;
912     c_msg = 0;
913     c_showcerts = 0;
914     c_nbio = 0;
915     verify_depth = 0;
916     verify_error = X509_V_OK;
917     vpm = X509_VERIFY_PARAM_new();
918     cbuf = app_malloc(BUFSIZZ, "cbuf");
919     sbuf = app_malloc(BUFSIZZ, "sbuf");
920     mbuf = app_malloc(BUFSIZZ, "mbuf");
921     cctx = SSL_CONF_CTX_new();
922
923     if (vpm == NULL || cctx == NULL) {
924         BIO_printf(bio_err, "%s: out of memory\n", prog);
925         goto end;
926     }
927
928     SSL_CONF_CTX_set_flags(cctx, SSL_CONF_FLAG_CLIENT | SSL_CONF_FLAG_CMDLINE);
929
930     prog = opt_init(argc, argv, s_client_options);
931     while ((o = opt_next()) != OPT_EOF) {
932         switch (o) {
933         case OPT_EOF:
934         case OPT_ERR:
935  opthelp:
936             BIO_printf(bio_err, "%s: Use -help for summary.\n", prog);
937             goto end;
938         case OPT_HELP:
939             opt_help(s_client_options);
940             ret = 0;
941             goto end;
942         case OPT_4:
943 #ifdef AF_UNIX
944             if (socket_family == AF_UNIX) {
945                 OPENSSL_free(host); host = NULL;
946                 OPENSSL_free(port); port = NULL;
947             }
948 #endif
949             socket_family = AF_INET;
950             break;
951         case OPT_6:
952             if (1) {
953 #ifdef AF_INET6
954 #ifdef AF_UNIX
955                 if (socket_family == AF_UNIX) {
956                     OPENSSL_free(host); host = NULL;
957                     OPENSSL_free(port); port = NULL;
958                 }
959 #endif
960                 socket_family = AF_INET6;
961             } else {
962 #endif
963                 BIO_printf(bio_err, "%s: IPv6 domain sockets unsupported\n", prog);
964                 goto end;
965             }
966             break;
967         case OPT_HOST:
968 #ifdef AF_UNIX
969             if (socket_family == AF_UNIX) {
970                 OPENSSL_free(host); host = NULL;
971                 OPENSSL_free(port); port = NULL;
972                 socket_family = AF_UNSPEC;
973             }
974 #endif
975             OPENSSL_free(host); host = BUF_strdup(opt_arg());
976             break;
977         case OPT_PORT:
978 #ifdef AF_UNIX
979             if (socket_family == AF_UNIX) {
980                 OPENSSL_free(host); host = NULL;
981                 OPENSSL_free(port); port = NULL;
982                 socket_family = AF_UNSPEC;
983             }
984 #endif
985             OPENSSL_free(port); port = BUF_strdup(opt_arg());
986             break;
987         case OPT_CONNECT:
988 #ifdef AF_UNIX
989             if (socket_family == AF_UNIX) {
990                 socket_family = AF_UNSPEC;
991             }
992 #endif
993             OPENSSL_free(host); host = NULL;
994             OPENSSL_free(port); port = NULL;
995             connectstr = opt_arg();
996             break;
997         case OPT_PROXY:
998             proxystr = opt_arg();
999             starttls_proto = PROTO_CONNECT;
1000             break;
1001 #ifdef AF_UNIX
1002         case OPT_UNIX:
1003             socket_family = AF_UNIX;
1004             OPENSSL_free(host); host = BUF_strdup(opt_arg());
1005             OPENSSL_free(port); port = NULL;
1006             break;
1007 #endif
1008         case OPT_XMPPHOST:
1009             xmpphost = opt_arg();
1010             break;
1011         case OPT_SMTPHOST:
1012             ehlo = opt_arg();
1013             break;
1014         case OPT_VERIFY:
1015             verify = SSL_VERIFY_PEER;
1016             verify_depth = atoi(opt_arg());
1017             if (!c_quiet)
1018                 BIO_printf(bio_err, "verify depth is %d\n", verify_depth);
1019             break;
1020         case OPT_CERT:
1021             cert_file = opt_arg();
1022             break;
1023         case OPT_CRL:
1024             crl_file = opt_arg();
1025             break;
1026         case OPT_CRL_DOWNLOAD:
1027             crl_download = 1;
1028             break;
1029         case OPT_SESS_OUT:
1030             sess_out = opt_arg();
1031             break;
1032         case OPT_SESS_IN:
1033             sess_in = opt_arg();
1034             break;
1035         case OPT_CERTFORM:
1036             if (!opt_format(opt_arg(), OPT_FMT_PEMDER, &cert_format))
1037                 goto opthelp;
1038             break;
1039         case OPT_CRLFORM:
1040             if (!opt_format(opt_arg(), OPT_FMT_PEMDER, &crl_format))
1041                 goto opthelp;
1042             break;
1043         case OPT_VERIFY_RET_ERROR:
1044             verify_return_error = 1;
1045             break;
1046         case OPT_VERIFY_QUIET:
1047             verify_quiet = 1;
1048             break;
1049         case OPT_BRIEF:
1050             c_brief = verify_quiet = c_quiet = 1;
1051             break;
1052         case OPT_S_CASES:
1053             if (ssl_args == NULL)
1054                 ssl_args = sk_OPENSSL_STRING_new_null();
1055             if (ssl_args == NULL
1056                 || !sk_OPENSSL_STRING_push(ssl_args, opt_flag())
1057                 || !sk_OPENSSL_STRING_push(ssl_args, opt_arg())) {
1058                 BIO_printf(bio_err, "%s: Memory allocation failure\n", prog);
1059                 goto end;
1060             }
1061             break;
1062         case OPT_V_CASES:
1063             if (!opt_verify(o, vpm))
1064                 goto end;
1065             vpmtouched++;
1066             break;
1067         case OPT_X_CASES:
1068             if (!args_excert(o, &exc))
1069                 goto end;
1070             break;
1071         case OPT_PREXIT:
1072             prexit = 1;
1073             break;
1074         case OPT_CRLF:
1075             crlf = 1;
1076             break;
1077         case OPT_QUIET:
1078             c_quiet = c_ign_eof = 1;
1079             break;
1080         case OPT_NBIO:
1081             c_nbio = 1;
1082             break;
1083         case OPT_NOCMDS:
1084             cmdletters = 0;
1085             break;
1086         case OPT_ENGINE:
1087             e = setup_engine(opt_arg(), 1);
1088             break;
1089         case OPT_SSL_CLIENT_ENGINE:
1090 #ifndef OPENSSL_NO_ENGINE
1091             ssl_client_engine = ENGINE_by_id(opt_arg());
1092             if (ssl_client_engine == NULL) {
1093                 BIO_printf(bio_err, "Error getting client auth engine\n");
1094                 goto opthelp;
1095             }
1096             break;
1097 #endif
1098             break;
1099         case OPT_RAND:
1100             inrand = opt_arg();
1101             break;
1102         case OPT_IGN_EOF:
1103             c_ign_eof = 1;
1104             break;
1105         case OPT_NO_IGN_EOF:
1106             c_ign_eof = 0;
1107             break;
1108         case OPT_DEBUG:
1109             c_debug = 1;
1110             break;
1111         case OPT_TLSEXTDEBUG:
1112             c_tlsextdebug = 1;
1113             break;
1114         case OPT_STATUS:
1115             c_status_req = 1;
1116             break;
1117         case OPT_WDEBUG:
1118 #ifdef WATT32
1119             dbug_init();
1120 #endif
1121             break;
1122         case OPT_MSG:
1123             c_msg = 1;
1124             break;
1125         case OPT_MSGFILE:
1126             bio_c_msg = BIO_new_file(opt_arg(), "w");
1127             break;
1128         case OPT_TRACE:
1129 #ifndef OPENSSL_NO_SSL_TRACE
1130             c_msg = 2;
1131 #endif
1132             break;
1133         case OPT_SECURITY_DEBUG:
1134             sdebug = 1;
1135             break;
1136         case OPT_SECURITY_DEBUG_VERBOSE:
1137             sdebug = 2;
1138             break;
1139         case OPT_SHOWCERTS:
1140             c_showcerts = 1;
1141             break;
1142         case OPT_NBIO_TEST:
1143             nbio_test = 1;
1144             break;
1145         case OPT_STATE:
1146             state = 1;
1147             break;
1148 #ifndef OPENSSL_NO_PSK
1149         case OPT_PSK_IDENTITY:
1150             psk_identity = opt_arg();
1151             break;
1152         case OPT_PSK:
1153             for (p = psk_key = opt_arg(); *p; p++) {
1154                 if (isxdigit(_UC(*p)))
1155                     continue;
1156                 BIO_printf(bio_err, "Not a hex number '%s'\n", psk_key);
1157                 goto end;
1158             }
1159             break;
1160 #else
1161         case OPT_PSK_IDENTITY:
1162         case OPT_PSK:
1163             break;
1164 #endif
1165 #ifndef OPENSSL_NO_SRP
1166         case OPT_SRPUSER:
1167             srp_arg.srplogin = opt_arg();
1168             meth = TLSv1_client_method();
1169             break;
1170         case OPT_SRPPASS:
1171             srppass = opt_arg();
1172             meth = TLSv1_client_method();
1173             break;
1174         case OPT_SRP_STRENGTH:
1175             srp_arg.strength = atoi(opt_arg());
1176             BIO_printf(bio_err, "SRP minimal length for N is %d\n",
1177                        srp_arg.strength);
1178             meth = TLSv1_client_method();
1179             break;
1180         case OPT_SRP_LATEUSER:
1181             srp_lateuser = 1;
1182             meth = TLSv1_client_method();
1183             break;
1184         case OPT_SRP_MOREGROUPS:
1185             srp_arg.amp = 1;
1186             meth = TLSv1_client_method();
1187             break;
1188 #else
1189         case OPT_SRPUSER:
1190         case OPT_SRPPASS:
1191         case OPT_SRP_STRENGTH:
1192         case OPT_SRP_LATEUSER:
1193         case OPT_SRP_MOREGROUPS:
1194             break;
1195 #endif
1196         case OPT_SSL_CONFIG:
1197             ssl_config = opt_arg();
1198             break;
1199         case OPT_SSL3:
1200 #ifndef OPENSSL_NO_SSL3
1201             meth = SSLv3_client_method();
1202 #endif
1203             break;
1204         case OPT_TLS1_2:
1205 #ifndef OPENSSL_NO_TLS1_2
1206             meth = TLSv1_2_client_method();
1207 #endif
1208             break;
1209         case OPT_TLS1_1:
1210 #ifndef OPENSSL_NO_TLS1_1
1211             meth = TLSv1_1_client_method();
1212 #endif
1213             break;
1214         case OPT_TLS1:
1215 #ifndef OPENSSL_NO_TLS1
1216             meth = TLSv1_client_method();
1217 #endif
1218             break;
1219         case OPT_DTLS:
1220 #ifndef OPENSSL_NO_DTLS
1221             meth = DTLS_client_method();
1222             socket_type = SOCK_DGRAM;
1223 #endif
1224             break;
1225         case OPT_DTLS1:
1226 #ifndef OPENSSL_NO_DTLS1
1227             meth = DTLSv1_client_method();
1228             socket_type = SOCK_DGRAM;
1229 #endif
1230             break;
1231         case OPT_DTLS1_2:
1232 #ifndef OPENSSL_NO_DTLS1_2
1233             meth = DTLSv1_2_client_method();
1234             socket_type = SOCK_DGRAM;
1235 #endif
1236             break;
1237         case OPT_TIMEOUT:
1238 #ifndef OPENSSL_NO_DTLS
1239             enable_timeouts = 1;
1240 #endif
1241             break;
1242         case OPT_MTU:
1243 #ifndef OPENSSL_NO_DTLS
1244             socket_mtu = atol(opt_arg());
1245 #endif
1246             break;
1247         case OPT_FALLBACKSCSV:
1248             fallback_scsv = 1;
1249             break;
1250         case OPT_KEYFORM:
1251             if (!opt_format(opt_arg(), OPT_FMT_PEMDER, &key_format))
1252                 goto opthelp;
1253             break;
1254         case OPT_PASS:
1255             passarg = opt_arg();
1256             break;
1257         case OPT_CERT_CHAIN:
1258             chain_file = opt_arg();
1259             break;
1260         case OPT_KEY:
1261             key_file = opt_arg();
1262             break;
1263         case OPT_RECONNECT:
1264             reconnect = 5;
1265             break;
1266         case OPT_CAPATH:
1267             CApath = opt_arg();
1268             break;
1269         case OPT_NOCAPATH:
1270             noCApath = 1;
1271             break;
1272         case OPT_CHAINCAPATH:
1273             chCApath = opt_arg();
1274             break;
1275         case OPT_VERIFYCAPATH:
1276             vfyCApath = opt_arg();
1277             break;
1278         case OPT_BUILD_CHAIN:
1279             build_chain = 1;
1280             break;
1281         case OPT_CAFILE:
1282             CAfile = opt_arg();
1283             break;
1284         case OPT_NOCAFILE:
1285             noCAfile = 1;
1286             break;
1287         case OPT_CHAINCAFILE:
1288             chCAfile = opt_arg();
1289             break;
1290         case OPT_VERIFYCAFILE:
1291             vfyCAfile = opt_arg();
1292             break;
1293         case OPT_DANE_TLSA_DOMAIN:
1294             dane_tlsa_domain = opt_arg();
1295             break;
1296         case OPT_DANE_TLSA_RRDATA:
1297             if (dane_tlsa_rrset == NULL)
1298                 dane_tlsa_rrset = sk_OPENSSL_STRING_new_null();
1299             if (dane_tlsa_rrset == NULL ||
1300                 !sk_OPENSSL_STRING_push(dane_tlsa_rrset, opt_arg())) {
1301                 BIO_printf(bio_err, "%s: Memory allocation failure\n", prog);
1302                 goto end;
1303             }
1304             break;
1305         case OPT_NEXTPROTONEG:
1306             next_proto_neg_in = opt_arg();
1307             break;
1308         case OPT_ALPN:
1309             alpn_in = opt_arg();
1310             break;
1311         case OPT_SERVERINFO:
1312             p = opt_arg();
1313             len = strlen(p);
1314             for (start = 0, i = 0; i <= len; ++i) {
1315                 if (i == len || p[i] == ',') {
1316                     serverinfo_types[serverinfo_count] = atoi(p + start);
1317                     if (++serverinfo_count == MAX_SI_TYPES)
1318                         break;
1319                     start = i + 1;
1320                 }
1321             }
1322             break;
1323         case OPT_STARTTLS:
1324             if (!opt_pair(opt_arg(), services, &starttls_proto))
1325                 goto end;
1326         case OPT_SERVERNAME:
1327             servername = opt_arg();
1328             break;
1329         case OPT_USE_SRTP:
1330             srtp_profiles = opt_arg();
1331             break;
1332         case OPT_KEYMATEXPORT:
1333             keymatexportlabel = opt_arg();
1334             break;
1335         case OPT_KEYMATEXPORTLEN:
1336             keymatexportlen = atoi(opt_arg());
1337             break;
1338         case OPT_ASYNC:
1339             async = 1;
1340             break;
1341         }
1342     }
1343     argc = opt_num_rest();
1344     if (argc != 0)
1345         goto opthelp;
1346
1347     if (proxystr) {
1348         int res;
1349         char *tmp_host = host, *tmp_port = port;
1350         if (connectstr == NULL) {
1351             BIO_printf(bio_err, "%s: -proxy requires use of -connect\n", prog);
1352             goto opthelp;
1353         }
1354         res = BIO_parse_hostserv(proxystr, &host, &port, BIO_PARSE_PRIO_HOST);
1355         if (tmp_host != host)
1356             OPENSSL_free(tmp_host);
1357         if (tmp_port != port)
1358             OPENSSL_free(tmp_port);
1359         if (!res) {
1360             BIO_printf(bio_err, "%s: -proxy argument malformed or ambiguous\n",
1361                        prog);
1362             goto end;
1363         }
1364     } else {
1365         int res = 1;
1366         char *tmp_host = host, *tmp_port = port;
1367         if (connectstr != NULL)
1368             res = BIO_parse_hostserv(connectstr, &host, &port,
1369                                      BIO_PARSE_PRIO_HOST);
1370         if (tmp_host != host)
1371             OPENSSL_free(tmp_host);
1372         if (tmp_port != port)
1373             OPENSSL_free(tmp_port);
1374         if (!res) {
1375             BIO_printf(bio_err,
1376                        "%s: -connect argument malformed or ambiguous\n",
1377                        prog);
1378             goto end;
1379         }
1380     }
1381
1382     if (socket_family == AF_UNIX && socket_type != SOCK_STREAM) {
1383         BIO_printf(bio_err,
1384                    "Can't use unix sockets and datagrams together\n");
1385         goto end;
1386     }
1387
1388 #if !defined(OPENSSL_NO_NEXTPROTONEG)
1389     next_proto.status = -1;
1390     if (next_proto_neg_in) {
1391         next_proto.data =
1392             next_protos_parse(&next_proto.len, next_proto_neg_in);
1393         if (next_proto.data == NULL) {
1394             BIO_printf(bio_err, "Error parsing -nextprotoneg argument\n");
1395             goto end;
1396         }
1397     } else
1398         next_proto.data = NULL;
1399 #endif
1400
1401     if (!app_passwd(passarg, NULL, &pass, NULL)) {
1402         BIO_printf(bio_err, "Error getting password\n");
1403         goto end;
1404     }
1405
1406     if (key_file == NULL)
1407         key_file = cert_file;
1408
1409     if (key_file) {
1410         key = load_key(key_file, key_format, 0, pass, e,
1411                        "client certificate private key file");
1412         if (key == NULL) {
1413             ERR_print_errors(bio_err);
1414             goto end;
1415         }
1416     }
1417
1418     if (cert_file) {
1419         cert = load_cert(cert_file, cert_format,
1420                          NULL, e, "client certificate file");
1421         if (cert == NULL) {
1422             ERR_print_errors(bio_err);
1423             goto end;
1424         }
1425     }
1426
1427     if (chain_file) {
1428         if (!load_certs(chain_file, &chain, FORMAT_PEM, NULL, e,
1429                         "client certificate chain"))
1430             goto end;
1431     }
1432
1433     if (crl_file) {
1434         X509_CRL *crl;
1435         crl = load_crl(crl_file, crl_format);
1436         if (crl == NULL) {
1437             BIO_puts(bio_err, "Error loading CRL\n");
1438             ERR_print_errors(bio_err);
1439             goto end;
1440         }
1441         crls = sk_X509_CRL_new_null();
1442         if (crls == NULL || !sk_X509_CRL_push(crls, crl)) {
1443             BIO_puts(bio_err, "Error adding CRL\n");
1444             ERR_print_errors(bio_err);
1445             X509_CRL_free(crl);
1446             goto end;
1447         }
1448     }
1449
1450     if (!load_excert(&exc))
1451         goto end;
1452
1453     if (!app_RAND_load_file(NULL, 1) && inrand == NULL
1454         && !RAND_status()) {
1455         BIO_printf(bio_err,
1456                    "warning, not much extra random data, consider using the -rand option\n");
1457     }
1458     if (inrand != NULL) {
1459         randamt = app_RAND_load_files(inrand);
1460         BIO_printf(bio_err, "%ld semi-random bytes loaded\n", randamt);
1461     }
1462
1463     if (bio_c_out == NULL) {
1464         if (c_quiet && !c_debug) {
1465             bio_c_out = BIO_new(BIO_s_null());
1466             if (c_msg && !bio_c_msg)
1467                 bio_c_msg = dup_bio_out(FORMAT_TEXT);
1468         } else if (bio_c_out == NULL)
1469             bio_c_out = dup_bio_out(FORMAT_TEXT);
1470     }
1471 #ifndef OPENSSL_NO_SRP
1472     if (!app_passwd(srppass, NULL, &srp_arg.srppassin, NULL)) {
1473         BIO_printf(bio_err, "Error getting password\n");
1474         goto end;
1475     }
1476 #endif
1477
1478     ctx = SSL_CTX_new(meth);
1479     if (ctx == NULL) {
1480         ERR_print_errors(bio_err);
1481         goto end;
1482     }
1483
1484     if (sdebug)
1485         ssl_ctx_security_debug(ctx, sdebug);
1486
1487     if (ssl_config) {
1488         if (SSL_CTX_config(ctx, ssl_config) == 0) {
1489             BIO_printf(bio_err, "Error using configuration \"%s\"\n",
1490                        ssl_config);
1491         ERR_print_errors(bio_err);
1492         goto end;
1493         }
1494     }
1495
1496     if (vpmtouched && !SSL_CTX_set1_param(ctx, vpm)) {
1497         BIO_printf(bio_err, "Error setting verify params\n");
1498         ERR_print_errors(bio_err);
1499         goto end;
1500     }
1501
1502     if (async) {
1503         SSL_CTX_set_mode(ctx, SSL_MODE_ASYNC);
1504     }
1505
1506     if (!config_ctx(cctx, ssl_args, ctx))
1507         goto end;
1508
1509     if (!ssl_load_stores(ctx, vfyCApath, vfyCAfile, chCApath, chCAfile,
1510                          crls, crl_download)) {
1511         BIO_printf(bio_err, "Error loading store locations\n");
1512         ERR_print_errors(bio_err);
1513         goto end;
1514     }
1515 #ifndef OPENSSL_NO_ENGINE
1516     if (ssl_client_engine) {
1517         if (!SSL_CTX_set_client_cert_engine(ctx, ssl_client_engine)) {
1518             BIO_puts(bio_err, "Error setting client auth engine\n");
1519             ERR_print_errors(bio_err);
1520             ENGINE_free(ssl_client_engine);
1521             goto end;
1522         }
1523         ENGINE_free(ssl_client_engine);
1524     }
1525 #endif
1526
1527 #ifndef OPENSSL_NO_PSK
1528     if (psk_key != NULL) {
1529         if (c_debug)
1530             BIO_printf(bio_c_out,
1531                        "PSK key given, setting client callback\n");
1532         SSL_CTX_set_psk_client_callback(ctx, psk_client_cb);
1533     }
1534 #endif
1535 #ifndef OPENSSL_NO_SRTP
1536     if (srtp_profiles != NULL) {
1537         /* Returns 0 on success! */
1538         if (SSL_CTX_set_tlsext_use_srtp(ctx, srtp_profiles) != 0) {
1539             BIO_printf(bio_err, "Error setting SRTP profile\n");
1540             ERR_print_errors(bio_err);
1541             goto end;
1542         }
1543     }
1544 #endif
1545
1546     if (exc)
1547         ssl_ctx_set_excert(ctx, exc);
1548
1549 #if !defined(OPENSSL_NO_NEXTPROTONEG)
1550     if (next_proto.data)
1551         SSL_CTX_set_next_proto_select_cb(ctx, next_proto_cb, &next_proto);
1552 #endif
1553     if (alpn_in) {
1554         unsigned short alpn_len;
1555         unsigned char *alpn = next_protos_parse(&alpn_len, alpn_in);
1556
1557         if (alpn == NULL) {
1558             BIO_printf(bio_err, "Error parsing -alpn argument\n");
1559             goto end;
1560         }
1561         /* Returns 0 on success! */
1562         if (SSL_CTX_set_alpn_protos(ctx, alpn, alpn_len) != 0) {
1563            BIO_printf(bio_err, "Error setting ALPN\n");
1564             goto end;
1565         }
1566         OPENSSL_free(alpn);
1567     }
1568
1569     for (i = 0; i < serverinfo_count; i++) {
1570         if (!SSL_CTX_add_client_custom_ext(ctx,
1571                                            serverinfo_types[i],
1572                                            NULL, NULL, NULL,
1573                                            serverinfo_cli_parse_cb, NULL)) {
1574             BIO_printf(bio_err,
1575                     "Warning: Unable to add custom extension %u, skipping\n",
1576                     serverinfo_types[i]);
1577         }
1578     }
1579
1580     if (state)
1581         SSL_CTX_set_info_callback(ctx, apps_ssl_info_callback);
1582
1583     SSL_CTX_set_verify(ctx, verify, verify_callback);
1584
1585     if (!ctx_set_verify_locations(ctx, CAfile, CApath, noCAfile, noCApath)) {
1586         ERR_print_errors(bio_err);
1587         goto end;
1588     }
1589
1590     ssl_ctx_add_crls(ctx, crls, crl_download);
1591
1592     if (!set_cert_key_stuff(ctx, cert, key, chain, build_chain))
1593         goto end;
1594
1595     if (servername != NULL) {
1596         tlsextcbp.biodebug = bio_err;
1597         SSL_CTX_set_tlsext_servername_callback(ctx, ssl_servername_cb);
1598         SSL_CTX_set_tlsext_servername_arg(ctx, &tlsextcbp);
1599     }
1600 # ifndef OPENSSL_NO_SRP
1601     if (srp_arg.srplogin) {
1602         if (!srp_lateuser && !SSL_CTX_set_srp_username(ctx, srp_arg.srplogin)) {
1603             BIO_printf(bio_err, "Unable to set SRP username\n");
1604             goto end;
1605         }
1606         srp_arg.msg = c_msg;
1607         srp_arg.debug = c_debug;
1608         SSL_CTX_set_srp_cb_arg(ctx, &srp_arg);
1609         SSL_CTX_set_srp_client_pwd_callback(ctx, ssl_give_srp_client_pwd_cb);
1610         SSL_CTX_set_srp_strength(ctx, srp_arg.strength);
1611         if (c_msg || c_debug || srp_arg.amp == 0)
1612             SSL_CTX_set_srp_verify_param_callback(ctx,
1613                                                   ssl_srp_verify_param_cb);
1614     }
1615 # endif
1616
1617     if (dane_tlsa_domain != NULL) {
1618         if (SSL_CTX_dane_enable(ctx) <= 0) {
1619             BIO_printf(bio_err,
1620                        "%s: Error enabling DANE TLSA authentication.\n", prog);
1621             ERR_print_errors(bio_err);
1622             goto end;
1623         }
1624     }
1625
1626     con = SSL_new(ctx);
1627     if (sess_in) {
1628         SSL_SESSION *sess;
1629         BIO *stmp = BIO_new_file(sess_in, "r");
1630         if (!stmp) {
1631             BIO_printf(bio_err, "Can't open session file %s\n", sess_in);
1632             ERR_print_errors(bio_err);
1633             goto end;
1634         }
1635         sess = PEM_read_bio_SSL_SESSION(stmp, NULL, 0, NULL);
1636         BIO_free(stmp);
1637         if (!sess) {
1638             BIO_printf(bio_err, "Can't open session file %s\n", sess_in);
1639             ERR_print_errors(bio_err);
1640             goto end;
1641         }
1642         if (!SSL_set_session(con, sess)) {
1643             BIO_printf(bio_err, "Can't set session\n");
1644             ERR_print_errors(bio_err);
1645             goto end;
1646         }
1647         SSL_SESSION_free(sess);
1648     }
1649
1650     if (fallback_scsv)
1651         SSL_set_mode(con, SSL_MODE_SEND_FALLBACK_SCSV);
1652
1653     if (servername != NULL) {
1654         if (!SSL_set_tlsext_host_name(con, servername)) {
1655             BIO_printf(bio_err, "Unable to set TLS servername extension.\n");
1656             ERR_print_errors(bio_err);
1657             goto end;
1658         }
1659     }
1660
1661     if (dane_tlsa_domain != NULL) {
1662         if (SSL_dane_enable(con, dane_tlsa_domain) <= 0) {
1663             BIO_printf(bio_err, "%s: Error enabling DANE TLSA "
1664                        "authentication.\n", prog);
1665             ERR_print_errors(bio_err);
1666             goto end;
1667         }
1668         if (dane_tlsa_rrset == NULL) {
1669             BIO_printf(bio_err, "%s: DANE TLSA authentication requires at "
1670                        "least one -dane_tlsa_rrset option.\n", prog);
1671             goto end;
1672         }
1673         if (tlsa_import_rrset(con, dane_tlsa_rrset) <= 0) {
1674             BIO_printf(bio_err, "%s: Failed to import any TLSA "
1675                        "records.\n", prog);
1676             goto end;
1677         }
1678     } else if (dane_tlsa_rrset != NULL) {
1679             BIO_printf(bio_err, "%s: DANE TLSA authentication requires the "
1680                        "-dane_tlsa_domain option.\n", prog);
1681             goto end;
1682     }
1683
1684  re_start:
1685     if (init_client(&s, host, port, socket_family, socket_type) == 0)
1686     {
1687         BIO_printf(bio_err, "connect:errno=%d\n", get_last_socket_error());
1688         SHUTDOWN(s);
1689         goto end;
1690     }
1691     BIO_printf(bio_c_out, "CONNECTED(%08X)\n", s);
1692
1693 #ifdef FIONBIO
1694     if (c_nbio) {
1695         unsigned long l = 1;
1696         BIO_printf(bio_c_out, "turning on non blocking io\n");
1697         if (BIO_socket_ioctl(s, FIONBIO, &l) < 0) {
1698             ERR_print_errors(bio_err);
1699             goto end;
1700         }
1701     }
1702 #endif
1703     if (socket_type == SOCK_DGRAM) {
1704
1705         sbio = BIO_new_dgram(s, BIO_NOCLOSE);
1706         if (getsockname(s, &peer, (void *)&peerlen) < 0) {
1707             BIO_printf(bio_err, "getsockname:errno=%d\n",
1708                        get_last_socket_error());
1709             SHUTDOWN(s);
1710             goto end;
1711         }
1712
1713         (void)BIO_ctrl_set_connected(sbio, &peer);
1714
1715         if (enable_timeouts) {
1716             timeout.tv_sec = 0;
1717             timeout.tv_usec = DGRAM_RCV_TIMEOUT;
1718             BIO_ctrl(sbio, BIO_CTRL_DGRAM_SET_RECV_TIMEOUT, 0, &timeout);
1719
1720             timeout.tv_sec = 0;
1721             timeout.tv_usec = DGRAM_SND_TIMEOUT;
1722             BIO_ctrl(sbio, BIO_CTRL_DGRAM_SET_SEND_TIMEOUT, 0, &timeout);
1723         }
1724
1725         if (socket_mtu) {
1726             if (socket_mtu < DTLS_get_link_min_mtu(con)) {
1727                 BIO_printf(bio_err, "MTU too small. Must be at least %ld\n",
1728                            DTLS_get_link_min_mtu(con));
1729                 BIO_free(sbio);
1730                 goto shut;
1731             }
1732             SSL_set_options(con, SSL_OP_NO_QUERY_MTU);
1733             if (!DTLS_set_link_mtu(con, socket_mtu)) {
1734                 BIO_printf(bio_err, "Failed to set MTU\n");
1735                 BIO_free(sbio);
1736                 goto shut;
1737             }
1738         } else
1739             /* want to do MTU discovery */
1740             BIO_ctrl(sbio, BIO_CTRL_DGRAM_MTU_DISCOVER, 0, NULL);
1741     } else
1742         sbio = BIO_new_socket(s, BIO_NOCLOSE);
1743
1744     if (nbio_test) {
1745         BIO *test;
1746
1747         test = BIO_new(BIO_f_nbio_test());
1748         sbio = BIO_push(test, sbio);
1749     }
1750
1751     if (c_debug) {
1752         BIO_set_callback(sbio, bio_dump_callback);
1753         BIO_set_callback_arg(sbio, (char *)bio_c_out);
1754     }
1755     if (c_msg) {
1756 #ifndef OPENSSL_NO_SSL_TRACE
1757         if (c_msg == 2)
1758             SSL_set_msg_callback(con, SSL_trace);
1759         else
1760 #endif
1761             SSL_set_msg_callback(con, msg_cb);
1762         SSL_set_msg_callback_arg(con, bio_c_msg ? bio_c_msg : bio_c_out);
1763     }
1764
1765     if (c_tlsextdebug) {
1766         SSL_set_tlsext_debug_callback(con, tlsext_cb);
1767         SSL_set_tlsext_debug_arg(con, bio_c_out);
1768     }
1769     if (c_status_req) {
1770         SSL_set_tlsext_status_type(con, TLSEXT_STATUSTYPE_ocsp);
1771         SSL_CTX_set_tlsext_status_cb(ctx, ocsp_resp_cb);
1772         SSL_CTX_set_tlsext_status_arg(ctx, bio_c_out);
1773     }
1774
1775     SSL_set_bio(con, sbio, sbio);
1776     SSL_set_connect_state(con);
1777
1778     /* ok, lets connect */
1779     width = SSL_get_fd(con) + 1;
1780
1781     read_tty = 1;
1782     write_tty = 0;
1783     tty_on = 0;
1784     read_ssl = 1;
1785     write_ssl = 1;
1786
1787     cbuf_len = 0;
1788     cbuf_off = 0;
1789     sbuf_len = 0;
1790     sbuf_off = 0;
1791
1792     switch ((PROTOCOL_CHOICE) starttls_proto) {
1793     case PROTO_OFF:
1794         break;
1795     case PROTO_SMTP:
1796         {
1797             /*
1798              * This is an ugly hack that does a lot of assumptions. We do
1799              * have to handle multi-line responses which may come in a single
1800              * packet or not. We therefore have to use BIO_gets() which does
1801              * need a buffering BIO. So during the initial chitchat we do
1802              * push a buffering BIO into the chain that is removed again
1803              * later on to not disturb the rest of the s_client operation.
1804              */
1805             int foundit = 0;
1806             BIO *fbio = BIO_new(BIO_f_buffer());
1807             BIO_push(fbio, sbio);
1808             /* wait for multi-line response to end from SMTP */
1809             do {
1810                 mbuf_len = BIO_gets(fbio, mbuf, BUFSIZZ);
1811             }
1812             while (mbuf_len > 3 && mbuf[3] == '-');
1813             BIO_printf(fbio, "EHLO %s\r\n", ehlo);
1814             (void)BIO_flush(fbio);
1815             /* wait for multi-line response to end EHLO SMTP response */
1816             do {
1817                 mbuf_len = BIO_gets(fbio, mbuf, BUFSIZZ);
1818                 if (strstr(mbuf, "STARTTLS"))
1819                     foundit = 1;
1820             }
1821             while (mbuf_len > 3 && mbuf[3] == '-');
1822             (void)BIO_flush(fbio);
1823             BIO_pop(fbio);
1824             BIO_free(fbio);
1825             if (!foundit)
1826                 BIO_printf(bio_err,
1827                            "didn't find starttls in server response,"
1828                            " trying anyway...\n");
1829             BIO_printf(sbio, "STARTTLS\r\n");
1830             BIO_read(sbio, sbuf, BUFSIZZ);
1831         }
1832         break;
1833     case PROTO_POP3:
1834         {
1835             BIO_read(sbio, mbuf, BUFSIZZ);
1836             BIO_printf(sbio, "STLS\r\n");
1837             mbuf_len = BIO_read(sbio, sbuf, BUFSIZZ);
1838             if (mbuf_len < 0) {
1839                 BIO_printf(bio_err, "BIO_read failed\n");
1840                 goto end;
1841             }
1842         }
1843         break;
1844     case PROTO_IMAP:
1845         {
1846             int foundit = 0;
1847             BIO *fbio = BIO_new(BIO_f_buffer());
1848             BIO_push(fbio, sbio);
1849             BIO_gets(fbio, mbuf, BUFSIZZ);
1850             /* STARTTLS command requires CAPABILITY... */
1851             BIO_printf(fbio, ". CAPABILITY\r\n");
1852             (void)BIO_flush(fbio);
1853             /* wait for multi-line CAPABILITY response */
1854             do {
1855                 mbuf_len = BIO_gets(fbio, mbuf, BUFSIZZ);
1856                 if (strstr(mbuf, "STARTTLS"))
1857                     foundit = 1;
1858             }
1859             while (mbuf_len > 3 && mbuf[0] != '.');
1860             (void)BIO_flush(fbio);
1861             BIO_pop(fbio);
1862             BIO_free(fbio);
1863             if (!foundit)
1864                 BIO_printf(bio_err,
1865                            "didn't find STARTTLS in server response,"
1866                            " trying anyway...\n");
1867             BIO_printf(sbio, ". STARTTLS\r\n");
1868             BIO_read(sbio, sbuf, BUFSIZZ);
1869         }
1870         break;
1871     case PROTO_FTP:
1872         {
1873             BIO *fbio = BIO_new(BIO_f_buffer());
1874             BIO_push(fbio, sbio);
1875             /* wait for multi-line response to end from FTP */
1876             do {
1877                 mbuf_len = BIO_gets(fbio, mbuf, BUFSIZZ);
1878             }
1879             while (mbuf_len > 3 && mbuf[3] == '-');
1880             (void)BIO_flush(fbio);
1881             BIO_pop(fbio);
1882             BIO_free(fbio);
1883             BIO_printf(sbio, "AUTH TLS\r\n");
1884             BIO_read(sbio, sbuf, BUFSIZZ);
1885         }
1886         break;
1887     case PROTO_XMPP:
1888     case PROTO_XMPP_SERVER:
1889         {
1890             int seen = 0;
1891             BIO_printf(sbio, "<stream:stream "
1892                        "xmlns:stream='http://etherx.jabber.org/streams' "
1893                        "xmlns='jabber:%s' to='%s' version='1.0'>",
1894                        starttls_proto == PROTO_XMPP ? "client" : "server",
1895                        xmpphost ? xmpphost : host);
1896             seen = BIO_read(sbio, mbuf, BUFSIZZ);
1897             mbuf[seen] = 0;
1898             while (!strstr
1899                    (mbuf, "<starttls xmlns='urn:ietf:params:xml:ns:xmpp-tls'")
1900                    && !strstr(mbuf,
1901                               "<starttls xmlns=\"urn:ietf:params:xml:ns:xmpp-tls\""))
1902             {
1903                 seen = BIO_read(sbio, mbuf, BUFSIZZ);
1904
1905                 if (seen <= 0)
1906                     goto shut;
1907
1908                 mbuf[seen] = 0;
1909             }
1910             BIO_printf(sbio,
1911                        "<starttls xmlns='urn:ietf:params:xml:ns:xmpp-tls'/>");
1912             seen = BIO_read(sbio, sbuf, BUFSIZZ);
1913             sbuf[seen] = 0;
1914             if (!strstr(sbuf, "<proceed"))
1915                 goto shut;
1916             mbuf[0] = 0;
1917         }
1918         break;
1919     case PROTO_TELNET:
1920         {
1921             static const unsigned char tls_do[] = {
1922                 /* IAC    DO   START_TLS */
1923                    255,   253, 46
1924             };
1925             static const unsigned char tls_will[] = {
1926                 /* IAC  WILL START_TLS */
1927                    255, 251, 46
1928             };
1929             static const unsigned char tls_follows[] = {
1930                 /* IAC  SB   START_TLS FOLLOWS IAC  SE */
1931                    255, 250, 46,       1,      255, 240
1932             };
1933             int bytes;
1934
1935             /* Telnet server should demand we issue START_TLS */
1936             bytes = BIO_read(sbio, mbuf, BUFSIZZ);
1937             if (bytes != 3 || memcmp(mbuf, tls_do, 3) != 0)
1938                 goto shut;
1939             /* Agree to issue START_TLS and send the FOLLOWS sub-command */
1940             BIO_write(sbio, tls_will, 3);
1941             BIO_write(sbio, tls_follows, 6);
1942             (void)BIO_flush(sbio);
1943             /* Telnet server also sent the FOLLOWS sub-command */
1944             bytes = BIO_read(sbio, mbuf, BUFSIZZ);
1945             if (bytes != 6 || memcmp(mbuf, tls_follows, 6) != 0)
1946                 goto shut;
1947         }
1948         break;
1949     case PROTO_CONNECT:
1950         {
1951             int foundit = 0;
1952             BIO *fbio = BIO_new(BIO_f_buffer());
1953
1954             BIO_push(fbio, sbio);
1955             BIO_printf(fbio, "CONNECT %s\r\n\r\n", connectstr);
1956             (void)BIO_flush(fbio);
1957             /* wait for multi-line response to end CONNECT response */
1958             do {
1959                 mbuf_len = BIO_gets(fbio, mbuf, BUFSIZZ);
1960                 if (strstr(mbuf, "200") != NULL
1961                     && strstr(mbuf, "established") != NULL)
1962                     foundit++;
1963             } while (mbuf_len > 3 && foundit == 0);
1964             (void)BIO_flush(fbio);
1965             BIO_pop(fbio);
1966             BIO_free(fbio);
1967             if (!foundit) {
1968                 BIO_printf(bio_err, "%s: HTTP CONNECT failed\n", prog);
1969                 goto shut;
1970             }
1971         }
1972         break;
1973     case PROTO_IRC:
1974         {
1975             int numeric;
1976             BIO *fbio = BIO_new(BIO_f_buffer());
1977
1978             BIO_push(fbio, sbio);
1979             BIO_printf(fbio, "STARTTLS\r\n");
1980             (void)BIO_flush(fbio);
1981             width = SSL_get_fd(con) + 1;
1982
1983             do {
1984                 numeric = 0;
1985
1986                 FD_ZERO(&readfds);
1987                 openssl_fdset(SSL_get_fd(con), &readfds);
1988                 timeout.tv_sec = S_CLIENT_IRC_READ_TIMEOUT;
1989                 timeout.tv_usec = 0;
1990                 /*
1991                  * If the IRCd doesn't respond within
1992                  * S_CLIENT_IRC_READ_TIMEOUT seconds, assume
1993                  * it doesn't support STARTTLS. Many IRCds
1994                  * will not give _any_ sort of response to a
1995                  * STARTTLS command when it's not supported.
1996                  */
1997                 if (!BIO_get_buffer_num_lines(fbio)
1998                     && !BIO_pending(fbio)
1999                     && !BIO_pending(sbio)
2000                     && select(width, (void *)&readfds, NULL, NULL,
2001                               &timeout) < 1) {
2002                     BIO_printf(bio_err,
2003                                "Timeout waiting for response (%d seconds).\n",
2004                                S_CLIENT_IRC_READ_TIMEOUT);
2005                     break;
2006                 }
2007
2008                 mbuf_len = BIO_gets(fbio, mbuf, BUFSIZZ);
2009                 if (mbuf_len < 1 || sscanf(mbuf, "%*s %d", &numeric) != 1)
2010                     break;
2011                 /* :example.net 451 STARTTLS :You have not registered */
2012                 /* :example.net 421 STARTTLS :Unknown command */
2013                 if ((numeric == 451 || numeric == 421)
2014                     && strstr(mbuf, "STARTTLS") != NULL) {
2015                     BIO_printf(bio_err, "STARTTLS not supported: %s", mbuf);
2016                     break;
2017                 }
2018                 if (numeric == 691) {
2019                     BIO_printf(bio_err, "STARTTLS negotiation failed: ");
2020                     ERR_print_errors(bio_err);
2021                     break;
2022                 }
2023             } while (numeric != 670);
2024
2025             (void)BIO_flush(fbio);
2026             BIO_pop(fbio);
2027             BIO_free(fbio);
2028             if (numeric != 670) {
2029                 BIO_printf(bio_err, "Server does not support STARTTLS.\n");
2030                 ret = 1;
2031                 goto shut;
2032             }
2033         }
2034     }
2035
2036     for (;;) {
2037         FD_ZERO(&readfds);
2038         FD_ZERO(&writefds);
2039
2040         if ((SSL_version(con) == DTLS1_VERSION) &&
2041             DTLSv1_get_timeout(con, &timeout))
2042             timeoutp = &timeout;
2043         else
2044             timeoutp = NULL;
2045
2046         if (SSL_in_init(con) && !SSL_total_renegotiations(con)) {
2047             in_init = 1;
2048             tty_on = 0;
2049         } else {
2050             tty_on = 1;
2051             if (in_init) {
2052                 in_init = 0;
2053
2054                 if (servername != NULL && !SSL_session_reused(con)) {
2055                     BIO_printf(bio_c_out,
2056                                "Server did %sacknowledge servername extension.\n",
2057                                tlsextcbp.ack ? "" : "not ");
2058                 }
2059
2060                 if (sess_out) {
2061                     BIO *stmp = BIO_new_file(sess_out, "w");
2062                     if (stmp) {
2063                         PEM_write_bio_SSL_SESSION(stmp, SSL_get_session(con));
2064                         BIO_free(stmp);
2065                     } else
2066                         BIO_printf(bio_err, "Error writing session file %s\n",
2067                                    sess_out);
2068                 }
2069                 if (c_brief) {
2070                     BIO_puts(bio_err, "CONNECTION ESTABLISHED\n");
2071                     print_ssl_summary(con);
2072                 }
2073
2074                 print_stuff(bio_c_out, con, full_log);
2075                 if (full_log > 0)
2076                     full_log--;
2077
2078                 if (starttls_proto) {
2079                     BIO_write(bio_err, mbuf, mbuf_len);
2080                     /* We don't need to know any more */
2081                     if (!reconnect)
2082                         starttls_proto = PROTO_OFF;
2083                 }
2084
2085                 if (reconnect) {
2086                     reconnect--;
2087                     BIO_printf(bio_c_out,
2088                                "drop connection and then reconnect\n");
2089                     do_ssl_shutdown(con);
2090                     SSL_set_connect_state(con);
2091                     SHUTDOWN(SSL_get_fd(con));
2092                     goto re_start;
2093                 }
2094             }
2095         }
2096
2097         ssl_pending = read_ssl && SSL_pending(con);
2098
2099         if (!ssl_pending) {
2100 #if !defined(OPENSSL_SYS_WINDOWS) && !defined(OPENSSL_SYS_MSDOS) && !defined(OPENSSL_SYS_NETWARE)
2101             if (tty_on) {
2102                 if (read_tty)
2103                     openssl_fdset(fileno(stdin), &readfds);
2104                 if (write_tty)
2105                     openssl_fdset(fileno(stdout), &writefds);
2106             }
2107             if (read_ssl)
2108                 openssl_fdset(SSL_get_fd(con), &readfds);
2109             if (write_ssl)
2110                 openssl_fdset(SSL_get_fd(con), &writefds);
2111 #else
2112             if (!tty_on || !write_tty) {
2113                 if (read_ssl)
2114                     openssl_fdset(SSL_get_fd(con), &readfds);
2115                 if (write_ssl)
2116                     openssl_fdset(SSL_get_fd(con), &writefds);
2117             }
2118 #endif
2119
2120             /*
2121              * Note: under VMS with SOCKETSHR the second parameter is
2122              * currently of type (int *) whereas under other systems it is
2123              * (void *) if you don't have a cast it will choke the compiler:
2124              * if you do have a cast then you can either go for (int *) or
2125              * (void *).
2126              */
2127 #if defined(OPENSSL_SYS_WINDOWS) || defined(OPENSSL_SYS_MSDOS)
2128             /*
2129              * Under Windows/DOS we make the assumption that we can always
2130              * write to the tty: therefore if we need to write to the tty we
2131              * just fall through. Otherwise we timeout the select every
2132              * second and see if there are any keypresses. Note: this is a
2133              * hack, in a proper Windows application we wouldn't do this.
2134              */
2135             i = 0;
2136             if (!write_tty) {
2137                 if (read_tty) {
2138                     tv.tv_sec = 1;
2139                     tv.tv_usec = 0;
2140                     i = select(width, (void *)&readfds, (void *)&writefds,
2141                                NULL, &tv);
2142 # if defined(OPENSSL_SYS_WINCE) || defined(OPENSSL_SYS_MSDOS)
2143                     if (!i && (!_kbhit() || !read_tty))
2144                         continue;
2145 # else
2146                     if (!i && (!((_kbhit())
2147                                  || (WAIT_OBJECT_0 ==
2148                                      WaitForSingleObject(GetStdHandle
2149                                                          (STD_INPUT_HANDLE),
2150                                                          0)))
2151                                || !read_tty))
2152                         continue;
2153 # endif
2154                 } else
2155                     i = select(width, (void *)&readfds, (void *)&writefds,
2156                                NULL, timeoutp);
2157             }
2158 #elif defined(OPENSSL_SYS_NETWARE)
2159             if (!write_tty) {
2160                 if (read_tty) {
2161                     tv.tv_sec = 1;
2162                     tv.tv_usec = 0;
2163                     i = select(width, (void *)&readfds, (void *)&writefds,
2164                                NULL, &tv);
2165                 } else
2166                     i = select(width, (void *)&readfds, (void *)&writefds,
2167                                NULL, timeoutp);
2168             }
2169 #else
2170             i = select(width, (void *)&readfds, (void *)&writefds,
2171                        NULL, timeoutp);
2172 #endif
2173             if (i < 0) {
2174                 BIO_printf(bio_err, "bad select %d\n",
2175                            get_last_socket_error());
2176                 goto shut;
2177                 /* goto end; */
2178             }
2179         }
2180
2181         if ((SSL_version(con) == DTLS1_VERSION)
2182             && DTLSv1_handle_timeout(con) > 0) {
2183             BIO_printf(bio_err, "TIMEOUT occurred\n");
2184         }
2185
2186         if (!ssl_pending && FD_ISSET(SSL_get_fd(con), &writefds)) {
2187             k = SSL_write(con, &(cbuf[cbuf_off]), (unsigned int)cbuf_len);
2188             switch (SSL_get_error(con, k)) {
2189             case SSL_ERROR_NONE:
2190                 cbuf_off += k;
2191                 cbuf_len -= k;
2192                 if (k <= 0)
2193                     goto end;
2194                 /* we have done a  write(con,NULL,0); */
2195                 if (cbuf_len <= 0) {
2196                     read_tty = 1;
2197                     write_ssl = 0;
2198                 } else {        /* if (cbuf_len > 0) */
2199
2200                     read_tty = 0;
2201                     write_ssl = 1;
2202                 }
2203                 break;
2204             case SSL_ERROR_WANT_WRITE:
2205                 BIO_printf(bio_c_out, "write W BLOCK\n");
2206                 write_ssl = 1;
2207                 read_tty = 0;
2208                 break;
2209             case SSL_ERROR_WANT_ASYNC:
2210                 BIO_printf(bio_c_out, "write A BLOCK\n");
2211                 wait_for_async(con);
2212                 write_ssl = 1;
2213                 read_tty = 0;
2214                 break;
2215             case SSL_ERROR_WANT_READ:
2216                 BIO_printf(bio_c_out, "write R BLOCK\n");
2217                 write_tty = 0;
2218                 read_ssl = 1;
2219                 write_ssl = 0;
2220                 break;
2221             case SSL_ERROR_WANT_X509_LOOKUP:
2222                 BIO_printf(bio_c_out, "write X BLOCK\n");
2223                 break;
2224             case SSL_ERROR_ZERO_RETURN:
2225                 if (cbuf_len != 0) {
2226                     BIO_printf(bio_c_out, "shutdown\n");
2227                     ret = 0;
2228                     goto shut;
2229                 } else {
2230                     read_tty = 1;
2231                     write_ssl = 0;
2232                     break;
2233                 }
2234
2235             case SSL_ERROR_SYSCALL:
2236                 if ((k != 0) || (cbuf_len != 0)) {
2237                     BIO_printf(bio_err, "write:errno=%d\n",
2238                                get_last_socket_error());
2239                     goto shut;
2240                 } else {
2241                     read_tty = 1;
2242                     write_ssl = 0;
2243                 }
2244                 break;
2245             case SSL_ERROR_SSL:
2246                 ERR_print_errors(bio_err);
2247                 goto shut;
2248             }
2249         }
2250 #if defined(OPENSSL_SYS_WINDOWS) || defined(OPENSSL_SYS_MSDOS) || defined(OPENSSL_SYS_NETWARE)
2251         /* Assume Windows/DOS/BeOS can always write */
2252         else if (!ssl_pending && write_tty)
2253 #else
2254         else if (!ssl_pending && FD_ISSET(fileno(stdout), &writefds))
2255 #endif
2256         {
2257 #ifdef CHARSET_EBCDIC
2258             ascii2ebcdic(&(sbuf[sbuf_off]), &(sbuf[sbuf_off]), sbuf_len);
2259 #endif
2260             i = raw_write_stdout(&(sbuf[sbuf_off]), sbuf_len);
2261
2262             if (i <= 0) {
2263                 BIO_printf(bio_c_out, "DONE\n");
2264                 ret = 0;
2265                 goto shut;
2266                 /* goto end; */
2267             }
2268
2269             sbuf_len -= i;;
2270             sbuf_off += i;
2271             if (sbuf_len <= 0) {
2272                 read_ssl = 1;
2273                 write_tty = 0;
2274             }
2275         } else if (ssl_pending || FD_ISSET(SSL_get_fd(con), &readfds)) {
2276 #ifdef RENEG
2277             {
2278                 static int iiii;
2279                 if (++iiii == 52) {
2280                     SSL_renegotiate(con);
2281                     iiii = 0;
2282                 }
2283             }
2284 #endif
2285             k = SSL_read(con, sbuf, 1024 /* BUFSIZZ */ );
2286
2287             switch (SSL_get_error(con, k)) {
2288             case SSL_ERROR_NONE:
2289                 if (k <= 0)
2290                     goto end;
2291                 sbuf_off = 0;
2292                 sbuf_len = k;
2293
2294                 read_ssl = 0;
2295                 write_tty = 1;
2296                 break;
2297             case SSL_ERROR_WANT_ASYNC:
2298                 BIO_printf(bio_c_out, "read A BLOCK\n");
2299                 wait_for_async(con);
2300                 write_tty = 0;
2301                 read_ssl = 1;
2302                 if ((read_tty == 0) && (write_ssl == 0))
2303                     write_ssl = 1;
2304                 break;
2305             case SSL_ERROR_WANT_WRITE:
2306                 BIO_printf(bio_c_out, "read W BLOCK\n");
2307                 write_ssl = 1;
2308                 read_tty = 0;
2309                 break;
2310             case SSL_ERROR_WANT_READ:
2311                 BIO_printf(bio_c_out, "read R BLOCK\n");
2312                 write_tty = 0;
2313                 read_ssl = 1;
2314                 if ((read_tty == 0) && (write_ssl == 0))
2315                     write_ssl = 1;
2316                 break;
2317             case SSL_ERROR_WANT_X509_LOOKUP:
2318                 BIO_printf(bio_c_out, "read X BLOCK\n");
2319                 break;
2320             case SSL_ERROR_SYSCALL:
2321                 ret = get_last_socket_error();
2322                 if (c_brief)
2323                     BIO_puts(bio_err, "CONNECTION CLOSED BY SERVER\n");
2324                 else
2325                     BIO_printf(bio_err, "read:errno=%d\n", ret);
2326                 goto shut;
2327             case SSL_ERROR_ZERO_RETURN:
2328                 BIO_printf(bio_c_out, "closed\n");
2329                 ret = 0;
2330                 goto shut;
2331             case SSL_ERROR_SSL:
2332                 ERR_print_errors(bio_err);
2333                 goto shut;
2334                 /* break; */
2335             }
2336         }
2337 #if defined(OPENSSL_SYS_WINDOWS) || defined(OPENSSL_SYS_MSDOS)
2338 # if defined(OPENSSL_SYS_WINCE) || defined(OPENSSL_SYS_MSDOS)
2339         else if (_kbhit())
2340 # else
2341         else if ((_kbhit())
2342                  || (WAIT_OBJECT_0 ==
2343                      WaitForSingleObject(GetStdHandle(STD_INPUT_HANDLE), 0)))
2344 # endif
2345 #elif defined (OPENSSL_SYS_NETWARE)
2346         else if (_kbhit())
2347 #else
2348         else if (FD_ISSET(fileno(stdin), &readfds))
2349 #endif
2350         {
2351             if (crlf) {
2352                 int j, lf_num;
2353
2354                 i = raw_read_stdin(cbuf, BUFSIZZ / 2);
2355                 lf_num = 0;
2356                 /* both loops are skipped when i <= 0 */
2357                 for (j = 0; j < i; j++)
2358                     if (cbuf[j] == '\n')
2359                         lf_num++;
2360                 for (j = i - 1; j >= 0; j--) {
2361                     cbuf[j + lf_num] = cbuf[j];
2362                     if (cbuf[j] == '\n') {
2363                         lf_num--;
2364                         i++;
2365                         cbuf[j + lf_num] = '\r';
2366                     }
2367                 }
2368                 assert(lf_num == 0);
2369             } else
2370                 i = raw_read_stdin(cbuf, BUFSIZZ);
2371
2372             if ((!c_ign_eof) && ((i <= 0) || (cbuf[0] == 'Q' && cmdletters))) {
2373                 BIO_printf(bio_err, "DONE\n");
2374                 ret = 0;
2375                 goto shut;
2376             }
2377
2378             if ((!c_ign_eof) && (cbuf[0] == 'R' && cmdletters)) {
2379                 BIO_printf(bio_err, "RENEGOTIATING\n");
2380                 SSL_renegotiate(con);
2381                 cbuf_len = 0;
2382             }
2383 #ifndef OPENSSL_NO_HEARTBEATS
2384             else if ((!c_ign_eof) && (cbuf[0] == 'B' && cmdletters)) {
2385                 BIO_printf(bio_err, "HEARTBEATING\n");
2386                 SSL_heartbeat(con);
2387                 cbuf_len = 0;
2388             }
2389 #endif
2390             else {
2391                 cbuf_len = i;
2392                 cbuf_off = 0;
2393 #ifdef CHARSET_EBCDIC
2394                 ebcdic2ascii(cbuf, cbuf, i);
2395 #endif
2396             }
2397
2398             write_ssl = 1;
2399             read_tty = 0;
2400         }
2401     }
2402
2403     ret = 0;
2404  shut:
2405     if (in_init)
2406         print_stuff(bio_c_out, con, full_log);
2407     do_ssl_shutdown(con);
2408     SHUTDOWN(SSL_get_fd(con));
2409  end:
2410     if (con != NULL) {
2411         if (prexit != 0)
2412             print_stuff(bio_c_out, con, 1);
2413         SSL_free(con);
2414     }
2415 #if !defined(OPENSSL_NO_NEXTPROTONEG)
2416     OPENSSL_free(next_proto.data);
2417 #endif
2418     SSL_CTX_free(ctx);
2419     X509_free(cert);
2420     sk_X509_CRL_pop_free(crls, X509_CRL_free);
2421     EVP_PKEY_free(key);
2422     sk_X509_pop_free(chain, X509_free);
2423     OPENSSL_free(pass);
2424 #ifndef OPENSSL_NO_SRP
2425     OPENSSL_free(srp_arg.srppassin);
2426 #endif
2427     OPENSSL_free(host);
2428     OPENSSL_free(port);
2429     X509_VERIFY_PARAM_free(vpm);
2430     ssl_excert_free(exc);
2431     sk_OPENSSL_STRING_free(ssl_args);
2432     sk_OPENSSL_STRING_free(dane_tlsa_rrset);
2433     SSL_CONF_CTX_free(cctx);
2434     OPENSSL_clear_free(cbuf, BUFSIZZ);
2435     OPENSSL_clear_free(sbuf, BUFSIZZ);
2436     OPENSSL_clear_free(mbuf, BUFSIZZ);
2437     BIO_free(bio_c_out);
2438     bio_c_out = NULL;
2439     BIO_free(bio_c_msg);
2440     bio_c_msg = NULL;
2441     return (ret);
2442 }
2443
2444 static void print_stuff(BIO *bio, SSL *s, int full)
2445 {
2446     X509 *peer = NULL;
2447     char buf[BUFSIZ];
2448     STACK_OF(X509) *sk;
2449     STACK_OF(X509_NAME) *sk2;
2450     const SSL_CIPHER *c;
2451     X509_NAME *xn;
2452     int i;
2453 #ifndef OPENSSL_NO_COMP
2454     const COMP_METHOD *comp, *expansion;
2455 #endif
2456     unsigned char *exportedkeymat;
2457
2458     if (full) {
2459         int got_a_chain = 0;
2460
2461         sk = SSL_get_peer_cert_chain(s);
2462         if (sk != NULL) {
2463             got_a_chain = 1;
2464
2465             BIO_printf(bio, "---\nCertificate chain\n");
2466             for (i = 0; i < sk_X509_num(sk); i++) {
2467                 X509_NAME_oneline(X509_get_subject_name(sk_X509_value(sk, i)),
2468                                   buf, sizeof buf);
2469                 BIO_printf(bio, "%2d s:%s\n", i, buf);
2470                 X509_NAME_oneline(X509_get_issuer_name(sk_X509_value(sk, i)),
2471                                   buf, sizeof buf);
2472                 BIO_printf(bio, "   i:%s\n", buf);
2473                 if (c_showcerts)
2474                     PEM_write_bio_X509(bio, sk_X509_value(sk, i));
2475             }
2476         }
2477
2478         BIO_printf(bio, "---\n");
2479         peer = SSL_get_peer_certificate(s);
2480         if (peer != NULL) {
2481             BIO_printf(bio, "Server certificate\n");
2482
2483             /* Redundant if we showed the whole chain */
2484             if (!(c_showcerts && got_a_chain))
2485                 PEM_write_bio_X509(bio, peer);
2486             X509_NAME_oneline(X509_get_subject_name(peer), buf, sizeof buf);
2487             BIO_printf(bio, "subject=%s\n", buf);
2488             X509_NAME_oneline(X509_get_issuer_name(peer), buf, sizeof buf);
2489             BIO_printf(bio, "issuer=%s\n", buf);
2490         } else
2491             BIO_printf(bio, "no peer certificate available\n");
2492
2493         sk2 = SSL_get_client_CA_list(s);
2494         if ((sk2 != NULL) && (sk_X509_NAME_num(sk2) > 0)) {
2495             BIO_printf(bio, "---\nAcceptable client certificate CA names\n");
2496             for (i = 0; i < sk_X509_NAME_num(sk2); i++) {
2497                 xn = sk_X509_NAME_value(sk2, i);
2498                 X509_NAME_oneline(xn, buf, sizeof(buf));
2499                 BIO_write(bio, buf, strlen(buf));
2500                 BIO_write(bio, "\n", 1);
2501             }
2502         } else {
2503             BIO_printf(bio, "---\nNo client certificate CA names sent\n");
2504         }
2505
2506         ssl_print_sigalgs(bio, s);
2507         ssl_print_tmp_key(bio, s);
2508
2509         BIO_printf(bio,
2510                    "---\nSSL handshake has read %"PRIu64" bytes and written %"PRIu64" bytes\n",
2511                    BIO_number_read(SSL_get_rbio(s)),
2512                    BIO_number_written(SSL_get_wbio(s)));
2513     }
2514     print_verify_detail(s, bio);
2515     BIO_printf(bio, (SSL_session_reused(s) ? "---\nReused, " : "---\nNew, "));
2516     c = SSL_get_current_cipher(s);
2517     BIO_printf(bio, "%s, Cipher is %s\n",
2518                SSL_CIPHER_get_version(c), SSL_CIPHER_get_name(c));
2519     if (peer != NULL) {
2520         EVP_PKEY *pktmp;
2521         pktmp = X509_get0_pubkey(peer);
2522         BIO_printf(bio, "Server public key is %d bit\n",
2523                    EVP_PKEY_bits(pktmp));
2524     }
2525     BIO_printf(bio, "Secure Renegotiation IS%s supported\n",
2526                SSL_get_secure_renegotiation_support(s) ? "" : " NOT");
2527 #ifndef OPENSSL_NO_COMP
2528     comp = SSL_get_current_compression(s);
2529     expansion = SSL_get_current_expansion(s);
2530     BIO_printf(bio, "Compression: %s\n",
2531                comp ? SSL_COMP_get_name(comp) : "NONE");
2532     BIO_printf(bio, "Expansion: %s\n",
2533                expansion ? SSL_COMP_get_name(expansion) : "NONE");
2534 #endif
2535
2536 #ifdef SSL_DEBUG
2537     {
2538         /* Print out local port of connection: useful for debugging */
2539         int sock;
2540         struct sockaddr_in ladd;
2541         socklen_t ladd_size = sizeof(ladd);
2542         sock = SSL_get_fd(s);
2543         getsockname(sock, (struct sockaddr *)&ladd, &ladd_size);
2544         BIO_printf(bio_c_out, "LOCAL PORT is %u\n", ntohs(ladd.sin_port));
2545     }
2546 #endif
2547
2548 #if !defined(OPENSSL_NO_NEXTPROTONEG)
2549     if (next_proto.status != -1) {
2550         const unsigned char *proto;
2551         unsigned int proto_len;
2552         SSL_get0_next_proto_negotiated(s, &proto, &proto_len);
2553         BIO_printf(bio, "Next protocol: (%d) ", next_proto.status);
2554         BIO_write(bio, proto, proto_len);
2555         BIO_write(bio, "\n", 1);
2556     }
2557 #endif
2558     {
2559         const unsigned char *proto;
2560         unsigned int proto_len;
2561         SSL_get0_alpn_selected(s, &proto, &proto_len);
2562         if (proto_len > 0) {
2563             BIO_printf(bio, "ALPN protocol: ");
2564             BIO_write(bio, proto, proto_len);
2565             BIO_write(bio, "\n", 1);
2566         } else
2567             BIO_printf(bio, "No ALPN negotiated\n");
2568     }
2569
2570 #ifndef OPENSSL_NO_SRTP
2571     {
2572         SRTP_PROTECTION_PROFILE *srtp_profile =
2573             SSL_get_selected_srtp_profile(s);
2574
2575         if (srtp_profile)
2576             BIO_printf(bio, "SRTP Extension negotiated, profile=%s\n",
2577                        srtp_profile->name);
2578     }
2579 #endif
2580
2581     SSL_SESSION_print(bio, SSL_get_session(s));
2582     if (keymatexportlabel != NULL) {
2583         BIO_printf(bio, "Keying material exporter:\n");
2584         BIO_printf(bio, "    Label: '%s'\n", keymatexportlabel);
2585         BIO_printf(bio, "    Length: %i bytes\n", keymatexportlen);
2586         exportedkeymat = app_malloc(keymatexportlen, "export key");
2587         if (!SSL_export_keying_material(s, exportedkeymat,
2588                                         keymatexportlen,
2589                                         keymatexportlabel,
2590                                         strlen(keymatexportlabel),
2591                                         NULL, 0, 0)) {
2592             BIO_printf(bio, "    Error\n");
2593         } else {
2594             BIO_printf(bio, "    Keying material: ");
2595             for (i = 0; i < keymatexportlen; i++)
2596                 BIO_printf(bio, "%02X", exportedkeymat[i]);
2597             BIO_printf(bio, "\n");
2598         }
2599         OPENSSL_free(exportedkeymat);
2600     }
2601     BIO_printf(bio, "---\n");
2602     X509_free(peer);
2603     /* flush, or debugging output gets mixed with http response */
2604     (void)BIO_flush(bio);
2605 }
2606
2607 static int ocsp_resp_cb(SSL *s, void *arg)
2608 {
2609     const unsigned char *p;
2610     int len;
2611     OCSP_RESPONSE *rsp;
2612     len = SSL_get_tlsext_status_ocsp_resp(s, &p);
2613     BIO_puts(arg, "OCSP response: ");
2614     if (!p) {
2615         BIO_puts(arg, "no response sent\n");
2616         return 1;
2617     }
2618     rsp = d2i_OCSP_RESPONSE(NULL, &p, len);
2619     if (!rsp) {
2620         BIO_puts(arg, "response parse error\n");
2621         BIO_dump_indent(arg, (char *)p, len, 4);
2622         return 0;
2623     }
2624     BIO_puts(arg, "\n======================================\n");
2625     OCSP_RESPONSE_print(arg, rsp, 0);
2626     BIO_puts(arg, "======================================\n");
2627     OCSP_RESPONSE_free(rsp);
2628     return 1;
2629 }