2 * Copyright 1995-2018 The OpenSSL Project Authors. All Rights Reserved.
3 * Copyright 2005 Nokia. All rights reserved.
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
17 #include <openssl/e_os2.h>
19 #ifndef OPENSSL_NO_SOCK
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
27 #if defined(OPENSSL_SYS_VMS_DECC) && !defined(__U_INT)
29 typedef unsigned int u_int;
34 #include <openssl/x509.h>
35 #include <openssl/ssl.h>
36 #include <openssl/err.h>
37 #include <openssl/pem.h>
38 #include <openssl/rand.h>
39 #include <openssl/ocsp.h>
40 #include <openssl/bn.h>
41 #include <openssl/async.h>
42 #ifndef OPENSSL_NO_SRP
43 # include <openssl/srp.h>
46 # include <openssl/ct.h>
50 #include "internal/sockets.h"
52 #if defined(__has_feature)
53 # if __has_feature(memory_sanitizer)
54 # include <sanitizer/msan_interface.h>
59 #define BUFSIZZ 1024*8
60 #define S_CLIENT_IRC_READ_TIMEOUT 8
63 static int c_debug = 0;
64 static int c_showcerts = 0;
65 static char *keymatexportlabel = NULL;
66 static int keymatexportlen = 20;
67 static BIO *bio_c_out = NULL;
68 static int c_quiet = 0;
69 static char *sess_out = NULL;
70 static SSL_SESSION *psksess = NULL;
72 static void print_stuff(BIO *berr, SSL *con, int full);
73 #ifndef OPENSSL_NO_OCSP
74 static int ocsp_resp_cb(SSL *s, void *arg);
76 static int ldap_ExtendedResponse_parse(const char *buf, long rem);
78 static int saved_errno;
80 static void save_errno(void)
86 static int restore_errno(void)
93 static void do_ssl_shutdown(SSL *ssl)
98 /* We only do unidirectional shutdown */
99 ret = SSL_shutdown(ssl);
101 switch (SSL_get_error(ssl, ret)) {
102 case SSL_ERROR_WANT_READ:
103 case SSL_ERROR_WANT_WRITE:
104 case SSL_ERROR_WANT_ASYNC:
105 case SSL_ERROR_WANT_ASYNC_JOB:
106 /* We just do busy waiting. Nothing clever */
114 /* Default PSK identity and key */
115 static char *psk_identity = "Client_identity";
117 #ifndef OPENSSL_NO_PSK
118 static unsigned int psk_client_cb(SSL *ssl, const char *hint, char *identity,
119 unsigned int max_identity_len,
121 unsigned int max_psk_len)
128 BIO_printf(bio_c_out, "psk_client_cb\n");
130 /* no ServerKeyExchange message */
132 BIO_printf(bio_c_out,
133 "NULL received PSK identity hint, continuing anyway\n");
134 } else if (c_debug) {
135 BIO_printf(bio_c_out, "Received PSK identity hint '%s'\n", hint);
139 * lookup PSK identity and PSK key based on the given identity hint here
141 ret = BIO_snprintf(identity, max_identity_len, "%s", psk_identity);
142 if (ret < 0 || (unsigned int)ret > max_identity_len)
145 BIO_printf(bio_c_out, "created identity '%s' len=%d\n", identity,
148 /* convert the PSK key to binary */
149 key = OPENSSL_hexstr2buf(psk_key, &key_len);
151 BIO_printf(bio_err, "Could not convert PSK key '%s' to buffer\n",
155 if (max_psk_len > INT_MAX || key_len > (long)max_psk_len) {
157 "psk buffer of callback is too small (%d) for key (%ld)\n",
158 max_psk_len, key_len);
163 memcpy(psk, key, key_len);
167 BIO_printf(bio_c_out, "created PSK len=%ld\n", key_len);
172 BIO_printf(bio_err, "Error in PSK client callback\n");
177 const unsigned char tls13_aes128gcmsha256_id[] = { 0x13, 0x01 };
178 const unsigned char tls13_aes256gcmsha384_id[] = { 0x13, 0x02 };
180 static int psk_use_session_cb(SSL *s, const EVP_MD *md,
181 const unsigned char **id, size_t *idlen,
184 SSL_SESSION *usesess = NULL;
185 const SSL_CIPHER *cipher = NULL;
187 if (psksess != NULL) {
188 SSL_SESSION_up_ref(psksess);
192 unsigned char *key = OPENSSL_hexstr2buf(psk_key, &key_len);
195 BIO_printf(bio_err, "Could not convert PSK key '%s' to buffer\n",
200 /* We default to SHA-256 */
201 cipher = SSL_CIPHER_find(s, tls13_aes128gcmsha256_id);
202 if (cipher == NULL) {
203 BIO_printf(bio_err, "Error finding suitable ciphersuite\n");
207 usesess = SSL_SESSION_new();
209 || !SSL_SESSION_set1_master_key(usesess, key, key_len)
210 || !SSL_SESSION_set_cipher(usesess, cipher)
211 || !SSL_SESSION_set_protocol_version(usesess, TLS1_3_VERSION)) {
218 cipher = SSL_SESSION_get0_cipher(usesess);
222 if (md != NULL && SSL_CIPHER_get_handshake_digest(cipher) != md) {
223 /* PSK not usable, ignore it */
227 SSL_SESSION_free(usesess);
230 *id = (unsigned char *)psk_identity;
231 *idlen = strlen(psk_identity);
237 SSL_SESSION_free(usesess);
241 /* This is a context that we pass to callbacks */
242 typedef struct tlsextctx_st {
247 static int ssl_servername_cb(SSL *s, int *ad, void *arg)
249 tlsextctx *p = (tlsextctx *) arg;
250 const char *hn = SSL_get_servername(s, TLSEXT_NAMETYPE_host_name);
251 if (SSL_get_servername_type(s) != -1)
252 p->ack = !SSL_session_reused(s) && hn != NULL;
254 BIO_printf(bio_err, "Can't use SSL_get_servername\n");
256 return SSL_TLSEXT_ERR_OK;
259 #ifndef OPENSSL_NO_SRP
261 /* This is a context that we pass to all callbacks */
262 typedef struct srp_arg_st {
265 int msg; /* copy from c_msg */
266 int debug; /* copy from c_debug */
267 int amp; /* allow more groups */
268 int strength; /* minimal size for N */
271 # define SRP_NUMBER_ITERATIONS_FOR_PRIME 64
273 static int srp_Verify_N_and_g(const BIGNUM *N, const BIGNUM *g)
275 BN_CTX *bn_ctx = BN_CTX_new();
276 BIGNUM *p = BN_new();
277 BIGNUM *r = BN_new();
279 g != NULL && N != NULL && bn_ctx != NULL && BN_is_odd(N) &&
280 BN_is_prime_ex(N, SRP_NUMBER_ITERATIONS_FOR_PRIME, bn_ctx, NULL) == 1 &&
281 p != NULL && BN_rshift1(p, N) &&
283 BN_is_prime_ex(p, SRP_NUMBER_ITERATIONS_FOR_PRIME, bn_ctx, NULL) == 1 &&
285 /* verify g^((N-1)/2) == -1 (mod N) */
286 BN_mod_exp(r, g, p, N, bn_ctx) &&
287 BN_add_word(r, 1) && BN_cmp(r, N) == 0;
296 * This callback is used here for two purposes:
297 * - extended debugging
298 * - making some primality tests for unknown groups
299 * The callback is only called for a non default group.
301 * An application does not need the call back at all if
302 * only the standard groups are used. In real life situations,
303 * client and server already share well known groups,
304 * thus there is no need to verify them.
305 * Furthermore, in case that a server actually proposes a group that
306 * is not one of those defined in RFC 5054, it is more appropriate
307 * to add the group to a static list and then compare since
308 * primality tests are rather cpu consuming.
311 static int ssl_srp_verify_param_cb(SSL *s, void *arg)
313 SRP_ARG *srp_arg = (SRP_ARG *)arg;
314 BIGNUM *N = NULL, *g = NULL;
316 if (((N = SSL_get_srp_N(s)) == NULL) || ((g = SSL_get_srp_g(s)) == NULL))
318 if (srp_arg->debug || srp_arg->msg || srp_arg->amp == 1) {
319 BIO_printf(bio_err, "SRP parameters:\n");
320 BIO_printf(bio_err, "\tN=");
321 BN_print(bio_err, N);
322 BIO_printf(bio_err, "\n\tg=");
323 BN_print(bio_err, g);
324 BIO_printf(bio_err, "\n");
327 if (SRP_check_known_gN_param(g, N))
330 if (srp_arg->amp == 1) {
333 "SRP param N and g are not known params, going to check deeper.\n");
336 * The srp_moregroups is a real debugging feature. Implementors
337 * should rather add the value to the known ones. The minimal size
338 * has already been tested.
340 if (BN_num_bits(g) <= BN_BITS && srp_Verify_N_and_g(N, g))
343 BIO_printf(bio_err, "SRP param N and g rejected.\n");
347 # define PWD_STRLEN 1024
349 static char *ssl_give_srp_client_pwd_cb(SSL *s, void *arg)
351 SRP_ARG *srp_arg = (SRP_ARG *)arg;
352 char *pass = app_malloc(PWD_STRLEN + 1, "SRP password buffer");
356 cb_tmp.password = (char *)srp_arg->srppassin;
357 cb_tmp.prompt_info = "SRP user";
358 if ((l = password_callback(pass, PWD_STRLEN, 0, &cb_tmp)) < 0) {
359 BIO_printf(bio_err, "Can't read Password\n");
370 #ifndef OPENSSL_NO_NEXTPROTONEG
371 /* This the context that we pass to next_proto_cb */
372 typedef struct tlsextnextprotoctx_st {
376 } tlsextnextprotoctx;
378 static tlsextnextprotoctx next_proto;
380 static int next_proto_cb(SSL *s, unsigned char **out, unsigned char *outlen,
381 const unsigned char *in, unsigned int inlen,
384 tlsextnextprotoctx *ctx = arg;
387 /* We can assume that |in| is syntactically valid. */
389 BIO_printf(bio_c_out, "Protocols advertised by server: ");
390 for (i = 0; i < inlen;) {
392 BIO_write(bio_c_out, ", ", 2);
393 BIO_write(bio_c_out, &in[i + 1], in[i]);
396 BIO_write(bio_c_out, "\n", 1);
400 SSL_select_next_proto(out, outlen, in, inlen, ctx->data, ctx->len);
401 return SSL_TLSEXT_ERR_OK;
403 #endif /* ndef OPENSSL_NO_NEXTPROTONEG */
405 static int serverinfo_cli_parse_cb(SSL *s, unsigned int ext_type,
406 const unsigned char *in, size_t inlen,
410 unsigned char ext_buf[4 + 65536];
412 /* Reconstruct the type/len fields prior to extension data */
413 inlen &= 0xffff; /* for formal memcmpy correctness */
414 ext_buf[0] = (unsigned char)(ext_type >> 8);
415 ext_buf[1] = (unsigned char)(ext_type);
416 ext_buf[2] = (unsigned char)(inlen >> 8);
417 ext_buf[3] = (unsigned char)(inlen);
418 memcpy(ext_buf + 4, in, inlen);
420 BIO_snprintf(pem_name, sizeof(pem_name), "SERVERINFO FOR EXTENSION %d",
422 PEM_write_bio(bio_c_out, pem_name, "", ext_buf, 4 + inlen);
427 * Hex decoder that tolerates optional whitespace. Returns number of bytes
428 * produced, advances inptr to end of input string.
430 static ossl_ssize_t hexdecode(const char **inptr, void *result)
432 unsigned char **out = (unsigned char **)result;
433 const char *in = *inptr;
434 unsigned char *ret = app_malloc(strlen(in) / 2, "hexdecode");
435 unsigned char *cp = ret;
442 for (byte = 0; *in; ++in) {
445 if (isspace(_UC(*in)))
447 x = OPENSSL_hexchar2int(*in);
453 if ((nibble ^= 1) == 0) {
466 return cp - (*out = ret);
470 * Decode unsigned 0..255, returns 1 on success, <= 0 on failure. Advances
471 * inptr to next field skipping leading whitespace.
473 static ossl_ssize_t checked_uint8(const char **inptr, void *out)
475 uint8_t *result = (uint8_t *)out;
476 const char *in = *inptr;
482 v = strtol(in, &endp, 10);
485 if (((v == LONG_MIN || v == LONG_MAX) && e == ERANGE) ||
486 endp == in || !isspace(_UC(*endp)) ||
487 v != (*result = (uint8_t) v)) {
490 for (in = endp; isspace(_UC(*in)); ++in)
500 ossl_ssize_t (*parser)(const char **, void *);
503 static int tlsa_import_rr(SSL *con, const char *rrdata)
505 /* Not necessary to re-init these values; the "parsers" do that. */
506 static uint8_t usage;
507 static uint8_t selector;
508 static uint8_t mtype;
509 static unsigned char *data;
510 static struct tlsa_field tlsa_fields[] = {
511 { &usage, "usage", checked_uint8 },
512 { &selector, "selector", checked_uint8 },
513 { &mtype, "mtype", checked_uint8 },
514 { &data, "data", hexdecode },
517 struct tlsa_field *f;
519 const char *cp = rrdata;
520 ossl_ssize_t len = 0;
522 for (f = tlsa_fields; f->var; ++f) {
523 /* Returns number of bytes produced, advances cp to next field */
524 if ((len = f->parser(&cp, f->var)) <= 0) {
525 BIO_printf(bio_err, "%s: warning: bad TLSA %s field in: %s\n",
526 prog, f->name, rrdata);
530 /* The data field is last, so len is its length */
531 ret = SSL_dane_tlsa_add(con, usage, selector, mtype, data, len);
535 ERR_print_errors(bio_err);
536 BIO_printf(bio_err, "%s: warning: unusable TLSA rrdata: %s\n",
541 ERR_print_errors(bio_err);
542 BIO_printf(bio_err, "%s: warning: error loading TLSA rrdata: %s\n",
549 static int tlsa_import_rrset(SSL *con, STACK_OF(OPENSSL_STRING) *rrset)
551 int num = sk_OPENSSL_STRING_num(rrset);
555 for (i = 0; i < num; ++i) {
556 char *rrdata = sk_OPENSSL_STRING_value(rrset, i);
557 if (tlsa_import_rr(con, rrdata) > 0)
563 typedef enum OPTION_choice {
564 OPT_ERR = -1, OPT_EOF = 0, OPT_HELP,
565 OPT_4, OPT_6, OPT_HOST, OPT_PORT, OPT_CONNECT, OPT_BIND, OPT_UNIX,
566 OPT_XMPPHOST, OPT_VERIFY, OPT_NAMEOPT,
567 OPT_CERT, OPT_CRL, OPT_CRL_DOWNLOAD, OPT_SESS_OUT, OPT_SESS_IN,
568 OPT_CERTFORM, OPT_CRLFORM, OPT_VERIFY_RET_ERROR, OPT_VERIFY_QUIET,
569 OPT_BRIEF, OPT_PREXIT, OPT_CRLF, OPT_QUIET, OPT_NBIO,
570 OPT_SSL_CLIENT_ENGINE, OPT_IGN_EOF, OPT_NO_IGN_EOF,
571 OPT_DEBUG, OPT_TLSEXTDEBUG, OPT_STATUS, OPT_WDEBUG,
572 OPT_MSG, OPT_MSGFILE, OPT_ENGINE, OPT_TRACE, OPT_SECURITY_DEBUG,
573 OPT_SECURITY_DEBUG_VERBOSE, OPT_SHOWCERTS, OPT_NBIO_TEST, OPT_STATE,
574 OPT_PSK_IDENTITY, OPT_PSK, OPT_PSK_SESS,
575 #ifndef OPENSSL_NO_SRP
576 OPT_SRPUSER, OPT_SRPPASS, OPT_SRP_STRENGTH, OPT_SRP_LATEUSER,
579 OPT_SSL3, OPT_SSL_CONFIG,
580 OPT_TLS1_3, OPT_TLS1_2, OPT_TLS1_1, OPT_TLS1, OPT_DTLS, OPT_DTLS1,
581 OPT_DTLS1_2, OPT_SCTP, OPT_TIMEOUT, OPT_MTU, OPT_KEYFORM, OPT_PASS,
582 OPT_CERT_CHAIN, OPT_CAPATH, OPT_NOCAPATH, OPT_CHAINCAPATH, OPT_VERIFYCAPATH,
583 OPT_KEY, OPT_RECONNECT, OPT_BUILD_CHAIN, OPT_CAFILE, OPT_NOCAFILE,
584 OPT_CHAINCAFILE, OPT_VERIFYCAFILE, OPT_NEXTPROTONEG, OPT_ALPN,
585 OPT_SERVERINFO, OPT_STARTTLS, OPT_SERVERNAME, OPT_NOSERVERNAME, OPT_ASYNC,
586 OPT_USE_SRTP, OPT_KEYMATEXPORT, OPT_KEYMATEXPORTLEN, OPT_PROTOHOST,
587 OPT_MAXFRAGLEN, OPT_MAX_SEND_FRAG, OPT_SPLIT_SEND_FRAG, OPT_MAX_PIPELINES,
588 OPT_READ_BUF, OPT_KEYLOG_FILE, OPT_EARLY_DATA, OPT_REQCAFILE,
592 OPT_FALLBACKSCSV, OPT_NOCMDS, OPT_PROXY, OPT_DANE_TLSA_DOMAIN,
593 #ifndef OPENSSL_NO_CT
594 OPT_CT, OPT_NOCT, OPT_CTLOG_FILE,
596 OPT_DANE_TLSA_RRDATA, OPT_DANE_EE_NO_NAME,
601 const OPTIONS s_client_options[] = {
602 {"help", OPT_HELP, '-', "Display this summary"},
603 {"host", OPT_HOST, 's', "Use -connect instead"},
604 {"port", OPT_PORT, 'p', "Use -connect instead"},
605 {"connect", OPT_CONNECT, 's',
606 "TCP/IP where to connect (default is :" PORT ")"},
607 {"bind", OPT_BIND, 's', "bind local address for connection"},
608 {"proxy", OPT_PROXY, 's',
609 "Connect to via specified proxy to the real server"},
611 {"unix", OPT_UNIX, 's', "Connect over the specified Unix-domain socket"},
613 {"4", OPT_4, '-', "Use IPv4 only"},
615 {"6", OPT_6, '-', "Use IPv6 only"},
617 {"verify", OPT_VERIFY, 'p', "Turn on peer certificate verification"},
618 {"cert", OPT_CERT, '<', "Certificate file to use, PEM format assumed"},
619 {"certform", OPT_CERTFORM, 'F',
620 "Certificate format (PEM or DER) PEM default"},
621 {"nameopt", OPT_NAMEOPT, 's', "Various certificate name options"},
622 {"key", OPT_KEY, 's', "Private key file to use, if not in -cert file"},
623 {"keyform", OPT_KEYFORM, 'E', "Key format (PEM, DER or engine) PEM default"},
624 {"pass", OPT_PASS, 's', "Private key file pass phrase source"},
625 {"CApath", OPT_CAPATH, '/', "PEM format directory of CA's"},
626 {"CAfile", OPT_CAFILE, '<', "PEM format file of CA's"},
627 {"no-CAfile", OPT_NOCAFILE, '-',
628 "Do not load the default certificates file"},
629 {"no-CApath", OPT_NOCAPATH, '-',
630 "Do not load certificates from the default certificates directory"},
631 {"requestCAfile", OPT_REQCAFILE, '<',
632 "PEM format file of CA names to send to the server"},
633 {"dane_tlsa_domain", OPT_DANE_TLSA_DOMAIN, 's', "DANE TLSA base domain"},
634 {"dane_tlsa_rrdata", OPT_DANE_TLSA_RRDATA, 's',
635 "DANE TLSA rrdata presentation form"},
636 {"dane_ee_no_namechecks", OPT_DANE_EE_NO_NAME, '-',
637 "Disable name checks when matching DANE-EE(3) TLSA records"},
638 {"reconnect", OPT_RECONNECT, '-',
639 "Drop and re-make the connection with the same Session-ID"},
640 {"showcerts", OPT_SHOWCERTS, '-',
641 "Show all certificates sent by the server"},
642 {"debug", OPT_DEBUG, '-', "Extra output"},
643 {"msg", OPT_MSG, '-', "Show protocol messages"},
644 {"msgfile", OPT_MSGFILE, '>',
645 "File to send output of -msg or -trace, instead of stdout"},
646 {"nbio_test", OPT_NBIO_TEST, '-', "More ssl protocol testing"},
647 {"state", OPT_STATE, '-', "Print the ssl states"},
648 {"crlf", OPT_CRLF, '-', "Convert LF from terminal into CRLF"},
649 {"quiet", OPT_QUIET, '-', "No s_client output"},
650 {"ign_eof", OPT_IGN_EOF, '-', "Ignore input eof (default when -quiet)"},
651 {"no_ign_eof", OPT_NO_IGN_EOF, '-', "Don't ignore input eof"},
652 {"starttls", OPT_STARTTLS, 's',
653 "Use the appropriate STARTTLS command before starting TLS"},
654 {"xmpphost", OPT_XMPPHOST, 's',
655 "Alias of -name option for \"-starttls xmpp[-server]\""},
657 {"sess_out", OPT_SESS_OUT, '>', "File to write SSL session to"},
658 {"sess_in", OPT_SESS_IN, '<', "File to read SSL session from"},
659 #ifndef OPENSSL_NO_SRTP
660 {"use_srtp", OPT_USE_SRTP, 's',
661 "Offer SRTP key management with a colon-separated profile list"},
663 {"keymatexport", OPT_KEYMATEXPORT, 's',
664 "Export keying material using label"},
665 {"keymatexportlen", OPT_KEYMATEXPORTLEN, 'p',
666 "Export len bytes of keying material (default 20)"},
667 {"maxfraglen", OPT_MAXFRAGLEN, 'p',
668 "Enable Maximum Fragment Length Negotiation (len values: 512, 1024, 2048 and 4096)"},
669 {"fallback_scsv", OPT_FALLBACKSCSV, '-', "Send the fallback SCSV"},
670 {"name", OPT_PROTOHOST, 's',
671 "Hostname to use for \"-starttls lmtp\", \"-starttls smtp\" or \"-starttls xmpp[-server]\""},
672 {"CRL", OPT_CRL, '<', "CRL file to use"},
673 {"crl_download", OPT_CRL_DOWNLOAD, '-', "Download CRL from distribution points"},
674 {"CRLform", OPT_CRLFORM, 'F', "CRL format (PEM or DER) PEM is default"},
675 {"verify_return_error", OPT_VERIFY_RET_ERROR, '-',
676 "Close connection on verification error"},
677 {"verify_quiet", OPT_VERIFY_QUIET, '-', "Restrict verify output to errors"},
678 {"brief", OPT_BRIEF, '-',
679 "Restrict output to brief summary of connection parameters"},
680 {"prexit", OPT_PREXIT, '-',
681 "Print session information when the program exits"},
682 {"security_debug", OPT_SECURITY_DEBUG, '-',
683 "Enable security debug messages"},
684 {"security_debug_verbose", OPT_SECURITY_DEBUG_VERBOSE, '-',
685 "Output more security debug output"},
686 {"cert_chain", OPT_CERT_CHAIN, '<',
687 "Certificate chain file (in PEM format)"},
688 {"chainCApath", OPT_CHAINCAPATH, '/',
689 "Use dir as certificate store path to build CA certificate chain"},
690 {"verifyCApath", OPT_VERIFYCAPATH, '/',
691 "Use dir as certificate store path to verify CA certificate"},
692 {"build_chain", OPT_BUILD_CHAIN, '-', "Build certificate chain"},
693 {"chainCAfile", OPT_CHAINCAFILE, '<',
694 "CA file for certificate chain (PEM format)"},
695 {"verifyCAfile", OPT_VERIFYCAFILE, '<',
696 "CA file for certificate verification (PEM format)"},
697 {"nocommands", OPT_NOCMDS, '-', "Do not use interactive command letters"},
698 {"servername", OPT_SERVERNAME, 's',
699 "Set TLS extension servername (SNI) in ClientHello (default)"},
700 {"noservername", OPT_NOSERVERNAME, '-',
701 "Do not send the server name (SNI) extension in the ClientHello"},
702 {"tlsextdebug", OPT_TLSEXTDEBUG, '-',
703 "Hex dump of all TLS extensions received"},
704 #ifndef OPENSSL_NO_OCSP
705 {"status", OPT_STATUS, '-', "Request certificate status from server"},
707 {"serverinfo", OPT_SERVERINFO, 's',
708 "types Send empty ClientHello extensions (comma-separated numbers)"},
709 {"alpn", OPT_ALPN, 's',
710 "Enable ALPN extension, considering named protocols supported (comma-separated list)"},
711 {"async", OPT_ASYNC, '-', "Support asynchronous operation"},
712 {"ssl_config", OPT_SSL_CONFIG, 's', "Use specified configuration file"},
713 {"max_send_frag", OPT_MAX_SEND_FRAG, 'p', "Maximum Size of send frames "},
714 {"split_send_frag", OPT_SPLIT_SEND_FRAG, 'p',
715 "Size used to split data for encrypt pipelines"},
716 {"max_pipelines", OPT_MAX_PIPELINES, 'p',
717 "Maximum number of encrypt/decrypt pipelines to be used"},
718 {"read_buf", OPT_READ_BUF, 'p',
719 "Default read buffer size to be used for connections"},
723 #ifndef OPENSSL_NO_SSL3
724 {"ssl3", OPT_SSL3, '-', "Just use SSLv3"},
726 #ifndef OPENSSL_NO_TLS1
727 {"tls1", OPT_TLS1, '-', "Just use TLSv1"},
729 #ifndef OPENSSL_NO_TLS1_1
730 {"tls1_1", OPT_TLS1_1, '-', "Just use TLSv1.1"},
732 #ifndef OPENSSL_NO_TLS1_2
733 {"tls1_2", OPT_TLS1_2, '-', "Just use TLSv1.2"},
735 #ifndef OPENSSL_NO_TLS1_3
736 {"tls1_3", OPT_TLS1_3, '-', "Just use TLSv1.3"},
738 #ifndef OPENSSL_NO_DTLS
739 {"dtls", OPT_DTLS, '-', "Use any version of DTLS"},
740 {"timeout", OPT_TIMEOUT, '-',
741 "Enable send/receive timeout on DTLS connections"},
742 {"mtu", OPT_MTU, 'p', "Set the link layer MTU"},
744 #ifndef OPENSSL_NO_DTLS1
745 {"dtls1", OPT_DTLS1, '-', "Just use DTLSv1"},
747 #ifndef OPENSSL_NO_DTLS1_2
748 {"dtls1_2", OPT_DTLS1_2, '-', "Just use DTLSv1.2"},
750 #ifndef OPENSSL_NO_SCTP
751 {"sctp", OPT_SCTP, '-', "Use SCTP"},
753 #ifndef OPENSSL_NO_SSL_TRACE
754 {"trace", OPT_TRACE, '-', "Show trace output of protocol messages"},
757 {"wdebug", OPT_WDEBUG, '-', "WATT-32 tcp debugging"},
759 {"nbio", OPT_NBIO, '-', "Use non-blocking IO"},
760 {"psk_identity", OPT_PSK_IDENTITY, 's', "PSK identity"},
761 {"psk", OPT_PSK, 's', "PSK in hex (without 0x)"},
762 {"psk_session", OPT_PSK_SESS, '<', "File to read PSK SSL session from"},
763 #ifndef OPENSSL_NO_SRP
764 {"srpuser", OPT_SRPUSER, 's', "SRP authentication for 'user'"},
765 {"srppass", OPT_SRPPASS, 's', "Password for 'user'"},
766 {"srp_lateuser", OPT_SRP_LATEUSER, '-',
767 "SRP username into second ClientHello message"},
768 {"srp_moregroups", OPT_SRP_MOREGROUPS, '-',
769 "Tolerate other than the known g N values."},
770 {"srp_strength", OPT_SRP_STRENGTH, 'p', "Minimal length in bits for N"},
772 #ifndef OPENSSL_NO_NEXTPROTONEG
773 {"nextprotoneg", OPT_NEXTPROTONEG, 's',
774 "Enable NPN extension, considering named protocols supported (comma-separated list)"},
776 #ifndef OPENSSL_NO_ENGINE
777 {"engine", OPT_ENGINE, 's', "Use engine, possibly a hardware device"},
778 {"ssl_client_engine", OPT_SSL_CLIENT_ENGINE, 's',
779 "Specify engine to be used for client certificate operations"},
781 #ifndef OPENSSL_NO_CT
782 {"ct", OPT_CT, '-', "Request and parse SCTs (also enables OCSP stapling)"},
783 {"noct", OPT_NOCT, '-', "Do not request or parse SCTs (default)"},
784 {"ctlogfile", OPT_CTLOG_FILE, '<', "CT log list CONF file"},
786 {"keylogfile", OPT_KEYLOG_FILE, '>', "Write TLS secrets to file"},
787 {"early_data", OPT_EARLY_DATA, '<', "File to send as early data"},
788 {"force_pha", OPT_FORCE_PHA, '-', "Force-enable post-handshake-authentication"},
789 {NULL, OPT_EOF, 0x00, NULL}
792 typedef enum PROTOCOL_choice {
811 static const OPT_PAIR services[] = {
812 {"smtp", PROTO_SMTP},
813 {"pop3", PROTO_POP3},
814 {"imap", PROTO_IMAP},
816 {"xmpp", PROTO_XMPP},
817 {"xmpp-server", PROTO_XMPP_SERVER},
818 {"telnet", PROTO_TELNET},
820 {"mysql", PROTO_MYSQL},
821 {"postgres", PROTO_POSTGRES},
822 {"lmtp", PROTO_LMTP},
823 {"nntp", PROTO_NNTP},
824 {"sieve", PROTO_SIEVE},
825 {"ldap", PROTO_LDAP},
829 #define IS_INET_FLAG(o) \
830 (o == OPT_4 || o == OPT_6 || o == OPT_HOST || o == OPT_PORT || o == OPT_CONNECT)
831 #define IS_UNIX_FLAG(o) (o == OPT_UNIX)
833 #define IS_PROT_FLAG(o) \
834 (o == OPT_SSL3 || o == OPT_TLS1 || o == OPT_TLS1_1 || o == OPT_TLS1_2 \
835 || o == OPT_TLS1_3 || o == OPT_DTLS || o == OPT_DTLS1 || o == OPT_DTLS1_2)
837 /* Free |*dest| and optionally set it to a copy of |source|. */
838 static void freeandcopy(char **dest, const char *source)
843 *dest = OPENSSL_strdup(source);
846 static int new_session_cb(SSL *S, SSL_SESSION *sess)
848 BIO *stmp = BIO_new_file(sess_out, "w");
851 BIO_printf(bio_err, "Error writing session file %s\n", sess_out);
853 PEM_write_bio_SSL_SESSION(stmp, sess);
858 * We always return a "fail" response so that the session gets freed again
859 * because we haven't used the reference.
864 int s_client_main(int argc, char **argv)
867 EVP_PKEY *key = NULL;
870 STACK_OF(X509) *chain = NULL;
872 X509_VERIFY_PARAM *vpm = NULL;
873 SSL_EXCERT *exc = NULL;
874 SSL_CONF_CTX *cctx = NULL;
875 STACK_OF(OPENSSL_STRING) *ssl_args = NULL;
876 char *dane_tlsa_domain = NULL;
877 STACK_OF(OPENSSL_STRING) *dane_tlsa_rrset = NULL;
878 int dane_ee_no_name = 0;
879 STACK_OF(X509_CRL) *crls = NULL;
880 const SSL_METHOD *meth = TLS_client_method();
881 const char *CApath = NULL, *CAfile = NULL;
882 char *cbuf = NULL, *sbuf = NULL;
883 char *mbuf = NULL, *proxystr = NULL, *connectstr = NULL, *bindstr = NULL;
884 char *cert_file = NULL, *key_file = NULL, *chain_file = NULL;
885 char *chCApath = NULL, *chCAfile = NULL, *host = NULL;
886 char *port = OPENSSL_strdup(PORT);
887 char *bindhost = NULL, *bindport = NULL;
888 char *passarg = NULL, *pass = NULL, *vfyCApath = NULL, *vfyCAfile = NULL;
889 char *ReqCAfile = NULL;
890 char *sess_in = NULL, *crl_file = NULL, *p;
891 const char *protohost = NULL;
892 struct timeval timeout, *timeoutp;
893 fd_set readfds, writefds;
894 int noCApath = 0, noCAfile = 0;
895 int build_chain = 0, cbuf_len, cbuf_off, cert_format = FORMAT_PEM;
896 int key_format = FORMAT_PEM, crlf = 0, full_log = 1, mbuf_len = 0;
899 int reconnect = 0, verify = SSL_VERIFY_NONE, vpmtouched = 0;
900 int ret = 1, in_init = 1, i, nbio_test = 0, s = -1, k, width, state = 0;
901 int sbuf_len, sbuf_off, cmdletters = 1;
902 int socket_family = AF_UNSPEC, socket_type = SOCK_STREAM, protocol = 0;
903 int starttls_proto = PROTO_OFF, crl_format = FORMAT_PEM, crl_download = 0;
904 int write_tty, read_tty, write_ssl, read_ssl, tty_on, ssl_pending;
905 #if !defined(OPENSSL_SYS_WINDOWS) && !defined(OPENSSL_SYS_MSDOS)
908 int read_buf_len = 0;
909 int fallback_scsv = 0;
911 #ifndef OPENSSL_NO_DTLS
912 int enable_timeouts = 0;
915 #ifndef OPENSSL_NO_ENGINE
916 ENGINE *ssl_client_engine = NULL;
919 #if defined(OPENSSL_SYS_WINDOWS) || defined(OPENSSL_SYS_MSDOS)
922 const char *servername = NULL;
923 int noservername = 0;
924 const char *alpn_in = NULL;
925 tlsextctx tlsextcbp = { NULL, 0 };
926 const char *ssl_config = NULL;
927 #define MAX_SI_TYPES 100
928 unsigned short serverinfo_types[MAX_SI_TYPES];
929 int serverinfo_count = 0, start = 0, len;
930 #ifndef OPENSSL_NO_NEXTPROTONEG
931 const char *next_proto_neg_in = NULL;
933 #ifndef OPENSSL_NO_SRP
934 char *srppass = NULL;
935 int srp_lateuser = 0;
936 SRP_ARG srp_arg = { NULL, NULL, 0, 0, 0, 1024 };
938 char *srtp_profiles = NULL;
939 #ifndef OPENSSL_NO_CT
940 char *ctlog_file = NULL;
941 int ct_validation = 0;
943 int min_version = 0, max_version = 0, prot_opt = 0, no_prot_opt = 0;
945 unsigned int max_send_fragment = 0;
946 unsigned int split_send_fragment = 0, max_pipelines = 0;
947 enum { use_inet, use_unix, use_unknown } connect_type = use_unknown;
949 uint8_t maxfraglen = 0;
950 int c_nbio = 0, c_msg = 0, c_ign_eof = 0, c_brief = 0;
951 int c_tlsextdebug = 0;
952 #ifndef OPENSSL_NO_OCSP
953 int c_status_req = 0;
955 BIO *bio_c_msg = NULL;
956 const char *keylog_file = NULL, *early_data_file = NULL;
957 #ifndef OPENSSL_NO_DTLS
960 char *psksessf = NULL;
965 /* Known false-positive of MemorySanitizer. */
966 #if defined(__has_feature)
967 # if __has_feature(memory_sanitizer)
968 __msan_unpoison(&readfds, sizeof(readfds));
969 __msan_unpoison(&writefds, sizeof(writefds));
973 prog = opt_progname(argv[0]);
978 vpm = X509_VERIFY_PARAM_new();
979 cctx = SSL_CONF_CTX_new();
981 if (vpm == NULL || cctx == NULL) {
982 BIO_printf(bio_err, "%s: out of memory\n", prog);
986 cbuf = app_malloc(BUFSIZZ, "cbuf");
987 sbuf = app_malloc(BUFSIZZ, "sbuf");
988 mbuf = app_malloc(BUFSIZZ, "mbuf");
990 SSL_CONF_CTX_set_flags(cctx, SSL_CONF_FLAG_CLIENT | SSL_CONF_FLAG_CMDLINE);
992 prog = opt_init(argc, argv, s_client_options);
993 while ((o = opt_next()) != OPT_EOF) {
994 /* Check for intermixing flags. */
995 if (connect_type == use_unix && IS_INET_FLAG(o)) {
997 "%s: Intermixed protocol flags (unix and internet domains)\n",
1001 if (connect_type == use_inet && IS_UNIX_FLAG(o)) {
1003 "%s: Intermixed protocol flags (internet and unix domains)\n",
1008 if (IS_PROT_FLAG(o) && ++prot_opt > 1) {
1009 BIO_printf(bio_err, "Cannot supply multiple protocol flags\n");
1012 if (IS_NO_PROT_FLAG(o))
1014 if (prot_opt == 1 && no_prot_opt) {
1016 "Cannot supply both a protocol flag and '-no_<prot>'\n");
1024 BIO_printf(bio_err, "%s: Use -help for summary.\n", prog);
1027 opt_help(s_client_options);
1031 connect_type = use_inet;
1032 socket_family = AF_INET;
1037 connect_type = use_inet;
1038 socket_family = AF_INET6;
1043 connect_type = use_inet;
1044 freeandcopy(&host, opt_arg());
1047 connect_type = use_inet;
1048 freeandcopy(&port, opt_arg());
1051 connect_type = use_inet;
1052 freeandcopy(&connectstr, opt_arg());
1055 freeandcopy(&bindstr, opt_arg());
1058 proxystr = opt_arg();
1059 starttls_proto = PROTO_CONNECT;
1063 connect_type = use_unix;
1064 socket_family = AF_UNIX;
1065 freeandcopy(&host, opt_arg());
1069 /* fall through, since this is an alias */
1071 protohost = opt_arg();
1074 verify = SSL_VERIFY_PEER;
1075 verify_args.depth = atoi(opt_arg());
1077 BIO_printf(bio_err, "verify depth is %d\n", verify_args.depth);
1080 cert_file = opt_arg();
1083 if (!set_nameopt(opt_arg()))
1087 crl_file = opt_arg();
1089 case OPT_CRL_DOWNLOAD:
1093 sess_out = opt_arg();
1096 sess_in = opt_arg();
1099 if (!opt_format(opt_arg(), OPT_FMT_PEMDER, &cert_format))
1103 if (!opt_format(opt_arg(), OPT_FMT_PEMDER, &crl_format))
1106 case OPT_VERIFY_RET_ERROR:
1107 verify_args.return_error = 1;
1109 case OPT_VERIFY_QUIET:
1110 verify_args.quiet = 1;
1113 c_brief = verify_args.quiet = c_quiet = 1;
1116 if (ssl_args == NULL)
1117 ssl_args = sk_OPENSSL_STRING_new_null();
1118 if (ssl_args == NULL
1119 || !sk_OPENSSL_STRING_push(ssl_args, opt_flag())
1120 || !sk_OPENSSL_STRING_push(ssl_args, opt_arg())) {
1121 BIO_printf(bio_err, "%s: Memory allocation failure\n", prog);
1126 if (!opt_verify(o, vpm))
1131 if (!args_excert(o, &exc))
1141 c_quiet = c_ign_eof = 1;
1150 e = setup_engine(opt_arg(), 1);
1152 case OPT_SSL_CLIENT_ENGINE:
1153 #ifndef OPENSSL_NO_ENGINE
1154 ssl_client_engine = ENGINE_by_id(opt_arg());
1155 if (ssl_client_engine == NULL) {
1156 BIO_printf(bio_err, "Error getting client auth engine\n");
1168 case OPT_NO_IGN_EOF:
1174 case OPT_TLSEXTDEBUG:
1178 #ifndef OPENSSL_NO_OCSP
1191 bio_c_msg = BIO_new_file(opt_arg(), "w");
1194 #ifndef OPENSSL_NO_SSL_TRACE
1198 case OPT_SECURITY_DEBUG:
1201 case OPT_SECURITY_DEBUG_VERBOSE:
1213 case OPT_PSK_IDENTITY:
1214 psk_identity = opt_arg();
1217 for (p = psk_key = opt_arg(); *p; p++) {
1218 if (isxdigit(_UC(*p)))
1220 BIO_printf(bio_err, "Not a hex number '%s'\n", psk_key);
1225 psksessf = opt_arg();
1227 #ifndef OPENSSL_NO_SRP
1229 srp_arg.srplogin = opt_arg();
1230 if (min_version < TLS1_VERSION)
1231 min_version = TLS1_VERSION;
1234 srppass = opt_arg();
1235 if (min_version < TLS1_VERSION)
1236 min_version = TLS1_VERSION;
1238 case OPT_SRP_STRENGTH:
1239 srp_arg.strength = atoi(opt_arg());
1240 BIO_printf(bio_err, "SRP minimal length for N is %d\n",
1242 if (min_version < TLS1_VERSION)
1243 min_version = TLS1_VERSION;
1245 case OPT_SRP_LATEUSER:
1247 if (min_version < TLS1_VERSION)
1248 min_version = TLS1_VERSION;
1250 case OPT_SRP_MOREGROUPS:
1252 if (min_version < TLS1_VERSION)
1253 min_version = TLS1_VERSION;
1256 case OPT_SSL_CONFIG:
1257 ssl_config = opt_arg();
1260 min_version = SSL3_VERSION;
1261 max_version = SSL3_VERSION;
1264 min_version = TLS1_3_VERSION;
1265 max_version = TLS1_3_VERSION;
1268 min_version = TLS1_2_VERSION;
1269 max_version = TLS1_2_VERSION;
1272 min_version = TLS1_1_VERSION;
1273 max_version = TLS1_1_VERSION;
1276 min_version = TLS1_VERSION;
1277 max_version = TLS1_VERSION;
1280 #ifndef OPENSSL_NO_DTLS
1281 meth = DTLS_client_method();
1282 socket_type = SOCK_DGRAM;
1287 #ifndef OPENSSL_NO_DTLS1
1288 meth = DTLS_client_method();
1289 min_version = DTLS1_VERSION;
1290 max_version = DTLS1_VERSION;
1291 socket_type = SOCK_DGRAM;
1296 #ifndef OPENSSL_NO_DTLS1_2
1297 meth = DTLS_client_method();
1298 min_version = DTLS1_2_VERSION;
1299 max_version = DTLS1_2_VERSION;
1300 socket_type = SOCK_DGRAM;
1305 #ifndef OPENSSL_NO_SCTP
1306 protocol = IPPROTO_SCTP;
1310 #ifndef OPENSSL_NO_DTLS
1311 enable_timeouts = 1;
1315 #ifndef OPENSSL_NO_DTLS
1316 socket_mtu = atol(opt_arg());
1319 case OPT_FALLBACKSCSV:
1323 if (!opt_format(opt_arg(), OPT_FMT_PDE, &key_format))
1327 passarg = opt_arg();
1329 case OPT_CERT_CHAIN:
1330 chain_file = opt_arg();
1333 key_file = opt_arg();
1344 case OPT_CHAINCAPATH:
1345 chCApath = opt_arg();
1347 case OPT_VERIFYCAPATH:
1348 vfyCApath = opt_arg();
1350 case OPT_BUILD_CHAIN:
1354 ReqCAfile = opt_arg();
1362 #ifndef OPENSSL_NO_CT
1369 case OPT_CTLOG_FILE:
1370 ctlog_file = opt_arg();
1373 case OPT_CHAINCAFILE:
1374 chCAfile = opt_arg();
1376 case OPT_VERIFYCAFILE:
1377 vfyCAfile = opt_arg();
1379 case OPT_DANE_TLSA_DOMAIN:
1380 dane_tlsa_domain = opt_arg();
1382 case OPT_DANE_TLSA_RRDATA:
1383 if (dane_tlsa_rrset == NULL)
1384 dane_tlsa_rrset = sk_OPENSSL_STRING_new_null();
1385 if (dane_tlsa_rrset == NULL ||
1386 !sk_OPENSSL_STRING_push(dane_tlsa_rrset, opt_arg())) {
1387 BIO_printf(bio_err, "%s: Memory allocation failure\n", prog);
1391 case OPT_DANE_EE_NO_NAME:
1392 dane_ee_no_name = 1;
1394 case OPT_NEXTPROTONEG:
1395 #ifndef OPENSSL_NO_NEXTPROTONEG
1396 next_proto_neg_in = opt_arg();
1400 alpn_in = opt_arg();
1402 case OPT_SERVERINFO:
1405 for (start = 0, i = 0; i <= len; ++i) {
1406 if (i == len || p[i] == ',') {
1407 serverinfo_types[serverinfo_count] = atoi(p + start);
1408 if (++serverinfo_count == MAX_SI_TYPES)
1415 if (!opt_pair(opt_arg(), services, &starttls_proto))
1418 case OPT_SERVERNAME:
1419 servername = opt_arg();
1421 case OPT_NOSERVERNAME:
1425 srtp_profiles = opt_arg();
1427 case OPT_KEYMATEXPORT:
1428 keymatexportlabel = opt_arg();
1430 case OPT_KEYMATEXPORTLEN:
1431 keymatexportlen = atoi(opt_arg());
1436 case OPT_MAXFRAGLEN:
1437 len = atoi(opt_arg());
1440 maxfraglen = TLSEXT_max_fragment_length_512;
1443 maxfraglen = TLSEXT_max_fragment_length_1024;
1446 maxfraglen = TLSEXT_max_fragment_length_2048;
1449 maxfraglen = TLSEXT_max_fragment_length_4096;
1453 "%s: Max Fragment Len %u is out of permitted values",
1458 case OPT_MAX_SEND_FRAG:
1459 max_send_fragment = atoi(opt_arg());
1461 case OPT_SPLIT_SEND_FRAG:
1462 split_send_fragment = atoi(opt_arg());
1464 case OPT_MAX_PIPELINES:
1465 max_pipelines = atoi(opt_arg());
1468 read_buf_len = atoi(opt_arg());
1470 case OPT_KEYLOG_FILE:
1471 keylog_file = opt_arg();
1473 case OPT_EARLY_DATA:
1474 early_data_file = opt_arg();
1481 if (count4or6 >= 2) {
1482 BIO_printf(bio_err, "%s: Can't use both -4 and -6\n", prog);
1486 if (servername != NULL) {
1488 "%s: Can't use -servername and -noservername together\n",
1492 if (dane_tlsa_domain != NULL) {
1494 "%s: Can't use -dane_tlsa_domain and -noservername together\n",
1499 argc = opt_num_rest();
1501 /* If there's a positional argument, it's the equivalent of
1503 * Don't allow -connect and a separate argument.
1505 if (connectstr != NULL) {
1507 "%s: must not provide both -connect option and target parameter\n",
1511 connect_type = use_inet;
1512 freeandcopy(&connectstr, *opt_rest());
1513 } else if (argc != 0) {
1517 #ifndef OPENSSL_NO_NEXTPROTONEG
1518 if (min_version == TLS1_3_VERSION && next_proto_neg_in != NULL) {
1519 BIO_printf(bio_err, "Cannot supply -nextprotoneg with TLSv1.3\n");
1523 if (proxystr != NULL) {
1525 char *tmp_host = host, *tmp_port = port;
1526 if (connectstr == NULL) {
1527 BIO_printf(bio_err, "%s: -proxy requires use of -connect or target parameter\n", prog);
1530 res = BIO_parse_hostserv(proxystr, &host, &port, BIO_PARSE_PRIO_HOST);
1531 if (tmp_host != host)
1532 OPENSSL_free(tmp_host);
1533 if (tmp_port != port)
1534 OPENSSL_free(tmp_port);
1537 "%s: -proxy argument malformed or ambiguous\n", prog);
1542 char *tmp_host = host, *tmp_port = port;
1543 if (connectstr != NULL)
1544 res = BIO_parse_hostserv(connectstr, &host, &port,
1545 BIO_PARSE_PRIO_HOST);
1546 if (tmp_host != host)
1547 OPENSSL_free(tmp_host);
1548 if (tmp_port != port)
1549 OPENSSL_free(tmp_port);
1552 "%s: -connect argument or target parameter malformed or ambiguous\n",
1558 if (bindstr != NULL) {
1560 res = BIO_parse_hostserv(bindstr, &bindhost, &bindport,
1561 BIO_PARSE_PRIO_HOST);
1564 "%s: -bind argument parameter malformed or ambiguous\n",
1571 if (socket_family == AF_UNIX && socket_type != SOCK_STREAM) {
1573 "Can't use unix sockets and datagrams together\n");
1578 #ifndef OPENSSL_NO_SCTP
1579 if (protocol == IPPROTO_SCTP) {
1580 if (socket_type != SOCK_DGRAM) {
1581 BIO_printf(bio_err, "Can't use -sctp without DTLS\n");
1584 /* SCTP is unusual. It uses DTLS over a SOCK_STREAM protocol */
1585 socket_type = SOCK_STREAM;
1589 #if !defined(OPENSSL_NO_NEXTPROTONEG)
1590 next_proto.status = -1;
1591 if (next_proto_neg_in) {
1593 next_protos_parse(&next_proto.len, next_proto_neg_in);
1594 if (next_proto.data == NULL) {
1595 BIO_printf(bio_err, "Error parsing -nextprotoneg argument\n");
1599 next_proto.data = NULL;
1602 if (!app_passwd(passarg, NULL, &pass, NULL)) {
1603 BIO_printf(bio_err, "Error getting password\n");
1607 if (key_file == NULL)
1608 key_file = cert_file;
1610 if (key_file != NULL) {
1611 key = load_key(key_file, key_format, 0, pass, e,
1612 "client certificate private key file");
1614 ERR_print_errors(bio_err);
1619 if (cert_file != NULL) {
1620 cert = load_cert(cert_file, cert_format, "client certificate file");
1622 ERR_print_errors(bio_err);
1627 if (chain_file != NULL) {
1628 if (!load_certs(chain_file, &chain, FORMAT_PEM, NULL,
1629 "client certificate chain"))
1633 if (crl_file != NULL) {
1635 crl = load_crl(crl_file, crl_format);
1637 BIO_puts(bio_err, "Error loading CRL\n");
1638 ERR_print_errors(bio_err);
1641 crls = sk_X509_CRL_new_null();
1642 if (crls == NULL || !sk_X509_CRL_push(crls, crl)) {
1643 BIO_puts(bio_err, "Error adding CRL\n");
1644 ERR_print_errors(bio_err);
1650 if (!load_excert(&exc))
1653 if (bio_c_out == NULL) {
1654 if (c_quiet && !c_debug) {
1655 bio_c_out = BIO_new(BIO_s_null());
1656 if (c_msg && bio_c_msg == NULL)
1657 bio_c_msg = dup_bio_out(FORMAT_TEXT);
1658 } else if (bio_c_out == NULL)
1659 bio_c_out = dup_bio_out(FORMAT_TEXT);
1661 #ifndef OPENSSL_NO_SRP
1662 if (!app_passwd(srppass, NULL, &srp_arg.srppassin, NULL)) {
1663 BIO_printf(bio_err, "Error getting password\n");
1668 ctx = SSL_CTX_new(meth);
1670 ERR_print_errors(bio_err);
1675 ssl_ctx_security_debug(ctx, sdebug);
1677 if (!config_ctx(cctx, ssl_args, ctx))
1680 if (ssl_config != NULL) {
1681 if (SSL_CTX_config(ctx, ssl_config) == 0) {
1682 BIO_printf(bio_err, "Error using configuration \"%s\"\n",
1684 ERR_print_errors(bio_err);
1689 if (min_version != 0
1690 && SSL_CTX_set_min_proto_version(ctx, min_version) == 0)
1692 if (max_version != 0
1693 && SSL_CTX_set_max_proto_version(ctx, max_version) == 0)
1696 if (vpmtouched && !SSL_CTX_set1_param(ctx, vpm)) {
1697 BIO_printf(bio_err, "Error setting verify params\n");
1698 ERR_print_errors(bio_err);
1703 SSL_CTX_set_mode(ctx, SSL_MODE_ASYNC);
1706 if (max_send_fragment > 0
1707 && !SSL_CTX_set_max_send_fragment(ctx, max_send_fragment)) {
1708 BIO_printf(bio_err, "%s: Max send fragment size %u is out of permitted range\n",
1709 prog, max_send_fragment);
1713 if (split_send_fragment > 0
1714 && !SSL_CTX_set_split_send_fragment(ctx, split_send_fragment)) {
1715 BIO_printf(bio_err, "%s: Split send fragment size %u is out of permitted range\n",
1716 prog, split_send_fragment);
1720 if (max_pipelines > 0
1721 && !SSL_CTX_set_max_pipelines(ctx, max_pipelines)) {
1722 BIO_printf(bio_err, "%s: Max pipelines %u is out of permitted range\n",
1723 prog, max_pipelines);
1727 if (read_buf_len > 0) {
1728 SSL_CTX_set_default_read_buffer_len(ctx, read_buf_len);
1732 && !SSL_CTX_set_tlsext_max_fragment_length(ctx, maxfraglen)) {
1734 "%s: Max Fragment Length code %u is out of permitted values"
1735 "\n", prog, maxfraglen);
1739 if (!ssl_load_stores(ctx, vfyCApath, vfyCAfile, chCApath, chCAfile,
1740 crls, crl_download)) {
1741 BIO_printf(bio_err, "Error loading store locations\n");
1742 ERR_print_errors(bio_err);
1745 if (ReqCAfile != NULL) {
1746 STACK_OF(X509_NAME) *nm = sk_X509_NAME_new_null();
1748 if (nm == NULL || !SSL_add_file_cert_subjects_to_stack(nm, ReqCAfile)) {
1749 sk_X509_NAME_pop_free(nm, X509_NAME_free);
1750 BIO_printf(bio_err, "Error loading CA names\n");
1751 ERR_print_errors(bio_err);
1754 SSL_CTX_set0_CA_list(ctx, nm);
1756 #ifndef OPENSSL_NO_ENGINE
1757 if (ssl_client_engine) {
1758 if (!SSL_CTX_set_client_cert_engine(ctx, ssl_client_engine)) {
1759 BIO_puts(bio_err, "Error setting client auth engine\n");
1760 ERR_print_errors(bio_err);
1761 ENGINE_free(ssl_client_engine);
1764 ENGINE_free(ssl_client_engine);
1768 #ifndef OPENSSL_NO_PSK
1769 if (psk_key != NULL) {
1771 BIO_printf(bio_c_out, "PSK key given, setting client callback\n");
1772 SSL_CTX_set_psk_client_callback(ctx, psk_client_cb);
1775 if (psksessf != NULL) {
1776 BIO *stmp = BIO_new_file(psksessf, "r");
1779 BIO_printf(bio_err, "Can't open PSK session file %s\n", psksessf);
1780 ERR_print_errors(bio_err);
1783 psksess = PEM_read_bio_SSL_SESSION(stmp, NULL, 0, NULL);
1785 if (psksess == NULL) {
1786 BIO_printf(bio_err, "Can't read PSK session file %s\n", psksessf);
1787 ERR_print_errors(bio_err);
1791 if (psk_key != NULL || psksess != NULL)
1792 SSL_CTX_set_psk_use_session_callback(ctx, psk_use_session_cb);
1794 #ifndef OPENSSL_NO_SRTP
1795 if (srtp_profiles != NULL) {
1796 /* Returns 0 on success! */
1797 if (SSL_CTX_set_tlsext_use_srtp(ctx, srtp_profiles) != 0) {
1798 BIO_printf(bio_err, "Error setting SRTP profile\n");
1799 ERR_print_errors(bio_err);
1806 ssl_ctx_set_excert(ctx, exc);
1808 #if !defined(OPENSSL_NO_NEXTPROTONEG)
1809 if (next_proto.data != NULL)
1810 SSL_CTX_set_next_proto_select_cb(ctx, next_proto_cb, &next_proto);
1814 unsigned char *alpn = next_protos_parse(&alpn_len, alpn_in);
1817 BIO_printf(bio_err, "Error parsing -alpn argument\n");
1820 /* Returns 0 on success! */
1821 if (SSL_CTX_set_alpn_protos(ctx, alpn, alpn_len) != 0) {
1822 BIO_printf(bio_err, "Error setting ALPN\n");
1828 for (i = 0; i < serverinfo_count; i++) {
1829 if (!SSL_CTX_add_client_custom_ext(ctx,
1830 serverinfo_types[i],
1832 serverinfo_cli_parse_cb, NULL)) {
1834 "Warning: Unable to add custom extension %u, skipping\n",
1835 serverinfo_types[i]);
1840 SSL_CTX_set_info_callback(ctx, apps_ssl_info_callback);
1842 #ifndef OPENSSL_NO_CT
1843 /* Enable SCT processing, without early connection termination */
1844 if (ct_validation &&
1845 !SSL_CTX_enable_ct(ctx, SSL_CT_VALIDATION_PERMISSIVE)) {
1846 ERR_print_errors(bio_err);
1850 if (!ctx_set_ctlog_list_file(ctx, ctlog_file)) {
1851 if (ct_validation) {
1852 ERR_print_errors(bio_err);
1857 * If CT validation is not enabled, the log list isn't needed so don't
1858 * show errors or abort. We try to load it regardless because then we
1859 * can show the names of the logs any SCTs came from (SCTs may be seen
1860 * even with validation disabled).
1866 SSL_CTX_set_verify(ctx, verify, verify_callback);
1868 if (!ctx_set_verify_locations(ctx, CAfile, CApath, noCAfile, noCApath)) {
1869 ERR_print_errors(bio_err);
1873 ssl_ctx_add_crls(ctx, crls, crl_download);
1875 if (!set_cert_key_stuff(ctx, cert, key, chain, build_chain))
1878 if (!noservername) {
1879 tlsextcbp.biodebug = bio_err;
1880 SSL_CTX_set_tlsext_servername_callback(ctx, ssl_servername_cb);
1881 SSL_CTX_set_tlsext_servername_arg(ctx, &tlsextcbp);
1883 # ifndef OPENSSL_NO_SRP
1884 if (srp_arg.srplogin) {
1885 if (!srp_lateuser && !SSL_CTX_set_srp_username(ctx, srp_arg.srplogin)) {
1886 BIO_printf(bio_err, "Unable to set SRP username\n");
1889 srp_arg.msg = c_msg;
1890 srp_arg.debug = c_debug;
1891 SSL_CTX_set_srp_cb_arg(ctx, &srp_arg);
1892 SSL_CTX_set_srp_client_pwd_callback(ctx, ssl_give_srp_client_pwd_cb);
1893 SSL_CTX_set_srp_strength(ctx, srp_arg.strength);
1894 if (c_msg || c_debug || srp_arg.amp == 0)
1895 SSL_CTX_set_srp_verify_param_callback(ctx,
1896 ssl_srp_verify_param_cb);
1900 if (dane_tlsa_domain != NULL) {
1901 if (SSL_CTX_dane_enable(ctx) <= 0) {
1903 "%s: Error enabling DANE TLSA authentication.\n",
1905 ERR_print_errors(bio_err);
1911 * In TLSv1.3 NewSessionTicket messages arrive after the handshake and can
1912 * come at any time. Therefore we use a callback to write out the session
1913 * when we know about it. This approach works for < TLSv1.3 as well.
1915 if (sess_out != NULL) {
1916 SSL_CTX_set_session_cache_mode(ctx, SSL_SESS_CACHE_CLIENT
1917 | SSL_SESS_CACHE_NO_INTERNAL_STORE);
1918 SSL_CTX_sess_set_new_cb(ctx, new_session_cb);
1921 if (set_keylog_file(ctx, keylog_file))
1929 SSL_force_post_handshake_auth(con);
1931 if (sess_in != NULL) {
1933 BIO *stmp = BIO_new_file(sess_in, "r");
1935 BIO_printf(bio_err, "Can't open session file %s\n", sess_in);
1936 ERR_print_errors(bio_err);
1939 sess = PEM_read_bio_SSL_SESSION(stmp, NULL, 0, NULL);
1942 BIO_printf(bio_err, "Can't open session file %s\n", sess_in);
1943 ERR_print_errors(bio_err);
1946 if (!SSL_set_session(con, sess)) {
1947 BIO_printf(bio_err, "Can't set session\n");
1948 ERR_print_errors(bio_err);
1952 SSL_SESSION_free(sess);
1956 SSL_set_mode(con, SSL_MODE_SEND_FALLBACK_SCSV);
1958 if (!noservername && (servername != NULL || dane_tlsa_domain == NULL)) {
1959 if (servername == NULL)
1960 servername = (host == NULL) ? "localhost" : host;
1961 if (!SSL_set_tlsext_host_name(con, servername)) {
1962 BIO_printf(bio_err, "Unable to set TLS servername extension.\n");
1963 ERR_print_errors(bio_err);
1968 if (dane_tlsa_domain != NULL) {
1969 if (SSL_dane_enable(con, dane_tlsa_domain) <= 0) {
1970 BIO_printf(bio_err, "%s: Error enabling DANE TLSA "
1971 "authentication.\n", prog);
1972 ERR_print_errors(bio_err);
1975 if (dane_tlsa_rrset == NULL) {
1976 BIO_printf(bio_err, "%s: DANE TLSA authentication requires at "
1977 "least one -dane_tlsa_rrdata option.\n", prog);
1980 if (tlsa_import_rrset(con, dane_tlsa_rrset) <= 0) {
1981 BIO_printf(bio_err, "%s: Failed to import any TLSA "
1982 "records.\n", prog);
1985 if (dane_ee_no_name)
1986 SSL_dane_set_flags(con, DANE_FLAG_NO_DANE_EE_NAMECHECKS);
1987 } else if (dane_tlsa_rrset != NULL) {
1988 BIO_printf(bio_err, "%s: DANE TLSA authentication requires the "
1989 "-dane_tlsa_domain option.\n", prog);
1994 if (init_client(&s, host, port, bindhost, bindport, socket_family,
1995 socket_type, protocol) == 0) {
1996 BIO_printf(bio_err, "connect:errno=%d\n", get_last_socket_error());
2000 BIO_printf(bio_c_out, "CONNECTED(%08X)\n", s);
2003 if (!BIO_socket_nbio(s, 1)) {
2004 ERR_print_errors(bio_err);
2007 BIO_printf(bio_c_out, "Turned on non blocking io\n");
2009 #ifndef OPENSSL_NO_DTLS
2011 union BIO_sock_info_u peer_info;
2013 #ifndef OPENSSL_NO_SCTP
2014 if (protocol == IPPROTO_SCTP)
2015 sbio = BIO_new_dgram_sctp(s, BIO_NOCLOSE);
2018 sbio = BIO_new_dgram(s, BIO_NOCLOSE);
2020 if ((peer_info.addr = BIO_ADDR_new()) == NULL) {
2021 BIO_printf(bio_err, "memory allocation failure\n");
2025 if (!BIO_sock_info(s, BIO_SOCK_INFO_ADDRESS, &peer_info)) {
2026 BIO_printf(bio_err, "getsockname:errno=%d\n",
2027 get_last_socket_error());
2028 BIO_ADDR_free(peer_info.addr);
2033 (void)BIO_ctrl_set_connected(sbio, peer_info.addr);
2034 BIO_ADDR_free(peer_info.addr);
2035 peer_info.addr = NULL;
2037 if (enable_timeouts) {
2039 timeout.tv_usec = DGRAM_RCV_TIMEOUT;
2040 BIO_ctrl(sbio, BIO_CTRL_DGRAM_SET_RECV_TIMEOUT, 0, &timeout);
2043 timeout.tv_usec = DGRAM_SND_TIMEOUT;
2044 BIO_ctrl(sbio, BIO_CTRL_DGRAM_SET_SEND_TIMEOUT, 0, &timeout);
2048 if (socket_mtu < DTLS_get_link_min_mtu(con)) {
2049 BIO_printf(bio_err, "MTU too small. Must be at least %ld\n",
2050 DTLS_get_link_min_mtu(con));
2054 SSL_set_options(con, SSL_OP_NO_QUERY_MTU);
2055 if (!DTLS_set_link_mtu(con, socket_mtu)) {
2056 BIO_printf(bio_err, "Failed to set MTU\n");
2061 /* want to do MTU discovery */
2062 BIO_ctrl(sbio, BIO_CTRL_DGRAM_MTU_DISCOVER, 0, NULL);
2065 #endif /* OPENSSL_NO_DTLS */
2066 sbio = BIO_new_socket(s, BIO_NOCLOSE);
2071 test = BIO_new(BIO_f_nbio_test());
2072 sbio = BIO_push(test, sbio);
2076 BIO_set_callback(sbio, bio_dump_callback);
2077 BIO_set_callback_arg(sbio, (char *)bio_c_out);
2080 #ifndef OPENSSL_NO_SSL_TRACE
2082 SSL_set_msg_callback(con, SSL_trace);
2085 SSL_set_msg_callback(con, msg_cb);
2086 SSL_set_msg_callback_arg(con, bio_c_msg ? bio_c_msg : bio_c_out);
2089 if (c_tlsextdebug) {
2090 SSL_set_tlsext_debug_callback(con, tlsext_cb);
2091 SSL_set_tlsext_debug_arg(con, bio_c_out);
2093 #ifndef OPENSSL_NO_OCSP
2095 SSL_set_tlsext_status_type(con, TLSEXT_STATUSTYPE_ocsp);
2096 SSL_CTX_set_tlsext_status_cb(ctx, ocsp_resp_cb);
2097 SSL_CTX_set_tlsext_status_arg(ctx, bio_c_out);
2101 SSL_set_bio(con, sbio, sbio);
2102 SSL_set_connect_state(con);
2104 /* ok, lets connect */
2105 if (fileno_stdin() > SSL_get_fd(con))
2106 width = fileno_stdin() + 1;
2108 width = SSL_get_fd(con) + 1;
2121 switch ((PROTOCOL_CHOICE) starttls_proto) {
2128 * This is an ugly hack that does a lot of assumptions. We do
2129 * have to handle multi-line responses which may come in a single
2130 * packet or not. We therefore have to use BIO_gets() which does
2131 * need a buffering BIO. So during the initial chitchat we do
2132 * push a buffering BIO into the chain that is removed again
2133 * later on to not disturb the rest of the s_client operation.
2136 BIO *fbio = BIO_new(BIO_f_buffer());
2138 BIO_push(fbio, sbio);
2139 /* Wait for multi-line response to end from LMTP or SMTP */
2141 mbuf_len = BIO_gets(fbio, mbuf, BUFSIZZ);
2142 } while (mbuf_len > 3 && mbuf[3] == '-');
2143 if (protohost == NULL)
2144 protohost = "mail.example.com";
2145 if (starttls_proto == (int)PROTO_LMTP)
2146 BIO_printf(fbio, "LHLO %s\r\n", protohost);
2148 BIO_printf(fbio, "EHLO %s\r\n", protohost);
2149 (void)BIO_flush(fbio);
2151 * Wait for multi-line response to end LHLO LMTP or EHLO SMTP
2155 mbuf_len = BIO_gets(fbio, mbuf, BUFSIZZ);
2156 if (strstr(mbuf, "STARTTLS"))
2158 } while (mbuf_len > 3 && mbuf[3] == '-');
2159 (void)BIO_flush(fbio);
2164 "Didn't find STARTTLS in server response,"
2165 " trying anyway...\n");
2166 BIO_printf(sbio, "STARTTLS\r\n");
2167 BIO_read(sbio, sbuf, BUFSIZZ);
2172 BIO_read(sbio, mbuf, BUFSIZZ);
2173 BIO_printf(sbio, "STLS\r\n");
2174 mbuf_len = BIO_read(sbio, sbuf, BUFSIZZ);
2176 BIO_printf(bio_err, "BIO_read failed\n");
2184 BIO *fbio = BIO_new(BIO_f_buffer());
2186 BIO_push(fbio, sbio);
2187 BIO_gets(fbio, mbuf, BUFSIZZ);
2188 /* STARTTLS command requires CAPABILITY... */
2189 BIO_printf(fbio, ". CAPABILITY\r\n");
2190 (void)BIO_flush(fbio);
2191 /* wait for multi-line CAPABILITY response */
2193 mbuf_len = BIO_gets(fbio, mbuf, BUFSIZZ);
2194 if (strstr(mbuf, "STARTTLS"))
2197 while (mbuf_len > 3 && mbuf[0] != '.');
2198 (void)BIO_flush(fbio);
2203 "Didn't find STARTTLS in server response,"
2204 " trying anyway...\n");
2205 BIO_printf(sbio, ". STARTTLS\r\n");
2206 BIO_read(sbio, sbuf, BUFSIZZ);
2211 BIO *fbio = BIO_new(BIO_f_buffer());
2213 BIO_push(fbio, sbio);
2214 /* wait for multi-line response to end from FTP */
2216 mbuf_len = BIO_gets(fbio, mbuf, BUFSIZZ);
2218 while (mbuf_len > 3 && mbuf[3] == '-');
2219 (void)BIO_flush(fbio);
2222 BIO_printf(sbio, "AUTH TLS\r\n");
2223 BIO_read(sbio, sbuf, BUFSIZZ);
2227 case PROTO_XMPP_SERVER:
2230 BIO_printf(sbio, "<stream:stream "
2231 "xmlns:stream='http://etherx.jabber.org/streams' "
2232 "xmlns='jabber:%s' to='%s' version='1.0'>",
2233 starttls_proto == PROTO_XMPP ? "client" : "server",
2234 protohost ? protohost : host);
2235 seen = BIO_read(sbio, mbuf, BUFSIZZ);
2237 BIO_printf(bio_err, "BIO_read failed\n");
2242 (mbuf, "<starttls xmlns='urn:ietf:params:xml:ns:xmpp-tls'")
2244 "<starttls xmlns=\"urn:ietf:params:xml:ns:xmpp-tls\""))
2246 seen = BIO_read(sbio, mbuf, BUFSIZZ);
2254 "<starttls xmlns='urn:ietf:params:xml:ns:xmpp-tls'/>");
2255 seen = BIO_read(sbio, sbuf, BUFSIZZ);
2257 BIO_printf(bio_err, "BIO_read failed\n");
2261 if (!strstr(sbuf, "<proceed"))
2268 static const unsigned char tls_do[] = {
2269 /* IAC DO START_TLS */
2272 static const unsigned char tls_will[] = {
2273 /* IAC WILL START_TLS */
2276 static const unsigned char tls_follows[] = {
2277 /* IAC SB START_TLS FOLLOWS IAC SE */
2278 255, 250, 46, 1, 255, 240
2282 /* Telnet server should demand we issue START_TLS */
2283 bytes = BIO_read(sbio, mbuf, BUFSIZZ);
2284 if (bytes != 3 || memcmp(mbuf, tls_do, 3) != 0)
2286 /* Agree to issue START_TLS and send the FOLLOWS sub-command */
2287 BIO_write(sbio, tls_will, 3);
2288 BIO_write(sbio, tls_follows, 6);
2289 (void)BIO_flush(sbio);
2290 /* Telnet server also sent the FOLLOWS sub-command */
2291 bytes = BIO_read(sbio, mbuf, BUFSIZZ);
2292 if (bytes != 6 || memcmp(mbuf, tls_follows, 6) != 0)
2299 error_proto, /* Wrong protocol, not even HTTP */
2300 error_connect, /* CONNECT failed */
2302 } foundit = error_connect;
2303 BIO *fbio = BIO_new(BIO_f_buffer());
2305 BIO_push(fbio, sbio);
2306 BIO_printf(fbio, "CONNECT %s HTTP/1.0\r\n\r\n", connectstr);
2307 (void)BIO_flush(fbio);
2309 * The first line is the HTTP response. According to RFC 7230,
2310 * it's formated exactly like this:
2312 * HTTP/d.d ddd Reason text\r\n
2314 mbuf_len = BIO_gets(fbio, mbuf, BUFSIZZ);
2315 if (mbuf_len < (int)strlen("HTTP/1.0 200")) {
2317 "%s: HTTP CONNECT failed, insufficient response "
2318 "from proxy (got %d octets)\n", prog, mbuf_len);
2319 (void)BIO_flush(fbio);
2324 if (mbuf[8] != ' ') {
2326 "%s: HTTP CONNECT failed, incorrect response "
2327 "from proxy\n", prog);
2328 foundit = error_proto;
2329 } else if (mbuf[9] != '2') {
2330 BIO_printf(bio_err, "%s: HTTP CONNECT failed: %s ", prog,
2335 if (foundit != error_proto) {
2336 /* Read past all following headers */
2338 mbuf_len = BIO_gets(fbio, mbuf, BUFSIZZ);
2339 } while (mbuf_len > 2);
2341 (void)BIO_flush(fbio);
2344 if (foundit != success) {
2352 BIO *fbio = BIO_new(BIO_f_buffer());
2354 BIO_push(fbio, sbio);
2355 BIO_printf(fbio, "STARTTLS\r\n");
2356 (void)BIO_flush(fbio);
2357 width = SSL_get_fd(con) + 1;
2363 openssl_fdset(SSL_get_fd(con), &readfds);
2364 timeout.tv_sec = S_CLIENT_IRC_READ_TIMEOUT;
2365 timeout.tv_usec = 0;
2367 * If the IRCd doesn't respond within
2368 * S_CLIENT_IRC_READ_TIMEOUT seconds, assume
2369 * it doesn't support STARTTLS. Many IRCds
2370 * will not give _any_ sort of response to a
2371 * STARTTLS command when it's not supported.
2373 if (!BIO_get_buffer_num_lines(fbio)
2374 && !BIO_pending(fbio)
2375 && !BIO_pending(sbio)
2376 && select(width, (void *)&readfds, NULL, NULL,
2379 "Timeout waiting for response (%d seconds).\n",
2380 S_CLIENT_IRC_READ_TIMEOUT);
2384 mbuf_len = BIO_gets(fbio, mbuf, BUFSIZZ);
2385 if (mbuf_len < 1 || sscanf(mbuf, "%*s %d", &numeric) != 1)
2387 /* :example.net 451 STARTTLS :You have not registered */
2388 /* :example.net 421 STARTTLS :Unknown command */
2389 if ((numeric == 451 || numeric == 421)
2390 && strstr(mbuf, "STARTTLS") != NULL) {
2391 BIO_printf(bio_err, "STARTTLS not supported: %s", mbuf);
2394 if (numeric == 691) {
2395 BIO_printf(bio_err, "STARTTLS negotiation failed: ");
2396 ERR_print_errors(bio_err);
2399 } while (numeric != 670);
2401 (void)BIO_flush(fbio);
2404 if (numeric != 670) {
2405 BIO_printf(bio_err, "Server does not support STARTTLS.\n");
2413 /* SSL request packet */
2414 static const unsigned char ssl_req[] = {
2415 /* payload_length, sequence_id */
2416 0x20, 0x00, 0x00, 0x01,
2418 /* capability flags, CLIENT_SSL always set */
2419 0x85, 0xae, 0x7f, 0x00,
2420 /* max-packet size */
2421 0x00, 0x00, 0x00, 0x01,
2424 /* string[23] reserved (all [0]) */
2425 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
2426 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
2427 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
2430 int ssl_flg = 0x800;
2432 const unsigned char *packet = (const unsigned char *)sbuf;
2434 /* Receiving Initial Handshake packet. */
2435 bytes = BIO_read(sbio, (void *)packet, BUFSIZZ);
2437 BIO_printf(bio_err, "BIO_read failed\n");
2439 /* Packet length[3], Packet number[1] + minimum payload[17] */
2440 } else if (bytes < 21) {
2441 BIO_printf(bio_err, "MySQL packet too short.\n");
2443 } else if (bytes != (4 + packet[0] +
2445 (packet[2] << 16))) {
2446 BIO_printf(bio_err, "MySQL packet length does not match.\n");
2448 /* protocol version[1] */
2449 } else if (packet[4] != 0xA) {
2451 "Only MySQL protocol version 10 is supported.\n");
2456 /* server version[string+NULL] */
2459 BIO_printf(bio_err, "Cannot confirm server version. ");
2461 } else if (packet[pos++] == '\0') {
2466 /* make sure we have at least 15 bytes left in the packet */
2467 if (pos + 15 > bytes) {
2469 "MySQL server handshake packet is broken.\n");
2473 pos += 12; /* skip over conn id[4] + SALT[8] */
2474 if (packet[pos++] != '\0') { /* verify filler */
2476 "MySQL packet is broken.\n");
2480 /* capability flags[2] */
2481 if (!((packet[pos] + (packet[pos + 1] << 8)) & ssl_flg)) {
2482 BIO_printf(bio_err, "MySQL server does not support SSL.\n");
2486 /* Sending SSL Handshake packet. */
2487 BIO_write(sbio, ssl_req, sizeof(ssl_req));
2488 (void)BIO_flush(sbio);
2491 case PROTO_POSTGRES:
2493 static const unsigned char ssl_request[] = {
2494 /* Length SSLRequest */
2495 0, 0, 0, 8, 4, 210, 22, 47
2499 /* Send SSLRequest packet */
2500 BIO_write(sbio, ssl_request, 8);
2501 (void)BIO_flush(sbio);
2503 /* Reply will be a single S if SSL is enabled */
2504 bytes = BIO_read(sbio, sbuf, BUFSIZZ);
2505 if (bytes != 1 || sbuf[0] != 'S')
2512 BIO *fbio = BIO_new(BIO_f_buffer());
2514 BIO_push(fbio, sbio);
2515 BIO_gets(fbio, mbuf, BUFSIZZ);
2516 /* STARTTLS command requires CAPABILITIES... */
2517 BIO_printf(fbio, "CAPABILITIES\r\n");
2518 (void)BIO_flush(fbio);
2519 /* wait for multi-line CAPABILITIES response */
2521 mbuf_len = BIO_gets(fbio, mbuf, BUFSIZZ);
2522 if (strstr(mbuf, "STARTTLS"))
2524 } while (mbuf_len > 1 && mbuf[0] != '.');
2525 (void)BIO_flush(fbio);
2530 "Didn't find STARTTLS in server response,"
2531 " trying anyway...\n");
2532 BIO_printf(sbio, "STARTTLS\r\n");
2533 mbuf_len = BIO_read(sbio, mbuf, BUFSIZZ);
2535 BIO_printf(bio_err, "BIO_read failed\n");
2538 mbuf[mbuf_len] = '\0';
2539 if (strstr(mbuf, "382") == NULL) {
2540 BIO_printf(bio_err, "STARTTLS failed: %s", mbuf);
2548 BIO *fbio = BIO_new(BIO_f_buffer());
2550 BIO_push(fbio, sbio);
2551 /* wait for multi-line response to end from Sieve */
2553 mbuf_len = BIO_gets(fbio, mbuf, BUFSIZZ);
2555 * According to RFC 5804 § 1.7, capability
2556 * is case-insensitive, make it uppercase
2558 if (mbuf_len > 1 && mbuf[0] == '"') {
2559 make_uppercase(mbuf);
2560 if (strncmp(mbuf, "\"STARTTLS\"", 10) == 0)
2563 } while (mbuf_len > 1 && mbuf[0] == '"');
2564 (void)BIO_flush(fbio);
2569 "Didn't find STARTTLS in server response,"
2570 " trying anyway...\n");
2571 BIO_printf(sbio, "STARTTLS\r\n");
2572 mbuf_len = BIO_read(sbio, mbuf, BUFSIZZ);
2574 BIO_printf(bio_err, "BIO_read failed\n");
2577 mbuf[mbuf_len] = '\0';
2579 BIO_printf(bio_err, "STARTTLS failed: %s", mbuf);
2583 * According to RFC 5804 § 2.2, response codes are case-
2584 * insensitive, make it uppercase but preserve the response.
2586 strncpy(sbuf, mbuf, 2);
2587 make_uppercase(sbuf);
2588 if (strncmp(sbuf, "OK", 2) != 0) {
2589 BIO_printf(bio_err, "STARTTLS not supported: %s", mbuf);
2596 /* StartTLS Operation according to RFC 4511 */
2597 static char ldap_tls_genconf[] = "asn1=SEQUENCE:LDAPMessage\n"
2599 "messageID=INTEGER:1\n"
2600 "extendedReq=EXPLICIT:23A,IMPLICIT:0C,"
2601 "FORMAT:ASCII,OCT:1.3.6.1.4.1.1466.20037\n";
2603 char *genstr = NULL;
2605 ASN1_TYPE *atyp = NULL;
2606 BIO *ldapbio = BIO_new(BIO_s_mem());
2607 CONF *cnf = NCONF_new(NULL);
2613 BIO_puts(ldapbio, ldap_tls_genconf);
2614 if (NCONF_load_bio(cnf, ldapbio, &errline) <= 0) {
2618 BIO_printf(bio_err, "NCONF_load_bio failed\n");
2621 BIO_printf(bio_err, "Error on line %ld\n", errline);
2626 genstr = NCONF_get_string(cnf, "default", "asn1");
2627 if (genstr == NULL) {
2629 BIO_printf(bio_err, "NCONF_get_string failed\n");
2632 atyp = ASN1_generate_nconf(genstr, cnf);
2635 BIO_printf(bio_err, "ASN1_generate_nconf failed\n");
2640 /* Send SSLRequest packet */
2641 BIO_write(sbio, atyp->value.sequence->data,
2642 atyp->value.sequence->length);
2643 (void)BIO_flush(sbio);
2644 ASN1_TYPE_free(atyp);
2646 mbuf_len = BIO_read(sbio, mbuf, BUFSIZZ);
2648 BIO_printf(bio_err, "BIO_read failed\n");
2651 result = ldap_ExtendedResponse_parse(mbuf, mbuf_len);
2653 BIO_printf(bio_err, "ldap_ExtendedResponse_parse failed\n");
2655 } else if (result > 0) {
2656 BIO_printf(bio_err, "STARTTLS failed, LDAP Result Code: %i\n",
2665 if (early_data_file != NULL
2666 && ((SSL_get0_session(con) != NULL
2667 && SSL_SESSION_get_max_early_data(SSL_get0_session(con)) > 0)
2669 && SSL_SESSION_get_max_early_data(psksess) > 0))) {
2670 BIO *edfile = BIO_new_file(early_data_file, "r");
2671 size_t readbytes, writtenbytes;
2674 if (edfile == NULL) {
2675 BIO_printf(bio_err, "Cannot open early data file\n");
2680 if (!BIO_read_ex(edfile, cbuf, BUFSIZZ, &readbytes))
2683 while (!SSL_write_early_data(con, cbuf, readbytes, &writtenbytes)) {
2684 switch (SSL_get_error(con, 0)) {
2685 case SSL_ERROR_WANT_WRITE:
2686 case SSL_ERROR_WANT_ASYNC:
2687 case SSL_ERROR_WANT_READ:
2688 /* Just keep trying - busy waiting */
2691 BIO_printf(bio_err, "Error writing early data\n");
2693 ERR_print_errors(bio_err);
2706 if (SSL_is_dtls(con) && DTLSv1_get_timeout(con, &timeout))
2707 timeoutp = &timeout;
2711 if (!SSL_is_init_finished(con) && SSL_total_renegotiations(con) == 0
2712 && SSL_get_key_update_type(con) == SSL_KEY_UPDATE_NONE) {
2721 BIO_puts(bio_err, "CONNECTION ESTABLISHED\n");
2722 print_ssl_summary(con);
2725 print_stuff(bio_c_out, con, full_log);
2729 if (starttls_proto) {
2730 BIO_write(bio_err, mbuf, mbuf_len);
2731 /* We don't need to know any more */
2733 starttls_proto = PROTO_OFF;
2738 BIO_printf(bio_c_out,
2739 "drop connection and then reconnect\n");
2740 do_ssl_shutdown(con);
2741 SSL_set_connect_state(con);
2742 BIO_closesocket(SSL_get_fd(con));
2748 ssl_pending = read_ssl && SSL_has_pending(con);
2751 #if !defined(OPENSSL_SYS_WINDOWS) && !defined(OPENSSL_SYS_MSDOS)
2754 * Note that select() returns when read _would not block_,
2755 * and EOF satisfies that. To avoid a CPU-hogging loop,
2756 * set the flag so we exit.
2758 if (read_tty && !at_eof)
2759 openssl_fdset(fileno_stdin(), &readfds);
2760 #if !defined(OPENSSL_SYS_VMS)
2762 openssl_fdset(fileno_stdout(), &writefds);
2766 openssl_fdset(SSL_get_fd(con), &readfds);
2768 openssl_fdset(SSL_get_fd(con), &writefds);
2770 if (!tty_on || !write_tty) {
2772 openssl_fdset(SSL_get_fd(con), &readfds);
2774 openssl_fdset(SSL_get_fd(con), &writefds);
2779 * Note: under VMS with SOCKETSHR the second parameter is
2780 * currently of type (int *) whereas under other systems it is
2781 * (void *) if you don't have a cast it will choke the compiler:
2782 * if you do have a cast then you can either go for (int *) or
2785 #if defined(OPENSSL_SYS_WINDOWS) || defined(OPENSSL_SYS_MSDOS)
2787 * Under Windows/DOS we make the assumption that we can always
2788 * write to the tty: therefore if we need to write to the tty we
2789 * just fall through. Otherwise we timeout the select every
2790 * second and see if there are any keypresses. Note: this is a
2791 * hack, in a proper Windows application we wouldn't do this.
2798 i = select(width, (void *)&readfds, (void *)&writefds,
2800 if (!i && (!has_stdin_waiting() || !read_tty))
2803 i = select(width, (void *)&readfds, (void *)&writefds,
2807 i = select(width, (void *)&readfds, (void *)&writefds,
2811 BIO_printf(bio_err, "bad select %d\n",
2812 get_last_socket_error());
2817 if (SSL_is_dtls(con) && DTLSv1_handle_timeout(con) > 0)
2818 BIO_printf(bio_err, "TIMEOUT occurred\n");
2820 if (!ssl_pending && FD_ISSET(SSL_get_fd(con), &writefds)) {
2821 k = SSL_write(con, &(cbuf[cbuf_off]), (unsigned int)cbuf_len);
2822 switch (SSL_get_error(con, k)) {
2823 case SSL_ERROR_NONE:
2828 /* we have done a write(con,NULL,0); */
2829 if (cbuf_len <= 0) {
2832 } else { /* if (cbuf_len > 0) */
2838 case SSL_ERROR_WANT_WRITE:
2839 BIO_printf(bio_c_out, "write W BLOCK\n");
2843 case SSL_ERROR_WANT_ASYNC:
2844 BIO_printf(bio_c_out, "write A BLOCK\n");
2845 wait_for_async(con);
2849 case SSL_ERROR_WANT_READ:
2850 BIO_printf(bio_c_out, "write R BLOCK\n");
2855 case SSL_ERROR_WANT_X509_LOOKUP:
2856 BIO_printf(bio_c_out, "write X BLOCK\n");
2858 case SSL_ERROR_ZERO_RETURN:
2859 if (cbuf_len != 0) {
2860 BIO_printf(bio_c_out, "shutdown\n");
2869 case SSL_ERROR_SYSCALL:
2870 if ((k != 0) || (cbuf_len != 0)) {
2871 BIO_printf(bio_err, "write:errno=%d\n",
2872 get_last_socket_error());
2879 case SSL_ERROR_WANT_ASYNC_JOB:
2880 /* This shouldn't ever happen in s_client - treat as an error */
2882 ERR_print_errors(bio_err);
2886 #if defined(OPENSSL_SYS_WINDOWS) || defined(OPENSSL_SYS_MSDOS) || defined(OPENSSL_SYS_VMS)
2887 /* Assume Windows/DOS/BeOS can always write */
2888 else if (!ssl_pending && write_tty)
2890 else if (!ssl_pending && FD_ISSET(fileno_stdout(), &writefds))
2893 #ifdef CHARSET_EBCDIC
2894 ascii2ebcdic(&(sbuf[sbuf_off]), &(sbuf[sbuf_off]), sbuf_len);
2896 i = raw_write_stdout(&(sbuf[sbuf_off]), sbuf_len);
2899 BIO_printf(bio_c_out, "DONE\n");
2906 if (sbuf_len <= 0) {
2910 } else if (ssl_pending || FD_ISSET(SSL_get_fd(con), &readfds)) {
2915 SSL_renegotiate(con);
2920 k = SSL_read(con, sbuf, 1024 /* BUFSIZZ */ );
2922 switch (SSL_get_error(con, k)) {
2923 case SSL_ERROR_NONE:
2932 case SSL_ERROR_WANT_ASYNC:
2933 BIO_printf(bio_c_out, "read A BLOCK\n");
2934 wait_for_async(con);
2937 if ((read_tty == 0) && (write_ssl == 0))
2940 case SSL_ERROR_WANT_WRITE:
2941 BIO_printf(bio_c_out, "read W BLOCK\n");
2945 case SSL_ERROR_WANT_READ:
2946 BIO_printf(bio_c_out, "read R BLOCK\n");
2949 if ((read_tty == 0) && (write_ssl == 0))
2952 case SSL_ERROR_WANT_X509_LOOKUP:
2953 BIO_printf(bio_c_out, "read X BLOCK\n");
2955 case SSL_ERROR_SYSCALL:
2956 ret = get_last_socket_error();
2958 BIO_puts(bio_err, "CONNECTION CLOSED BY SERVER\n");
2960 BIO_printf(bio_err, "read:errno=%d\n", ret);
2962 case SSL_ERROR_ZERO_RETURN:
2963 BIO_printf(bio_c_out, "closed\n");
2966 case SSL_ERROR_WANT_ASYNC_JOB:
2967 /* This shouldn't ever happen in s_client. Treat as an error */
2969 ERR_print_errors(bio_err);
2973 /* OPENSSL_SYS_MSDOS includes OPENSSL_SYS_WINDOWS */
2974 #if defined(OPENSSL_SYS_MSDOS)
2975 else if (has_stdin_waiting())
2977 else if (FD_ISSET(fileno_stdin(), &readfds))
2983 i = raw_read_stdin(cbuf, BUFSIZZ / 2);
2985 /* both loops are skipped when i <= 0 */
2986 for (j = 0; j < i; j++)
2987 if (cbuf[j] == '\n')
2989 for (j = i - 1; j >= 0; j--) {
2990 cbuf[j + lf_num] = cbuf[j];
2991 if (cbuf[j] == '\n') {
2994 cbuf[j + lf_num] = '\r';
2997 assert(lf_num == 0);
2999 i = raw_read_stdin(cbuf, BUFSIZZ);
3000 #if !defined(OPENSSL_SYS_WINDOWS) && !defined(OPENSSL_SYS_MSDOS)
3005 if ((!c_ign_eof) && ((i <= 0) || (cbuf[0] == 'Q' && cmdletters))) {
3006 BIO_printf(bio_err, "DONE\n");
3011 if ((!c_ign_eof) && (cbuf[0] == 'R' && cmdletters)) {
3012 BIO_printf(bio_err, "RENEGOTIATING\n");
3013 SSL_renegotiate(con);
3017 if (!c_ign_eof && (cbuf[0] == 'K' || cbuf[0] == 'k' )
3019 BIO_printf(bio_err, "KEYUPDATE\n");
3021 cbuf[0] == 'K' ? SSL_KEY_UPDATE_REQUESTED
3022 : SSL_KEY_UPDATE_NOT_REQUESTED);
3025 #ifndef OPENSSL_NO_HEARTBEATS
3026 else if ((!c_ign_eof) && (cbuf[0] == 'B' && cmdletters)) {
3027 BIO_printf(bio_err, "HEARTBEATING\n");
3035 #ifdef CHARSET_EBCDIC
3036 ebcdic2ascii(cbuf, cbuf, i);
3048 print_stuff(bio_c_out, con, full_log);
3049 do_ssl_shutdown(con);
3052 * If we ended with an alert being sent, but still with data in the
3053 * network buffer to be read, then calling BIO_closesocket() will
3054 * result in a TCP-RST being sent. On some platforms (notably
3055 * Windows) then this will result in the peer immediately abandoning
3056 * the connection including any buffered alert data before it has
3057 * had a chance to be read. Shutting down the sending side first,
3058 * and then closing the socket sends TCP-FIN first followed by
3059 * TCP-RST. This seems to allow the peer to read the alert data.
3061 shutdown(SSL_get_fd(con), 1); /* SHUT_WR */
3063 * We just said we have nothing else to say, but it doesn't mean that
3064 * the other side has nothing. It's even recommended to consume incoming
3065 * data. [In testing context this ensures that alerts are passed on...]
3068 timeout.tv_usec = 500000; /* some extreme round-trip */
3071 openssl_fdset(s, &readfds);
3072 } while (select(s + 1, &readfds, NULL, NULL, &timeout) > 0
3073 && BIO_read(sbio, sbuf, BUFSIZZ) > 0);
3075 BIO_closesocket(SSL_get_fd(con));
3079 print_stuff(bio_c_out, con, 1);
3082 SSL_SESSION_free(psksess);
3083 #if !defined(OPENSSL_NO_NEXTPROTONEG)
3084 OPENSSL_free(next_proto.data);
3087 set_keylog_file(NULL, NULL);
3089 sk_X509_CRL_pop_free(crls, X509_CRL_free);
3091 sk_X509_pop_free(chain, X509_free);
3093 #ifndef OPENSSL_NO_SRP
3094 OPENSSL_free(srp_arg.srppassin);
3096 OPENSSL_free(connectstr);
3097 OPENSSL_free(bindstr);
3100 X509_VERIFY_PARAM_free(vpm);
3101 ssl_excert_free(exc);
3102 sk_OPENSSL_STRING_free(ssl_args);
3103 sk_OPENSSL_STRING_free(dane_tlsa_rrset);
3104 SSL_CONF_CTX_free(cctx);
3105 OPENSSL_clear_free(cbuf, BUFSIZZ);
3106 OPENSSL_clear_free(sbuf, BUFSIZZ);
3107 OPENSSL_clear_free(mbuf, BUFSIZZ);
3109 BIO_free(bio_c_out);
3111 BIO_free(bio_c_msg);
3116 static void print_stuff(BIO *bio, SSL *s, int full)
3120 const SSL_CIPHER *c;
3122 #ifndef OPENSSL_NO_COMP
3123 const COMP_METHOD *comp, *expansion;
3125 unsigned char *exportedkeymat;
3126 #ifndef OPENSSL_NO_CT
3127 const SSL_CTX *ctx = SSL_get_SSL_CTX(s);
3131 int got_a_chain = 0;
3133 sk = SSL_get_peer_cert_chain(s);
3137 BIO_printf(bio, "---\nCertificate chain\n");
3138 for (i = 0; i < sk_X509_num(sk); i++) {
3139 BIO_printf(bio, "%2d s:", i);
3140 X509_NAME_print_ex(bio, X509_get_subject_name(sk_X509_value(sk, i)), 0, get_nameopt());
3141 BIO_puts(bio, "\n");
3142 BIO_printf(bio, " i:");
3143 X509_NAME_print_ex(bio, X509_get_issuer_name(sk_X509_value(sk, i)), 0, get_nameopt());
3144 BIO_puts(bio, "\n");
3146 PEM_write_bio_X509(bio, sk_X509_value(sk, i));
3150 BIO_printf(bio, "---\n");
3151 peer = SSL_get_peer_certificate(s);
3153 BIO_printf(bio, "Server certificate\n");
3155 /* Redundant if we showed the whole chain */
3156 if (!(c_showcerts && got_a_chain))
3157 PEM_write_bio_X509(bio, peer);
3158 dump_cert_text(bio, peer);
3160 BIO_printf(bio, "no peer certificate available\n");
3162 print_ca_names(bio, s);
3164 ssl_print_sigalgs(bio, s);
3165 ssl_print_tmp_key(bio, s);
3167 #ifndef OPENSSL_NO_CT
3169 * When the SSL session is anonymous, or resumed via an abbreviated
3170 * handshake, no SCTs are provided as part of the handshake. While in
3171 * a resumed session SCTs may be present in the session's certificate,
3172 * no callbacks are invoked to revalidate these, and in any case that
3173 * set of SCTs may be incomplete. Thus it makes little sense to
3174 * attempt to display SCTs from a resumed session's certificate, and of
3175 * course none are associated with an anonymous peer.
3177 if (peer != NULL && !SSL_session_reused(s) && SSL_ct_is_enabled(s)) {
3178 const STACK_OF(SCT) *scts = SSL_get0_peer_scts(s);
3179 int sct_count = scts != NULL ? sk_SCT_num(scts) : 0;
3181 BIO_printf(bio, "---\nSCTs present (%i)\n", sct_count);
3182 if (sct_count > 0) {
3183 const CTLOG_STORE *log_store = SSL_CTX_get0_ctlog_store(ctx);
3185 BIO_printf(bio, "---\n");
3186 for (i = 0; i < sct_count; ++i) {
3187 SCT *sct = sk_SCT_value(scts, i);
3189 BIO_printf(bio, "SCT validation status: %s\n",
3190 SCT_validation_status_string(sct));
3191 SCT_print(sct, bio, 0, log_store);
3192 if (i < sct_count - 1)
3193 BIO_printf(bio, "\n---\n");
3195 BIO_printf(bio, "\n");
3201 "---\nSSL handshake has read %ju bytes "
3202 "and written %ju bytes\n",
3203 BIO_number_read(SSL_get_rbio(s)),
3204 BIO_number_written(SSL_get_wbio(s)));
3206 print_verify_detail(s, bio);
3207 BIO_printf(bio, (SSL_session_reused(s) ? "---\nReused, " : "---\nNew, "));
3208 c = SSL_get_current_cipher(s);
3209 BIO_printf(bio, "%s, Cipher is %s\n",
3210 SSL_CIPHER_get_version(c), SSL_CIPHER_get_name(c));
3214 pktmp = X509_get0_pubkey(peer);
3215 BIO_printf(bio, "Server public key is %d bit\n",
3216 EVP_PKEY_bits(pktmp));
3218 BIO_printf(bio, "Secure Renegotiation IS%s supported\n",
3219 SSL_get_secure_renegotiation_support(s) ? "" : " NOT");
3220 #ifndef OPENSSL_NO_COMP
3221 comp = SSL_get_current_compression(s);
3222 expansion = SSL_get_current_expansion(s);
3223 BIO_printf(bio, "Compression: %s\n",
3224 comp ? SSL_COMP_get_name(comp) : "NONE");
3225 BIO_printf(bio, "Expansion: %s\n",
3226 expansion ? SSL_COMP_get_name(expansion) : "NONE");
3231 /* Print out local port of connection: useful for debugging */
3233 union BIO_sock_info_u info;
3235 sock = SSL_get_fd(s);
3236 if ((info.addr = BIO_ADDR_new()) != NULL
3237 && BIO_sock_info(sock, BIO_SOCK_INFO_ADDRESS, &info)) {
3238 BIO_printf(bio_c_out, "LOCAL PORT is %u\n",
3239 ntohs(BIO_ADDR_rawport(info.addr)));
3241 BIO_ADDR_free(info.addr);
3245 #if !defined(OPENSSL_NO_NEXTPROTONEG)
3246 if (next_proto.status != -1) {
3247 const unsigned char *proto;
3248 unsigned int proto_len;
3249 SSL_get0_next_proto_negotiated(s, &proto, &proto_len);
3250 BIO_printf(bio, "Next protocol: (%d) ", next_proto.status);
3251 BIO_write(bio, proto, proto_len);
3252 BIO_write(bio, "\n", 1);
3256 const unsigned char *proto;
3257 unsigned int proto_len;
3258 SSL_get0_alpn_selected(s, &proto, &proto_len);
3259 if (proto_len > 0) {
3260 BIO_printf(bio, "ALPN protocol: ");
3261 BIO_write(bio, proto, proto_len);
3262 BIO_write(bio, "\n", 1);
3264 BIO_printf(bio, "No ALPN negotiated\n");
3267 #ifndef OPENSSL_NO_SRTP
3269 SRTP_PROTECTION_PROFILE *srtp_profile =
3270 SSL_get_selected_srtp_profile(s);
3273 BIO_printf(bio, "SRTP Extension negotiated, profile=%s\n",
3274 srtp_profile->name);
3278 if (SSL_version(s) == TLS1_3_VERSION) {
3279 switch (SSL_get_early_data_status(s)) {
3280 case SSL_EARLY_DATA_NOT_SENT:
3281 BIO_printf(bio, "Early data was not sent\n");
3284 case SSL_EARLY_DATA_REJECTED:
3285 BIO_printf(bio, "Early data was rejected\n");
3288 case SSL_EARLY_DATA_ACCEPTED:
3289 BIO_printf(bio, "Early data was accepted\n");
3295 SSL_SESSION_print(bio, SSL_get_session(s));
3296 if (SSL_get_session(s) != NULL && keymatexportlabel != NULL) {
3297 BIO_printf(bio, "Keying material exporter:\n");
3298 BIO_printf(bio, " Label: '%s'\n", keymatexportlabel);
3299 BIO_printf(bio, " Length: %i bytes\n", keymatexportlen);
3300 exportedkeymat = app_malloc(keymatexportlen, "export key");
3301 if (!SSL_export_keying_material(s, exportedkeymat,
3304 strlen(keymatexportlabel),
3306 BIO_printf(bio, " Error\n");
3308 BIO_printf(bio, " Keying material: ");
3309 for (i = 0; i < keymatexportlen; i++)
3310 BIO_printf(bio, "%02X", exportedkeymat[i]);
3311 BIO_printf(bio, "\n");
3313 OPENSSL_free(exportedkeymat);
3315 BIO_printf(bio, "---\n");
3317 /* flush, or debugging output gets mixed with http response */
3318 (void)BIO_flush(bio);
3321 # ifndef OPENSSL_NO_OCSP
3322 static int ocsp_resp_cb(SSL *s, void *arg)
3324 const unsigned char *p;
3327 len = SSL_get_tlsext_status_ocsp_resp(s, &p);
3328 BIO_puts(arg, "OCSP response: ");
3330 BIO_puts(arg, "no response sent\n");
3333 rsp = d2i_OCSP_RESPONSE(NULL, &p, len);
3335 BIO_puts(arg, "response parse error\n");
3336 BIO_dump_indent(arg, (char *)p, len, 4);
3339 BIO_puts(arg, "\n======================================\n");
3340 OCSP_RESPONSE_print(arg, rsp, 0);
3341 BIO_puts(arg, "======================================\n");
3342 OCSP_RESPONSE_free(rsp);
3347 static int ldap_ExtendedResponse_parse(const char *buf, long rem)
3349 const unsigned char *cur, *end;
3351 int tag, xclass, inf, ret = -1;
3353 cur = (const unsigned char *)buf;
3359 * LDAPMessage ::= SEQUENCE {
3360 * messageID MessageID,
3361 * protocolOp CHOICE {
3363 * extendedResp ExtendedResponse,
3365 * controls [0] Controls OPTIONAL }
3367 * ExtendedResponse ::= [APPLICATION 24] SEQUENCE {
3368 * COMPONENTS OF LDAPResult,
3369 * responseName [10] LDAPOID OPTIONAL,
3370 * responseValue [11] OCTET STRING OPTIONAL }
3372 * LDAPResult ::= SEQUENCE {
3373 * resultCode ENUMERATED {
3379 * diagnosticMessage LDAPString,
3380 * referral [3] Referral OPTIONAL }
3384 inf = ASN1_get_object(&cur, &len, &tag, &xclass, rem);
3385 if (inf != V_ASN1_CONSTRUCTED || tag != V_ASN1_SEQUENCE ||
3386 (rem = end - cur, len > rem)) {
3387 BIO_printf(bio_err, "Unexpected LDAP response\n");
3391 rem = len; /* ensure that we don't overstep the SEQUENCE */
3393 /* pull MessageID */
3394 inf = ASN1_get_object(&cur, &len, &tag, &xclass, rem);
3395 if (inf != V_ASN1_UNIVERSAL || tag != V_ASN1_INTEGER ||
3396 (rem = end - cur, len > rem)) {
3397 BIO_printf(bio_err, "No MessageID\n");
3401 cur += len; /* shall we check for MessageId match or just skip? */
3403 /* pull [APPLICATION 24] */
3405 inf = ASN1_get_object(&cur, &len, &tag, &xclass, rem);
3406 if (inf != V_ASN1_CONSTRUCTED || xclass != V_ASN1_APPLICATION ||
3408 BIO_printf(bio_err, "Not ExtendedResponse\n");
3412 /* pull resultCode */
3414 inf = ASN1_get_object(&cur, &len, &tag, &xclass, rem);
3415 if (inf != V_ASN1_UNIVERSAL || tag != V_ASN1_ENUMERATED || len == 0 ||
3416 (rem = end - cur, len > rem)) {
3417 BIO_printf(bio_err, "Not LDAPResult\n");
3421 /* len should always be one, but just in case... */
3422 for (ret = 0, inf = 0; inf < len; inf++) {
3426 /* There is more data, but we don't care... */
3431 #endif /* OPENSSL_NO_SOCK */