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