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