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