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