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