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