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