Make sure to use unsigned char for is*() functions
[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, OPT_JPAKE,
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     {"nbio_test", OPT_NBIO_TEST, '-', "More ssl protocol testing"},
697     {"state", OPT_STATE, '-', "Print the ssl states"},
698     {"crlf", OPT_CRLF, '-', "Convert LF from terminal into CRLF"},
699     {"quiet", OPT_QUIET, '-', "No s_client output"},
700     {"ign_eof", OPT_IGN_EOF, '-', "Ignore input eof (default when -quiet)"},
701     {"no_ign_eof", OPT_NO_IGN_EOF, '-', "Don't ignore input eof"},
702     {"starttls", OPT_STARTTLS, 's',
703      "Use the appropriate STARTTLS command before starting TLS"},
704     {"xmpphost", OPT_XMPPHOST, 's',
705      "Host to use with \"-starttls xmpp[-server]\""},
706     {"rand", OPT_RAND, 's',
707      "Load the file(s) into the random number generator"},
708     {"sess_out", OPT_SESS_OUT, '>', "File to write SSL session to"},
709     {"sess_in", OPT_SESS_IN, '<', "File to read SSL session from"},
710     {"use_srtp", OPT_USE_SRTP, 's',
711      "Offer SRTP key management with a colon-separated profile list"},
712     {"keymatexport", OPT_KEYMATEXPORT, 's',
713      "Export keying material using label"},
714     {"keymatexportlen", OPT_KEYMATEXPORTLEN, 'p',
715      "Export len bytes of keying material (default 20)"},
716     {"fallback_scsv", OPT_FALLBACKSCSV, '-', "Send the fallback SCSV"},
717     {"name", OPT_SMTPHOST, 's', "Hostname to use for \"-starttls smtp\""},
718     {"CRL", OPT_CRL, '<'},
719     {"crl_download", OPT_CRL_DOWNLOAD, '-'},
720     {"CRLform", OPT_CRLFORM, 'F'},
721     {"verify_return_error", OPT_VERIFY_RET_ERROR, '-'},
722     {"verify_quiet", OPT_VERIFY_QUIET, '-'},
723     {"brief", OPT_BRIEF, '-'},
724     {"prexit", OPT_PREXIT, '-'},
725     {"security_debug", OPT_SECURITY_DEBUG, '-'},
726     {"security_debug_verbose", OPT_SECURITY_DEBUG_VERBOSE, '-'},
727     {"cert_chain", OPT_CERT_CHAIN, '<'},
728     {"chainCApath", OPT_CHAINCAPATH, '/'},
729     {"verifyCApath", OPT_VERIFYCAPATH, '/'},
730     {"build_chain", OPT_BUILD_CHAIN, '-'},
731     {"chainCAfile", OPT_CHAINCAFILE, '<'},
732     {"verifyCAfile", OPT_VERIFYCAFILE, '<'},
733     {"nocommands", OPT_NOCMDS, '-', "Do not use interactive command letters"},
734     {"servername", OPT_SERVERNAME, 's',
735      "Set TLS extension servername in ClientHello"},
736     {"tlsextdebug", OPT_TLSEXTDEBUG, '-',
737      "Hex dump of all TLS extensions received"},
738     {"status", OPT_STATUS, '-', "Request certificate status from server"},
739     {"serverinfo", OPT_SERVERINFO, 's',
740      "types  Send empty ClientHello extensions (comma-separated numbers)"},
741     {"alpn", OPT_ALPN, 's',
742      "Enable ALPN extension, considering named protocols supported (comma-separated list)"},
743     {"async", OPT_ASYNC, '-', "Support asynchronous operation"},
744     {"ssl_config", OPT_SSL_CONFIG, 's'},
745     OPT_S_OPTIONS,
746     OPT_V_OPTIONS,
747     OPT_X_OPTIONS,
748 #ifndef OPENSSL_NO_SSL3
749     {"ssl3", OPT_SSL3, '-', "Just use SSLv3"},
750 #endif
751 #ifndef OPENSSL_NO_TLS1
752     {"tls1", OPT_TLS1, '-', "Just use TLSv1"},
753 #endif
754 #ifndef OPENSSL_NO_TLS1_1
755     {"tls1_1", OPT_TLS1_1, '-', "Just use TLSv1.1"},
756 #endif
757 #ifndef OPENSSL_NO_TLS1_2
758     {"tls1_2", OPT_TLS1_2, '-', "Just use TLSv1.2"},
759 #endif
760 #ifndef OPENSSL_NO_DTLS
761     {"dtls", OPT_DTLS, '-'},
762     {"timeout", OPT_TIMEOUT, '-'},
763     {"mtu", OPT_MTU, 'p', "Set the link layer MTU"},
764 #endif
765 #ifndef OPENSSL_NO_DTLS1
766     {"dtls1", OPT_DTLS1, '-', "Just use DTLSv1"},
767 #endif
768 #ifndef OPENSSL_NO_DTLS1_2
769     {"dtls1_2", OPT_DTLS1_2, '-'},
770 #endif
771 #ifndef OPENSSL_NO_SSL_TRACE
772     {"trace", OPT_TRACE, '-'},
773 #endif
774 #ifdef WATT32
775     {"wdebug", OPT_WDEBUG, '-', "WATT-32 tcp debugging"},
776 #endif
777 #ifdef FIONBIO
778     {"nbio", OPT_NBIO, '-', "Use non-blocking IO"},
779 #endif
780 #ifndef OPENSSL_NO_PSK
781     {"psk_identity", OPT_PSK_IDENTITY, 's', "PSK identity"},
782     {"psk", OPT_PSK, 's', "PSK in hex (without 0x)"},
783 # ifndef OPENSSL_NO_JPAKE
784     {"jpake", OPT_JPAKE, 's', "JPAKE secret to use"},
785 # endif
786 #endif
787 #ifndef OPENSSL_NO_SRP
788     {"srpuser", OPT_SRPUSER, 's', "SRP authentification for 'user'"},
789     {"srppass", OPT_SRPPASS, 's', "Password for 'user'"},
790     {"srp_lateuser", OPT_SRP_LATEUSER, '-',
791      "SRP username into second ClientHello message"},
792     {"srp_moregroups", OPT_SRP_MOREGROUPS, '-',
793      "Tolerate other than the known g N values."},
794     {"srp_strength", OPT_SRP_STRENGTH, 'p', "Minimal length in bits for N"},
795 #endif
796 #ifndef OPENSSL_NO_NEXTPROTONEG
797     {"nextprotoneg", OPT_NEXTPROTONEG, 's',
798      "Enable NPN extension, considering named protocols supported (comma-separated list)"},
799 #endif
800 #ifndef OPENSSL_NO_ENGINE
801     {"engine", OPT_ENGINE, 's', "Use engine, possibly a hardware device"},
802     {"ssl_client_engine", OPT_SSL_CLIENT_ENGINE, 's'},
803 #endif
804     {NULL}
805 };
806
807 typedef enum PROTOCOL_choice {
808     PROTO_OFF,
809     PROTO_SMTP,
810     PROTO_POP3,
811     PROTO_IMAP,
812     PROTO_FTP,
813     PROTO_TELNET,
814     PROTO_XMPP,
815     PROTO_XMPP_SERVER,
816     PROTO_CONNECT,
817     PROTO_IRC
818 } PROTOCOL_CHOICE;
819
820 static OPT_PAIR services[] = {
821     {"smtp", PROTO_SMTP},
822     {"pop3", PROTO_POP3},
823     {"imap", PROTO_IMAP},
824     {"ftp", PROTO_FTP},
825     {"xmpp", PROTO_XMPP},
826     {"xmpp-server", PROTO_XMPP_SERVER},
827     {"telnet", PROTO_TELNET},
828     {"irc", PROTO_IRC},
829     {NULL}
830 };
831
832 int s_client_main(int argc, char **argv)
833 {
834     BIO *sbio;
835     EVP_PKEY *key = NULL;
836     SSL *con = NULL;
837     SSL_CTX *ctx = NULL;
838     STACK_OF(X509) *chain = NULL;
839     X509 *cert = NULL;
840     X509_VERIFY_PARAM *vpm = NULL;
841     SSL_EXCERT *exc = NULL;
842     SSL_CONF_CTX *cctx = NULL;
843     STACK_OF(OPENSSL_STRING) *ssl_args = NULL;
844     char *dane_tlsa_domain = NULL;
845     STACK_OF(OPENSSL_STRING) *dane_tlsa_rrset = NULL;
846     STACK_OF(X509_CRL) *crls = NULL;
847     const SSL_METHOD *meth = TLS_client_method();
848     char *CApath = NULL, *CAfile = NULL, *cbuf = NULL, *sbuf = NULL;
849     char *mbuf = NULL, *proxystr = NULL, *connectstr = NULL;
850     char *cert_file = NULL, *key_file = NULL, *chain_file = NULL;
851     char *chCApath = NULL, *chCAfile = NULL, *host = NULL;
852     char *port = BUF_strdup(PORT);
853     char *inrand = NULL;
854     char *passarg = NULL, *pass = NULL, *vfyCApath = NULL, *vfyCAfile = NULL;
855     char *sess_in = NULL, *sess_out = NULL, *crl_file = NULL, *p;
856     char *jpake_secret = NULL, *xmpphost = NULL;
857     const char *ehlo = "mail.example.com";
858     struct sockaddr peer;
859     struct timeval timeout, *timeoutp;
860     fd_set readfds, writefds;
861     int noCApath = 0, noCAfile = 0;
862     int build_chain = 0, cbuf_len, cbuf_off, cert_format = FORMAT_PEM;
863     int key_format = FORMAT_PEM, crlf = 0, full_log = 1, mbuf_len = 0;
864     int prexit = 0;
865     int enable_timeouts = 0, sdebug = 0, peerlen = sizeof peer;
866     int reconnect = 0, verify = SSL_VERIFY_NONE, vpmtouched = 0;
867     int ret = 1, in_init = 1, i, nbio_test = 0, s = -1, k, width, state = 0;
868     int sbuf_len, sbuf_off, cmdletters = 1;
869     int socket_family = AF_UNSPEC, socket_type = SOCK_STREAM;
870     int starttls_proto = PROTO_OFF, crl_format = FORMAT_PEM, crl_download = 0;
871     int write_tty, read_tty, write_ssl, read_ssl, tty_on, ssl_pending;
872     int fallback_scsv = 0;
873     long socket_mtu = 0, randamt = 0;
874     OPTION_CHOICE o;
875 #ifndef OPENSSL_NO_ENGINE
876     ENGINE *ssl_client_engine = NULL;
877 #endif
878     ENGINE *e = NULL;
879 #if defined(OPENSSL_SYS_WINDOWS) || defined(OPENSSL_SYS_MSDOS) || defined(OPENSSL_SYS_NETWARE)
880     struct timeval tv;
881 #endif
882     char *servername = NULL;
883     const char *alpn_in = NULL;
884     tlsextctx tlsextcbp = { NULL, 0 };
885     const char *ssl_config = NULL;
886 #define MAX_SI_TYPES 100
887     unsigned short serverinfo_types[MAX_SI_TYPES];
888     int serverinfo_count = 0, start = 0, len;
889 #ifndef OPENSSL_NO_NEXTPROTONEG
890     const char *next_proto_neg_in = NULL;
891 #endif
892 #ifndef OPENSSL_NO_SRP
893     char *srppass = NULL;
894     int srp_lateuser = 0;
895     SRP_ARG srp_arg = { NULL, NULL, 0, 0, 0, 1024 };
896 #endif
897
898     prog = opt_progname(argv[0]);
899     c_quiet = 0;
900     c_ign_eof = 0;
901     c_debug = 0;
902     c_msg = 0;
903     c_showcerts = 0;
904     c_nbio = 0;
905     verify_depth = 0;
906     verify_error = X509_V_OK;
907     vpm = X509_VERIFY_PARAM_new();
908     cbuf = app_malloc(BUFSIZZ, "cbuf");
909     sbuf = app_malloc(BUFSIZZ, "sbuf");
910     mbuf = app_malloc(BUFSIZZ, "mbuf");
911     cctx = SSL_CONF_CTX_new();
912
913     if (vpm == NULL || cctx == NULL) {
914         BIO_printf(bio_err, "%s: out of memory\n", prog);
915         goto end;
916     }
917
918     SSL_CONF_CTX_set_flags(cctx, SSL_CONF_FLAG_CLIENT | SSL_CONF_FLAG_CMDLINE);
919
920     prog = opt_init(argc, argv, s_client_options);
921     while ((o = opt_next()) != OPT_EOF) {
922         switch (o) {
923         case OPT_EOF:
924         case OPT_ERR:
925  opthelp:
926             BIO_printf(bio_err, "%s: Use -help for summary.\n", prog);
927             goto end;
928         case OPT_HELP:
929             opt_help(s_client_options);
930             ret = 0;
931             goto end;
932         case OPT_4:
933 #ifdef AF_UNIX
934             if (socket_family == AF_UNIX) {
935                 OPENSSL_free(host); host = NULL;
936                 OPENSSL_free(port); port = NULL;
937             }
938 #endif
939             socket_family = AF_INET;
940             break;
941         case OPT_6:
942             if (1) {
943 #ifdef AF_INET6
944 #ifdef AF_UNIX
945                 if (socket_family == AF_UNIX) {
946                     OPENSSL_free(host); host = NULL;
947                     OPENSSL_free(port); port = NULL;
948                 }
949 #endif
950                 socket_family = AF_INET6;
951             } else {
952 #endif
953                 BIO_printf(bio_err, "%s: IPv6 domain sockets unsupported\n", prog);
954                 goto end;
955             }
956             break;
957         case OPT_HOST:
958 #ifdef AF_UNIX
959             if (socket_family == AF_UNIX) {
960                 OPENSSL_free(host); host = NULL;
961                 OPENSSL_free(port); port = NULL;
962                 socket_family = AF_UNSPEC;
963             }
964 #endif
965             OPENSSL_free(host); host = BUF_strdup(opt_arg());
966             break;
967         case OPT_PORT:
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(port); port = BUF_strdup(opt_arg());
976             break;
977         case OPT_CONNECT:
978 #ifdef AF_UNIX
979             if (socket_family == AF_UNIX) {
980                 socket_family = AF_UNSPEC;
981             }
982 #endif
983             OPENSSL_free(host); host = NULL;
984             OPENSSL_free(port); port = NULL;
985             connectstr = opt_arg();
986             break;
987         case OPT_PROXY:
988             proxystr = opt_arg();
989             starttls_proto = PROTO_CONNECT;
990             break;
991 #ifdef AF_UNIX
992         case OPT_UNIX:
993             socket_family = AF_UNIX;
994             OPENSSL_free(host); host = BUF_strdup(opt_arg());
995             OPENSSL_free(port); port = NULL;
996             break;
997 #endif
998         case OPT_XMPPHOST:
999             xmpphost = opt_arg();
1000             break;
1001         case OPT_SMTPHOST:
1002             ehlo = opt_arg();
1003             break;
1004         case OPT_VERIFY:
1005             verify = SSL_VERIFY_PEER;
1006             verify_depth = atoi(opt_arg());
1007             if (!c_quiet)
1008                 BIO_printf(bio_err, "verify depth is %d\n", verify_depth);
1009             break;
1010         case OPT_CERT:
1011             cert_file = opt_arg();
1012             break;
1013         case OPT_CRL:
1014             crl_file = opt_arg();
1015             break;
1016         case OPT_CRL_DOWNLOAD:
1017             crl_download = 1;
1018             break;
1019         case OPT_SESS_OUT:
1020             sess_out = opt_arg();
1021             break;
1022         case OPT_SESS_IN:
1023             sess_in = opt_arg();
1024             break;
1025         case OPT_CERTFORM:
1026             if (!opt_format(opt_arg(), OPT_FMT_PEMDER, &cert_format))
1027                 goto opthelp;
1028             break;
1029         case OPT_CRLFORM:
1030             if (!opt_format(opt_arg(), OPT_FMT_PEMDER, &crl_format))
1031                 goto opthelp;
1032             break;
1033         case OPT_VERIFY_RET_ERROR:
1034             verify_return_error = 1;
1035             break;
1036         case OPT_VERIFY_QUIET:
1037             verify_quiet = 1;
1038             break;
1039         case OPT_BRIEF:
1040             c_brief = verify_quiet = c_quiet = 1;
1041             break;
1042         case OPT_S_CASES:
1043             if (ssl_args == NULL)
1044                 ssl_args = sk_OPENSSL_STRING_new_null();
1045             if (ssl_args == NULL
1046                 || !sk_OPENSSL_STRING_push(ssl_args, opt_flag())
1047                 || !sk_OPENSSL_STRING_push(ssl_args, opt_arg())) {
1048                 BIO_printf(bio_err, "%s: Memory allocation failure\n", prog);
1049                 goto end;
1050             }
1051             break;
1052         case OPT_V_CASES:
1053             if (!opt_verify(o, vpm))
1054                 goto end;
1055             vpmtouched++;
1056             break;
1057         case OPT_X_CASES:
1058             if (!args_excert(o, &exc))
1059                 goto end;
1060             break;
1061         case OPT_PREXIT:
1062             prexit = 1;
1063             break;
1064         case OPT_CRLF:
1065             crlf = 1;
1066             break;
1067         case OPT_QUIET:
1068             c_quiet = c_ign_eof = 1;
1069             break;
1070         case OPT_NBIO:
1071             c_nbio = 1;
1072             break;
1073         case OPT_NOCMDS:
1074             cmdletters = 0;
1075             break;
1076         case OPT_ENGINE:
1077             e = setup_engine(opt_arg(), 1);
1078             break;
1079         case OPT_SSL_CLIENT_ENGINE:
1080 #ifndef OPENSSL_NO_ENGINE
1081             ssl_client_engine = ENGINE_by_id(opt_arg());
1082             if (ssl_client_engine == NULL) {
1083                 BIO_printf(bio_err, "Error getting client auth engine\n");
1084                 goto opthelp;
1085             }
1086             break;
1087 #endif
1088             break;
1089         case OPT_RAND:
1090             inrand = opt_arg();
1091             break;
1092         case OPT_IGN_EOF:
1093             c_ign_eof = 1;
1094             break;
1095         case OPT_NO_IGN_EOF:
1096             c_ign_eof = 0;
1097             break;
1098         case OPT_DEBUG:
1099             c_debug = 1;
1100             break;
1101         case OPT_TLSEXTDEBUG:
1102             c_tlsextdebug = 1;
1103             break;
1104         case OPT_STATUS:
1105             c_status_req = 1;
1106             break;
1107         case OPT_WDEBUG:
1108 #ifdef WATT32
1109             dbug_init();
1110 #endif
1111             break;
1112         case OPT_MSG:
1113             c_msg = 1;
1114             break;
1115         case OPT_MSGFILE:
1116             bio_c_msg = BIO_new_file(opt_arg(), "w");
1117             break;
1118         case OPT_TRACE:
1119 #ifndef OPENSSL_NO_SSL_TRACE
1120             c_msg = 2;
1121 #endif
1122             break;
1123         case OPT_SECURITY_DEBUG:
1124             sdebug = 1;
1125             break;
1126         case OPT_SECURITY_DEBUG_VERBOSE:
1127             sdebug = 2;
1128             break;
1129         case OPT_SHOWCERTS:
1130             c_showcerts = 1;
1131             break;
1132         case OPT_NBIO_TEST:
1133             nbio_test = 1;
1134             break;
1135         case OPT_STATE:
1136             state = 1;
1137             break;
1138 #ifndef OPENSSL_NO_PSK
1139         case OPT_PSK_IDENTITY:
1140             psk_identity = opt_arg();
1141             break;
1142         case OPT_PSK:
1143             for (p = psk_key = opt_arg(); *p; p++) {
1144                 if (isxdigit(_UC(*p)))
1145                     continue;
1146                 BIO_printf(bio_err, "Not a hex number '%s'\n", psk_key);
1147                 goto end;
1148             }
1149             break;
1150 #else
1151         case OPT_PSK_IDENTITY:
1152         case OPT_PSK:
1153             break;
1154 #endif
1155 #ifndef OPENSSL_NO_SRP
1156         case OPT_SRPUSER:
1157             srp_arg.srplogin = opt_arg();
1158             meth = TLSv1_client_method();
1159             break;
1160         case OPT_SRPPASS:
1161             srppass = opt_arg();
1162             meth = TLSv1_client_method();
1163             break;
1164         case OPT_SRP_STRENGTH:
1165             srp_arg.strength = atoi(opt_arg());
1166             BIO_printf(bio_err, "SRP minimal length for N is %d\n",
1167                        srp_arg.strength);
1168             meth = TLSv1_client_method();
1169             break;
1170         case OPT_SRP_LATEUSER:
1171             srp_lateuser = 1;
1172             meth = TLSv1_client_method();
1173             break;
1174         case OPT_SRP_MOREGROUPS:
1175             srp_arg.amp = 1;
1176             meth = TLSv1_client_method();
1177             break;
1178 #else
1179         case OPT_SRPUSER:
1180         case OPT_SRPPASS:
1181         case OPT_SRP_STRENGTH:
1182         case OPT_SRP_LATEUSER:
1183         case OPT_SRP_MOREGROUPS:
1184             break;
1185 #endif
1186         case OPT_SSL_CONFIG:
1187             ssl_config = opt_arg();
1188             break;
1189         case OPT_SSL3:
1190 #ifndef OPENSSL_NO_SSL3
1191             meth = SSLv3_client_method();
1192 #endif
1193             break;
1194         case OPT_TLS1_2:
1195 #ifndef OPENSSL_NO_TLS1_2
1196             meth = TLSv1_2_client_method();
1197 #endif
1198             break;
1199         case OPT_TLS1_1:
1200 #ifndef OPENSSL_NO_TLS1_1
1201             meth = TLSv1_1_client_method();
1202 #endif
1203             break;
1204         case OPT_TLS1:
1205 #ifndef OPENSSL_NO_TLS1
1206             meth = TLSv1_client_method();
1207 #endif
1208             break;
1209         case OPT_DTLS:
1210 #ifndef OPENSSL_NO_DTLS
1211             meth = DTLS_client_method();
1212             socket_type = SOCK_DGRAM;
1213 #endif
1214             break;
1215         case OPT_DTLS1:
1216 #ifndef OPENSSL_NO_DTLS1
1217             meth = DTLSv1_client_method();
1218             socket_type = SOCK_DGRAM;
1219 #endif
1220             break;
1221         case OPT_DTLS1_2:
1222 #ifndef OPENSSL_NO_DTLS1_2
1223             meth = DTLSv1_2_client_method();
1224             socket_type = SOCK_DGRAM;
1225 #endif
1226             break;
1227         case OPT_TIMEOUT:
1228 #ifndef OPENSSL_NO_DTLS
1229             enable_timeouts = 1;
1230 #endif
1231             break;
1232         case OPT_MTU:
1233 #ifndef OPENSSL_NO_DTLS
1234             socket_mtu = atol(opt_arg());
1235 #endif
1236             break;
1237         case OPT_FALLBACKSCSV:
1238             fallback_scsv = 1;
1239             break;
1240         case OPT_KEYFORM:
1241             if (!opt_format(opt_arg(), OPT_FMT_PEMDER, &key_format))
1242                 goto opthelp;
1243             break;
1244         case OPT_PASS:
1245             passarg = opt_arg();
1246             break;
1247         case OPT_CERT_CHAIN:
1248             chain_file = opt_arg();
1249             break;
1250         case OPT_KEY:
1251             key_file = opt_arg();
1252             break;
1253         case OPT_RECONNECT:
1254             reconnect = 5;
1255             break;
1256         case OPT_CAPATH:
1257             CApath = opt_arg();
1258             break;
1259         case OPT_NOCAPATH:
1260             noCApath = 1;
1261             break;
1262         case OPT_CHAINCAPATH:
1263             chCApath = opt_arg();
1264             break;
1265         case OPT_VERIFYCAPATH:
1266             vfyCApath = opt_arg();
1267             break;
1268         case OPT_BUILD_CHAIN:
1269             build_chain = 1;
1270             break;
1271         case OPT_CAFILE:
1272             CAfile = opt_arg();
1273             break;
1274         case OPT_NOCAFILE:
1275             noCAfile = 1;
1276             break;
1277         case OPT_CHAINCAFILE:
1278             chCAfile = opt_arg();
1279             break;
1280         case OPT_VERIFYCAFILE:
1281             vfyCAfile = opt_arg();
1282             break;
1283         case OPT_DANE_TLSA_DOMAIN:
1284             dane_tlsa_domain = opt_arg();
1285             break;
1286         case OPT_DANE_TLSA_RRDATA:
1287             if (dane_tlsa_rrset == NULL)
1288                 dane_tlsa_rrset = sk_OPENSSL_STRING_new_null();
1289             if (dane_tlsa_rrset == NULL ||
1290                 !sk_OPENSSL_STRING_push(dane_tlsa_rrset, opt_arg())) {
1291                 BIO_printf(bio_err, "%s: Memory allocation failure\n", prog);
1292                 goto end;
1293             }
1294             break;
1295         case OPT_NEXTPROTONEG:
1296             next_proto_neg_in = opt_arg();
1297             break;
1298         case OPT_ALPN:
1299             alpn_in = opt_arg();
1300             break;
1301         case OPT_SERVERINFO:
1302             p = opt_arg();
1303             len = strlen(p);
1304             for (start = 0, i = 0; i <= len; ++i) {
1305                 if (i == len || p[i] == ',') {
1306                     serverinfo_types[serverinfo_count] = atoi(p + start);
1307                     if (++serverinfo_count == MAX_SI_TYPES)
1308                         break;
1309                     start = i + 1;
1310                 }
1311             }
1312             break;
1313         case OPT_STARTTLS:
1314             if (!opt_pair(opt_arg(), services, &starttls_proto))
1315                 goto end;
1316         case OPT_SERVERNAME:
1317             servername = opt_arg();
1318             break;
1319         case OPT_JPAKE:
1320 #ifndef OPENSSL_NO_JPAKE
1321             jpake_secret = opt_arg();
1322 #endif
1323             break;
1324         case OPT_USE_SRTP:
1325             srtp_profiles = opt_arg();
1326             break;
1327         case OPT_KEYMATEXPORT:
1328             keymatexportlabel = opt_arg();
1329             break;
1330         case OPT_KEYMATEXPORTLEN:
1331             keymatexportlen = atoi(opt_arg());
1332             break;
1333         case OPT_ASYNC:
1334             async = 1;
1335             break;
1336         }
1337     }
1338     argc = opt_num_rest();
1339     argv = opt_rest();
1340
1341     if (proxystr) {
1342         int res;
1343         char *tmp_host = host, *tmp_port = port;
1344         if (connectstr == NULL) {
1345             BIO_printf(bio_err, "%s: -proxy requires use of -connect\n", prog);
1346             goto opthelp;
1347         }
1348         res = BIO_parse_hostserv(proxystr, &host, &port, BIO_PARSE_PRIO_HOST);
1349         if (tmp_host != host)
1350             OPENSSL_free(tmp_host);
1351         if (tmp_port != port)
1352             OPENSSL_free(tmp_port);
1353         if (!res) {
1354             BIO_printf(bio_err, "%s: -proxy argument malformed or ambiguous\n",
1355                        prog);
1356             goto end;
1357         }
1358     } else {
1359         int res = 1;
1360         char *tmp_host = host, *tmp_port = port;
1361         if (connectstr != NULL)
1362             res = BIO_parse_hostserv(connectstr, &host, &port,
1363                                      BIO_PARSE_PRIO_HOST);
1364         if (tmp_host != host)
1365             OPENSSL_free(tmp_host);
1366         if (tmp_port != port)
1367             OPENSSL_free(tmp_port);
1368         if (!res) {
1369             BIO_printf(bio_err,
1370                        "%s: -connect argument malformed or ambiguous\n",
1371                        prog);
1372             goto end;
1373         }
1374     }
1375
1376     if (socket_family == AF_UNIX && socket_type != SOCK_STREAM) {
1377         BIO_printf(bio_err,
1378                    "Can't use unix sockets and datagrams together\n");
1379         goto end;
1380     }
1381 #if !defined(OPENSSL_NO_JPAKE) && !defined(OPENSSL_NO_PSK)
1382     if (jpake_secret) {
1383         if (psk_key) {
1384             BIO_printf(bio_err, "Can't use JPAKE and PSK together\n");
1385             goto end;
1386         }
1387         psk_identity = "JPAKE";
1388     }
1389 #endif
1390
1391 #if !defined(OPENSSL_NO_NEXTPROTONEG)
1392     next_proto.status = -1;
1393     if (next_proto_neg_in) {
1394         next_proto.data =
1395             next_protos_parse(&next_proto.len, next_proto_neg_in);
1396         if (next_proto.data == NULL) {
1397             BIO_printf(bio_err, "Error parsing -nextprotoneg argument\n");
1398             goto end;
1399         }
1400     } else
1401         next_proto.data = NULL;
1402 #endif
1403
1404     if (!app_passwd(passarg, NULL, &pass, NULL)) {
1405         BIO_printf(bio_err, "Error getting password\n");
1406         goto end;
1407     }
1408
1409     if (key_file == NULL)
1410         key_file = cert_file;
1411
1412     if (key_file) {
1413         key = load_key(key_file, key_format, 0, pass, e,
1414                        "client certificate private key file");
1415         if (key == NULL) {
1416             ERR_print_errors(bio_err);
1417             goto end;
1418         }
1419     }
1420
1421     if (cert_file) {
1422         cert = load_cert(cert_file, cert_format,
1423                          NULL, e, "client certificate file");
1424         if (cert == NULL) {
1425             ERR_print_errors(bio_err);
1426             goto end;
1427         }
1428     }
1429
1430     if (chain_file) {
1431         if (!load_certs(chain_file, &chain, FORMAT_PEM, NULL, e,
1432                         "client certificate chain"))
1433             goto end;
1434     }
1435
1436     if (crl_file) {
1437         X509_CRL *crl;
1438         crl = load_crl(crl_file, crl_format);
1439         if (crl == NULL) {
1440             BIO_puts(bio_err, "Error loading CRL\n");
1441             ERR_print_errors(bio_err);
1442             goto end;
1443         }
1444         crls = sk_X509_CRL_new_null();
1445         if (crls == NULL || !sk_X509_CRL_push(crls, crl)) {
1446             BIO_puts(bio_err, "Error adding CRL\n");
1447             ERR_print_errors(bio_err);
1448             X509_CRL_free(crl);
1449             goto end;
1450         }
1451     }
1452
1453     if (!load_excert(&exc))
1454         goto end;
1455
1456     if (!app_RAND_load_file(NULL, 1) && inrand == NULL
1457         && !RAND_status()) {
1458         BIO_printf(bio_err,
1459                    "warning, not much extra random data, consider using the -rand option\n");
1460     }
1461     if (inrand != NULL) {
1462         randamt = app_RAND_load_files(inrand);
1463         BIO_printf(bio_err, "%ld semi-random bytes loaded\n", randamt);
1464     }
1465
1466     if (bio_c_out == NULL) {
1467         if (c_quiet && !c_debug) {
1468             bio_c_out = BIO_new(BIO_s_null());
1469             if (c_msg && !bio_c_msg)
1470                 bio_c_msg = dup_bio_out(FORMAT_TEXT);
1471         } else if (bio_c_out == NULL)
1472             bio_c_out = dup_bio_out(FORMAT_TEXT);
1473     }
1474 #ifndef OPENSSL_NO_SRP
1475     if (!app_passwd(srppass, NULL, &srp_arg.srppassin, NULL)) {
1476         BIO_printf(bio_err, "Error getting password\n");
1477         goto end;
1478     }
1479 #endif
1480
1481     ctx = SSL_CTX_new(meth);
1482     if (ctx == NULL) {
1483         ERR_print_errors(bio_err);
1484         goto end;
1485     }
1486
1487     if (sdebug)
1488         ssl_ctx_security_debug(ctx, sdebug);
1489
1490     if (ssl_config) {
1491         if (SSL_CTX_config(ctx, ssl_config) == 0) {
1492             BIO_printf(bio_err, "Error using configuration \"%s\"\n",
1493                        ssl_config);
1494         ERR_print_errors(bio_err);
1495         goto end;
1496         }
1497     }
1498
1499     if (vpmtouched && !SSL_CTX_set1_param(ctx, vpm)) {
1500         BIO_printf(bio_err, "Error setting verify params\n");
1501         ERR_print_errors(bio_err);
1502         goto end;
1503     }
1504
1505     if (async) {
1506         SSL_CTX_set_mode(ctx, SSL_MODE_ASYNC);
1507     }
1508
1509     if (!config_ctx(cctx, ssl_args, ctx, jpake_secret == NULL))
1510         goto end;
1511
1512     if (!ssl_load_stores(ctx, vfyCApath, vfyCAfile, chCApath, chCAfile,
1513                          crls, crl_download)) {
1514         BIO_printf(bio_err, "Error loading store locations\n");
1515         ERR_print_errors(bio_err);
1516         goto end;
1517     }
1518 #ifndef OPENSSL_NO_ENGINE
1519     if (ssl_client_engine) {
1520         if (!SSL_CTX_set_client_cert_engine(ctx, ssl_client_engine)) {
1521             BIO_puts(bio_err, "Error setting client auth engine\n");
1522             ERR_print_errors(bio_err);
1523             ENGINE_free(ssl_client_engine);
1524             goto end;
1525         }
1526         ENGINE_free(ssl_client_engine);
1527     }
1528 #endif
1529
1530 #ifndef OPENSSL_NO_PSK
1531     if (psk_key != NULL || jpake_secret) {
1532         if (c_debug)
1533             BIO_printf(bio_c_out,
1534                        "PSK key given or JPAKE in use, setting client callback\n");
1535         SSL_CTX_set_psk_client_callback(ctx, psk_client_cb);
1536     }
1537 #endif
1538 #ifndef OPENSSL_NO_SRTP
1539     if (srtp_profiles != NULL) {
1540         /* Returns 0 on success! */
1541         if (SSL_CTX_set_tlsext_use_srtp(ctx, srtp_profiles) != 0) {
1542             BIO_printf(bio_err, "Error setting SRTP profile\n");
1543             ERR_print_errors(bio_err);
1544             goto end;
1545         }
1546     }
1547 #endif
1548
1549     if (exc)
1550         ssl_ctx_set_excert(ctx, exc);
1551
1552 #if !defined(OPENSSL_NO_NEXTPROTONEG)
1553     if (next_proto.data)
1554         SSL_CTX_set_next_proto_select_cb(ctx, next_proto_cb, &next_proto);
1555 #endif
1556     if (alpn_in) {
1557         unsigned short alpn_len;
1558         unsigned char *alpn = next_protos_parse(&alpn_len, alpn_in);
1559
1560         if (alpn == NULL) {
1561             BIO_printf(bio_err, "Error parsing -alpn argument\n");
1562             goto end;
1563         }
1564         /* Returns 0 on success! */
1565         if (SSL_CTX_set_alpn_protos(ctx, alpn, alpn_len) != 0) {
1566            BIO_printf(bio_err, "Error setting ALPN\n");
1567             goto end;
1568         }
1569         OPENSSL_free(alpn);
1570     }
1571
1572     for (i = 0; i < serverinfo_count; i++) {
1573         if (!SSL_CTX_add_client_custom_ext(ctx,
1574                                            serverinfo_types[i],
1575                                            NULL, NULL, NULL,
1576                                            serverinfo_cli_parse_cb, NULL)) {
1577             BIO_printf(bio_err,
1578                     "Warning: Unable to add custom extension %u, skipping\n",
1579                     serverinfo_types[i]);
1580         }
1581     }
1582
1583     if (state)
1584         SSL_CTX_set_info_callback(ctx, apps_ssl_info_callback);
1585
1586     SSL_CTX_set_verify(ctx, verify, verify_callback);
1587
1588     if (!ctx_set_verify_locations(ctx, CAfile, CApath, noCAfile, noCApath)) {
1589         ERR_print_errors(bio_err);
1590         goto end;
1591     }
1592
1593     ssl_ctx_add_crls(ctx, crls, crl_download);
1594
1595     if (!set_cert_key_stuff(ctx, cert, key, chain, build_chain))
1596         goto end;
1597
1598     if (servername != NULL) {
1599         tlsextcbp.biodebug = bio_err;
1600         SSL_CTX_set_tlsext_servername_callback(ctx, ssl_servername_cb);
1601         SSL_CTX_set_tlsext_servername_arg(ctx, &tlsextcbp);
1602     }
1603 # ifndef OPENSSL_NO_SRP
1604     if (srp_arg.srplogin) {
1605         if (!srp_lateuser && !SSL_CTX_set_srp_username(ctx, srp_arg.srplogin)) {
1606             BIO_printf(bio_err, "Unable to set SRP username\n");
1607             goto end;
1608         }
1609         srp_arg.msg = c_msg;
1610         srp_arg.debug = c_debug;
1611         SSL_CTX_set_srp_cb_arg(ctx, &srp_arg);
1612         SSL_CTX_set_srp_client_pwd_callback(ctx, ssl_give_srp_client_pwd_cb);
1613         SSL_CTX_set_srp_strength(ctx, srp_arg.strength);
1614         if (c_msg || c_debug || srp_arg.amp == 0)
1615             SSL_CTX_set_srp_verify_param_callback(ctx,
1616                                                   ssl_srp_verify_param_cb);
1617     }
1618 # endif
1619
1620     if (dane_tlsa_domain != NULL) {
1621         if (SSL_CTX_dane_enable(ctx) <= 0) {
1622             BIO_printf(bio_err,
1623                        "%s: Error enabling DANE TLSA authentication.\n", prog);
1624             ERR_print_errors(bio_err);
1625             goto end;
1626         }
1627     }
1628
1629     con = SSL_new(ctx);
1630     if (sess_in) {
1631         SSL_SESSION *sess;
1632         BIO *stmp = BIO_new_file(sess_in, "r");
1633         if (!stmp) {
1634             BIO_printf(bio_err, "Can't open session file %s\n", sess_in);
1635             ERR_print_errors(bio_err);
1636             goto end;
1637         }
1638         sess = PEM_read_bio_SSL_SESSION(stmp, NULL, 0, NULL);
1639         BIO_free(stmp);
1640         if (!sess) {
1641             BIO_printf(bio_err, "Can't open session file %s\n", sess_in);
1642             ERR_print_errors(bio_err);
1643             goto end;
1644         }
1645         if (!SSL_set_session(con, sess)) {
1646             BIO_printf(bio_err, "Can't set session\n");
1647             ERR_print_errors(bio_err);
1648             goto end;
1649         }
1650         SSL_SESSION_free(sess);
1651     }
1652
1653     if (fallback_scsv)
1654         SSL_set_mode(con, SSL_MODE_SEND_FALLBACK_SCSV);
1655
1656     if (servername != NULL) {
1657         if (!SSL_set_tlsext_host_name(con, servername)) {
1658             BIO_printf(bio_err, "Unable to set TLS servername extension.\n");
1659             ERR_print_errors(bio_err);
1660             goto end;
1661         }
1662     }
1663
1664     if (dane_tlsa_domain != NULL) {
1665         if (SSL_dane_enable(con, dane_tlsa_domain) <= 0) {
1666             BIO_printf(bio_err, "%s: Error enabling DANE TLSA "
1667                        "authentication.\n", prog);
1668             ERR_print_errors(bio_err);
1669             goto end;
1670         }
1671         if (dane_tlsa_rrset == NULL) {
1672             BIO_printf(bio_err, "%s: DANE TLSA authentication requires at "
1673                        "least one -dane_tlsa_rrset option.\n", prog);
1674             goto end;
1675         }
1676         if (tlsa_import_rrset(con, dane_tlsa_rrset) <= 0) {
1677             BIO_printf(bio_err, "%s: Failed to import any TLSA "
1678                        "records.\n", prog);
1679             goto end;
1680         }
1681     } else if (dane_tlsa_rrset != NULL) {
1682             BIO_printf(bio_err, "%s: DANE TLSA authentication requires the "
1683                        "-dane_tlsa_domain option.\n", prog);
1684             goto end;
1685     }
1686
1687  re_start:
1688     if (init_client(&s, host, port, socket_family, socket_type) == 0)
1689     {
1690         BIO_printf(bio_err, "connect:errno=%d\n", get_last_socket_error());
1691         SHUTDOWN(s);
1692         goto end;
1693     }
1694     BIO_printf(bio_c_out, "CONNECTED(%08X)\n", s);
1695
1696 #ifdef FIONBIO
1697     if (c_nbio) {
1698         unsigned long l = 1;
1699         BIO_printf(bio_c_out, "turning on non blocking io\n");
1700         if (BIO_socket_ioctl(s, FIONBIO, &l) < 0) {
1701             ERR_print_errors(bio_err);
1702             goto end;
1703         }
1704     }
1705 #endif
1706     if (socket_type == SOCK_DGRAM) {
1707
1708         sbio = BIO_new_dgram(s, BIO_NOCLOSE);
1709         if (getsockname(s, &peer, (void *)&peerlen) < 0) {
1710             BIO_printf(bio_err, "getsockname:errno=%d\n",
1711                        get_last_socket_error());
1712             SHUTDOWN(s);
1713             goto end;
1714         }
1715
1716         (void)BIO_ctrl_set_connected(sbio, &peer);
1717
1718         if (enable_timeouts) {
1719             timeout.tv_sec = 0;
1720             timeout.tv_usec = DGRAM_RCV_TIMEOUT;
1721             BIO_ctrl(sbio, BIO_CTRL_DGRAM_SET_RECV_TIMEOUT, 0, &timeout);
1722
1723             timeout.tv_sec = 0;
1724             timeout.tv_usec = DGRAM_SND_TIMEOUT;
1725             BIO_ctrl(sbio, BIO_CTRL_DGRAM_SET_SEND_TIMEOUT, 0, &timeout);
1726         }
1727
1728         if (socket_mtu) {
1729             if (socket_mtu < DTLS_get_link_min_mtu(con)) {
1730                 BIO_printf(bio_err, "MTU too small. Must be at least %ld\n",
1731                            DTLS_get_link_min_mtu(con));
1732                 BIO_free(sbio);
1733                 goto shut;
1734             }
1735             SSL_set_options(con, SSL_OP_NO_QUERY_MTU);
1736             if (!DTLS_set_link_mtu(con, socket_mtu)) {
1737                 BIO_printf(bio_err, "Failed to set MTU\n");
1738                 BIO_free(sbio);
1739                 goto shut;
1740             }
1741         } else
1742             /* want to do MTU discovery */
1743             BIO_ctrl(sbio, BIO_CTRL_DGRAM_MTU_DISCOVER, 0, NULL);
1744     } else
1745         sbio = BIO_new_socket(s, BIO_NOCLOSE);
1746
1747     if (nbio_test) {
1748         BIO *test;
1749
1750         test = BIO_new(BIO_f_nbio_test());
1751         sbio = BIO_push(test, sbio);
1752     }
1753
1754     if (c_debug) {
1755         BIO_set_callback(sbio, bio_dump_callback);
1756         BIO_set_callback_arg(sbio, (char *)bio_c_out);
1757     }
1758     if (c_msg) {
1759 #ifndef OPENSSL_NO_SSL_TRACE
1760         if (c_msg == 2)
1761             SSL_set_msg_callback(con, SSL_trace);
1762         else
1763 #endif
1764             SSL_set_msg_callback(con, msg_cb);
1765         SSL_set_msg_callback_arg(con, bio_c_msg ? bio_c_msg : bio_c_out);
1766     }
1767
1768     if (c_tlsextdebug) {
1769         SSL_set_tlsext_debug_callback(con, tlsext_cb);
1770         SSL_set_tlsext_debug_arg(con, bio_c_out);
1771     }
1772     if (c_status_req) {
1773         SSL_set_tlsext_status_type(con, TLSEXT_STATUSTYPE_ocsp);
1774         SSL_CTX_set_tlsext_status_cb(ctx, ocsp_resp_cb);
1775         SSL_CTX_set_tlsext_status_arg(ctx, bio_c_out);
1776     }
1777 #ifndef OPENSSL_NO_JPAKE
1778     if (jpake_secret)
1779         jpake_client_auth(bio_c_out, sbio, jpake_secret);
1780 #endif
1781
1782     SSL_set_bio(con, sbio, sbio);
1783     SSL_set_connect_state(con);
1784
1785     /* ok, lets connect */
1786     width = SSL_get_fd(con) + 1;
1787
1788     read_tty = 1;
1789     write_tty = 0;
1790     tty_on = 0;
1791     read_ssl = 1;
1792     write_ssl = 1;
1793
1794     cbuf_len = 0;
1795     cbuf_off = 0;
1796     sbuf_len = 0;
1797     sbuf_off = 0;
1798
1799     switch ((PROTOCOL_CHOICE) starttls_proto) {
1800     case PROTO_OFF:
1801         break;
1802     case PROTO_SMTP:
1803         {
1804             /*
1805              * This is an ugly hack that does a lot of assumptions. We do
1806              * have to handle multi-line responses which may come in a single
1807              * packet or not. We therefore have to use BIO_gets() which does
1808              * need a buffering BIO. So during the initial chitchat we do
1809              * push a buffering BIO into the chain that is removed again
1810              * later on to not disturb the rest of the s_client operation.
1811              */
1812             int foundit = 0;
1813             BIO *fbio = BIO_new(BIO_f_buffer());
1814             BIO_push(fbio, sbio);
1815             /* wait for multi-line response to end from SMTP */
1816             do {
1817                 mbuf_len = BIO_gets(fbio, mbuf, BUFSIZZ);
1818             }
1819             while (mbuf_len > 3 && mbuf[3] == '-');
1820             BIO_printf(fbio, "EHLO %s\r\n", ehlo);
1821             (void)BIO_flush(fbio);
1822             /* wait for multi-line response to end EHLO SMTP response */
1823             do {
1824                 mbuf_len = BIO_gets(fbio, mbuf, BUFSIZZ);
1825                 if (strstr(mbuf, "STARTTLS"))
1826                     foundit = 1;
1827             }
1828             while (mbuf_len > 3 && mbuf[3] == '-');
1829             (void)BIO_flush(fbio);
1830             BIO_pop(fbio);
1831             BIO_free(fbio);
1832             if (!foundit)
1833                 BIO_printf(bio_err,
1834                            "didn't find starttls in server response,"
1835                            " trying anyway...\n");
1836             BIO_printf(sbio, "STARTTLS\r\n");
1837             BIO_read(sbio, sbuf, BUFSIZZ);
1838         }
1839         break;
1840     case PROTO_POP3:
1841         {
1842             BIO_read(sbio, mbuf, BUFSIZZ);
1843             BIO_printf(sbio, "STLS\r\n");
1844             mbuf_len = BIO_read(sbio, sbuf, BUFSIZZ);
1845             if (mbuf_len < 0) {
1846                 BIO_printf(bio_err, "BIO_read failed\n");
1847                 goto end;
1848             }
1849         }
1850         break;
1851     case PROTO_IMAP:
1852         {
1853             int foundit = 0;
1854             BIO *fbio = BIO_new(BIO_f_buffer());
1855             BIO_push(fbio, sbio);
1856             BIO_gets(fbio, mbuf, BUFSIZZ);
1857             /* STARTTLS command requires CAPABILITY... */
1858             BIO_printf(fbio, ". CAPABILITY\r\n");
1859             (void)BIO_flush(fbio);
1860             /* wait for multi-line CAPABILITY response */
1861             do {
1862                 mbuf_len = BIO_gets(fbio, mbuf, BUFSIZZ);
1863                 if (strstr(mbuf, "STARTTLS"))
1864                     foundit = 1;
1865             }
1866             while (mbuf_len > 3 && mbuf[0] != '.');
1867             (void)BIO_flush(fbio);
1868             BIO_pop(fbio);
1869             BIO_free(fbio);
1870             if (!foundit)
1871                 BIO_printf(bio_err,
1872                            "didn't find STARTTLS in server response,"
1873                            " trying anyway...\n");
1874             BIO_printf(sbio, ". STARTTLS\r\n");
1875             BIO_read(sbio, sbuf, BUFSIZZ);
1876         }
1877         break;
1878     case PROTO_FTP:
1879         {
1880             BIO *fbio = BIO_new(BIO_f_buffer());
1881             BIO_push(fbio, sbio);
1882             /* wait for multi-line response to end from FTP */
1883             do {
1884                 mbuf_len = BIO_gets(fbio, mbuf, BUFSIZZ);
1885             }
1886             while (mbuf_len > 3 && mbuf[3] == '-');
1887             (void)BIO_flush(fbio);
1888             BIO_pop(fbio);
1889             BIO_free(fbio);
1890             BIO_printf(sbio, "AUTH TLS\r\n");
1891             BIO_read(sbio, sbuf, BUFSIZZ);
1892         }
1893         break;
1894     case PROTO_XMPP:
1895     case PROTO_XMPP_SERVER:
1896         {
1897             int seen = 0;
1898             BIO_printf(sbio, "<stream:stream "
1899                        "xmlns:stream='http://etherx.jabber.org/streams' "
1900                        "xmlns='jabber:%s' to='%s' version='1.0'>",
1901                        starttls_proto == PROTO_XMPP ? "client" : "server",
1902                        xmpphost ? xmpphost : host);
1903             seen = BIO_read(sbio, mbuf, BUFSIZZ);
1904             mbuf[seen] = 0;
1905             while (!strstr
1906                    (mbuf, "<starttls xmlns='urn:ietf:params:xml:ns:xmpp-tls'")
1907                    && !strstr(mbuf,
1908                               "<starttls xmlns=\"urn:ietf:params:xml:ns:xmpp-tls\""))
1909             {
1910                 seen = BIO_read(sbio, mbuf, BUFSIZZ);
1911
1912                 if (seen <= 0)
1913                     goto shut;
1914
1915                 mbuf[seen] = 0;
1916             }
1917             BIO_printf(sbio,
1918                        "<starttls xmlns='urn:ietf:params:xml:ns:xmpp-tls'/>");
1919             seen = BIO_read(sbio, sbuf, BUFSIZZ);
1920             sbuf[seen] = 0;
1921             if (!strstr(sbuf, "<proceed"))
1922                 goto shut;
1923             mbuf[0] = 0;
1924         }
1925         break;
1926     case PROTO_TELNET:
1927         {
1928             static const unsigned char tls_do[] = {
1929                 /* IAC    DO   START_TLS */
1930                    255,   253, 46
1931             };
1932             static const unsigned char tls_will[] = {
1933                 /* IAC  WILL START_TLS */
1934                    255, 251, 46
1935             };
1936             static const unsigned char tls_follows[] = {
1937                 /* IAC  SB   START_TLS FOLLOWS IAC  SE */
1938                    255, 250, 46,       1,      255, 240
1939             };
1940             int bytes;
1941
1942             /* Telnet server should demand we issue START_TLS */
1943             bytes = BIO_read(sbio, mbuf, BUFSIZZ);
1944             if (bytes != 3 || memcmp(mbuf, tls_do, 3) != 0)
1945                 goto shut;
1946             /* Agree to issue START_TLS and send the FOLLOWS sub-command */
1947             BIO_write(sbio, tls_will, 3);
1948             BIO_write(sbio, tls_follows, 6);
1949             (void)BIO_flush(sbio);
1950             /* Telnet server also sent the FOLLOWS sub-command */
1951             bytes = BIO_read(sbio, mbuf, BUFSIZZ);
1952             if (bytes != 6 || memcmp(mbuf, tls_follows, 6) != 0)
1953                 goto shut;
1954         }
1955         break;
1956     case PROTO_CONNECT:
1957         {
1958             int foundit = 0;
1959             BIO *fbio = BIO_new(BIO_f_buffer());
1960
1961             BIO_push(fbio, sbio);
1962             BIO_printf(fbio, "CONNECT %s\r\n\r\n", connectstr);
1963             (void)BIO_flush(fbio);
1964             /* wait for multi-line response to end CONNECT response */
1965             do {
1966                 mbuf_len = BIO_gets(fbio, mbuf, BUFSIZZ);
1967                 if (strstr(mbuf, "200") != NULL
1968                     && strstr(mbuf, "established") != NULL)
1969                     foundit++;
1970             } while (mbuf_len > 3 && foundit == 0);
1971             (void)BIO_flush(fbio);
1972             BIO_pop(fbio);
1973             BIO_free(fbio);
1974             if (!foundit) {
1975                 BIO_printf(bio_err, "%s: HTTP CONNECT failed\n", prog);
1976                 goto shut;
1977             }
1978         }
1979         break;
1980     case PROTO_IRC:
1981         {
1982             int numeric;
1983             BIO *fbio = BIO_new(BIO_f_buffer());
1984
1985             BIO_push(fbio, sbio);
1986             BIO_printf(fbio, "STARTTLS\r\n");
1987             (void)BIO_flush(fbio);
1988             width = SSL_get_fd(con) + 1;
1989
1990             do {
1991                 numeric = 0;
1992
1993                 FD_ZERO(&readfds);
1994                 openssl_fdset(SSL_get_fd(con), &readfds);
1995                 timeout.tv_sec = S_CLIENT_IRC_READ_TIMEOUT;
1996                 timeout.tv_usec = 0;
1997                 /*
1998                  * If the IRCd doesn't respond within
1999                  * S_CLIENT_IRC_READ_TIMEOUT seconds, assume
2000                  * it doesn't support STARTTLS. Many IRCds
2001                  * will not give _any_ sort of response to a
2002                  * STARTTLS command when it's not supported.
2003                  */
2004                 if (!BIO_get_buffer_num_lines(fbio)
2005                     && !BIO_pending(fbio)
2006                     && !BIO_pending(sbio)
2007                     && select(width, (void *)&readfds, NULL, NULL,
2008                               &timeout) < 1) {
2009                     BIO_printf(bio_err,
2010                                "Timeout waiting for response (%d seconds).\n",
2011                                S_CLIENT_IRC_READ_TIMEOUT);
2012                     break;
2013                 }
2014
2015                 mbuf_len = BIO_gets(fbio, mbuf, BUFSIZZ);
2016                 if (mbuf_len < 1 || sscanf(mbuf, "%*s %d", &numeric) != 1)
2017                     break;
2018                 /* :example.net 451 STARTTLS :You have not registered */
2019                 /* :example.net 421 STARTTLS :Unknown command */
2020                 if ((numeric == 451 || numeric == 421)
2021                     && strstr(mbuf, "STARTTLS") != NULL) {
2022                     BIO_printf(bio_err, "STARTTLS not supported: %s", mbuf);
2023                     break;
2024                 }
2025                 if (numeric == 691) {
2026                     BIO_printf(bio_err, "STARTTLS negotiation failed: ");
2027                     ERR_print_errors(bio_err);
2028                     break;
2029                 }
2030             } while (numeric != 670);
2031
2032             (void)BIO_flush(fbio);
2033             BIO_pop(fbio);
2034             BIO_free(fbio);
2035             if (numeric != 670) {
2036                 BIO_printf(bio_err, "Server does not support STARTTLS.\n");
2037                 ret = 1;
2038                 goto shut;
2039             }
2040         }
2041     }
2042
2043     for (;;) {
2044         FD_ZERO(&readfds);
2045         FD_ZERO(&writefds);
2046
2047         if ((SSL_version(con) == DTLS1_VERSION) &&
2048             DTLSv1_get_timeout(con, &timeout))
2049             timeoutp = &timeout;
2050         else
2051             timeoutp = NULL;
2052
2053         if (SSL_in_init(con) && !SSL_total_renegotiations(con)) {
2054             in_init = 1;
2055             tty_on = 0;
2056         } else {
2057             tty_on = 1;
2058             if (in_init) {
2059                 in_init = 0;
2060
2061                 if (servername != NULL && !SSL_session_reused(con)) {
2062                     BIO_printf(bio_c_out,
2063                                "Server did %sacknowledge servername extension.\n",
2064                                tlsextcbp.ack ? "" : "not ");
2065                 }
2066
2067                 if (sess_out) {
2068                     BIO *stmp = BIO_new_file(sess_out, "w");
2069                     if (stmp) {
2070                         PEM_write_bio_SSL_SESSION(stmp, SSL_get_session(con));
2071                         BIO_free(stmp);
2072                     } else
2073                         BIO_printf(bio_err, "Error writing session file %s\n",
2074                                    sess_out);
2075                 }
2076                 if (c_brief) {
2077                     BIO_puts(bio_err, "CONNECTION ESTABLISHED\n");
2078                     print_ssl_summary(con);
2079                 }
2080
2081                 print_stuff(bio_c_out, con, full_log);
2082                 if (full_log > 0)
2083                     full_log--;
2084
2085                 if (starttls_proto) {
2086                     BIO_write(bio_err, mbuf, mbuf_len);
2087                     /* We don't need to know any more */
2088                     if (!reconnect)
2089                         starttls_proto = PROTO_OFF;
2090                 }
2091
2092                 if (reconnect) {
2093                     reconnect--;
2094                     BIO_printf(bio_c_out,
2095                                "drop connection and then reconnect\n");
2096                     do_ssl_shutdown(con);
2097                     SSL_set_connect_state(con);
2098                     SHUTDOWN(SSL_get_fd(con));
2099                     goto re_start;
2100                 }
2101             }
2102         }
2103
2104         ssl_pending = read_ssl && SSL_pending(con);
2105
2106         if (!ssl_pending) {
2107 #if !defined(OPENSSL_SYS_WINDOWS) && !defined(OPENSSL_SYS_MSDOS) && !defined(OPENSSL_SYS_NETWARE)
2108             if (tty_on) {
2109                 if (read_tty)
2110                     openssl_fdset(fileno(stdin), &readfds);
2111                 if (write_tty)
2112                     openssl_fdset(fileno(stdout), &writefds);
2113             }
2114             if (read_ssl)
2115                 openssl_fdset(SSL_get_fd(con), &readfds);
2116             if (write_ssl)
2117                 openssl_fdset(SSL_get_fd(con), &writefds);
2118 #else
2119             if (!tty_on || !write_tty) {
2120                 if (read_ssl)
2121                     openssl_fdset(SSL_get_fd(con), &readfds);
2122                 if (write_ssl)
2123                     openssl_fdset(SSL_get_fd(con), &writefds);
2124             }
2125 #endif
2126
2127             /*
2128              * Note: under VMS with SOCKETSHR the second parameter is
2129              * currently of type (int *) whereas under other systems it is
2130              * (void *) if you don't have a cast it will choke the compiler:
2131              * if you do have a cast then you can either go for (int *) or
2132              * (void *).
2133              */
2134 #if defined(OPENSSL_SYS_WINDOWS) || defined(OPENSSL_SYS_MSDOS)
2135             /*
2136              * Under Windows/DOS we make the assumption that we can always
2137              * write to the tty: therefore if we need to write to the tty we
2138              * just fall through. Otherwise we timeout the select every
2139              * second and see if there are any keypresses. Note: this is a
2140              * hack, in a proper Windows application we wouldn't do this.
2141              */
2142             i = 0;
2143             if (!write_tty) {
2144                 if (read_tty) {
2145                     tv.tv_sec = 1;
2146                     tv.tv_usec = 0;
2147                     i = select(width, (void *)&readfds, (void *)&writefds,
2148                                NULL, &tv);
2149 # if defined(OPENSSL_SYS_WINCE) || defined(OPENSSL_SYS_MSDOS)
2150                     if (!i && (!_kbhit() || !read_tty))
2151                         continue;
2152 # else
2153                     if (!i && (!((_kbhit())
2154                                  || (WAIT_OBJECT_0 ==
2155                                      WaitForSingleObject(GetStdHandle
2156                                                          (STD_INPUT_HANDLE),
2157                                                          0)))
2158                                || !read_tty))
2159                         continue;
2160 # endif
2161                 } else
2162                     i = select(width, (void *)&readfds, (void *)&writefds,
2163                                NULL, timeoutp);
2164             }
2165 #elif defined(OPENSSL_SYS_NETWARE)
2166             if (!write_tty) {
2167                 if (read_tty) {
2168                     tv.tv_sec = 1;
2169                     tv.tv_usec = 0;
2170                     i = select(width, (void *)&readfds, (void *)&writefds,
2171                                NULL, &tv);
2172                 } else
2173                     i = select(width, (void *)&readfds, (void *)&writefds,
2174                                NULL, timeoutp);
2175             }
2176 #else
2177             i = select(width, (void *)&readfds, (void *)&writefds,
2178                        NULL, timeoutp);
2179 #endif
2180             if (i < 0) {
2181                 BIO_printf(bio_err, "bad select %d\n",
2182                            get_last_socket_error());
2183                 goto shut;
2184                 /* goto end; */
2185             }
2186         }
2187
2188         if ((SSL_version(con) == DTLS1_VERSION)
2189             && DTLSv1_handle_timeout(con) > 0) {
2190             BIO_printf(bio_err, "TIMEOUT occurred\n");
2191         }
2192
2193         if (!ssl_pending && FD_ISSET(SSL_get_fd(con), &writefds)) {
2194             k = SSL_write(con, &(cbuf[cbuf_off]), (unsigned int)cbuf_len);
2195             switch (SSL_get_error(con, k)) {
2196             case SSL_ERROR_NONE:
2197                 cbuf_off += k;
2198                 cbuf_len -= k;
2199                 if (k <= 0)
2200                     goto end;
2201                 /* we have done a  write(con,NULL,0); */
2202                 if (cbuf_len <= 0) {
2203                     read_tty = 1;
2204                     write_ssl = 0;
2205                 } else {        /* if (cbuf_len > 0) */
2206
2207                     read_tty = 0;
2208                     write_ssl = 1;
2209                 }
2210                 break;
2211             case SSL_ERROR_WANT_WRITE:
2212                 BIO_printf(bio_c_out, "write W BLOCK\n");
2213                 write_ssl = 1;
2214                 read_tty = 0;
2215                 break;
2216             case SSL_ERROR_WANT_ASYNC:
2217                 BIO_printf(bio_c_out, "write A BLOCK\n");
2218                 wait_for_async(con);
2219                 write_ssl = 1;
2220                 read_tty = 0;
2221                 break;
2222             case SSL_ERROR_WANT_READ:
2223                 BIO_printf(bio_c_out, "write R BLOCK\n");
2224                 write_tty = 0;
2225                 read_ssl = 1;
2226                 write_ssl = 0;
2227                 break;
2228             case SSL_ERROR_WANT_X509_LOOKUP:
2229                 BIO_printf(bio_c_out, "write X BLOCK\n");
2230                 break;
2231             case SSL_ERROR_ZERO_RETURN:
2232                 if (cbuf_len != 0) {
2233                     BIO_printf(bio_c_out, "shutdown\n");
2234                     ret = 0;
2235                     goto shut;
2236                 } else {
2237                     read_tty = 1;
2238                     write_ssl = 0;
2239                     break;
2240                 }
2241
2242             case SSL_ERROR_SYSCALL:
2243                 if ((k != 0) || (cbuf_len != 0)) {
2244                     BIO_printf(bio_err, "write:errno=%d\n",
2245                                get_last_socket_error());
2246                     goto shut;
2247                 } else {
2248                     read_tty = 1;
2249                     write_ssl = 0;
2250                 }
2251                 break;
2252             case SSL_ERROR_SSL:
2253                 ERR_print_errors(bio_err);
2254                 goto shut;
2255             }
2256         }
2257 #if defined(OPENSSL_SYS_WINDOWS) || defined(OPENSSL_SYS_MSDOS) || defined(OPENSSL_SYS_NETWARE)
2258         /* Assume Windows/DOS/BeOS can always write */
2259         else if (!ssl_pending && write_tty)
2260 #else
2261         else if (!ssl_pending && FD_ISSET(fileno(stdout), &writefds))
2262 #endif
2263         {
2264 #ifdef CHARSET_EBCDIC
2265             ascii2ebcdic(&(sbuf[sbuf_off]), &(sbuf[sbuf_off]), sbuf_len);
2266 #endif
2267             i = raw_write_stdout(&(sbuf[sbuf_off]), sbuf_len);
2268
2269             if (i <= 0) {
2270                 BIO_printf(bio_c_out, "DONE\n");
2271                 ret = 0;
2272                 goto shut;
2273                 /* goto end; */
2274             }
2275
2276             sbuf_len -= i;;
2277             sbuf_off += i;
2278             if (sbuf_len <= 0) {
2279                 read_ssl = 1;
2280                 write_tty = 0;
2281             }
2282         } else if (ssl_pending || FD_ISSET(SSL_get_fd(con), &readfds)) {
2283 #ifdef RENEG
2284             {
2285                 static int iiii;
2286                 if (++iiii == 52) {
2287                     SSL_renegotiate(con);
2288                     iiii = 0;
2289                 }
2290             }
2291 #endif
2292             k = SSL_read(con, sbuf, 1024 /* BUFSIZZ */ );
2293
2294             switch (SSL_get_error(con, k)) {
2295             case SSL_ERROR_NONE:
2296                 if (k <= 0)
2297                     goto end;
2298                 sbuf_off = 0;
2299                 sbuf_len = k;
2300
2301                 read_ssl = 0;
2302                 write_tty = 1;
2303                 break;
2304             case SSL_ERROR_WANT_ASYNC:
2305                 BIO_printf(bio_c_out, "read A BLOCK\n");
2306                 wait_for_async(con);
2307                 write_tty = 0;
2308                 read_ssl = 1;
2309                 if ((read_tty == 0) && (write_ssl == 0))
2310                     write_ssl = 1;
2311                 break;
2312             case SSL_ERROR_WANT_WRITE:
2313                 BIO_printf(bio_c_out, "read W BLOCK\n");
2314                 write_ssl = 1;
2315                 read_tty = 0;
2316                 break;
2317             case SSL_ERROR_WANT_READ:
2318                 BIO_printf(bio_c_out, "read R BLOCK\n");
2319                 write_tty = 0;
2320                 read_ssl = 1;
2321                 if ((read_tty == 0) && (write_ssl == 0))
2322                     write_ssl = 1;
2323                 break;
2324             case SSL_ERROR_WANT_X509_LOOKUP:
2325                 BIO_printf(bio_c_out, "read X BLOCK\n");
2326                 break;
2327             case SSL_ERROR_SYSCALL:
2328                 ret = get_last_socket_error();
2329                 if (c_brief)
2330                     BIO_puts(bio_err, "CONNECTION CLOSED BY SERVER\n");
2331                 else
2332                     BIO_printf(bio_err, "read:errno=%d\n", ret);
2333                 goto shut;
2334             case SSL_ERROR_ZERO_RETURN:
2335                 BIO_printf(bio_c_out, "closed\n");
2336                 ret = 0;
2337                 goto shut;
2338             case SSL_ERROR_SSL:
2339                 ERR_print_errors(bio_err);
2340                 goto shut;
2341                 /* break; */
2342             }
2343         }
2344 #if defined(OPENSSL_SYS_WINDOWS) || defined(OPENSSL_SYS_MSDOS)
2345 # if defined(OPENSSL_SYS_WINCE) || defined(OPENSSL_SYS_MSDOS)
2346         else if (_kbhit())
2347 # else
2348         else if ((_kbhit())
2349                  || (WAIT_OBJECT_0 ==
2350                      WaitForSingleObject(GetStdHandle(STD_INPUT_HANDLE), 0)))
2351 # endif
2352 #elif defined (OPENSSL_SYS_NETWARE)
2353         else if (_kbhit())
2354 #else
2355         else if (FD_ISSET(fileno(stdin), &readfds))
2356 #endif
2357         {
2358             if (crlf) {
2359                 int j, lf_num;
2360
2361                 i = raw_read_stdin(cbuf, BUFSIZZ / 2);
2362                 lf_num = 0;
2363                 /* both loops are skipped when i <= 0 */
2364                 for (j = 0; j < i; j++)
2365                     if (cbuf[j] == '\n')
2366                         lf_num++;
2367                 for (j = i - 1; j >= 0; j--) {
2368                     cbuf[j + lf_num] = cbuf[j];
2369                     if (cbuf[j] == '\n') {
2370                         lf_num--;
2371                         i++;
2372                         cbuf[j + lf_num] = '\r';
2373                     }
2374                 }
2375                 assert(lf_num == 0);
2376             } else
2377                 i = raw_read_stdin(cbuf, BUFSIZZ);
2378
2379             if ((!c_ign_eof) && ((i <= 0) || (cbuf[0] == 'Q' && cmdletters))) {
2380                 BIO_printf(bio_err, "DONE\n");
2381                 ret = 0;
2382                 goto shut;
2383             }
2384
2385             if ((!c_ign_eof) && (cbuf[0] == 'R' && cmdletters)) {
2386                 BIO_printf(bio_err, "RENEGOTIATING\n");
2387                 SSL_renegotiate(con);
2388                 cbuf_len = 0;
2389             }
2390 #ifndef OPENSSL_NO_HEARTBEATS
2391             else if ((!c_ign_eof) && (cbuf[0] == 'B' && cmdletters)) {
2392                 BIO_printf(bio_err, "HEARTBEATING\n");
2393                 SSL_heartbeat(con);
2394                 cbuf_len = 0;
2395             }
2396 #endif
2397             else {
2398                 cbuf_len = i;
2399                 cbuf_off = 0;
2400 #ifdef CHARSET_EBCDIC
2401                 ebcdic2ascii(cbuf, cbuf, i);
2402 #endif
2403             }
2404
2405             write_ssl = 1;
2406             read_tty = 0;
2407         }
2408     }
2409
2410     ret = 0;
2411  shut:
2412     if (in_init)
2413         print_stuff(bio_c_out, con, full_log);
2414     do_ssl_shutdown(con);
2415     SHUTDOWN(SSL_get_fd(con));
2416  end:
2417     if (con != NULL) {
2418         if (prexit != 0)
2419             print_stuff(bio_c_out, con, 1);
2420         SSL_free(con);
2421     }
2422 #if !defined(OPENSSL_NO_NEXTPROTONEG)
2423     OPENSSL_free(next_proto.data);
2424 #endif
2425     SSL_CTX_free(ctx);
2426     X509_free(cert);
2427     sk_X509_CRL_pop_free(crls, X509_CRL_free);
2428     EVP_PKEY_free(key);
2429     sk_X509_pop_free(chain, X509_free);
2430     OPENSSL_free(pass);
2431 #ifndef OPENSSL_NO_SRP
2432     OPENSSL_free(srp_arg.srppassin);
2433 #endif
2434     OPENSSL_free(host);
2435     OPENSSL_free(port);
2436     X509_VERIFY_PARAM_free(vpm);
2437     ssl_excert_free(exc);
2438     sk_OPENSSL_STRING_free(ssl_args);
2439     sk_OPENSSL_STRING_free(dane_tlsa_rrset);
2440     SSL_CONF_CTX_free(cctx);
2441     OPENSSL_clear_free(cbuf, BUFSIZZ);
2442     OPENSSL_clear_free(sbuf, BUFSIZZ);
2443     OPENSSL_clear_free(mbuf, BUFSIZZ);
2444     BIO_free(bio_c_out);
2445     bio_c_out = NULL;
2446     BIO_free(bio_c_msg);
2447     bio_c_msg = NULL;
2448     return (ret);
2449 }
2450
2451 static void print_stuff(BIO *bio, SSL *s, int full)
2452 {
2453     X509 *peer = NULL;
2454     char buf[BUFSIZ];
2455     STACK_OF(X509) *sk;
2456     STACK_OF(X509_NAME) *sk2;
2457     const SSL_CIPHER *c;
2458     X509_NAME *xn;
2459     int i;
2460 #ifndef OPENSSL_NO_COMP
2461     const COMP_METHOD *comp, *expansion;
2462 #endif
2463     unsigned char *exportedkeymat;
2464
2465     if (full) {
2466         int got_a_chain = 0;
2467
2468         sk = SSL_get_peer_cert_chain(s);
2469         if (sk != NULL) {
2470             got_a_chain = 1;
2471
2472             BIO_printf(bio, "---\nCertificate chain\n");
2473             for (i = 0; i < sk_X509_num(sk); i++) {
2474                 X509_NAME_oneline(X509_get_subject_name(sk_X509_value(sk, i)),
2475                                   buf, sizeof buf);
2476                 BIO_printf(bio, "%2d s:%s\n", i, buf);
2477                 X509_NAME_oneline(X509_get_issuer_name(sk_X509_value(sk, i)),
2478                                   buf, sizeof buf);
2479                 BIO_printf(bio, "   i:%s\n", buf);
2480                 if (c_showcerts)
2481                     PEM_write_bio_X509(bio, sk_X509_value(sk, i));
2482             }
2483         }
2484
2485         BIO_printf(bio, "---\n");
2486         peer = SSL_get_peer_certificate(s);
2487         if (peer != NULL) {
2488             BIO_printf(bio, "Server certificate\n");
2489
2490             /* Redundant if we showed the whole chain */
2491             if (!(c_showcerts && got_a_chain))
2492                 PEM_write_bio_X509(bio, peer);
2493             X509_NAME_oneline(X509_get_subject_name(peer), buf, sizeof buf);
2494             BIO_printf(bio, "subject=%s\n", buf);
2495             X509_NAME_oneline(X509_get_issuer_name(peer), buf, sizeof buf);
2496             BIO_printf(bio, "issuer=%s\n", buf);
2497         } else
2498             BIO_printf(bio, "no peer certificate available\n");
2499
2500         sk2 = SSL_get_client_CA_list(s);
2501         if ((sk2 != NULL) && (sk_X509_NAME_num(sk2) > 0)) {
2502             BIO_printf(bio, "---\nAcceptable client certificate CA names\n");
2503             for (i = 0; i < sk_X509_NAME_num(sk2); i++) {
2504                 xn = sk_X509_NAME_value(sk2, i);
2505                 X509_NAME_oneline(xn, buf, sizeof(buf));
2506                 BIO_write(bio, buf, strlen(buf));
2507                 BIO_write(bio, "\n", 1);
2508             }
2509         } else {
2510             BIO_printf(bio, "---\nNo client certificate CA names sent\n");
2511         }
2512
2513         ssl_print_sigalgs(bio, s);
2514         ssl_print_tmp_key(bio, s);
2515
2516         BIO_printf(bio,
2517                    "---\nSSL handshake has read %"PRIu64" bytes and written %"PRIu64" bytes\n",
2518                    BIO_number_read(SSL_get_rbio(s)),
2519                    BIO_number_written(SSL_get_wbio(s)));
2520     }
2521     print_verify_detail(s, bio);
2522     BIO_printf(bio, (SSL_session_reused(s) ? "---\nReused, " : "---\nNew, "));
2523     c = SSL_get_current_cipher(s);
2524     BIO_printf(bio, "%s, Cipher is %s\n",
2525                SSL_CIPHER_get_version(c), SSL_CIPHER_get_name(c));
2526     if (peer != NULL) {
2527         EVP_PKEY *pktmp;
2528         pktmp = X509_get0_pubkey(peer);
2529         BIO_printf(bio, "Server public key is %d bit\n",
2530                    EVP_PKEY_bits(pktmp));
2531     }
2532     BIO_printf(bio, "Secure Renegotiation IS%s supported\n",
2533                SSL_get_secure_renegotiation_support(s) ? "" : " NOT");
2534 #ifndef OPENSSL_NO_COMP
2535     comp = SSL_get_current_compression(s);
2536     expansion = SSL_get_current_expansion(s);
2537     BIO_printf(bio, "Compression: %s\n",
2538                comp ? SSL_COMP_get_name(comp) : "NONE");
2539     BIO_printf(bio, "Expansion: %s\n",
2540                expansion ? SSL_COMP_get_name(expansion) : "NONE");
2541 #endif
2542
2543 #ifdef SSL_DEBUG
2544     {
2545         /* Print out local port of connection: useful for debugging */
2546         int sock;
2547         struct sockaddr_in ladd;
2548         socklen_t ladd_size = sizeof(ladd);
2549         sock = SSL_get_fd(s);
2550         getsockname(sock, (struct sockaddr *)&ladd, &ladd_size);
2551         BIO_printf(bio_c_out, "LOCAL PORT is %u\n", ntohs(ladd.sin_port));
2552     }
2553 #endif
2554
2555 #if !defined(OPENSSL_NO_NEXTPROTONEG)
2556     if (next_proto.status != -1) {
2557         const unsigned char *proto;
2558         unsigned int proto_len;
2559         SSL_get0_next_proto_negotiated(s, &proto, &proto_len);
2560         BIO_printf(bio, "Next protocol: (%d) ", next_proto.status);
2561         BIO_write(bio, proto, proto_len);
2562         BIO_write(bio, "\n", 1);
2563     }
2564 #endif
2565     {
2566         const unsigned char *proto;
2567         unsigned int proto_len;
2568         SSL_get0_alpn_selected(s, &proto, &proto_len);
2569         if (proto_len > 0) {
2570             BIO_printf(bio, "ALPN protocol: ");
2571             BIO_write(bio, proto, proto_len);
2572             BIO_write(bio, "\n", 1);
2573         } else
2574             BIO_printf(bio, "No ALPN negotiated\n");
2575     }
2576
2577 #ifndef OPENSSL_NO_SRTP
2578     {
2579         SRTP_PROTECTION_PROFILE *srtp_profile =
2580             SSL_get_selected_srtp_profile(s);
2581
2582         if (srtp_profile)
2583             BIO_printf(bio, "SRTP Extension negotiated, profile=%s\n",
2584                        srtp_profile->name);
2585     }
2586 #endif
2587
2588     SSL_SESSION_print(bio, SSL_get_session(s));
2589     if (keymatexportlabel != NULL) {
2590         BIO_printf(bio, "Keying material exporter:\n");
2591         BIO_printf(bio, "    Label: '%s'\n", keymatexportlabel);
2592         BIO_printf(bio, "    Length: %i bytes\n", keymatexportlen);
2593         exportedkeymat = app_malloc(keymatexportlen, "export key");
2594         if (!SSL_export_keying_material(s, exportedkeymat,
2595                                         keymatexportlen,
2596                                         keymatexportlabel,
2597                                         strlen(keymatexportlabel),
2598                                         NULL, 0, 0)) {
2599             BIO_printf(bio, "    Error\n");
2600         } else {
2601             BIO_printf(bio, "    Keying material: ");
2602             for (i = 0; i < keymatexportlen; i++)
2603                 BIO_printf(bio, "%02X", exportedkeymat[i]);
2604             BIO_printf(bio, "\n");
2605         }
2606         OPENSSL_free(exportedkeymat);
2607     }
2608     BIO_printf(bio, "---\n");
2609     X509_free(peer);
2610     /* flush, or debugging output gets mixed with http response */
2611     (void)BIO_flush(bio);
2612 }
2613
2614 static int ocsp_resp_cb(SSL *s, void *arg)
2615 {
2616     const unsigned char *p;
2617     int len;
2618     OCSP_RESPONSE *rsp;
2619     len = SSL_get_tlsext_status_ocsp_resp(s, &p);
2620     BIO_puts(arg, "OCSP response: ");
2621     if (!p) {
2622         BIO_puts(arg, "no response sent\n");
2623         return 1;
2624     }
2625     rsp = d2i_OCSP_RESPONSE(NULL, &p, len);
2626     if (!rsp) {
2627         BIO_puts(arg, "response parse error\n");
2628         BIO_dump_indent(arg, (char *)p, len, 4);
2629         return 0;
2630     }
2631     BIO_puts(arg, "\n======================================\n");
2632     OCSP_RESPONSE_print(arg, rsp, 0);
2633     BIO_puts(arg, "======================================\n");
2634     OCSP_RESPONSE_free(rsp);
2635     return 1;
2636 }