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