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