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