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