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