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