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