Cleaning secret data after use
[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 "e_os.h"
12 #include <ctype.h>
13 #include <stdio.h>
14 #include <stdlib.h>
15 #include <string.h>
16 #include <errno.h>
17 #include <openssl/e_os2.h>
18
19 #ifndef OPENSSL_NO_SOCK
20
21 /*
22  * With IPv6, it looks like Digital has mixed up the proper order of
23  * recursive header file inclusion, resulting in the compiler complaining
24  * that u_int isn't defined, but only if _POSIX_C_SOURCE is defined, which is
25  * needed to have fileno() declared correctly...  So let's define u_int
26  */
27 #if defined(OPENSSL_SYS_VMS_DECC) && !defined(__U_INT)
28 # define __U_INT
29 typedef unsigned int u_int;
30 #endif
31
32 #include "apps.h"
33 #include <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         /* By default the SNI should be the same as was set in the session */
1892         if (!noservername && servername == NULL) {
1893             const char *sni = SSL_SESSION_get0_hostname(sess);
1894
1895             if (sni != NULL) {
1896                 servername = OPENSSL_strdup(sni);
1897                 if (servername == NULL) {
1898                     BIO_printf(bio_err, "Can't set server name\n");
1899                     ERR_print_errors(bio_err);
1900                     goto end;
1901                 }
1902             } else {
1903                 /*
1904                  * Force no SNI to be sent so we are consistent with the
1905                  * session.
1906                  */
1907                 noservername = 1;
1908             }
1909         }
1910         SSL_SESSION_free(sess);
1911     }
1912
1913     if (fallback_scsv)
1914         SSL_set_mode(con, SSL_MODE_SEND_FALLBACK_SCSV);
1915
1916     if (!noservername && (servername != NULL || dane_tlsa_domain == NULL)) {
1917         if (servername == NULL)
1918             servername = (host == NULL) ? "localhost" : host;
1919         if (!SSL_set_tlsext_host_name(con, servername)) {
1920             BIO_printf(bio_err, "Unable to set TLS servername extension.\n");
1921             ERR_print_errors(bio_err);
1922             goto end;
1923         }
1924     }
1925
1926     if (dane_tlsa_domain != NULL) {
1927         if (SSL_dane_enable(con, dane_tlsa_domain) <= 0) {
1928             BIO_printf(bio_err, "%s: Error enabling DANE TLSA "
1929                        "authentication.\n", prog);
1930             ERR_print_errors(bio_err);
1931             goto end;
1932         }
1933         if (dane_tlsa_rrset == NULL) {
1934             BIO_printf(bio_err, "%s: DANE TLSA authentication requires at "
1935                        "least one -dane_tlsa_rrdata option.\n", prog);
1936             goto end;
1937         }
1938         if (tlsa_import_rrset(con, dane_tlsa_rrset) <= 0) {
1939             BIO_printf(bio_err, "%s: Failed to import any TLSA "
1940                        "records.\n", prog);
1941             goto end;
1942         }
1943         if (dane_ee_no_name)
1944             SSL_dane_set_flags(con, DANE_FLAG_NO_DANE_EE_NAMECHECKS);
1945     } else if (dane_tlsa_rrset != NULL) {
1946         BIO_printf(bio_err, "%s: DANE TLSA authentication requires the "
1947                    "-dane_tlsa_domain option.\n", prog);
1948         goto end;
1949     }
1950
1951  re_start:
1952     if (init_client(&s, host, port, socket_family, socket_type, protocol)
1953             == 0) {
1954         BIO_printf(bio_err, "connect:errno=%d\n", get_last_socket_error());
1955         BIO_closesocket(s);
1956         goto end;
1957     }
1958     BIO_printf(bio_c_out, "CONNECTED(%08X)\n", s);
1959
1960     if (c_nbio) {
1961         if (!BIO_socket_nbio(s, 1)) {
1962             ERR_print_errors(bio_err);
1963             goto end;
1964         }
1965         BIO_printf(bio_c_out, "Turned on non blocking io\n");
1966     }
1967 #ifndef OPENSSL_NO_DTLS
1968     if (isdtls) {
1969         union BIO_sock_info_u peer_info;
1970
1971 #ifndef OPENSSL_NO_SCTP
1972         if (protocol == IPPROTO_SCTP)
1973             sbio = BIO_new_dgram_sctp(s, BIO_NOCLOSE);
1974         else
1975 #endif
1976             sbio = BIO_new_dgram(s, BIO_NOCLOSE);
1977
1978         if ((peer_info.addr = BIO_ADDR_new()) == NULL) {
1979             BIO_printf(bio_err, "memory allocation failure\n");
1980             BIO_closesocket(s);
1981             goto end;
1982         }
1983         if (!BIO_sock_info(s, BIO_SOCK_INFO_ADDRESS, &peer_info)) {
1984             BIO_printf(bio_err, "getsockname:errno=%d\n",
1985                        get_last_socket_error());
1986             BIO_ADDR_free(peer_info.addr);
1987             BIO_closesocket(s);
1988             goto end;
1989         }
1990
1991         (void)BIO_ctrl_set_connected(sbio, peer_info.addr);
1992         BIO_ADDR_free(peer_info.addr);
1993         peer_info.addr = NULL;
1994
1995         if (enable_timeouts) {
1996             timeout.tv_sec = 0;
1997             timeout.tv_usec = DGRAM_RCV_TIMEOUT;
1998             BIO_ctrl(sbio, BIO_CTRL_DGRAM_SET_RECV_TIMEOUT, 0, &timeout);
1999
2000             timeout.tv_sec = 0;
2001             timeout.tv_usec = DGRAM_SND_TIMEOUT;
2002             BIO_ctrl(sbio, BIO_CTRL_DGRAM_SET_SEND_TIMEOUT, 0, &timeout);
2003         }
2004
2005         if (socket_mtu) {
2006             if (socket_mtu < DTLS_get_link_min_mtu(con)) {
2007                 BIO_printf(bio_err, "MTU too small. Must be at least %ld\n",
2008                            DTLS_get_link_min_mtu(con));
2009                 BIO_free(sbio);
2010                 goto shut;
2011             }
2012             SSL_set_options(con, SSL_OP_NO_QUERY_MTU);
2013             if (!DTLS_set_link_mtu(con, socket_mtu)) {
2014                 BIO_printf(bio_err, "Failed to set MTU\n");
2015                 BIO_free(sbio);
2016                 goto shut;
2017             }
2018         } else {
2019             /* want to do MTU discovery */
2020             BIO_ctrl(sbio, BIO_CTRL_DGRAM_MTU_DISCOVER, 0, NULL);
2021         }
2022     } else
2023 #endif /* OPENSSL_NO_DTLS */
2024         sbio = BIO_new_socket(s, BIO_NOCLOSE);
2025
2026     if (nbio_test) {
2027         BIO *test;
2028
2029         test = BIO_new(BIO_f_nbio_test());
2030         sbio = BIO_push(test, sbio);
2031     }
2032
2033     if (c_debug) {
2034         BIO_set_callback(sbio, bio_dump_callback);
2035         BIO_set_callback_arg(sbio, (char *)bio_c_out);
2036     }
2037     if (c_msg) {
2038 #ifndef OPENSSL_NO_SSL_TRACE
2039         if (c_msg == 2)
2040             SSL_set_msg_callback(con, SSL_trace);
2041         else
2042 #endif
2043             SSL_set_msg_callback(con, msg_cb);
2044         SSL_set_msg_callback_arg(con, bio_c_msg ? bio_c_msg : bio_c_out);
2045     }
2046
2047     if (c_tlsextdebug) {
2048         SSL_set_tlsext_debug_callback(con, tlsext_cb);
2049         SSL_set_tlsext_debug_arg(con, bio_c_out);
2050     }
2051 #ifndef OPENSSL_NO_OCSP
2052     if (c_status_req) {
2053         SSL_set_tlsext_status_type(con, TLSEXT_STATUSTYPE_ocsp);
2054         SSL_CTX_set_tlsext_status_cb(ctx, ocsp_resp_cb);
2055         SSL_CTX_set_tlsext_status_arg(ctx, bio_c_out);
2056     }
2057 #endif
2058
2059     SSL_set_bio(con, sbio, sbio);
2060     SSL_set_connect_state(con);
2061
2062     /* ok, lets connect */
2063     if (fileno_stdin() > SSL_get_fd(con))
2064         width = fileno_stdin() + 1;
2065     else
2066         width = SSL_get_fd(con) + 1;
2067
2068     read_tty = 1;
2069     write_tty = 0;
2070     tty_on = 0;
2071     read_ssl = 1;
2072     write_ssl = 1;
2073
2074     cbuf_len = 0;
2075     cbuf_off = 0;
2076     sbuf_len = 0;
2077     sbuf_off = 0;
2078
2079     switch ((PROTOCOL_CHOICE) starttls_proto) {
2080     case PROTO_OFF:
2081         break;
2082     case PROTO_LMTP:
2083     case PROTO_SMTP:
2084         {
2085             /*
2086              * This is an ugly hack that does a lot of assumptions. We do
2087              * have to handle multi-line responses which may come in a single
2088              * packet or not. We therefore have to use BIO_gets() which does
2089              * need a buffering BIO. So during the initial chitchat we do
2090              * push a buffering BIO into the chain that is removed again
2091              * later on to not disturb the rest of the s_client operation.
2092              */
2093             int foundit = 0;
2094             BIO *fbio = BIO_new(BIO_f_buffer());
2095
2096             BIO_push(fbio, sbio);
2097             /* Wait for multi-line response to end from LMTP or SMTP */
2098             do {
2099                 mbuf_len = BIO_gets(fbio, mbuf, BUFSIZZ);
2100             } while (mbuf_len > 3 && mbuf[3] == '-');
2101             if (starttls_proto == (int)PROTO_LMTP)
2102                 BIO_printf(fbio, "LHLO %s\r\n", ehlo);
2103             else
2104                 BIO_printf(fbio, "EHLO %s\r\n", ehlo);
2105             (void)BIO_flush(fbio);
2106             /*
2107              * Wait for multi-line response to end LHLO LMTP or EHLO SMTP
2108              * response.
2109              */
2110             do {
2111                 mbuf_len = BIO_gets(fbio, mbuf, BUFSIZZ);
2112                 if (strstr(mbuf, "STARTTLS"))
2113                     foundit = 1;
2114             } while (mbuf_len > 3 && mbuf[3] == '-');
2115             (void)BIO_flush(fbio);
2116             BIO_pop(fbio);
2117             BIO_free(fbio);
2118             if (!foundit)
2119                 BIO_printf(bio_err,
2120                            "Didn't find STARTTLS in server response,"
2121                            " trying anyway...\n");
2122             BIO_printf(sbio, "STARTTLS\r\n");
2123             BIO_read(sbio, sbuf, BUFSIZZ);
2124         }
2125         break;
2126     case PROTO_POP3:
2127         {
2128             BIO_read(sbio, mbuf, BUFSIZZ);
2129             BIO_printf(sbio, "STLS\r\n");
2130             mbuf_len = BIO_read(sbio, sbuf, BUFSIZZ);
2131             if (mbuf_len < 0) {
2132                 BIO_printf(bio_err, "BIO_read failed\n");
2133                 goto end;
2134             }
2135         }
2136         break;
2137     case PROTO_IMAP:
2138         {
2139             int foundit = 0;
2140             BIO *fbio = BIO_new(BIO_f_buffer());
2141
2142             BIO_push(fbio, sbio);
2143             BIO_gets(fbio, mbuf, BUFSIZZ);
2144             /* STARTTLS command requires CAPABILITY... */
2145             BIO_printf(fbio, ". CAPABILITY\r\n");
2146             (void)BIO_flush(fbio);
2147             /* wait for multi-line CAPABILITY response */
2148             do {
2149                 mbuf_len = BIO_gets(fbio, mbuf, BUFSIZZ);
2150                 if (strstr(mbuf, "STARTTLS"))
2151                     foundit = 1;
2152             }
2153             while (mbuf_len > 3 && mbuf[0] != '.');
2154             (void)BIO_flush(fbio);
2155             BIO_pop(fbio);
2156             BIO_free(fbio);
2157             if (!foundit)
2158                 BIO_printf(bio_err,
2159                            "Didn't find STARTTLS in server response,"
2160                            " trying anyway...\n");
2161             BIO_printf(sbio, ". STARTTLS\r\n");
2162             BIO_read(sbio, sbuf, BUFSIZZ);
2163         }
2164         break;
2165     case PROTO_FTP:
2166         {
2167             BIO *fbio = BIO_new(BIO_f_buffer());
2168
2169             BIO_push(fbio, sbio);
2170             /* wait for multi-line response to end from FTP */
2171             do {
2172                 mbuf_len = BIO_gets(fbio, mbuf, BUFSIZZ);
2173             }
2174             while (mbuf_len > 3 && mbuf[3] == '-');
2175             (void)BIO_flush(fbio);
2176             BIO_pop(fbio);
2177             BIO_free(fbio);
2178             BIO_printf(sbio, "AUTH TLS\r\n");
2179             BIO_read(sbio, sbuf, BUFSIZZ);
2180         }
2181         break;
2182     case PROTO_XMPP:
2183     case PROTO_XMPP_SERVER:
2184         {
2185             int seen = 0;
2186             BIO_printf(sbio, "<stream:stream "
2187                        "xmlns:stream='http://etherx.jabber.org/streams' "
2188                        "xmlns='jabber:%s' to='%s' version='1.0'>",
2189                        starttls_proto == PROTO_XMPP ? "client" : "server",
2190                        xmpphost ? xmpphost : host);
2191             seen = BIO_read(sbio, mbuf, BUFSIZZ);
2192             if (seen < 0) {
2193                 BIO_printf(bio_err, "BIO_read failed\n");
2194                 goto end;
2195             }
2196             mbuf[seen] = '\0';
2197             while (!strstr
2198                    (mbuf, "<starttls xmlns='urn:ietf:params:xml:ns:xmpp-tls'")
2199                    && !strstr(mbuf,
2200                               "<starttls xmlns=\"urn:ietf:params:xml:ns:xmpp-tls\""))
2201             {
2202                 seen = BIO_read(sbio, mbuf, BUFSIZZ);
2203
2204                 if (seen <= 0)
2205                     goto shut;
2206
2207                 mbuf[seen] = '\0';
2208             }
2209             BIO_printf(sbio,
2210                        "<starttls xmlns='urn:ietf:params:xml:ns:xmpp-tls'/>");
2211             seen = BIO_read(sbio, sbuf, BUFSIZZ);
2212             if (seen < 0) {
2213                 BIO_printf(bio_err, "BIO_read failed\n");
2214                 goto shut;
2215             }
2216             sbuf[seen] = '\0';
2217             if (!strstr(sbuf, "<proceed"))
2218                 goto shut;
2219             mbuf[0] = '\0';
2220         }
2221         break;
2222     case PROTO_TELNET:
2223         {
2224             static const unsigned char tls_do[] = {
2225                 /* IAC    DO   START_TLS */
2226                    255,   253, 46
2227             };
2228             static const unsigned char tls_will[] = {
2229                 /* IAC  WILL START_TLS */
2230                    255, 251, 46
2231             };
2232             static const unsigned char tls_follows[] = {
2233                 /* IAC  SB   START_TLS FOLLOWS IAC  SE */
2234                    255, 250, 46,       1,      255, 240
2235             };
2236             int bytes;
2237
2238             /* Telnet server should demand we issue START_TLS */
2239             bytes = BIO_read(sbio, mbuf, BUFSIZZ);
2240             if (bytes != 3 || memcmp(mbuf, tls_do, 3) != 0)
2241                 goto shut;
2242             /* Agree to issue START_TLS and send the FOLLOWS sub-command */
2243             BIO_write(sbio, tls_will, 3);
2244             BIO_write(sbio, tls_follows, 6);
2245             (void)BIO_flush(sbio);
2246             /* Telnet server also sent the FOLLOWS sub-command */
2247             bytes = BIO_read(sbio, mbuf, BUFSIZZ);
2248             if (bytes != 6 || memcmp(mbuf, tls_follows, 6) != 0)
2249                 goto shut;
2250         }
2251         break;
2252     case PROTO_CONNECT:
2253         {
2254             enum {
2255                 error_proto,     /* Wrong protocol, not even HTTP */
2256                 error_connect,   /* CONNECT failed */
2257                 success
2258             } foundit = error_connect;
2259             BIO *fbio = BIO_new(BIO_f_buffer());
2260
2261             BIO_push(fbio, sbio);
2262             BIO_printf(fbio, "CONNECT %s HTTP/1.0\r\n\r\n", connectstr);
2263             (void)BIO_flush(fbio);
2264             /*
2265              * The first line is the HTTP response.  According to RFC 7230,
2266              * it's formated exactly like this:
2267              *
2268              * HTTP/d.d ddd Reason text\r\n
2269              */
2270             mbuf_len = BIO_gets(fbio, mbuf, BUFSIZZ);
2271             if (mbuf_len < (int)strlen("HTTP/1.0 200")) {
2272                 BIO_printf(bio_err,
2273                            "%s: HTTP CONNECT failed, insufficient response "
2274                            "from proxy (got %d octets)\n", prog, mbuf_len);
2275                 (void)BIO_flush(fbio);
2276                 BIO_pop(fbio);
2277                 BIO_free(fbio);
2278                 goto shut;
2279             }
2280             if (mbuf[8] != ' ') {
2281                 BIO_printf(bio_err,
2282                            "%s: HTTP CONNECT failed, incorrect response "
2283                            "from proxy\n", prog);
2284                 foundit = error_proto;
2285             } else if (mbuf[9] != '2') {
2286                 BIO_printf(bio_err, "%s: HTTP CONNECT failed: %s ", prog,
2287                            &mbuf[9]);
2288             } else {
2289                 foundit = success;
2290             }
2291             if (foundit != error_proto) {
2292                 /* Read past all following headers */
2293                 do {
2294                     mbuf_len = BIO_gets(fbio, mbuf, BUFSIZZ);
2295                 } while (mbuf_len > 2);
2296             }
2297             (void)BIO_flush(fbio);
2298             BIO_pop(fbio);
2299             BIO_free(fbio);
2300             if (foundit != success) {
2301                 goto shut;
2302             }
2303         }
2304         break;
2305     case PROTO_IRC:
2306         {
2307             int numeric;
2308             BIO *fbio = BIO_new(BIO_f_buffer());
2309
2310             BIO_push(fbio, sbio);
2311             BIO_printf(fbio, "STARTTLS\r\n");
2312             (void)BIO_flush(fbio);
2313             width = SSL_get_fd(con) + 1;
2314
2315             do {
2316                 numeric = 0;
2317
2318                 FD_ZERO(&readfds);
2319                 openssl_fdset(SSL_get_fd(con), &readfds);
2320                 timeout.tv_sec = S_CLIENT_IRC_READ_TIMEOUT;
2321                 timeout.tv_usec = 0;
2322                 /*
2323                  * If the IRCd doesn't respond within
2324                  * S_CLIENT_IRC_READ_TIMEOUT seconds, assume
2325                  * it doesn't support STARTTLS. Many IRCds
2326                  * will not give _any_ sort of response to a
2327                  * STARTTLS command when it's not supported.
2328                  */
2329                 if (!BIO_get_buffer_num_lines(fbio)
2330                     && !BIO_pending(fbio)
2331                     && !BIO_pending(sbio)
2332                     && select(width, (void *)&readfds, NULL, NULL,
2333                               &timeout) < 1) {
2334                     BIO_printf(bio_err,
2335                                "Timeout waiting for response (%d seconds).\n",
2336                                S_CLIENT_IRC_READ_TIMEOUT);
2337                     break;
2338                 }
2339
2340                 mbuf_len = BIO_gets(fbio, mbuf, BUFSIZZ);
2341                 if (mbuf_len < 1 || sscanf(mbuf, "%*s %d", &numeric) != 1)
2342                     break;
2343                 /* :example.net 451 STARTTLS :You have not registered */
2344                 /* :example.net 421 STARTTLS :Unknown command */
2345                 if ((numeric == 451 || numeric == 421)
2346                     && strstr(mbuf, "STARTTLS") != NULL) {
2347                     BIO_printf(bio_err, "STARTTLS not supported: %s", mbuf);
2348                     break;
2349                 }
2350                 if (numeric == 691) {
2351                     BIO_printf(bio_err, "STARTTLS negotiation failed: ");
2352                     ERR_print_errors(bio_err);
2353                     break;
2354                 }
2355             } while (numeric != 670);
2356
2357             (void)BIO_flush(fbio);
2358             BIO_pop(fbio);
2359             BIO_free(fbio);
2360             if (numeric != 670) {
2361                 BIO_printf(bio_err, "Server does not support STARTTLS.\n");
2362                 ret = 1;
2363                 goto shut;
2364             }
2365         }
2366         break;
2367     case PROTO_MYSQL:
2368         {
2369             /* SSL request packet */
2370             static const unsigned char ssl_req[] = {
2371                 /* payload_length,   sequence_id */
2372                    0x20, 0x00, 0x00, 0x01,
2373                 /* payload */
2374                 /* capability flags, CLIENT_SSL always set */
2375                    0x85, 0xae, 0x7f, 0x00,
2376                 /* max-packet size */
2377                    0x00, 0x00, 0x00, 0x01,
2378                 /* character set */
2379                    0x21,
2380                 /* string[23] reserved (all [0]) */
2381                    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
2382                    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
2383                    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
2384             };
2385             int bytes = 0;
2386             int ssl_flg = 0x800;
2387             int pos;
2388             const unsigned char *packet = (const unsigned char *)sbuf;
2389
2390             /* Receiving Initial Handshake packet. */
2391             bytes = BIO_read(sbio, (void *)packet, BUFSIZZ);
2392             if (bytes < 0) {
2393                 BIO_printf(bio_err, "BIO_read failed\n");
2394                 goto shut;
2395             /* Packet length[3], Packet number[1] + minimum payload[17] */
2396             } else if (bytes < 21) {
2397                 BIO_printf(bio_err, "MySQL packet too short.\n");
2398                 goto shut;
2399             } else if (bytes != (4 + packet[0] +
2400                                  (packet[1] << 8) +
2401                                  (packet[2] << 16))) {
2402                 BIO_printf(bio_err, "MySQL packet length does not match.\n");
2403                 goto shut;
2404             /* protocol version[1] */
2405             } else if (packet[4] != 0xA) {
2406                 BIO_printf(bio_err,
2407                            "Only MySQL protocol version 10 is supported.\n");
2408                 goto shut;
2409             }
2410
2411             pos = 5;
2412             /* server version[string+NULL] */
2413             for (;;) {
2414                 if (pos >= bytes) {
2415                     BIO_printf(bio_err, "Cannot confirm server version. ");
2416                     goto shut;
2417                 } else if (packet[pos++] == '\0') {
2418                     break;
2419                 }
2420             }
2421
2422             /* make sure we have at least 15 bytes left in the packet */
2423             if (pos + 15 > bytes) {
2424                 BIO_printf(bio_err,
2425                            "MySQL server handshake packet is broken.\n");
2426                 goto shut;
2427             }
2428
2429             pos += 12; /* skip over conn id[4] + SALT[8] */
2430             if (packet[pos++] != '\0') { /* verify filler */
2431                 BIO_printf(bio_err,
2432                            "MySQL packet is broken.\n");
2433                 goto shut;
2434             }
2435
2436             /* capability flags[2] */
2437             if (!((packet[pos] + (packet[pos + 1] << 8)) & ssl_flg)) {
2438                 BIO_printf(bio_err, "MySQL server does not support SSL.\n");
2439                 goto shut;
2440             }
2441
2442             /* Sending SSL Handshake packet. */
2443             BIO_write(sbio, ssl_req, sizeof(ssl_req));
2444             (void)BIO_flush(sbio);
2445         }
2446         break;
2447     case PROTO_POSTGRES:
2448         {
2449             static const unsigned char ssl_request[] = {
2450                 /* Length        SSLRequest */
2451                    0, 0, 0, 8,   4, 210, 22, 47
2452             };
2453             int bytes;
2454
2455             /* Send SSLRequest packet */
2456             BIO_write(sbio, ssl_request, 8);
2457             (void)BIO_flush(sbio);
2458
2459             /* Reply will be a single S if SSL is enabled */
2460             bytes = BIO_read(sbio, sbuf, BUFSIZZ);
2461             if (bytes != 1 || sbuf[0] != 'S')
2462                 goto shut;
2463         }
2464         break;
2465     case PROTO_NNTP:
2466         {
2467             int foundit = 0;
2468             BIO *fbio = BIO_new(BIO_f_buffer());
2469
2470             BIO_push(fbio, sbio);
2471             BIO_gets(fbio, mbuf, BUFSIZZ);
2472             /* STARTTLS command requires CAPABILITIES... */
2473             BIO_printf(fbio, "CAPABILITIES\r\n");
2474             (void)BIO_flush(fbio);
2475             /* wait for multi-line CAPABILITIES response */
2476             do {
2477                 mbuf_len = BIO_gets(fbio, mbuf, BUFSIZZ);
2478                 if (strstr(mbuf, "STARTTLS"))
2479                     foundit = 1;
2480             } while (mbuf_len > 1 && mbuf[0] != '.');
2481             (void)BIO_flush(fbio);
2482             BIO_pop(fbio);
2483             BIO_free(fbio);
2484             if (!foundit)
2485                 BIO_printf(bio_err,
2486                            "Didn't find STARTTLS in server response,"
2487                            " trying anyway...\n");
2488             BIO_printf(sbio, "STARTTLS\r\n");
2489             mbuf_len = BIO_read(sbio, mbuf, BUFSIZZ);
2490             if (mbuf_len < 0) {
2491                 BIO_printf(bio_err, "BIO_read failed\n");
2492                 goto end;
2493             }
2494             mbuf[mbuf_len] = '\0';
2495             if (strstr(mbuf, "382") == NULL) {
2496                 BIO_printf(bio_err, "STARTTLS failed: %s", mbuf);
2497                 goto shut;
2498             }
2499         }
2500         break;
2501     case PROTO_SIEVE:
2502         {
2503             int foundit = 0;
2504             BIO *fbio = BIO_new(BIO_f_buffer());
2505
2506             BIO_push(fbio, sbio);
2507             /* wait for multi-line response to end from Sieve */
2508             do {
2509                 mbuf_len = BIO_gets(fbio, mbuf, BUFSIZZ);
2510                 /*
2511                  * According to RFC 5804 Â§ 1.7, capability
2512                  * is case-insensitive, make it uppercase
2513                  */
2514                 if (mbuf_len > 1 && mbuf[0] == '"') {
2515                     make_uppercase(mbuf);
2516                     if (strncmp(mbuf, "\"STARTTLS\"", 10) == 0)
2517                         foundit = 1;
2518                 }
2519             } while (mbuf_len > 1 && mbuf[0] == '"');
2520             (void)BIO_flush(fbio);
2521             BIO_pop(fbio);
2522             BIO_free(fbio);
2523             if (!foundit)
2524                 BIO_printf(bio_err,
2525                            "Didn't find STARTTLS in server response,"
2526                            " trying anyway...\n");
2527             BIO_printf(sbio, "STARTTLS\r\n");
2528             mbuf_len = BIO_read(sbio, mbuf, BUFSIZZ);
2529             if (mbuf_len < 0) {
2530                 BIO_printf(bio_err, "BIO_read failed\n");
2531                 goto end;
2532             }
2533             mbuf[mbuf_len] = '\0';
2534             if (mbuf_len < 2) {
2535                 BIO_printf(bio_err, "STARTTLS failed: %s", mbuf);
2536                 goto shut;
2537             }
2538             /*
2539              * According to RFC 5804 Â§ 2.2, response codes are case-
2540              * insensitive, make it uppercase but preserve the response.
2541              */
2542             strncpy(sbuf, mbuf, 2);
2543             make_uppercase(sbuf);
2544             if (strncmp(sbuf, "OK", 2) != 0) {
2545                 BIO_printf(bio_err, "STARTTLS not supported: %s", mbuf);
2546                 goto shut;
2547             }
2548         }
2549         break;
2550     case PROTO_LDAP:
2551         {
2552             /* StartTLS Operation according to RFC 4511 */
2553             static char ldap_tls_genconf[] = "asn1=SEQUENCE:LDAPMessage\n"
2554                 "[LDAPMessage]\n"
2555                 "messageID=INTEGER:1\n"
2556                 "extendedReq=EXPLICIT:23A,IMPLICIT:0C,"
2557                 "FORMAT:ASCII,OCT:1.3.6.1.4.1.1466.20037\n";
2558             long errline = -1;
2559             char *genstr = NULL;
2560             int result = -1;
2561             ASN1_TYPE *atyp = NULL;
2562             BIO *ldapbio = BIO_new(BIO_s_mem());
2563             CONF *cnf = NCONF_new(NULL);
2564
2565             if (cnf == NULL) {
2566                 BIO_free(ldapbio);
2567                 goto end;
2568             }
2569             BIO_puts(ldapbio, ldap_tls_genconf);
2570             if (NCONF_load_bio(cnf, ldapbio, &errline) <= 0) {
2571                 BIO_free(ldapbio);
2572                 NCONF_free(cnf);
2573                 if (errline <= 0) {
2574                     BIO_printf(bio_err, "NCONF_load_bio failed\n");
2575                     goto end;
2576                 } else {
2577                     BIO_printf(bio_err, "Error on line %ld\n", errline);
2578                     goto end;
2579                 }
2580             }
2581             BIO_free(ldapbio);
2582             genstr = NCONF_get_string(cnf, "default", "asn1");
2583             if (genstr == NULL) {
2584                 NCONF_free(cnf);
2585                 BIO_printf(bio_err, "NCONF_get_string failed\n");
2586                 goto end;
2587             }
2588             atyp = ASN1_generate_nconf(genstr, cnf);
2589             if (atyp == NULL) {
2590                 NCONF_free(cnf);
2591                 BIO_printf(bio_err, "ASN1_generate_nconf failed\n");
2592                 goto end;
2593             }
2594             NCONF_free(cnf);
2595
2596             /* Send SSLRequest packet */
2597             BIO_write(sbio, atyp->value.sequence->data,
2598                       atyp->value.sequence->length);
2599             (void)BIO_flush(sbio);
2600             ASN1_TYPE_free(atyp);
2601
2602             mbuf_len = BIO_read(sbio, mbuf, BUFSIZZ);
2603             if (mbuf_len < 0) {
2604                 BIO_printf(bio_err, "BIO_read failed\n");
2605                 goto end;
2606             }
2607             result = ldap_ExtendedResponse_parse(mbuf, mbuf_len);
2608             if (result < 0) {
2609                 BIO_printf(bio_err, "ldap_ExtendedResponse_parse failed\n");
2610                 goto shut;
2611             } else if (result > 0) {
2612                 BIO_printf(bio_err, "STARTTLS failed, LDAP Result Code: %i\n",
2613                            result);
2614                 goto shut;
2615             }
2616             mbuf_len = 0;
2617         }
2618         break;
2619     }
2620
2621     if (early_data_file != NULL
2622             && ((SSL_get0_session(con) != NULL
2623                  && SSL_SESSION_get_max_early_data(SSL_get0_session(con)) > 0)
2624                 || (psksess != NULL
2625                     && SSL_SESSION_get_max_early_data(psksess) > 0))) {
2626         BIO *edfile = BIO_new_file(early_data_file, "r");
2627         size_t readbytes, writtenbytes;
2628         int finish = 0;
2629
2630         if (edfile == NULL) {
2631             BIO_printf(bio_err, "Cannot open early data file\n");
2632             goto shut;
2633         }
2634
2635         while (!finish) {
2636             if (!BIO_read_ex(edfile, cbuf, BUFSIZZ, &readbytes))
2637                 finish = 1;
2638
2639             while (!SSL_write_early_data(con, cbuf, readbytes, &writtenbytes)) {
2640                 switch (SSL_get_error(con, 0)) {
2641                 case SSL_ERROR_WANT_WRITE:
2642                 case SSL_ERROR_WANT_ASYNC:
2643                 case SSL_ERROR_WANT_READ:
2644                     /* Just keep trying - busy waiting */
2645                     continue;
2646                 default:
2647                     BIO_printf(bio_err, "Error writing early data\n");
2648                     BIO_free(edfile);
2649                     ERR_print_errors(bio_err);
2650                     goto shut;
2651                 }
2652             }
2653         }
2654
2655         BIO_free(edfile);
2656     }
2657
2658     for (;;) {
2659         FD_ZERO(&readfds);
2660         FD_ZERO(&writefds);
2661
2662         if ((SSL_version(con) == DTLS1_VERSION) &&
2663             DTLSv1_get_timeout(con, &timeout))
2664             timeoutp = &timeout;
2665         else
2666             timeoutp = NULL;
2667
2668         if (!SSL_is_init_finished(con) && SSL_total_renegotiations(con) == 0
2669                 && SSL_get_key_update_type(con) == SSL_KEY_UPDATE_NONE) {
2670             in_init = 1;
2671             tty_on = 0;
2672         } else {
2673             tty_on = 1;
2674             if (in_init) {
2675                 in_init = 0;
2676
2677                 if (c_brief) {
2678                     BIO_puts(bio_err, "CONNECTION ESTABLISHED\n");
2679                     print_ssl_summary(con);
2680                 }
2681
2682                 print_stuff(bio_c_out, con, full_log);
2683                 if (full_log > 0)
2684                     full_log--;
2685
2686                 if (starttls_proto) {
2687                     BIO_write(bio_err, mbuf, mbuf_len);
2688                     /* We don't need to know any more */
2689                     if (!reconnect)
2690                         starttls_proto = PROTO_OFF;
2691                 }
2692
2693                 if (reconnect) {
2694                     reconnect--;
2695                     BIO_printf(bio_c_out,
2696                                "drop connection and then reconnect\n");
2697                     do_ssl_shutdown(con);
2698                     SSL_set_connect_state(con);
2699                     BIO_closesocket(SSL_get_fd(con));
2700                     goto re_start;
2701                 }
2702             }
2703         }
2704
2705         ssl_pending = read_ssl && SSL_has_pending(con);
2706
2707         if (!ssl_pending) {
2708 #if !defined(OPENSSL_SYS_WINDOWS) && !defined(OPENSSL_SYS_MSDOS)
2709             if (tty_on) {
2710                 /*
2711                  * Note that select() returns when read _would not block_,
2712                  * and EOF satisfies that.  To avoid a CPU-hogging loop,
2713                  * set the flag so we exit.
2714                  */
2715                 if (read_tty && !at_eof)
2716                     openssl_fdset(fileno_stdin(), &readfds);
2717 #if !defined(OPENSSL_SYS_VMS)
2718                 if (write_tty)
2719                     openssl_fdset(fileno_stdout(), &writefds);
2720 #endif
2721             }
2722             if (read_ssl)
2723                 openssl_fdset(SSL_get_fd(con), &readfds);
2724             if (write_ssl)
2725                 openssl_fdset(SSL_get_fd(con), &writefds);
2726 #else
2727             if (!tty_on || !write_tty) {
2728                 if (read_ssl)
2729                     openssl_fdset(SSL_get_fd(con), &readfds);
2730                 if (write_ssl)
2731                     openssl_fdset(SSL_get_fd(con), &writefds);
2732             }
2733 #endif
2734
2735             /*
2736              * Note: under VMS with SOCKETSHR the second parameter is
2737              * currently of type (int *) whereas under other systems it is
2738              * (void *) if you don't have a cast it will choke the compiler:
2739              * if you do have a cast then you can either go for (int *) or
2740              * (void *).
2741              */
2742 #if defined(OPENSSL_SYS_WINDOWS) || defined(OPENSSL_SYS_MSDOS)
2743             /*
2744              * Under Windows/DOS we make the assumption that we can always
2745              * write to the tty: therefore if we need to write to the tty we
2746              * just fall through. Otherwise we timeout the select every
2747              * second and see if there are any keypresses. Note: this is a
2748              * hack, in a proper Windows application we wouldn't do this.
2749              */
2750             i = 0;
2751             if (!write_tty) {
2752                 if (read_tty) {
2753                     tv.tv_sec = 1;
2754                     tv.tv_usec = 0;
2755                     i = select(width, (void *)&readfds, (void *)&writefds,
2756                                NULL, &tv);
2757                     if (!i && (!has_stdin_waiting() || !read_tty))
2758                         continue;
2759                 } else
2760                     i = select(width, (void *)&readfds, (void *)&writefds,
2761                                NULL, timeoutp);
2762             }
2763 #else
2764             i = select(width, (void *)&readfds, (void *)&writefds,
2765                        NULL, timeoutp);
2766 #endif
2767             if (i < 0) {
2768                 BIO_printf(bio_err, "bad select %d\n",
2769                            get_last_socket_error());
2770                 goto shut;
2771             }
2772         }
2773
2774         if ((SSL_version(con) == DTLS1_VERSION)
2775             && DTLSv1_handle_timeout(con) > 0) {
2776             BIO_printf(bio_err, "TIMEOUT occurred\n");
2777         }
2778
2779         if (!ssl_pending && FD_ISSET(SSL_get_fd(con), &writefds)) {
2780             k = SSL_write(con, &(cbuf[cbuf_off]), (unsigned int)cbuf_len);
2781             switch (SSL_get_error(con, k)) {
2782             case SSL_ERROR_NONE:
2783                 cbuf_off += k;
2784                 cbuf_len -= k;
2785                 if (k <= 0)
2786                     goto end;
2787                 /* we have done a  write(con,NULL,0); */
2788                 if (cbuf_len <= 0) {
2789                     read_tty = 1;
2790                     write_ssl = 0;
2791                 } else {        /* if (cbuf_len > 0) */
2792
2793                     read_tty = 0;
2794                     write_ssl = 1;
2795                 }
2796                 break;
2797             case SSL_ERROR_WANT_WRITE:
2798                 BIO_printf(bio_c_out, "write W BLOCK\n");
2799                 write_ssl = 1;
2800                 read_tty = 0;
2801                 break;
2802             case SSL_ERROR_WANT_ASYNC:
2803                 BIO_printf(bio_c_out, "write A BLOCK\n");
2804                 wait_for_async(con);
2805                 write_ssl = 1;
2806                 read_tty = 0;
2807                 break;
2808             case SSL_ERROR_WANT_READ:
2809                 BIO_printf(bio_c_out, "write R BLOCK\n");
2810                 write_tty = 0;
2811                 read_ssl = 1;
2812                 write_ssl = 0;
2813                 break;
2814             case SSL_ERROR_WANT_X509_LOOKUP:
2815                 BIO_printf(bio_c_out, "write X BLOCK\n");
2816                 break;
2817             case SSL_ERROR_ZERO_RETURN:
2818                 if (cbuf_len != 0) {
2819                     BIO_printf(bio_c_out, "shutdown\n");
2820                     ret = 0;
2821                     goto shut;
2822                 } else {
2823                     read_tty = 1;
2824                     write_ssl = 0;
2825                     break;
2826                 }
2827
2828             case SSL_ERROR_SYSCALL:
2829                 if ((k != 0) || (cbuf_len != 0)) {
2830                     BIO_printf(bio_err, "write:errno=%d\n",
2831                                get_last_socket_error());
2832                     goto shut;
2833                 } else {
2834                     read_tty = 1;
2835                     write_ssl = 0;
2836                 }
2837                 break;
2838             case SSL_ERROR_WANT_ASYNC_JOB:
2839                 /* This shouldn't ever happen in s_client - treat as an error */
2840             case SSL_ERROR_SSL:
2841                 ERR_print_errors(bio_err);
2842                 goto shut;
2843             }
2844         }
2845 #if defined(OPENSSL_SYS_WINDOWS) || defined(OPENSSL_SYS_MSDOS) || defined(OPENSSL_SYS_VMS)
2846         /* Assume Windows/DOS/BeOS can always write */
2847         else if (!ssl_pending && write_tty)
2848 #else
2849         else if (!ssl_pending && FD_ISSET(fileno_stdout(), &writefds))
2850 #endif
2851         {
2852 #ifdef CHARSET_EBCDIC
2853             ascii2ebcdic(&(sbuf[sbuf_off]), &(sbuf[sbuf_off]), sbuf_len);
2854 #endif
2855             i = raw_write_stdout(&(sbuf[sbuf_off]), sbuf_len);
2856
2857             if (i <= 0) {
2858                 BIO_printf(bio_c_out, "DONE\n");
2859                 ret = 0;
2860                 goto shut;
2861             }
2862
2863             sbuf_len -= i;
2864             sbuf_off += i;
2865             if (sbuf_len <= 0) {
2866                 read_ssl = 1;
2867                 write_tty = 0;
2868             }
2869         } else if (ssl_pending || FD_ISSET(SSL_get_fd(con), &readfds)) {
2870 #ifdef RENEG
2871             {
2872                 static int iiii;
2873                 if (++iiii == 52) {
2874                     SSL_renegotiate(con);
2875                     iiii = 0;
2876                 }
2877             }
2878 #endif
2879             k = SSL_read(con, sbuf, 1024 /* BUFSIZZ */ );
2880
2881             switch (SSL_get_error(con, k)) {
2882             case SSL_ERROR_NONE:
2883                 if (k <= 0)
2884                     goto end;
2885                 sbuf_off = 0;
2886                 sbuf_len = k;
2887
2888                 read_ssl = 0;
2889                 write_tty = 1;
2890                 break;
2891             case SSL_ERROR_WANT_ASYNC:
2892                 BIO_printf(bio_c_out, "read A BLOCK\n");
2893                 wait_for_async(con);
2894                 write_tty = 0;
2895                 read_ssl = 1;
2896                 if ((read_tty == 0) && (write_ssl == 0))
2897                     write_ssl = 1;
2898                 break;
2899             case SSL_ERROR_WANT_WRITE:
2900                 BIO_printf(bio_c_out, "read W BLOCK\n");
2901                 write_ssl = 1;
2902                 read_tty = 0;
2903                 break;
2904             case SSL_ERROR_WANT_READ:
2905                 BIO_printf(bio_c_out, "read R BLOCK\n");
2906                 write_tty = 0;
2907                 read_ssl = 1;
2908                 if ((read_tty == 0) && (write_ssl == 0))
2909                     write_ssl = 1;
2910                 break;
2911             case SSL_ERROR_WANT_X509_LOOKUP:
2912                 BIO_printf(bio_c_out, "read X BLOCK\n");
2913                 break;
2914             case SSL_ERROR_SYSCALL:
2915                 ret = get_last_socket_error();
2916                 if (c_brief)
2917                     BIO_puts(bio_err, "CONNECTION CLOSED BY SERVER\n");
2918                 else
2919                     BIO_printf(bio_err, "read:errno=%d\n", ret);
2920                 goto shut;
2921             case SSL_ERROR_ZERO_RETURN:
2922                 BIO_printf(bio_c_out, "closed\n");
2923                 ret = 0;
2924                 goto shut;
2925             case SSL_ERROR_WANT_ASYNC_JOB:
2926                 /* This shouldn't ever happen in s_client. Treat as an error */
2927             case SSL_ERROR_SSL:
2928                 ERR_print_errors(bio_err);
2929                 goto shut;
2930             }
2931         }
2932 /* OPENSSL_SYS_MSDOS includes OPENSSL_SYS_WINDOWS */
2933 #if defined(OPENSSL_SYS_MSDOS)
2934         else if (has_stdin_waiting())
2935 #else
2936         else if (FD_ISSET(fileno_stdin(), &readfds))
2937 #endif
2938         {
2939             if (crlf) {
2940                 int j, lf_num;
2941
2942                 i = raw_read_stdin(cbuf, BUFSIZZ / 2);
2943                 lf_num = 0;
2944                 /* both loops are skipped when i <= 0 */
2945                 for (j = 0; j < i; j++)
2946                     if (cbuf[j] == '\n')
2947                         lf_num++;
2948                 for (j = i - 1; j >= 0; j--) {
2949                     cbuf[j + lf_num] = cbuf[j];
2950                     if (cbuf[j] == '\n') {
2951                         lf_num--;
2952                         i++;
2953                         cbuf[j + lf_num] = '\r';
2954                     }
2955                 }
2956                 assert(lf_num == 0);
2957             } else
2958                 i = raw_read_stdin(cbuf, BUFSIZZ);
2959 #if !defined(OPENSSL_SYS_WINDOWS) && !defined(OPENSSL_SYS_MSDOS)
2960             if (i == 0)
2961                 at_eof = 1;
2962 #endif
2963
2964             if ((!c_ign_eof) && ((i <= 0) || (cbuf[0] == 'Q' && cmdletters))) {
2965                 BIO_printf(bio_err, "DONE\n");
2966                 ret = 0;
2967                 goto shut;
2968             }
2969
2970             if ((!c_ign_eof) && (cbuf[0] == 'R' && cmdletters)) {
2971                 BIO_printf(bio_err, "RENEGOTIATING\n");
2972                 SSL_renegotiate(con);
2973                 cbuf_len = 0;
2974             }
2975
2976             if (!c_ign_eof && (cbuf[0] == 'K' || cbuf[0] == 'k' )
2977                     && cmdletters) {
2978                 BIO_printf(bio_err, "KEYUPDATE\n");
2979                 SSL_key_update(con,
2980                                cbuf[0] == 'K' ? SSL_KEY_UPDATE_REQUESTED
2981                                               : SSL_KEY_UPDATE_NOT_REQUESTED);
2982                 cbuf_len = 0;
2983             }
2984 #ifndef OPENSSL_NO_HEARTBEATS
2985             else if ((!c_ign_eof) && (cbuf[0] == 'B' && cmdletters)) {
2986                 BIO_printf(bio_err, "HEARTBEATING\n");
2987                 SSL_heartbeat(con);
2988                 cbuf_len = 0;
2989             }
2990 #endif
2991             else {
2992                 cbuf_len = i;
2993                 cbuf_off = 0;
2994 #ifdef CHARSET_EBCDIC
2995                 ebcdic2ascii(cbuf, cbuf, i);
2996 #endif
2997             }
2998
2999             write_ssl = 1;
3000             read_tty = 0;
3001         }
3002     }
3003
3004     ret = 0;
3005  shut:
3006     if (in_init)
3007         print_stuff(bio_c_out, con, full_log);
3008     do_ssl_shutdown(con);
3009 #if defined(OPENSSL_SYS_WINDOWS)
3010     /*
3011      * Give the socket time to send its last data before we close it.
3012      * No amount of setting SO_LINGER etc on the socket seems to persuade
3013      * Windows to send the data before closing the socket...but sleeping
3014      * for a short time seems to do it (units in ms)
3015      * TODO: Find a better way to do this
3016      */
3017     Sleep(50);
3018 #endif
3019     BIO_closesocket(SSL_get_fd(con));
3020  end:
3021     if (con != NULL) {
3022         if (prexit != 0)
3023             print_stuff(bio_c_out, con, 1);
3024         SSL_free(con);
3025     }
3026     SSL_SESSION_free(psksess);
3027 #if !defined(OPENSSL_NO_NEXTPROTONEG)
3028     OPENSSL_free(next_proto.data);
3029 #endif
3030     SSL_CTX_free(ctx);
3031     set_keylog_file(NULL, NULL);
3032     X509_free(cert);
3033     sk_X509_CRL_pop_free(crls, X509_CRL_free);
3034     EVP_PKEY_free(key);
3035     sk_X509_pop_free(chain, X509_free);
3036     OPENSSL_free(pass);
3037 #ifndef OPENSSL_NO_SRP
3038     OPENSSL_free(srp_arg.srppassin);
3039 #endif
3040     OPENSSL_free(connectstr);
3041     OPENSSL_free(host);
3042     OPENSSL_free(port);
3043     X509_VERIFY_PARAM_free(vpm);
3044     ssl_excert_free(exc);
3045     sk_OPENSSL_STRING_free(ssl_args);
3046     sk_OPENSSL_STRING_free(dane_tlsa_rrset);
3047     SSL_CONF_CTX_free(cctx);
3048     OPENSSL_clear_free(cbuf, BUFSIZZ);
3049     OPENSSL_clear_free(sbuf, BUFSIZZ);
3050     OPENSSL_clear_free(mbuf, BUFSIZZ);
3051     release_engine(e);
3052     BIO_free(bio_c_out);
3053     bio_c_out = NULL;
3054     BIO_free(bio_c_msg);
3055     bio_c_msg = NULL;
3056     return (ret);
3057 }
3058
3059 static void print_stuff(BIO *bio, SSL *s, int full)
3060 {
3061     X509 *peer = NULL;
3062     STACK_OF(X509) *sk;
3063     const SSL_CIPHER *c;
3064     int i;
3065 #ifndef OPENSSL_NO_COMP
3066     const COMP_METHOD *comp, *expansion;
3067 #endif
3068     unsigned char *exportedkeymat;
3069 #ifndef OPENSSL_NO_CT
3070     const SSL_CTX *ctx = SSL_get_SSL_CTX(s);
3071 #endif
3072
3073     if (full) {
3074         int got_a_chain = 0;
3075
3076         sk = SSL_get_peer_cert_chain(s);
3077         if (sk != NULL) {
3078             got_a_chain = 1;
3079
3080             BIO_printf(bio, "---\nCertificate chain\n");
3081             for (i = 0; i < sk_X509_num(sk); i++) {
3082                 BIO_printf(bio, "%2d s:", i);
3083                 X509_NAME_print_ex(bio, X509_get_subject_name(sk_X509_value(sk, i)), 0, get_nameopt());
3084                 BIO_puts(bio, "\n");
3085                 BIO_printf(bio, "   i:");
3086                 X509_NAME_print_ex(bio, X509_get_issuer_name(sk_X509_value(sk, i)), 0, get_nameopt());
3087                 BIO_puts(bio, "\n");
3088                 if (c_showcerts)
3089                     PEM_write_bio_X509(bio, sk_X509_value(sk, i));
3090             }
3091         }
3092
3093         BIO_printf(bio, "---\n");
3094         peer = SSL_get_peer_certificate(s);
3095         if (peer != NULL) {
3096             BIO_printf(bio, "Server certificate\n");
3097
3098             /* Redundant if we showed the whole chain */
3099             if (!(c_showcerts && got_a_chain))
3100                 PEM_write_bio_X509(bio, peer);
3101             dump_cert_text(bio, peer);
3102         } else {
3103             BIO_printf(bio, "no peer certificate available\n");
3104         }
3105         print_ca_names(bio, s);
3106
3107         ssl_print_sigalgs(bio, s);
3108         ssl_print_tmp_key(bio, s);
3109
3110 #ifndef OPENSSL_NO_CT
3111         /*
3112          * When the SSL session is anonymous, or resumed via an abbreviated
3113          * handshake, no SCTs are provided as part of the handshake.  While in
3114          * a resumed session SCTs may be present in the session's certificate,
3115          * no callbacks are invoked to revalidate these, and in any case that
3116          * set of SCTs may be incomplete.  Thus it makes little sense to
3117          * attempt to display SCTs from a resumed session's certificate, and of
3118          * course none are associated with an anonymous peer.
3119          */
3120         if (peer != NULL && !SSL_session_reused(s) && SSL_ct_is_enabled(s)) {
3121             const STACK_OF(SCT) *scts = SSL_get0_peer_scts(s);
3122             int sct_count = scts != NULL ? sk_SCT_num(scts) : 0;
3123
3124             BIO_printf(bio, "---\nSCTs present (%i)\n", sct_count);
3125             if (sct_count > 0) {
3126                 const CTLOG_STORE *log_store = SSL_CTX_get0_ctlog_store(ctx);
3127
3128                 BIO_printf(bio, "---\n");
3129                 for (i = 0; i < sct_count; ++i) {
3130                     SCT *sct = sk_SCT_value(scts, i);
3131
3132                     BIO_printf(bio, "SCT validation status: %s\n",
3133                                SCT_validation_status_string(sct));
3134                     SCT_print(sct, bio, 0, log_store);
3135                     if (i < sct_count - 1)
3136                         BIO_printf(bio, "\n---\n");
3137                 }
3138                 BIO_printf(bio, "\n");
3139             }
3140         }
3141 #endif
3142
3143         BIO_printf(bio,
3144                    "---\nSSL handshake has read %ju bytes "
3145                    "and written %ju bytes\n",
3146                    BIO_number_read(SSL_get_rbio(s)),
3147                    BIO_number_written(SSL_get_wbio(s)));
3148     }
3149     print_verify_detail(s, bio);
3150     BIO_printf(bio, (SSL_session_reused(s) ? "---\nReused, " : "---\nNew, "));
3151     c = SSL_get_current_cipher(s);
3152     BIO_printf(bio, "%s, Cipher is %s\n",
3153                SSL_CIPHER_get_version(c), SSL_CIPHER_get_name(c));
3154     if (peer != NULL) {
3155         EVP_PKEY *pktmp;
3156
3157         pktmp = X509_get0_pubkey(peer);
3158         BIO_printf(bio, "Server public key is %d bit\n",
3159                    EVP_PKEY_bits(pktmp));
3160     }
3161     BIO_printf(bio, "Secure Renegotiation IS%s supported\n",
3162                SSL_get_secure_renegotiation_support(s) ? "" : " NOT");
3163 #ifndef OPENSSL_NO_COMP
3164     comp = SSL_get_current_compression(s);
3165     expansion = SSL_get_current_expansion(s);
3166     BIO_printf(bio, "Compression: %s\n",
3167                comp ? SSL_COMP_get_name(comp) : "NONE");
3168     BIO_printf(bio, "Expansion: %s\n",
3169                expansion ? SSL_COMP_get_name(expansion) : "NONE");
3170 #endif
3171
3172 #ifdef SSL_DEBUG
3173     {
3174         /* Print out local port of connection: useful for debugging */
3175         int sock;
3176         union BIO_sock_info_u info;
3177
3178         sock = SSL_get_fd(s);
3179         if ((info.addr = BIO_ADDR_new()) != NULL
3180             && BIO_sock_info(sock, BIO_SOCK_INFO_ADDRESS, &info)) {
3181             BIO_printf(bio_c_out, "LOCAL PORT is %u\n",
3182                        ntohs(BIO_ADDR_rawport(info.addr)));
3183         }
3184         BIO_ADDR_free(info.addr);
3185     }
3186 #endif
3187
3188 #if !defined(OPENSSL_NO_NEXTPROTONEG)
3189     if (next_proto.status != -1) {
3190         const unsigned char *proto;
3191         unsigned int proto_len;
3192         SSL_get0_next_proto_negotiated(s, &proto, &proto_len);
3193         BIO_printf(bio, "Next protocol: (%d) ", next_proto.status);
3194         BIO_write(bio, proto, proto_len);
3195         BIO_write(bio, "\n", 1);
3196     }
3197 #endif
3198     {
3199         const unsigned char *proto;
3200         unsigned int proto_len;
3201         SSL_get0_alpn_selected(s, &proto, &proto_len);
3202         if (proto_len > 0) {
3203             BIO_printf(bio, "ALPN protocol: ");
3204             BIO_write(bio, proto, proto_len);
3205             BIO_write(bio, "\n", 1);
3206         } else
3207             BIO_printf(bio, "No ALPN negotiated\n");
3208     }
3209
3210 #ifndef OPENSSL_NO_SRTP
3211     {
3212         SRTP_PROTECTION_PROFILE *srtp_profile =
3213             SSL_get_selected_srtp_profile(s);
3214
3215         if (srtp_profile)
3216             BIO_printf(bio, "SRTP Extension negotiated, profile=%s\n",
3217                        srtp_profile->name);
3218     }
3219 #endif
3220
3221     if (SSL_version(s) == TLS1_3_VERSION) {
3222         switch (SSL_get_early_data_status(s)) {
3223         case SSL_EARLY_DATA_NOT_SENT:
3224             BIO_printf(bio, "Early data was not sent\n");
3225             break;
3226
3227         case SSL_EARLY_DATA_REJECTED:
3228             BIO_printf(bio, "Early data was rejected\n");
3229             break;
3230
3231         case SSL_EARLY_DATA_ACCEPTED:
3232             BIO_printf(bio, "Early data was accepted\n");
3233             break;
3234
3235         }
3236     }
3237
3238     SSL_SESSION_print(bio, SSL_get_session(s));
3239     if (SSL_get_session(s) != NULL && keymatexportlabel != NULL) {
3240         BIO_printf(bio, "Keying material exporter:\n");
3241         BIO_printf(bio, "    Label: '%s'\n", keymatexportlabel);
3242         BIO_printf(bio, "    Length: %i bytes\n", keymatexportlen);
3243         exportedkeymat = app_malloc(keymatexportlen, "export key");
3244         if (!SSL_export_keying_material(s, exportedkeymat,
3245                                         keymatexportlen,
3246                                         keymatexportlabel,
3247                                         strlen(keymatexportlabel),
3248                                         NULL, 0, 0)) {
3249             BIO_printf(bio, "    Error\n");
3250         } else {
3251             BIO_printf(bio, "    Keying material: ");
3252             for (i = 0; i < keymatexportlen; i++)
3253                 BIO_printf(bio, "%02X", exportedkeymat[i]);
3254             BIO_printf(bio, "\n");
3255         }
3256         OPENSSL_free(exportedkeymat);
3257     }
3258     BIO_printf(bio, "---\n");
3259     X509_free(peer);
3260     /* flush, or debugging output gets mixed with http response */
3261     (void)BIO_flush(bio);
3262 }
3263
3264 # ifndef OPENSSL_NO_OCSP
3265 static int ocsp_resp_cb(SSL *s, void *arg)
3266 {
3267     const unsigned char *p;
3268     int len;
3269     OCSP_RESPONSE *rsp;
3270     len = SSL_get_tlsext_status_ocsp_resp(s, &p);
3271     BIO_puts(arg, "OCSP response: ");
3272     if (p == NULL) {
3273         BIO_puts(arg, "no response sent\n");
3274         return 1;
3275     }
3276     rsp = d2i_OCSP_RESPONSE(NULL, &p, len);
3277     if (rsp == NULL) {
3278         BIO_puts(arg, "response parse error\n");
3279         BIO_dump_indent(arg, (char *)p, len, 4);
3280         return 0;
3281     }
3282     BIO_puts(arg, "\n======================================\n");
3283     OCSP_RESPONSE_print(arg, rsp, 0);
3284     BIO_puts(arg, "======================================\n");
3285     OCSP_RESPONSE_free(rsp);
3286     return 1;
3287 }
3288 # endif
3289
3290 static int ldap_ExtendedResponse_parse(const char *buf, long rem)
3291 {
3292     const unsigned char *cur, *end;
3293     long len;
3294     int tag, xclass, inf, ret = -1;
3295
3296     cur = (const unsigned char *)buf;
3297     end = cur + rem;
3298
3299     /*
3300      * From RFC 4511:
3301      *
3302      *    LDAPMessage ::= SEQUENCE {
3303      *         messageID       MessageID,
3304      *         protocolOp      CHOICE {
3305      *              ...
3306      *              extendedResp          ExtendedResponse,
3307      *              ... },
3308      *         controls       [0] Controls OPTIONAL }
3309      *
3310      *    ExtendedResponse ::= [APPLICATION 24] SEQUENCE {
3311      *         COMPONENTS OF LDAPResult,
3312      *         responseName     [10] LDAPOID OPTIONAL,
3313      *         responseValue    [11] OCTET STRING OPTIONAL }
3314      *
3315      *    LDAPResult ::= SEQUENCE {
3316      *         resultCode         ENUMERATED {
3317      *              success                      (0),
3318      *              ...
3319      *              other                        (80),
3320      *              ...  },
3321      *         matchedDN          LDAPDN,
3322      *         diagnosticMessage  LDAPString,
3323      *         referral           [3] Referral OPTIONAL }
3324      */
3325
3326     /* pull SEQUENCE */
3327     inf = ASN1_get_object(&cur, &len, &tag, &xclass, rem);
3328     if (inf != V_ASN1_CONSTRUCTED || tag != V_ASN1_SEQUENCE ||
3329         (rem = end - cur, len > rem)) {
3330         BIO_printf(bio_err, "Unexpected LDAP response\n");
3331         goto end;
3332     }
3333
3334     rem = len;  /* ensure that we don't overstep the SEQUENCE */
3335
3336     /* pull MessageID */
3337     inf = ASN1_get_object(&cur, &len, &tag, &xclass, rem);
3338     if (inf != V_ASN1_UNIVERSAL || tag != V_ASN1_INTEGER ||
3339         (rem = end - cur, len > rem)) {
3340         BIO_printf(bio_err, "No MessageID\n");
3341         goto end;
3342     }
3343
3344     cur += len; /* shall we check for MessageId match or just skip? */
3345
3346     /* pull [APPLICATION 24] */
3347     rem = end - cur;
3348     inf = ASN1_get_object(&cur, &len, &tag, &xclass, rem);
3349     if (inf != V_ASN1_CONSTRUCTED || xclass != V_ASN1_APPLICATION ||
3350         tag != 24) {
3351         BIO_printf(bio_err, "Not ExtendedResponse\n");
3352         goto end;
3353     }
3354
3355     /* pull resultCode */
3356     rem = end - cur;
3357     inf = ASN1_get_object(&cur, &len, &tag, &xclass, rem);
3358     if (inf != V_ASN1_UNIVERSAL || tag != V_ASN1_ENUMERATED || len == 0 ||
3359         (rem = end - cur, len > rem)) {
3360         BIO_printf(bio_err, "Not LDAPResult\n");
3361         goto end;
3362     }
3363
3364     /* len should always be one, but just in case... */
3365     for (ret = 0, inf = 0; inf < len; inf++) {
3366         ret <<= 8;
3367         ret |= cur[inf];
3368     }
3369     /* There is more data, but we don't care... */
3370  end:
3371     return ret;
3372 }
3373
3374 #endif                          /* OPENSSL_NO_SOCK */