Rich Salz | 846e33c | 2016-05-17 14:18:30 -0400 | [diff] [blame] | 1 | /* |
Richard Levitte | 48e5119 | 2018-01-19 10:49:22 +0100 | [diff] [blame] | 2 | * Copyright 1995-2018 The OpenSSL Project Authors. All Rights Reserved. |
Rich Salz | c80149d | 2017-06-20 10:14:36 -0400 | [diff] [blame] | 3 | * Copyright 2005 Nokia. All rights reserved. |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 4 | * |
Rich Salz | 846e33c | 2016-05-17 14:18:30 -0400 | [diff] [blame] | 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 |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 9 | */ |
Rich Salz | 846e33c | 2016-05-17 14:18:30 -0400 | [diff] [blame] | 10 | |
Pauli | 07016a8 | 2017-08-24 09:05:07 +1000 | [diff] [blame] | 11 | #include "e_os.h" |
Nils Larsch | ddac197 | 2006-03-10 23:06:27 +0000 | [diff] [blame] | 12 | #include <ctype.h> |
Ulf Möller | 8c197cc | 1999-07-28 23:25:59 +0000 | [diff] [blame] | 13 | #include <stdio.h> |
| 14 | #include <stdlib.h> |
| 15 | #include <string.h> |
Viktor Dukhovni | cddd424 | 2015-12-29 14:25:50 -0500 | [diff] [blame] | 16 | #include <errno.h> |
Richard Levitte | be1bd92 | 2001-02-20 14:07:03 +0000 | [diff] [blame] | 17 | #include <openssl/e_os2.h> |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 18 | |
Matt Caswell | f9e5503 | 2016-03-21 15:32:40 +0000 | [diff] [blame] | 19 | #ifndef OPENSSL_NO_SOCK |
| 20 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 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 | */ |
Richard Levitte | bc36ee6 | 2001-02-20 08:13:47 +0000 | [diff] [blame] | 27 | #if defined(OPENSSL_SYS_VMS_DECC) && !defined(__U_INT) |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 28 | # define __U_INT |
Ulf Möller | 7d7d2cb | 1999-05-13 11:37:32 +0000 | [diff] [blame] | 29 | typedef unsigned int u_int; |
| 30 | #endif |
| 31 | |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 32 | #include "apps.h" |
Richard Levitte | dab2cd6 | 2018-01-31 11:13:10 +0100 | [diff] [blame] | 33 | #include "progs.h" |
Bodo Möller | ec57782 | 1999-04-23 22:13:45 +0000 | [diff] [blame] | 34 | #include <openssl/x509.h> |
| 35 | #include <openssl/ssl.h> |
| 36 | #include <openssl/err.h> |
| 37 | #include <openssl/pem.h> |
Geoff Thorpe | 1372965 | 2001-09-12 02:39:06 +0000 | [diff] [blame] | 38 | #include <openssl/rand.h> |
Dr. Stephen Henson | 67c8e7f | 2007-09-26 21:56:59 +0000 | [diff] [blame] | 39 | #include <openssl/ocsp.h> |
Geoff Thorpe | 1e26a8b | 2008-03-16 21:05:46 +0000 | [diff] [blame] | 40 | #include <openssl/bn.h> |
Matt Caswell | 5e6f977 | 2015-09-16 23:09:15 +0100 | [diff] [blame] | 41 | #include <openssl/async.h> |
Ben Laurie | edc032b | 2011-03-12 17:01:19 +0000 | [diff] [blame] | 42 | #ifndef OPENSSL_NO_SRP |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 43 | # include <openssl/srp.h> |
Ben Laurie | edc032b | 2011-03-12 17:01:19 +0000 | [diff] [blame] | 44 | #endif |
Rob Percival | dd696a5 | 2016-03-02 13:34:05 +0000 | [diff] [blame] | 45 | #ifndef OPENSSL_NO_CT |
| 46 | # include <openssl/ct.h> |
| 47 | #endif |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 48 | #include "s_apps.h" |
Ben Laurie | 36d16f8 | 2005-04-26 16:02:40 +0000 | [diff] [blame] | 49 | #include "timeouts.h" |
Rich Salz | 0e97f1e | 2017-08-21 17:22:19 -0400 | [diff] [blame] | 50 | #include "internal/sockets.h" |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 51 | |
Emilia Kasper | efc943b | 2016-02-22 16:58:36 +0100 | [diff] [blame] | 52 | #if defined(__has_feature) |
| 53 | # if __has_feature(memory_sanitizer) |
| 54 | # include <sanitizer/msan_interface.h> |
| 55 | # endif |
| 56 | #endif |
| 57 | |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 58 | #undef BUFSIZZ |
| 59 | #define BUFSIZZ 1024*8 |
Nathan Phillip Brink | cfb4f1e | 2015-05-13 16:00:21 -0400 | [diff] [blame] | 60 | #define S_CLIENT_IRC_READ_TIMEOUT 8 |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 61 | |
Viktor Dukhovni | cddd424 | 2015-12-29 14:25:50 -0500 | [diff] [blame] | 62 | static char *prog; |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 63 | static int c_debug = 0; |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 64 | static int c_showcerts = 0; |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 65 | static char *keymatexportlabel = NULL; |
| 66 | static int keymatexportlen = 20; |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 67 | static BIO *bio_c_out = NULL; |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 68 | static int c_quiet = 0; |
Matt Caswell | be62b22 | 2017-01-13 14:25:15 +0000 | [diff] [blame] | 69 | static char *sess_out = NULL; |
Matt Caswell | e261bdd | 2017-06-12 16:57:06 +0100 | [diff] [blame] | 70 | static SSL_SESSION *psksess = NULL; |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 71 | |
Rob Percival | 0d4d5ab | 2016-03-10 19:49:34 +0000 | [diff] [blame] | 72 | static void print_stuff(BIO *berr, SSL *con, int full); |
Matt Caswell | 3e41ac3 | 2016-03-21 16:54:53 +0000 | [diff] [blame] | 73 | #ifndef OPENSSL_NO_OCSP |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 74 | static int ocsp_resp_cb(SSL *s, void *arg); |
Matt Caswell | 3e41ac3 | 2016-03-21 16:54:53 +0000 | [diff] [blame] | 75 | #endif |
Robert Scheck | 398b0bb | 2017-02-27 00:44:14 +0100 | [diff] [blame] | 76 | static int ldap_ExtendedResponse_parse(const char *buf, long rem); |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 77 | |
Viktor Dukhovni | cddd424 | 2015-12-29 14:25:50 -0500 | [diff] [blame] | 78 | static int saved_errno; |
| 79 | |
| 80 | static void save_errno(void) |
| 81 | { |
| 82 | saved_errno = errno; |
| 83 | errno = 0; |
| 84 | } |
| 85 | |
| 86 | static int restore_errno(void) |
| 87 | { |
| 88 | int ret = errno; |
| 89 | errno = saved_errno; |
| 90 | return ret; |
| 91 | } |
| 92 | |
Matt Caswell | ec44792 | 2016-01-25 15:00:10 +0000 | [diff] [blame] | 93 | static void do_ssl_shutdown(SSL *ssl) |
| 94 | { |
| 95 | int ret; |
| 96 | |
| 97 | do { |
| 98 | /* We only do unidirectional shutdown */ |
| 99 | ret = SSL_shutdown(ssl); |
| 100 | if (ret < 0) { |
| 101 | switch (SSL_get_error(ssl, ret)) { |
| 102 | case SSL_ERROR_WANT_READ: |
| 103 | case SSL_ERROR_WANT_WRITE: |
| 104 | case SSL_ERROR_WANT_ASYNC: |
Matt Caswell | fc7f190 | 2016-05-03 17:55:00 +0100 | [diff] [blame] | 105 | case SSL_ERROR_WANT_ASYNC_JOB: |
Matt Caswell | ec44792 | 2016-01-25 15:00:10 +0000 | [diff] [blame] | 106 | /* We just do busy waiting. Nothing clever */ |
| 107 | continue; |
| 108 | } |
| 109 | ret = 0; |
| 110 | } |
| 111 | } while (ret < 0); |
| 112 | } |
| 113 | |
Nils Larsch | ddac197 | 2006-03-10 23:06:27 +0000 | [diff] [blame] | 114 | /* Default PSK identity and key */ |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 115 | static char *psk_identity = "Client_identity"; |
Nils Larsch | ddac197 | 2006-03-10 23:06:27 +0000 | [diff] [blame] | 116 | |
Matt Caswell | 14e3535 | 2017-06-13 14:28:45 +0100 | [diff] [blame] | 117 | #ifndef OPENSSL_NO_PSK |
Nils Larsch | ddac197 | 2006-03-10 23:06:27 +0000 | [diff] [blame] | 118 | static unsigned int psk_client_cb(SSL *ssl, const char *hint, char *identity, |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 119 | unsigned int max_identity_len, |
| 120 | unsigned char *psk, |
| 121 | unsigned int max_psk_len) |
| 122 | { |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 123 | int ret; |
Dr. Stephen Henson | 6ec6d52 | 2016-06-08 19:01:42 +0100 | [diff] [blame] | 124 | long key_len; |
| 125 | unsigned char *key; |
Nils Larsch | ddac197 | 2006-03-10 23:06:27 +0000 | [diff] [blame] | 126 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 127 | if (c_debug) |
| 128 | BIO_printf(bio_c_out, "psk_client_cb\n"); |
| 129 | if (!hint) { |
| 130 | /* no ServerKeyExchange message */ |
| 131 | if (c_debug) |
| 132 | BIO_printf(bio_c_out, |
| 133 | "NULL received PSK identity hint, continuing anyway\n"); |
Paul Yang | 2234212 | 2017-06-13 01:24:02 +0800 | [diff] [blame] | 134 | } else if (c_debug) { |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 135 | BIO_printf(bio_c_out, "Received PSK identity hint '%s'\n", hint); |
Paul Yang | 2234212 | 2017-06-13 01:24:02 +0800 | [diff] [blame] | 136 | } |
Nils Larsch | ddac197 | 2006-03-10 23:06:27 +0000 | [diff] [blame] | 137 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 138 | /* |
| 139 | * lookup PSK identity and PSK key based on the given identity hint here |
| 140 | */ |
| 141 | ret = BIO_snprintf(identity, max_identity_len, "%s", psk_identity); |
| 142 | if (ret < 0 || (unsigned int)ret > max_identity_len) |
| 143 | goto out_err; |
| 144 | if (c_debug) |
| 145 | BIO_printf(bio_c_out, "created identity '%s' len=%d\n", identity, |
| 146 | ret); |
Dr. Stephen Henson | 6ec6d52 | 2016-06-08 19:01:42 +0100 | [diff] [blame] | 147 | |
| 148 | /* convert the PSK key to binary */ |
| 149 | key = OPENSSL_hexstr2buf(psk_key, &key_len); |
| 150 | if (key == NULL) { |
| 151 | BIO_printf(bio_err, "Could not convert PSK key '%s' to buffer\n", |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 152 | psk_key); |
Nils Larsch | ddac197 | 2006-03-10 23:06:27 +0000 | [diff] [blame] | 153 | return 0; |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 154 | } |
Benjamin Kaduk | 96a5d7f | 2017-03-14 11:37:42 -0500 | [diff] [blame] | 155 | if (max_psk_len > INT_MAX || key_len > (long)max_psk_len) { |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 156 | BIO_printf(bio_err, |
Dr. Stephen Henson | 6ec6d52 | 2016-06-08 19:01:42 +0100 | [diff] [blame] | 157 | "psk buffer of callback is too small (%d) for key (%ld)\n", |
| 158 | max_psk_len, key_len); |
| 159 | OPENSSL_free(key); |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 160 | return 0; |
| 161 | } |
| 162 | |
Dr. Stephen Henson | 6ec6d52 | 2016-06-08 19:01:42 +0100 | [diff] [blame] | 163 | memcpy(psk, key, key_len); |
| 164 | OPENSSL_free(key); |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 165 | |
| 166 | if (c_debug) |
Dr. Stephen Henson | 6ec6d52 | 2016-06-08 19:01:42 +0100 | [diff] [blame] | 167 | BIO_printf(bio_c_out, "created PSK len=%ld\n", key_len); |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 168 | |
Dr. Stephen Henson | 6ec6d52 | 2016-06-08 19:01:42 +0100 | [diff] [blame] | 169 | return key_len; |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 170 | out_err: |
| 171 | if (c_debug) |
| 172 | BIO_printf(bio_err, "Error in PSK client callback\n"); |
| 173 | return 0; |
| 174 | } |
Nils Larsch | ddac197 | 2006-03-10 23:06:27 +0000 | [diff] [blame] | 175 | #endif |
| 176 | |
Matt Caswell | adfc378 | 2017-06-21 11:58:10 +0100 | [diff] [blame] | 177 | const unsigned char tls13_aes128gcmsha256_id[] = { 0x13, 0x01 }; |
| 178 | const unsigned char tls13_aes256gcmsha384_id[] = { 0x13, 0x02 }; |
Matt Caswell | 5ffff59 | 2017-06-12 19:12:13 +0100 | [diff] [blame] | 179 | |
Matt Caswell | e261bdd | 2017-06-12 16:57:06 +0100 | [diff] [blame] | 180 | static int psk_use_session_cb(SSL *s, const EVP_MD *md, |
| 181 | const unsigned char **id, size_t *idlen, |
| 182 | SSL_SESSION **sess) |
| 183 | { |
Matt Caswell | 5ffff59 | 2017-06-12 19:12:13 +0100 | [diff] [blame] | 184 | SSL_SESSION *usesess = NULL; |
| 185 | const SSL_CIPHER *cipher = NULL; |
| 186 | |
| 187 | if (psksess != NULL) { |
| 188 | SSL_SESSION_up_ref(psksess); |
| 189 | usesess = psksess; |
| 190 | } else { |
| 191 | long key_len; |
| 192 | unsigned char *key = OPENSSL_hexstr2buf(psk_key, &key_len); |
| 193 | |
| 194 | if (key == NULL) { |
| 195 | BIO_printf(bio_err, "Could not convert PSK key '%s' to buffer\n", |
| 196 | psk_key); |
| 197 | return 0; |
| 198 | } |
| 199 | |
Matt Caswell | e73c6ea | 2018-03-06 14:12:10 +0000 | [diff] [blame] | 200 | /* We default to SHA-256 */ |
| 201 | cipher = SSL_CIPHER_find(s, tls13_aes128gcmsha256_id); |
Matt Caswell | 5ffff59 | 2017-06-12 19:12:13 +0100 | [diff] [blame] | 202 | if (cipher == NULL) { |
Matt Caswell | e73c6ea | 2018-03-06 14:12:10 +0000 | [diff] [blame] | 203 | BIO_printf(bio_err, "Error finding suitable ciphersuite\n"); |
| 204 | return 0; |
Matt Caswell | 5ffff59 | 2017-06-12 19:12:13 +0100 | [diff] [blame] | 205 | } |
Matt Caswell | e73c6ea | 2018-03-06 14:12:10 +0000 | [diff] [blame] | 206 | |
Matt Caswell | 5ffff59 | 2017-06-12 19:12:13 +0100 | [diff] [blame] | 207 | usesess = SSL_SESSION_new(); |
| 208 | if (usesess == NULL |
| 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)) { |
| 212 | OPENSSL_free(key); |
| 213 | goto err; |
| 214 | } |
| 215 | OPENSSL_free(key); |
| 216 | } |
| 217 | |
| 218 | cipher = SSL_SESSION_get0_cipher(usesess); |
Matt Caswell | e261bdd | 2017-06-12 16:57:06 +0100 | [diff] [blame] | 219 | if (cipher == NULL) |
Matt Caswell | 5ffff59 | 2017-06-12 19:12:13 +0100 | [diff] [blame] | 220 | goto err; |
Matt Caswell | e261bdd | 2017-06-12 16:57:06 +0100 | [diff] [blame] | 221 | |
Matt Caswell | dc87d5a | 2017-06-16 16:26:25 +0100 | [diff] [blame] | 222 | if (md != NULL && SSL_CIPHER_get_handshake_digest(cipher) != md) { |
| 223 | /* PSK not usable, ignore it */ |
| 224 | *id = NULL; |
| 225 | *idlen = 0; |
| 226 | *sess = NULL; |
| 227 | SSL_SESSION_free(usesess); |
| 228 | } else { |
| 229 | *sess = usesess; |
| 230 | *id = (unsigned char *)psk_identity; |
| 231 | *idlen = strlen(psk_identity); |
| 232 | } |
Matt Caswell | e261bdd | 2017-06-12 16:57:06 +0100 | [diff] [blame] | 233 | |
| 234 | return 1; |
Matt Caswell | 5ffff59 | 2017-06-12 19:12:13 +0100 | [diff] [blame] | 235 | |
| 236 | err: |
| 237 | SSL_SESSION_free(usesess); |
| 238 | return 0; |
Matt Caswell | e261bdd | 2017-06-12 16:57:06 +0100 | [diff] [blame] | 239 | } |
| 240 | |
Bodo Möller | ed3883d | 2006-01-02 23:14:37 +0000 | [diff] [blame] | 241 | /* This is a context that we pass to callbacks */ |
| 242 | typedef struct tlsextctx_st { |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 243 | BIO *biodebug; |
| 244 | int ack; |
Bodo Möller | ed3883d | 2006-01-02 23:14:37 +0000 | [diff] [blame] | 245 | } tlsextctx; |
| 246 | |
Rich Salz | 6d23cf9 | 2015-01-12 17:29:26 -0500 | [diff] [blame] | 247 | static int ssl_servername_cb(SSL *s, int *ad, void *arg) |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 248 | { |
| 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; |
| 253 | else |
| 254 | BIO_printf(bio_err, "Can't use SSL_get_servername\n"); |
Ben Laurie | ee2ffc2 | 2010-07-28 10:06:55 +0000 | [diff] [blame] | 255 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 256 | return SSL_TLSEXT_ERR_OK; |
| 257 | } |
| 258 | |
Matt Caswell | e481f9b | 2015-05-15 10:49:56 +0100 | [diff] [blame] | 259 | #ifndef OPENSSL_NO_SRP |
Ben Laurie | edc032b | 2011-03-12 17:01:19 +0000 | [diff] [blame] | 260 | |
| 261 | /* This is a context that we pass to all callbacks */ |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 262 | typedef struct srp_arg_st { |
| 263 | char *srppassin; |
| 264 | char *srplogin; |
| 265 | int msg; /* copy from c_msg */ |
| 266 | int debug; /* copy from c_debug */ |
| 267 | int amp; /* allow more groups */ |
FdaSilvaYY | bde136c | 2016-03-18 19:02:17 +0100 | [diff] [blame] | 268 | int strength; /* minimal size for N */ |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 269 | } SRP_ARG; |
Ben Laurie | edc032b | 2011-03-12 17:01:19 +0000 | [diff] [blame] | 270 | |
Matt Caswell | e481f9b | 2015-05-15 10:49:56 +0100 | [diff] [blame] | 271 | # define SRP_NUMBER_ITERATIONS_FOR_PRIME 64 |
Ben Laurie | edc032b | 2011-03-12 17:01:19 +0000 | [diff] [blame] | 272 | |
Dr. Stephen Henson | f2fc307 | 2011-12-14 22:17:06 +0000 | [diff] [blame] | 273 | static int srp_Verify_N_and_g(const BIGNUM *N, const BIGNUM *g) |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 274 | { |
| 275 | BN_CTX *bn_ctx = BN_CTX_new(); |
| 276 | BIGNUM *p = BN_new(); |
| 277 | BIGNUM *r = BN_new(); |
| 278 | int ret = |
| 279 | g != NULL && N != NULL && bn_ctx != NULL && BN_is_odd(N) && |
David Benjamin | 748e853 | 2016-06-24 11:05:48 -0400 | [diff] [blame] | 280 | BN_is_prime_ex(N, SRP_NUMBER_ITERATIONS_FOR_PRIME, bn_ctx, NULL) == 1 && |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 281 | p != NULL && BN_rshift1(p, N) && |
| 282 | /* p = (N-1)/2 */ |
David Benjamin | 748e853 | 2016-06-24 11:05:48 -0400 | [diff] [blame] | 283 | BN_is_prime_ex(p, SRP_NUMBER_ITERATIONS_FOR_PRIME, bn_ctx, NULL) == 1 && |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 284 | r != NULL && |
| 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; |
Ben Laurie | edc032b | 2011-03-12 17:01:19 +0000 | [diff] [blame] | 288 | |
Rich Salz | 23a1d5e | 2015-04-30 21:37:06 -0400 | [diff] [blame] | 289 | BN_free(r); |
| 290 | BN_free(p); |
| 291 | BN_CTX_free(bn_ctx); |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 292 | return ret; |
| 293 | } |
Ben Laurie | edc032b | 2011-03-12 17:01:19 +0000 | [diff] [blame] | 294 | |
Matt Caswell | c80fd6b | 2015-01-16 09:21:50 +0000 | [diff] [blame] | 295 | /*- |
| 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. |
| 300 | * |
| 301 | * An application does not need the call back at all if |
FdaSilvaYY | bde136c | 2016-03-18 19:02:17 +0100 | [diff] [blame] | 302 | * only the standard groups are used. In real life situations, |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 303 | * client and server already share well known groups, |
| 304 | * thus there is no need to verify them. |
Matt Caswell | c80fd6b | 2015-01-16 09:21:50 +0000 | [diff] [blame] | 305 | * Furthermore, in case that a server actually proposes a group that |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 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 |
Matt Caswell | c80fd6b | 2015-01-16 09:21:50 +0000 | [diff] [blame] | 308 | * primality tests are rather cpu consuming. |
| 309 | */ |
Dr. Stephen Henson | f2fc307 | 2011-12-14 22:17:06 +0000 | [diff] [blame] | 310 | |
Rich Salz | 6d23cf9 | 2015-01-12 17:29:26 -0500 | [diff] [blame] | 311 | static int ssl_srp_verify_param_cb(SSL *s, void *arg) |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 312 | { |
| 313 | SRP_ARG *srp_arg = (SRP_ARG *)arg; |
| 314 | BIGNUM *N = NULL, *g = NULL; |
Rich Salz | 75ebbd9 | 2015-05-06 13:43:59 -0400 | [diff] [blame] | 315 | |
| 316 | if (((N = SSL_get_srp_N(s)) == NULL) || ((g = SSL_get_srp_g(s)) == NULL)) |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 317 | return 0; |
| 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"); |
| 325 | } |
Ben Laurie | edc032b | 2011-03-12 17:01:19 +0000 | [diff] [blame] | 326 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 327 | if (SRP_check_known_gN_param(g, N)) |
| 328 | return 1; |
Ben Laurie | edc032b | 2011-03-12 17:01:19 +0000 | [diff] [blame] | 329 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 330 | if (srp_arg->amp == 1) { |
| 331 | if (srp_arg->debug) |
| 332 | BIO_printf(bio_err, |
| 333 | "SRP param N and g are not known params, going to check deeper.\n"); |
Ben Laurie | edc032b | 2011-03-12 17:01:19 +0000 | [diff] [blame] | 334 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 335 | /* |
| 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. |
| 339 | */ |
| 340 | if (BN_num_bits(g) <= BN_BITS && srp_Verify_N_and_g(N, g)) |
| 341 | return 1; |
| 342 | } |
| 343 | BIO_printf(bio_err, "SRP param N and g rejected.\n"); |
| 344 | return 0; |
| 345 | } |
Ben Laurie | edc032b | 2011-03-12 17:01:19 +0000 | [diff] [blame] | 346 | |
Matt Caswell | e481f9b | 2015-05-15 10:49:56 +0100 | [diff] [blame] | 347 | # define PWD_STRLEN 1024 |
Ben Laurie | edc032b | 2011-03-12 17:01:19 +0000 | [diff] [blame] | 348 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 349 | static char *ssl_give_srp_client_pwd_cb(SSL *s, void *arg) |
| 350 | { |
| 351 | SRP_ARG *srp_arg = (SRP_ARG *)arg; |
Rich Salz | 68dc682 | 2015-04-30 17:48:31 -0400 | [diff] [blame] | 352 | char *pass = app_malloc(PWD_STRLEN + 1, "SRP password buffer"); |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 353 | PW_CB_DATA cb_tmp; |
| 354 | int l; |
Ben Laurie | edc032b | 2011-03-12 17:01:19 +0000 | [diff] [blame] | 355 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 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"); |
| 360 | OPENSSL_free(pass); |
| 361 | return NULL; |
| 362 | } |
| 363 | *(pass + l) = '\0'; |
Ben Laurie | edc032b | 2011-03-12 17:01:19 +0000 | [diff] [blame] | 364 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 365 | return pass; |
| 366 | } |
Ben Laurie | edc032b | 2011-03-12 17:01:19 +0000 | [diff] [blame] | 367 | |
Matt Caswell | e481f9b | 2015-05-15 10:49:56 +0100 | [diff] [blame] | 368 | #endif |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 369 | |
Matt Caswell | e481f9b | 2015-05-15 10:49:56 +0100 | [diff] [blame] | 370 | #ifndef OPENSSL_NO_NEXTPROTONEG |
Ben Laurie | ee2ffc2 | 2010-07-28 10:06:55 +0000 | [diff] [blame] | 371 | /* This the context that we pass to next_proto_cb */ |
| 372 | typedef struct tlsextnextprotoctx_st { |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 373 | unsigned char *data; |
Todd Short | 817cd0d | 2016-03-05 08:47:55 -0500 | [diff] [blame] | 374 | size_t len; |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 375 | int status; |
Ben Laurie | ee2ffc2 | 2010-07-28 10:06:55 +0000 | [diff] [blame] | 376 | } tlsextnextprotoctx; |
| 377 | |
| 378 | static tlsextnextprotoctx next_proto; |
| 379 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 380 | static int next_proto_cb(SSL *s, unsigned char **out, unsigned char *outlen, |
| 381 | const unsigned char *in, unsigned int inlen, |
| 382 | void *arg) |
| 383 | { |
| 384 | tlsextnextprotoctx *ctx = arg; |
Ben Laurie | ee2ffc2 | 2010-07-28 10:06:55 +0000 | [diff] [blame] | 385 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 386 | if (!c_quiet) { |
| 387 | /* We can assume that |in| is syntactically valid. */ |
| 388 | unsigned i; |
| 389 | BIO_printf(bio_c_out, "Protocols advertised by server: "); |
| 390 | for (i = 0; i < inlen;) { |
| 391 | if (i) |
| 392 | BIO_write(bio_c_out, ", ", 2); |
| 393 | BIO_write(bio_c_out, &in[i + 1], in[i]); |
| 394 | i += in[i] + 1; |
| 395 | } |
| 396 | BIO_write(bio_c_out, "\n", 1); |
| 397 | } |
Ben Laurie | ee2ffc2 | 2010-07-28 10:06:55 +0000 | [diff] [blame] | 398 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 399 | ctx->status = |
| 400 | SSL_select_next_proto(out, outlen, in, inlen, ctx->data, ctx->len); |
| 401 | return SSL_TLSEXT_ERR_OK; |
| 402 | } |
Matt Caswell | e481f9b | 2015-05-15 10:49:56 +0100 | [diff] [blame] | 403 | #endif /* ndef OPENSSL_NO_NEXTPROTONEG */ |
Trevor | a398f82 | 2013-05-12 18:55:27 -0700 | [diff] [blame] | 404 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 405 | static int serverinfo_cli_parse_cb(SSL *s, unsigned int ext_type, |
| 406 | const unsigned char *in, size_t inlen, |
| 407 | int *al, void *arg) |
| 408 | { |
| 409 | char pem_name[100]; |
| 410 | unsigned char ext_buf[4 + 65536]; |
Trevor | a398f82 | 2013-05-12 18:55:27 -0700 | [diff] [blame] | 411 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 412 | /* Reconstruct the type/len fields prior to extension data */ |
Andy Polyakov | 3a63c0e | 2017-11-11 22:23:12 +0100 | [diff] [blame] | 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); |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 418 | memcpy(ext_buf + 4, in, inlen); |
Trevor | a398f82 | 2013-05-12 18:55:27 -0700 | [diff] [blame] | 419 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 420 | BIO_snprintf(pem_name, sizeof(pem_name), "SERVERINFO FOR EXTENSION %d", |
| 421 | ext_type); |
| 422 | PEM_write_bio(bio_c_out, pem_name, "", ext_buf, 4 + inlen); |
| 423 | return 1; |
| 424 | } |
Trevor | a398f82 | 2013-05-12 18:55:27 -0700 | [diff] [blame] | 425 | |
Viktor Dukhovni | cddd424 | 2015-12-29 14:25:50 -0500 | [diff] [blame] | 426 | /* |
| 427 | * Hex decoder that tolerates optional whitespace. Returns number of bytes |
| 428 | * produced, advances inptr to end of input string. |
| 429 | */ |
| 430 | static ossl_ssize_t hexdecode(const char **inptr, void *result) |
| 431 | { |
| 432 | unsigned char **out = (unsigned char **)result; |
| 433 | const char *in = *inptr; |
FdaSilvaYY | d6073e2 | 2016-08-07 12:04:26 +0200 | [diff] [blame] | 434 | unsigned char *ret = app_malloc(strlen(in) / 2, "hexdecode"); |
Viktor Dukhovni | cddd424 | 2015-12-29 14:25:50 -0500 | [diff] [blame] | 435 | unsigned char *cp = ret; |
| 436 | uint8_t byte; |
| 437 | int nibble = 0; |
| 438 | |
| 439 | if (ret == NULL) |
| 440 | return -1; |
| 441 | |
| 442 | for (byte = 0; *in; ++in) { |
Rich Salz | 49445f2 | 2016-05-12 15:52:58 -0400 | [diff] [blame] | 443 | int x; |
Viktor Dukhovni | cddd424 | 2015-12-29 14:25:50 -0500 | [diff] [blame] | 444 | |
Richard Levitte | 18295f0 | 2016-02-14 13:02:15 +0100 | [diff] [blame] | 445 | if (isspace(_UC(*in))) |
Viktor Dukhovni | cddd424 | 2015-12-29 14:25:50 -0500 | [diff] [blame] | 446 | continue; |
Rich Salz | 49445f2 | 2016-05-12 15:52:58 -0400 | [diff] [blame] | 447 | x = OPENSSL_hexchar2int(*in); |
| 448 | if (x < 0) { |
Viktor Dukhovni | cddd424 | 2015-12-29 14:25:50 -0500 | [diff] [blame] | 449 | OPENSSL_free(ret); |
| 450 | return 0; |
| 451 | } |
Rich Salz | 49445f2 | 2016-05-12 15:52:58 -0400 | [diff] [blame] | 452 | byte |= (char)x; |
Viktor Dukhovni | cddd424 | 2015-12-29 14:25:50 -0500 | [diff] [blame] | 453 | if ((nibble ^= 1) == 0) { |
| 454 | *cp++ = byte; |
| 455 | byte = 0; |
| 456 | } else { |
| 457 | byte <<= 4; |
| 458 | } |
| 459 | } |
| 460 | if (nibble != 0) { |
| 461 | OPENSSL_free(ret); |
| 462 | return 0; |
| 463 | } |
| 464 | *inptr = in; |
| 465 | |
| 466 | return cp - (*out = ret); |
| 467 | } |
| 468 | |
| 469 | /* |
| 470 | * Decode unsigned 0..255, returns 1 on success, <= 0 on failure. Advances |
| 471 | * inptr to next field skipping leading whitespace. |
| 472 | */ |
| 473 | static ossl_ssize_t checked_uint8(const char **inptr, void *out) |
| 474 | { |
| 475 | uint8_t *result = (uint8_t *)out; |
| 476 | const char *in = *inptr; |
| 477 | char *endp; |
| 478 | long v; |
| 479 | int e; |
| 480 | |
| 481 | save_errno(); |
| 482 | v = strtol(in, &endp, 10); |
| 483 | e = restore_errno(); |
| 484 | |
| 485 | if (((v == LONG_MIN || v == LONG_MAX) && e == ERANGE) || |
Richard Levitte | 18295f0 | 2016-02-14 13:02:15 +0100 | [diff] [blame] | 486 | endp == in || !isspace(_UC(*endp)) || |
Viktor Dukhovni | cddd424 | 2015-12-29 14:25:50 -0500 | [diff] [blame] | 487 | v != (*result = (uint8_t) v)) { |
| 488 | return -1; |
| 489 | } |
Richard Levitte | 18295f0 | 2016-02-14 13:02:15 +0100 | [diff] [blame] | 490 | for (in = endp; isspace(_UC(*in)); ++in) |
Viktor Dukhovni | cddd424 | 2015-12-29 14:25:50 -0500 | [diff] [blame] | 491 | continue; |
| 492 | |
| 493 | *inptr = in; |
| 494 | return 1; |
| 495 | } |
| 496 | |
Rich Salz | 7ff970e | 2016-01-08 10:36:37 -0500 | [diff] [blame] | 497 | struct tlsa_field { |
| 498 | void *var; |
| 499 | const char *name; |
| 500 | ossl_ssize_t (*parser)(const char **, void *); |
| 501 | }; |
| 502 | |
Viktor Dukhovni | cddd424 | 2015-12-29 14:25:50 -0500 | [diff] [blame] | 503 | static int tlsa_import_rr(SSL *con, const char *rrdata) |
| 504 | { |
Rich Salz | 7ff970e | 2016-01-08 10:36:37 -0500 | [diff] [blame] | 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; |
Rich Salz | f232d6e | 2016-01-08 13:06:01 -0500 | [diff] [blame] | 510 | static struct tlsa_field tlsa_fields[] = { |
Viktor Dukhovni | cddd424 | 2015-12-29 14:25:50 -0500 | [diff] [blame] | 511 | { &usage, "usage", checked_uint8 }, |
| 512 | { &selector, "selector", checked_uint8 }, |
| 513 | { &mtype, "mtype", checked_uint8 }, |
| 514 | { &data, "data", hexdecode }, |
| 515 | { NULL, } |
| 516 | }; |
| 517 | struct tlsa_field *f; |
Rich Salz | 7ff970e | 2016-01-08 10:36:37 -0500 | [diff] [blame] | 518 | int ret; |
| 519 | const char *cp = rrdata; |
| 520 | ossl_ssize_t len = 0; |
Viktor Dukhovni | cddd424 | 2015-12-29 14:25:50 -0500 | [diff] [blame] | 521 | |
| 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); |
| 527 | return 0; |
| 528 | } |
| 529 | } |
| 530 | /* The data field is last, so len is its length */ |
| 531 | ret = SSL_dane_tlsa_add(con, usage, selector, mtype, data, len); |
| 532 | OPENSSL_free(data); |
| 533 | |
| 534 | if (ret == 0) { |
| 535 | ERR_print_errors(bio_err); |
| 536 | BIO_printf(bio_err, "%s: warning: unusable TLSA rrdata: %s\n", |
| 537 | prog, rrdata); |
| 538 | return 0; |
| 539 | } |
| 540 | if (ret < 0) { |
| 541 | ERR_print_errors(bio_err); |
| 542 | BIO_printf(bio_err, "%s: warning: error loading TLSA rrdata: %s\n", |
| 543 | prog, rrdata); |
| 544 | return 0; |
| 545 | } |
| 546 | return ret; |
| 547 | } |
| 548 | |
| 549 | static int tlsa_import_rrset(SSL *con, STACK_OF(OPENSSL_STRING) *rrset) |
| 550 | { |
| 551 | int num = sk_OPENSSL_STRING_num(rrset); |
| 552 | int count = 0; |
| 553 | int i; |
| 554 | |
| 555 | for (i = 0; i < num; ++i) { |
| 556 | char *rrdata = sk_OPENSSL_STRING_value(rrset, i); |
| 557 | if (tlsa_import_rr(con, rrdata) > 0) |
| 558 | ++count; |
| 559 | } |
| 560 | return count > 0; |
| 561 | } |
| 562 | |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 563 | typedef enum OPTION_choice { |
| 564 | OPT_ERR = -1, OPT_EOF = 0, OPT_HELP, |
John Hughes | ebc0168 | 2018-02-08 10:49:02 +0100 | [diff] [blame] | 565 | OPT_4, OPT_6, OPT_HOST, OPT_PORT, OPT_CONNECT, OPT_BIND, OPT_UNIX, |
Dmitry Belyavskiy | a7c04f2 | 2017-02-21 14:22:55 +0300 | [diff] [blame] | 566 | OPT_XMPPHOST, OPT_VERIFY, OPT_NAMEOPT, |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 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, |
Rich Salz | 3ee1eac | 2017-07-05 10:58:48 -0400 | [diff] [blame] | 570 | OPT_SSL_CLIENT_ENGINE, OPT_IGN_EOF, OPT_NO_IGN_EOF, |
Rich Salz | 3a4e936 | 2016-01-13 23:11:01 -0500 | [diff] [blame] | 571 | OPT_DEBUG, OPT_TLSEXTDEBUG, OPT_STATUS, OPT_WDEBUG, |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 572 | OPT_MSG, OPT_MSGFILE, OPT_ENGINE, OPT_TRACE, OPT_SECURITY_DEBUG, |
| 573 | OPT_SECURITY_DEBUG_VERBOSE, OPT_SHOWCERTS, OPT_NBIO_TEST, OPT_STATE, |
Matt Caswell | 7225720 | 2017-06-21 12:17:30 +0100 | [diff] [blame] | 574 | OPT_PSK_IDENTITY, OPT_PSK, OPT_PSK_SESS, |
FdaSilvaYY | bde136c | 2016-03-18 19:02:17 +0100 | [diff] [blame] | 575 | #ifndef OPENSSL_NO_SRP |
| 576 | OPT_SRPUSER, OPT_SRPPASS, OPT_SRP_STRENGTH, OPT_SRP_LATEUSER, |
| 577 | OPT_SRP_MOREGROUPS, |
| 578 | #endif |
| 579 | OPT_SSL3, OPT_SSL_CONFIG, |
Matt Caswell | 582a17d | 2016-10-21 17:39:33 +0100 | [diff] [blame] | 580 | OPT_TLS1_3, OPT_TLS1_2, OPT_TLS1_1, OPT_TLS1, OPT_DTLS, OPT_DTLS1, |
Matt Caswell | 8ccc237 | 2017-04-20 09:57:12 +0100 | [diff] [blame] | 581 | OPT_DTLS1_2, OPT_SCTP, OPT_TIMEOUT, OPT_MTU, OPT_KEYFORM, OPT_PASS, |
FdaSilvaYY | 28e5ea8 | 2017-04-06 23:47:18 +0200 | [diff] [blame] | 582 | OPT_CERT_CHAIN, OPT_CAPATH, OPT_NOCAPATH, OPT_CHAINCAPATH, OPT_VERIFYCAPATH, |
Matt Caswell | 2b6bcb7 | 2015-09-22 16:00:52 +0100 | [diff] [blame] | 583 | OPT_KEY, OPT_RECONNECT, OPT_BUILD_CHAIN, OPT_CAFILE, OPT_NOCAFILE, |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 584 | OPT_CHAINCAFILE, OPT_VERIFYCAFILE, OPT_NEXTPROTONEG, OPT_ALPN, |
FdaSilvaYY | 28e5ea8 | 2017-04-06 23:47:18 +0200 | [diff] [blame] | 585 | OPT_SERVERINFO, OPT_STARTTLS, OPT_SERVERNAME, OPT_NOSERVERNAME, OPT_ASYNC, |
Paul Yang | 8176431 | 2017-10-16 15:32:24 -0400 | [diff] [blame] | 586 | OPT_USE_SRTP, OPT_KEYMATEXPORT, OPT_KEYMATEXPORTLEN, OPT_PROTOHOST, |
FdaSilvaYY | cf72c75 | 2017-11-05 17:46:48 +0100 | [diff] [blame] | 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, |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 589 | OPT_V_ENUM, |
| 590 | OPT_X_ENUM, |
| 591 | OPT_S_ENUM, |
Viktor Dukhovni | cddd424 | 2015-12-29 14:25:50 -0500 | [diff] [blame] | 592 | OPT_FALLBACKSCSV, OPT_NOCMDS, OPT_PROXY, OPT_DANE_TLSA_DOMAIN, |
Rob Percival | dd696a5 | 2016-03-02 13:34:05 +0000 | [diff] [blame] | 593 | #ifndef OPENSSL_NO_CT |
Viktor Dukhovni | 4334143 | 2016-04-07 14:17:37 -0400 | [diff] [blame] | 594 | OPT_CT, OPT_NOCT, OPT_CTLOG_FILE, |
Rob Percival | dd696a5 | 2016-03-02 13:34:05 +0000 | [diff] [blame] | 595 | #endif |
Rich Salz | 3ee1eac | 2017-07-05 10:58:48 -0400 | [diff] [blame] | 596 | OPT_DANE_TLSA_RRDATA, OPT_DANE_EE_NO_NAME, |
Todd Short | 9d75dce | 2017-12-18 16:52:28 -0500 | [diff] [blame] | 597 | OPT_FORCE_PHA, |
Rich Salz | 3ee1eac | 2017-07-05 10:58:48 -0400 | [diff] [blame] | 598 | OPT_R_ENUM |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 599 | } OPTION_CHOICE; |
| 600 | |
FdaSilvaYY | 44c83eb | 2016-03-13 14:07:50 +0100 | [diff] [blame] | 601 | const OPTIONS s_client_options[] = { |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 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', |
Richard Levitte | ab69ac0 | 2016-02-03 00:47:42 +0100 | [diff] [blame] | 606 | "TCP/IP where to connect (default is :" PORT ")"}, |
John Hughes | ebc0168 | 2018-02-08 10:49:02 +0100 | [diff] [blame] | 607 | {"bind", OPT_BIND, 's', "bind local address for connection"}, |
Michael Trapp | 552bf8e | 2015-05-08 15:34:07 -0400 | [diff] [blame] | 608 | {"proxy", OPT_PROXY, 's', |
| 609 | "Connect to via specified proxy to the real server"}, |
Richard Levitte | ab69ac0 | 2016-02-03 00:47:42 +0100 | [diff] [blame] | 610 | #ifdef AF_UNIX |
EasySec | a22f9c8 | 2016-11-12 21:08:32 +0100 | [diff] [blame] | 611 | {"unix", OPT_UNIX, 's', "Connect over the specified Unix-domain socket"}, |
Richard Levitte | ab69ac0 | 2016-02-03 00:47:42 +0100 | [diff] [blame] | 612 | #endif |
| 613 | {"4", OPT_4, '-', "Use IPv4 only"}, |
Rich Salz | fe08bd7 | 2016-06-08 12:22:14 -0400 | [diff] [blame] | 614 | #ifdef AF_INET6 |
Richard Levitte | ab69ac0 | 2016-02-03 00:47:42 +0100 | [diff] [blame] | 615 | {"6", OPT_6, '-', "Use IPv6 only"}, |
Rich Salz | fe08bd7 | 2016-06-08 12:22:14 -0400 | [diff] [blame] | 616 | #endif |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 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"}, |
Dmitry Belyavskiy | a7c04f2 | 2017-02-21 14:22:55 +0300 | [diff] [blame] | 621 | {"nameopt", OPT_NAMEOPT, 's', "Various certificate name options"}, |
David Woodhouse | a6972f3 | 2016-09-28 13:07:52 +0100 | [diff] [blame] | 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"}, |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 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"}, |
Matt Caswell | 2b6bcb7 | 2015-09-22 16:00:52 +0100 | [diff] [blame] | 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"}, |
Dr. Stephen Henson | d2add50 | 2017-03-20 18:32:43 +0000 | [diff] [blame] | 631 | {"requestCAfile", OPT_REQCAFILE, '<', |
Dr. Stephen Henson | 5969a2d | 2017-03-31 17:04:28 +0100 | [diff] [blame] | 632 | "PEM format file of CA names to send to the server"}, |
Viktor Dukhovni | cddd424 | 2015-12-29 14:25:50 -0500 | [diff] [blame] | 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"}, |
Viktor Dukhovni | c4fbed6 | 2016-08-19 11:59:47 -0400 | [diff] [blame] | 636 | {"dane_ee_no_namechecks", OPT_DANE_EE_NO_NAME, '-', |
| 637 | "Disable name checks when matching DANE-EE(3) TLSA records"}, |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 638 | {"reconnect", OPT_RECONNECT, '-', |
| 639 | "Drop and re-make the connection with the same Session-ID"}, |
Matt Caswell | bdb59d9 | 2018-04-24 10:27:32 +0100 | [diff] [blame] | 640 | {"showcerts", OPT_SHOWCERTS, '-', |
| 641 | "Show all certificates sent by the server"}, |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 642 | {"debug", OPT_DEBUG, '-', "Extra output"}, |
| 643 | {"msg", OPT_MSG, '-', "Show protocol messages"}, |
Rich Salz | 9a13bb3 | 2016-02-18 12:23:27 -0500 | [diff] [blame] | 644 | {"msgfile", OPT_MSGFILE, '>', |
| 645 | "File to send output of -msg or -trace, instead of stdout"}, |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 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"}, |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 652 | {"starttls", OPT_STARTTLS, 's', |
Nathan Phillip Brink | cfb4f1e | 2015-05-13 16:00:21 -0400 | [diff] [blame] | 653 | "Use the appropriate STARTTLS command before starting TLS"}, |
Kai Engert | 898ea7b | 2015-07-29 17:41:00 -0400 | [diff] [blame] | 654 | {"xmpphost", OPT_XMPPHOST, 's', |
Paul Yang | 8176431 | 2017-10-16 15:32:24 -0400 | [diff] [blame] | 655 | "Alias of -name option for \"-starttls xmpp[-server]\""}, |
Rich Salz | 3ee1eac | 2017-07-05 10:58:48 -0400 | [diff] [blame] | 656 | OPT_R_OPTIONS, |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 657 | {"sess_out", OPT_SESS_OUT, '>', "File to write SSL session to"}, |
| 658 | {"sess_in", OPT_SESS_IN, '<', "File to read SSL session from"}, |
FdaSilvaYY | 1fb6b0b | 2018-03-21 16:01:24 -0400 | [diff] [blame] | 659 | #ifndef OPENSSL_NO_SRTP |
Matt Caswell | e77bdc7 | 2015-08-04 19:18:02 +0100 | [diff] [blame] | 660 | {"use_srtp", OPT_USE_SRTP, 's', |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 661 | "Offer SRTP key management with a colon-separated profile list"}, |
FdaSilvaYY | 1fb6b0b | 2018-03-21 16:01:24 -0400 | [diff] [blame] | 662 | #endif |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 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)"}, |
FdaSilvaYY | cf72c75 | 2017-11-05 17:46:48 +0100 | [diff] [blame] | 667 | {"maxfraglen", OPT_MAXFRAGLEN, 'p', |
| 668 | "Enable Maximum Fragment Length Negotiation (len values: 512, 1024, 2048 and 4096)"}, |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 669 | {"fallback_scsv", OPT_FALLBACKSCSV, '-', "Send the fallback SCSV"}, |
Paul Yang | 8176431 | 2017-10-16 15:32:24 -0400 | [diff] [blame] | 670 | {"name", OPT_PROTOHOST, 's', |
| 671 | "Hostname to use for \"-starttls lmtp\", \"-starttls smtp\" or \"-starttls xmpp[-server]\""}, |
Rich Salz | 9a13bb3 | 2016-02-18 12:23:27 -0500 | [diff] [blame] | 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)"}, |
Rich Salz | 9c3bcfa | 2015-05-15 13:50:38 -0400 | [diff] [blame] | 697 | {"nocommands", OPT_NOCMDS, '-', "Do not use interactive command letters"}, |
| 698 | {"servername", OPT_SERVERNAME, 's', |
Paul Yang | 481afe2 | 2017-06-13 20:18:55 +0800 | [diff] [blame] | 699 | "Set TLS extension servername (SNI) in ClientHello (default)"}, |
Matt Caswell | 11ba87f | 2017-02-13 13:26:37 +0000 | [diff] [blame] | 700 | {"noservername", OPT_NOSERVERNAME, '-', |
| 701 | "Do not send the server name (SNI) extension in the ClientHello"}, |
Rich Salz | 9c3bcfa | 2015-05-15 13:50:38 -0400 | [diff] [blame] | 702 | {"tlsextdebug", OPT_TLSEXTDEBUG, '-', |
| 703 | "Hex dump of all TLS extensions received"}, |
Matt Caswell | 3e41ac3 | 2016-03-21 16:54:53 +0000 | [diff] [blame] | 704 | #ifndef OPENSSL_NO_OCSP |
Rich Salz | 9c3bcfa | 2015-05-15 13:50:38 -0400 | [diff] [blame] | 705 | {"status", OPT_STATUS, '-', "Request certificate status from server"}, |
Matt Caswell | 3e41ac3 | 2016-03-21 16:54:53 +0000 | [diff] [blame] | 706 | #endif |
Rich Salz | 9c3bcfa | 2015-05-15 13:50:38 -0400 | [diff] [blame] | 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)"}, |
Matt Caswell | 7e25dd6 | 2015-02-13 23:33:12 +0000 | [diff] [blame] | 711 | {"async", OPT_ASYNC, '-', "Support asynchronous operation"}, |
Rich Salz | 9a13bb3 | 2016-02-18 12:23:27 -0500 | [diff] [blame] | 712 | {"ssl_config", OPT_SSL_CONFIG, 's', "Use specified configuration file"}, |
FdaSilvaYY | 28e5ea8 | 2017-04-06 23:47:18 +0200 | [diff] [blame] | 713 | {"max_send_frag", OPT_MAX_SEND_FRAG, 'p', "Maximum Size of send frames "}, |
FdaSilvaYY | 36b2cfb | 2017-04-07 19:15:38 +0200 | [diff] [blame] | 714 | {"split_send_frag", OPT_SPLIT_SEND_FRAG, 'p', |
Matt Caswell | 0df8088 | 2016-02-16 11:13:33 +0000 | [diff] [blame] | 715 | "Size used to split data for encrypt pipelines"}, |
FdaSilvaYY | 36b2cfb | 2017-04-07 19:15:38 +0200 | [diff] [blame] | 716 | {"max_pipelines", OPT_MAX_PIPELINES, 'p', |
Matt Caswell | 032c6d2 | 2015-09-22 11:23:33 +0100 | [diff] [blame] | 717 | "Maximum number of encrypt/decrypt pipelines to be used"}, |
FdaSilvaYY | 36b2cfb | 2017-04-07 19:15:38 +0200 | [diff] [blame] | 718 | {"read_buf", OPT_READ_BUF, 'p', |
Matt Caswell | dad78fb | 2016-01-13 14:20:25 +0000 | [diff] [blame] | 719 | "Default read buffer size to be used for connections"}, |
Rich Salz | 9c3bcfa | 2015-05-15 13:50:38 -0400 | [diff] [blame] | 720 | OPT_S_OPTIONS, |
| 721 | OPT_V_OPTIONS, |
| 722 | OPT_X_OPTIONS, |
| 723 | #ifndef OPENSSL_NO_SSL3 |
| 724 | {"ssl3", OPT_SSL3, '-', "Just use SSLv3"}, |
| 725 | #endif |
Viktor Dukhovni | 6b01bed | 2016-01-18 13:10:21 -0500 | [diff] [blame] | 726 | #ifndef OPENSSL_NO_TLS1 |
| 727 | {"tls1", OPT_TLS1, '-', "Just use TLSv1"}, |
| 728 | #endif |
| 729 | #ifndef OPENSSL_NO_TLS1_1 |
| 730 | {"tls1_1", OPT_TLS1_1, '-', "Just use TLSv1.1"}, |
| 731 | #endif |
| 732 | #ifndef OPENSSL_NO_TLS1_2 |
| 733 | {"tls1_2", OPT_TLS1_2, '-', "Just use TLSv1.2"}, |
| 734 | #endif |
Matt Caswell | 582a17d | 2016-10-21 17:39:33 +0100 | [diff] [blame] | 735 | #ifndef OPENSSL_NO_TLS1_3 |
| 736 | {"tls1_3", OPT_TLS1_3, '-', "Just use TLSv1.3"}, |
| 737 | #endif |
Kurt Roeckx | a5ecdc6 | 2015-12-12 11:12:22 +0100 | [diff] [blame] | 738 | #ifndef OPENSSL_NO_DTLS |
Rich Salz | 9a13bb3 | 2016-02-18 12:23:27 -0500 | [diff] [blame] | 739 | {"dtls", OPT_DTLS, '-', "Use any version of DTLS"}, |
| 740 | {"timeout", OPT_TIMEOUT, '-', |
| 741 | "Enable send/receive timeout on DTLS connections"}, |
Rich Salz | 9c3bcfa | 2015-05-15 13:50:38 -0400 | [diff] [blame] | 742 | {"mtu", OPT_MTU, 'p', "Set the link layer MTU"}, |
| 743 | #endif |
Viktor Dukhovni | 6b01bed | 2016-01-18 13:10:21 -0500 | [diff] [blame] | 744 | #ifndef OPENSSL_NO_DTLS1 |
| 745 | {"dtls1", OPT_DTLS1, '-', "Just use DTLSv1"}, |
| 746 | #endif |
| 747 | #ifndef OPENSSL_NO_DTLS1_2 |
Rich Salz | 9a13bb3 | 2016-02-18 12:23:27 -0500 | [diff] [blame] | 748 | {"dtls1_2", OPT_DTLS1_2, '-', "Just use DTLSv1.2"}, |
Viktor Dukhovni | 6b01bed | 2016-01-18 13:10:21 -0500 | [diff] [blame] | 749 | #endif |
Matt Caswell | 8ccc237 | 2017-04-20 09:57:12 +0100 | [diff] [blame] | 750 | #ifndef OPENSSL_NO_SCTP |
| 751 | {"sctp", OPT_SCTP, '-', "Use SCTP"}, |
| 752 | #endif |
Rich Salz | 9c3bcfa | 2015-05-15 13:50:38 -0400 | [diff] [blame] | 753 | #ifndef OPENSSL_NO_SSL_TRACE |
Rich Salz | 9a13bb3 | 2016-02-18 12:23:27 -0500 | [diff] [blame] | 754 | {"trace", OPT_TRACE, '-', "Show trace output of protocol messages"}, |
Rich Salz | 9c3bcfa | 2015-05-15 13:50:38 -0400 | [diff] [blame] | 755 | #endif |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 756 | #ifdef WATT32 |
| 757 | {"wdebug", OPT_WDEBUG, '-', "WATT-32 tcp debugging"}, |
| 758 | #endif |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 759 | {"nbio", OPT_NBIO, '-', "Use non-blocking IO"}, |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 760 | {"psk_identity", OPT_PSK_IDENTITY, 's', "PSK identity"}, |
| 761 | {"psk", OPT_PSK, 's', "PSK in hex (without 0x)"}, |
Matt Caswell | e261bdd | 2017-06-12 16:57:06 +0100 | [diff] [blame] | 762 | {"psk_session", OPT_PSK_SESS, '<', "File to read PSK SSL session from"}, |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 763 | #ifndef OPENSSL_NO_SRP |
FdaSilvaYY | bde136c | 2016-03-18 19:02:17 +0100 | [diff] [blame] | 764 | {"srpuser", OPT_SRPUSER, 's', "SRP authentication for 'user'"}, |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 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."}, |
Rich Salz | 740ceb5 | 2015-07-31 11:52:57 -0400 | [diff] [blame] | 770 | {"srp_strength", OPT_SRP_STRENGTH, 'p', "Minimal length in bits for N"}, |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 771 | #endif |
Matt Caswell | e481f9b | 2015-05-15 10:49:56 +0100 | [diff] [blame] | 772 | #ifndef OPENSSL_NO_NEXTPROTONEG |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 773 | {"nextprotoneg", OPT_NEXTPROTONEG, 's', |
| 774 | "Enable NPN extension, considering named protocols supported (comma-separated list)"}, |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 775 | #endif |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 776 | #ifndef OPENSSL_NO_ENGINE |
| 777 | {"engine", OPT_ENGINE, 's', "Use engine, possibly a hardware device"}, |
Rich Salz | 9a13bb3 | 2016-02-18 12:23:27 -0500 | [diff] [blame] | 778 | {"ssl_client_engine", OPT_SSL_CLIENT_ENGINE, 's', |
| 779 | "Specify engine to be used for client certificate operations"}, |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 780 | #endif |
Rob Percival | dd696a5 | 2016-03-02 13:34:05 +0000 | [diff] [blame] | 781 | #ifndef OPENSSL_NO_CT |
Viktor Dukhovni | 4334143 | 2016-04-07 14:17:37 -0400 | [diff] [blame] | 782 | {"ct", OPT_CT, '-', "Request and parse SCTs (also enables OCSP stapling)"}, |
Rob Percival | dd696a5 | 2016-03-02 13:34:05 +0000 | [diff] [blame] | 783 | {"noct", OPT_NOCT, '-', "Do not request or parse SCTs (default)"}, |
Rob Percival | dd696a5 | 2016-03-02 13:34:05 +0000 | [diff] [blame] | 784 | {"ctlogfile", OPT_CTLOG_FILE, '<', "CT log list CONF file"}, |
| 785 | #endif |
Peter Wu | 4bf73e9 | 2017-02-01 19:14:27 +0100 | [diff] [blame] | 786 | {"keylogfile", OPT_KEYLOG_FILE, '>', "Write TLS secrets to file"}, |
Matt Caswell | 923ac82 | 2017-02-20 16:00:20 +0000 | [diff] [blame] | 787 | {"early_data", OPT_EARLY_DATA, '<', "File to send as early data"}, |
Todd Short | 9d75dce | 2017-12-18 16:52:28 -0500 | [diff] [blame] | 788 | {"force_pha", OPT_FORCE_PHA, '-', "Force-enable post-handshake-authentication"}, |
FdaSilvaYY | bde136c | 2016-03-18 19:02:17 +0100 | [diff] [blame] | 789 | {NULL, OPT_EOF, 0x00, NULL} |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 790 | }; |
| 791 | |
| 792 | typedef enum PROTOCOL_choice { |
| 793 | PROTO_OFF, |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 794 | PROTO_SMTP, |
| 795 | PROTO_POP3, |
| 796 | PROTO_IMAP, |
| 797 | PROTO_FTP, |
Rich Salz | d8c25de | 2015-04-25 16:01:21 -0400 | [diff] [blame] | 798 | PROTO_TELNET, |
Michael Trapp | 552bf8e | 2015-05-08 15:34:07 -0400 | [diff] [blame] | 799 | PROTO_XMPP, |
Kai Engert | 898ea7b | 2015-07-29 17:41:00 -0400 | [diff] [blame] | 800 | PROTO_XMPP_SERVER, |
Nathan Phillip Brink | cfb4f1e | 2015-05-13 16:00:21 -0400 | [diff] [blame] | 801 | PROTO_CONNECT, |
Valentin Vidic | b2e54eb | 2016-02-15 15:28:41 +0100 | [diff] [blame] | 802 | PROTO_IRC, |
Keigo Tanaka | a2d9cfb | 2017-05-13 09:50:49 +0900 | [diff] [blame] | 803 | PROTO_MYSQL, |
Robert Scheck | 9576545 | 2016-11-17 17:16:50 +0100 | [diff] [blame] | 804 | PROTO_POSTGRES, |
Robert Scheck | 8f85aa6 | 2017-01-28 00:52:27 +0100 | [diff] [blame] | 805 | PROTO_LMTP, |
Robert Scheck | 20967af | 2017-02-09 22:20:59 +0100 | [diff] [blame] | 806 | PROTO_NNTP, |
Robert Scheck | 398b0bb | 2017-02-27 00:44:14 +0100 | [diff] [blame] | 807 | PROTO_SIEVE, |
| 808 | PROTO_LDAP |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 809 | } PROTOCOL_CHOICE; |
| 810 | |
FdaSilvaYY | bde136c | 2016-03-18 19:02:17 +0100 | [diff] [blame] | 811 | static const OPT_PAIR services[] = { |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 812 | {"smtp", PROTO_SMTP}, |
| 813 | {"pop3", PROTO_POP3}, |
| 814 | {"imap", PROTO_IMAP}, |
| 815 | {"ftp", PROTO_FTP}, |
| 816 | {"xmpp", PROTO_XMPP}, |
Kai Engert | 898ea7b | 2015-07-29 17:41:00 -0400 | [diff] [blame] | 817 | {"xmpp-server", PROTO_XMPP_SERVER}, |
Rich Salz | d8c25de | 2015-04-25 16:01:21 -0400 | [diff] [blame] | 818 | {"telnet", PROTO_TELNET}, |
Nathan Phillip Brink | cfb4f1e | 2015-05-13 16:00:21 -0400 | [diff] [blame] | 819 | {"irc", PROTO_IRC}, |
Keigo Tanaka | a2d9cfb | 2017-05-13 09:50:49 +0900 | [diff] [blame] | 820 | {"mysql", PROTO_MYSQL}, |
Valentin Vidic | b2e54eb | 2016-02-15 15:28:41 +0100 | [diff] [blame] | 821 | {"postgres", PROTO_POSTGRES}, |
Robert Scheck | 9576545 | 2016-11-17 17:16:50 +0100 | [diff] [blame] | 822 | {"lmtp", PROTO_LMTP}, |
Robert Scheck | 8f85aa6 | 2017-01-28 00:52:27 +0100 | [diff] [blame] | 823 | {"nntp", PROTO_NNTP}, |
Robert Scheck | 20967af | 2017-02-09 22:20:59 +0100 | [diff] [blame] | 824 | {"sieve", PROTO_SIEVE}, |
Robert Scheck | 398b0bb | 2017-02-27 00:44:14 +0100 | [diff] [blame] | 825 | {"ldap", PROTO_LDAP}, |
FdaSilvaYY | bde136c | 2016-03-18 19:02:17 +0100 | [diff] [blame] | 826 | {NULL, 0} |
Richard Levitte | 85c6749 | 2007-02-16 18:12:16 +0000 | [diff] [blame] | 827 | }; |
| 828 | |
Rich Salz | fe08bd7 | 2016-06-08 12:22:14 -0400 | [diff] [blame] | 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) |
| 832 | |
Matt Caswell | 4bbd4ba | 2016-07-07 11:05:31 +0100 | [diff] [blame] | 833 | #define IS_PROT_FLAG(o) \ |
| 834 | (o == OPT_SSL3 || o == OPT_TLS1 || o == OPT_TLS1_1 || o == OPT_TLS1_2 \ |
Matt Caswell | 582a17d | 2016-10-21 17:39:33 +0100 | [diff] [blame] | 835 | || o == OPT_TLS1_3 || o == OPT_DTLS || o == OPT_DTLS1 || o == OPT_DTLS1_2) |
Matt Caswell | 4bbd4ba | 2016-07-07 11:05:31 +0100 | [diff] [blame] | 836 | |
Rich Salz | 7315ce8 | 2016-06-10 11:40:32 -0400 | [diff] [blame] | 837 | /* Free |*dest| and optionally set it to a copy of |source|. */ |
| 838 | static void freeandcopy(char **dest, const char *source) |
| 839 | { |
| 840 | OPENSSL_free(*dest); |
| 841 | *dest = NULL; |
| 842 | if (source != NULL) |
| 843 | *dest = OPENSSL_strdup(source); |
| 844 | } |
| 845 | |
Matt Caswell | be62b22 | 2017-01-13 14:25:15 +0000 | [diff] [blame] | 846 | static int new_session_cb(SSL *S, SSL_SESSION *sess) |
| 847 | { |
| 848 | BIO *stmp = BIO_new_file(sess_out, "w"); |
| 849 | |
Matt Caswell | 1f5b44e | 2017-01-20 16:02:07 +0000 | [diff] [blame] | 850 | if (stmp == NULL) { |
| 851 | BIO_printf(bio_err, "Error writing session file %s\n", sess_out); |
| 852 | } else { |
Matt Caswell | be62b22 | 2017-01-13 14:25:15 +0000 | [diff] [blame] | 853 | PEM_write_bio_SSL_SESSION(stmp, sess); |
| 854 | BIO_free(stmp); |
Matt Caswell | be62b22 | 2017-01-13 14:25:15 +0000 | [diff] [blame] | 855 | } |
| 856 | |
| 857 | /* |
| 858 | * We always return a "fail" response so that the session gets freed again |
| 859 | * because we haven't used the reference. |
| 860 | */ |
| 861 | return 0; |
| 862 | } |
| 863 | |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 864 | int s_client_main(int argc, char **argv) |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 865 | { |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 866 | BIO *sbio; |
| 867 | EVP_PKEY *key = NULL; |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 868 | SSL *con = NULL; |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 869 | SSL_CTX *ctx = NULL; |
| 870 | STACK_OF(X509) *chain = NULL; |
| 871 | X509 *cert = 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; |
Viktor Dukhovni | cddd424 | 2015-12-29 14:25:50 -0500 | [diff] [blame] | 876 | char *dane_tlsa_domain = NULL; |
| 877 | STACK_OF(OPENSSL_STRING) *dane_tlsa_rrset = NULL; |
Viktor Dukhovni | c4fbed6 | 2016-08-19 11:59:47 -0400 | [diff] [blame] | 878 | int dane_ee_no_name = 0; |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 879 | STACK_OF(X509_CRL) *crls = NULL; |
Matt Caswell | 13c9bb3 | 2015-03-31 00:18:31 +0100 | [diff] [blame] | 880 | const SSL_METHOD *meth = TLS_client_method(); |
FdaSilvaYY | cc69629 | 2016-08-04 23:52:22 +0200 | [diff] [blame] | 881 | const char *CApath = NULL, *CAfile = NULL; |
| 882 | char *cbuf = NULL, *sbuf = NULL; |
John Hughes | ebc0168 | 2018-02-08 10:49:02 +0100 | [diff] [blame] | 883 | char *mbuf = NULL, *proxystr = NULL, *connectstr = NULL, *bindstr = NULL; |
Viktor Dukhovni | cddd424 | 2015-12-29 14:25:50 -0500 | [diff] [blame] | 884 | char *cert_file = NULL, *key_file = NULL, *chain_file = NULL; |
Richard Levitte | ab69ac0 | 2016-02-03 00:47:42 +0100 | [diff] [blame] | 885 | char *chCApath = NULL, *chCAfile = NULL, *host = NULL; |
Rich Salz | 7315ce8 | 2016-06-10 11:40:32 -0400 | [diff] [blame] | 886 | char *port = OPENSSL_strdup(PORT); |
John Hughes | ebc0168 | 2018-02-08 10:49:02 +0100 | [diff] [blame] | 887 | char *bindhost = NULL, *bindport = NULL; |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 888 | char *passarg = NULL, *pass = NULL, *vfyCApath = NULL, *vfyCAfile = NULL; |
Dr. Stephen Henson | d2add50 | 2017-03-20 18:32:43 +0000 | [diff] [blame] | 889 | char *ReqCAfile = NULL; |
Matt Caswell | be62b22 | 2017-01-13 14:25:15 +0000 | [diff] [blame] | 890 | char *sess_in = NULL, *crl_file = NULL, *p; |
Paul Yang | 8176431 | 2017-10-16 15:32:24 -0400 | [diff] [blame] | 891 | const char *protohost = NULL; |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 892 | struct timeval timeout, *timeoutp; |
| 893 | fd_set readfds, writefds; |
Matt Caswell | 2b6bcb7 | 2015-09-22 16:00:52 +0100 | [diff] [blame] | 894 | int noCApath = 0, noCAfile = 0; |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 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; |
| 897 | int prexit = 0; |
Matt Caswell | 40a8e9c | 2016-03-18 14:17:03 +0000 | [diff] [blame] | 898 | int sdebug = 0; |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 899 | int reconnect = 0, verify = SSL_VERIFY_NONE, vpmtouched = 0; |
Ben Laurie | 480405e | 2015-08-02 02:45:44 +0100 | [diff] [blame] | 900 | int ret = 1, in_init = 1, i, nbio_test = 0, s = -1, k, width, state = 0; |
Richard Levitte | ab69ac0 | 2016-02-03 00:47:42 +0100 | [diff] [blame] | 901 | int sbuf_len, sbuf_off, cmdletters = 1; |
Matt Caswell | 8ccc237 | 2017-04-20 09:57:12 +0100 | [diff] [blame] | 902 | int socket_family = AF_UNSPEC, socket_type = SOCK_STREAM, protocol = 0; |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 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; |
Viktor Szakats | d485640 | 2016-08-30 03:01:16 +0200 | [diff] [blame] | 905 | #if !defined(OPENSSL_SYS_WINDOWS) && !defined(OPENSSL_SYS_MSDOS) |
John Denker | a3ef2c1 | 2016-06-10 14:46:07 -0400 | [diff] [blame] | 906 | int at_eof = 0; |
Viktor Szakats | d485640 | 2016-08-30 03:01:16 +0200 | [diff] [blame] | 907 | #endif |
Matt Caswell | dad78fb | 2016-01-13 14:20:25 +0000 | [diff] [blame] | 908 | int read_buf_len = 0; |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 909 | int fallback_scsv = 0; |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 910 | OPTION_CHOICE o; |
Matt Caswell | 40a8e9c | 2016-03-18 14:17:03 +0000 | [diff] [blame] | 911 | #ifndef OPENSSL_NO_DTLS |
| 912 | int enable_timeouts = 0; |
| 913 | long socket_mtu = 0; |
| 914 | #endif |
Richard Levitte | 0b13e9f | 2003-01-30 17:39:26 +0000 | [diff] [blame] | 915 | #ifndef OPENSSL_NO_ENGINE |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 916 | ENGINE *ssl_client_engine = NULL; |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 917 | #endif |
Rich Salz | 333b070 | 2015-04-25 15:41:29 -0400 | [diff] [blame] | 918 | ENGINE *e = NULL; |
Rich Salz | 1fbab1d | 2016-03-17 12:53:11 -0400 | [diff] [blame] | 919 | #if defined(OPENSSL_SYS_WINDOWS) || defined(OPENSSL_SYS_MSDOS) |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 920 | struct timeval tv; |
Dr. Stephen Henson | 06f4536 | 1999-09-20 22:09:17 +0000 | [diff] [blame] | 921 | #endif |
Matt Caswell | 44f19af | 2017-11-08 13:22:59 +0000 | [diff] [blame] | 922 | const char *servername = NULL; |
Matt Caswell | 11ba87f | 2017-02-13 13:26:37 +0000 | [diff] [blame] | 923 | int noservername = 0; |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 924 | const char *alpn_in = NULL; |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 925 | tlsextctx tlsextcbp = { NULL, 0 }; |
Dr. Stephen Henson | 287d0b9 | 2015-07-08 23:09:52 +0100 | [diff] [blame] | 926 | const char *ssl_config = NULL; |
Matt Caswell | e481f9b | 2015-05-15 10:49:56 +0100 | [diff] [blame] | 927 | #define MAX_SI_TYPES 100 |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 928 | unsigned short serverinfo_types[MAX_SI_TYPES]; |
| 929 | int serverinfo_count = 0, start = 0, len; |
Matt Caswell | e481f9b | 2015-05-15 10:49:56 +0100 | [diff] [blame] | 930 | #ifndef OPENSSL_NO_NEXTPROTONEG |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 931 | const char *next_proto_neg_in = NULL; |
Dr. Stephen Henson | ed551cd | 2008-11-12 17:28:18 +0000 | [diff] [blame] | 932 | #endif |
Ben Laurie | edc032b | 2011-03-12 17:01:19 +0000 | [diff] [blame] | 933 | #ifndef OPENSSL_NO_SRP |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 934 | char *srppass = NULL; |
| 935 | int srp_lateuser = 0; |
| 936 | SRP_ARG srp_arg = { NULL, NULL, 0, 0, 0, 1024 }; |
Ben Laurie | edc032b | 2011-03-12 17:01:19 +0000 | [diff] [blame] | 937 | #endif |
FdaSilvaYY | 1fb6b0b | 2018-03-21 16:01:24 -0400 | [diff] [blame] | 938 | char *srtp_profiles = NULL; |
Rob Percival | dd696a5 | 2016-03-02 13:34:05 +0000 | [diff] [blame] | 939 | #ifndef OPENSSL_NO_CT |
| 940 | char *ctlog_file = NULL; |
Viktor Dukhovni | 4334143 | 2016-04-07 14:17:37 -0400 | [diff] [blame] | 941 | int ct_validation = 0; |
Rob Percival | dd696a5 | 2016-03-02 13:34:05 +0000 | [diff] [blame] | 942 | #endif |
Matt Caswell | 4bbd4ba | 2016-07-07 11:05:31 +0100 | [diff] [blame] | 943 | int min_version = 0, max_version = 0, prot_opt = 0, no_prot_opt = 0; |
FdaSilvaYY | fba1366 | 2016-05-10 23:39:05 +0200 | [diff] [blame] | 944 | int async = 0; |
FdaSilvaYY | 28e5ea8 | 2017-04-06 23:47:18 +0200 | [diff] [blame] | 945 | unsigned int max_send_fragment = 0; |
FdaSilvaYY | 36b2cfb | 2017-04-07 19:15:38 +0200 | [diff] [blame] | 946 | unsigned int split_send_fragment = 0, max_pipelines = 0; |
Rich Salz | fe08bd7 | 2016-06-08 12:22:14 -0400 | [diff] [blame] | 947 | enum { use_inet, use_unix, use_unknown } connect_type = use_unknown; |
| 948 | int count4or6 = 0; |
FdaSilvaYY | cf72c75 | 2017-11-05 17:46:48 +0100 | [diff] [blame] | 949 | uint8_t maxfraglen = 0; |
FdaSilvaYY | 54463e4 | 2016-08-03 22:49:25 +0200 | [diff] [blame] | 950 | int c_nbio = 0, c_msg = 0, c_ign_eof = 0, c_brief = 0; |
Richard Levitte | 057c676 | 2016-09-19 15:08:58 +0200 | [diff] [blame] | 951 | int c_tlsextdebug = 0; |
| 952 | #ifndef OPENSSL_NO_OCSP |
| 953 | int c_status_req = 0; |
| 954 | #endif |
FdaSilvaYY | 54463e4 | 2016-08-03 22:49:25 +0200 | [diff] [blame] | 955 | BIO *bio_c_msg = NULL; |
Matt Caswell | 923ac82 | 2017-02-20 16:00:20 +0000 | [diff] [blame] | 956 | const char *keylog_file = NULL, *early_data_file = NULL; |
Todd Short | 9ff2ceb | 2017-04-26 14:42:14 -0400 | [diff] [blame] | 957 | #ifndef OPENSSL_NO_DTLS |
Matt Caswell | 8ccc237 | 2017-04-20 09:57:12 +0100 | [diff] [blame] | 958 | int isdtls = 0; |
Todd Short | 9ff2ceb | 2017-04-26 14:42:14 -0400 | [diff] [blame] | 959 | #endif |
Matt Caswell | e261bdd | 2017-06-12 16:57:06 +0100 | [diff] [blame] | 960 | char *psksessf = NULL; |
Todd Short | 9d75dce | 2017-12-18 16:52:28 -0500 | [diff] [blame] | 961 | int force_pha = 0; |
Ben Laurie | 36d16f8 | 2005-04-26 16:02:40 +0000 | [diff] [blame] | 962 | |
Emilia Kasper | efc943b | 2016-02-22 16:58:36 +0100 | [diff] [blame] | 963 | FD_ZERO(&readfds); |
| 964 | FD_ZERO(&writefds); |
| 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)); |
| 970 | # endif |
| 971 | #endif |
| 972 | |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 973 | prog = opt_progname(argv[0]); |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 974 | c_quiet = 0; |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 975 | c_debug = 0; |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 976 | c_showcerts = 0; |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 977 | c_nbio = 0; |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 978 | vpm = X509_VERIFY_PARAM_new(); |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 979 | cctx = SSL_CONF_CTX_new(); |
Dr. Stephen Henson | 3647bee | 2002-02-22 14:01:21 +0000 | [diff] [blame] | 980 | |
Rich Salz | 68dc682 | 2015-04-30 17:48:31 -0400 | [diff] [blame] | 981 | if (vpm == NULL || cctx == NULL) { |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 982 | BIO_printf(bio_err, "%s: out of memory\n", prog); |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 983 | goto end; |
| 984 | } |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 985 | |
FdaSilvaYY | acc0049 | 2016-08-01 21:30:57 +0200 | [diff] [blame] | 986 | cbuf = app_malloc(BUFSIZZ, "cbuf"); |
| 987 | sbuf = app_malloc(BUFSIZZ, "sbuf"); |
| 988 | mbuf = app_malloc(BUFSIZZ, "mbuf"); |
| 989 | |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 990 | SSL_CONF_CTX_set_flags(cctx, SSL_CONF_FLAG_CLIENT | SSL_CONF_FLAG_CMDLINE); |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 991 | |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 992 | prog = opt_init(argc, argv, s_client_options); |
| 993 | while ((o = opt_next()) != OPT_EOF) { |
Rich Salz | fe08bd7 | 2016-06-08 12:22:14 -0400 | [diff] [blame] | 994 | /* Check for intermixing flags. */ |
| 995 | if (connect_type == use_unix && IS_INET_FLAG(o)) { |
| 996 | BIO_printf(bio_err, |
FdaSilvaYY | d6073e2 | 2016-08-07 12:04:26 +0200 | [diff] [blame] | 997 | "%s: Intermixed protocol flags (unix and internet domains)\n", |
| 998 | prog); |
Rich Salz | fe08bd7 | 2016-06-08 12:22:14 -0400 | [diff] [blame] | 999 | goto end; |
| 1000 | } |
| 1001 | if (connect_type == use_inet && IS_UNIX_FLAG(o)) { |
| 1002 | BIO_printf(bio_err, |
FdaSilvaYY | d6073e2 | 2016-08-07 12:04:26 +0200 | [diff] [blame] | 1003 | "%s: Intermixed protocol flags (internet and unix domains)\n", |
| 1004 | prog); |
Rich Salz | fe08bd7 | 2016-06-08 12:22:14 -0400 | [diff] [blame] | 1005 | goto end; |
| 1006 | } |
Matt Caswell | 4bbd4ba | 2016-07-07 11:05:31 +0100 | [diff] [blame] | 1007 | |
| 1008 | if (IS_PROT_FLAG(o) && ++prot_opt > 1) { |
| 1009 | BIO_printf(bio_err, "Cannot supply multiple protocol flags\n"); |
| 1010 | goto end; |
| 1011 | } |
| 1012 | if (IS_NO_PROT_FLAG(o)) |
| 1013 | no_prot_opt++; |
| 1014 | if (prot_opt == 1 && no_prot_opt) { |
FdaSilvaYY | d6073e2 | 2016-08-07 12:04:26 +0200 | [diff] [blame] | 1015 | BIO_printf(bio_err, |
| 1016 | "Cannot supply both a protocol flag and '-no_<prot>'\n"); |
Matt Caswell | 4bbd4ba | 2016-07-07 11:05:31 +0100 | [diff] [blame] | 1017 | goto end; |
| 1018 | } |
| 1019 | |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 1020 | switch (o) { |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 1021 | case OPT_EOF: |
| 1022 | case OPT_ERR: |
| 1023 | opthelp: |
| 1024 | BIO_printf(bio_err, "%s: Use -help for summary.\n", prog); |
| 1025 | goto end; |
| 1026 | case OPT_HELP: |
| 1027 | opt_help(s_client_options); |
| 1028 | ret = 0; |
| 1029 | goto end; |
Richard Levitte | ab69ac0 | 2016-02-03 00:47:42 +0100 | [diff] [blame] | 1030 | case OPT_4: |
Rich Salz | fe08bd7 | 2016-06-08 12:22:14 -0400 | [diff] [blame] | 1031 | connect_type = use_inet; |
Richard Levitte | ab69ac0 | 2016-02-03 00:47:42 +0100 | [diff] [blame] | 1032 | socket_family = AF_INET; |
Rich Salz | fe08bd7 | 2016-06-08 12:22:14 -0400 | [diff] [blame] | 1033 | count4or6++; |
Richard Levitte | ab69ac0 | 2016-02-03 00:47:42 +0100 | [diff] [blame] | 1034 | break; |
Richard Levitte | ab69ac0 | 2016-02-03 00:47:42 +0100 | [diff] [blame] | 1035 | #ifdef AF_INET6 |
Rich Salz | fe08bd7 | 2016-06-08 12:22:14 -0400 | [diff] [blame] | 1036 | case OPT_6: |
| 1037 | connect_type = use_inet; |
| 1038 | socket_family = AF_INET6; |
| 1039 | count4or6++; |
Richard Levitte | ab69ac0 | 2016-02-03 00:47:42 +0100 | [diff] [blame] | 1040 | break; |
Richard Levitte | ab69ac0 | 2016-02-03 00:47:42 +0100 | [diff] [blame] | 1041 | #endif |
Rich Salz | fe08bd7 | 2016-06-08 12:22:14 -0400 | [diff] [blame] | 1042 | case OPT_HOST: |
| 1043 | connect_type = use_inet; |
Rich Salz | 7315ce8 | 2016-06-10 11:40:32 -0400 | [diff] [blame] | 1044 | freeandcopy(&host, opt_arg()); |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 1045 | break; |
| 1046 | case OPT_PORT: |
Rich Salz | fe08bd7 | 2016-06-08 12:22:14 -0400 | [diff] [blame] | 1047 | connect_type = use_inet; |
Rich Salz | 7315ce8 | 2016-06-10 11:40:32 -0400 | [diff] [blame] | 1048 | freeandcopy(&port, opt_arg()); |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 1049 | break; |
| 1050 | case OPT_CONNECT: |
Rich Salz | fe08bd7 | 2016-06-08 12:22:14 -0400 | [diff] [blame] | 1051 | connect_type = use_inet; |
Rich Salz | 7315ce8 | 2016-06-10 11:40:32 -0400 | [diff] [blame] | 1052 | freeandcopy(&connectstr, opt_arg()); |
Michael Trapp | 552bf8e | 2015-05-08 15:34:07 -0400 | [diff] [blame] | 1053 | break; |
John Hughes | ebc0168 | 2018-02-08 10:49:02 +0100 | [diff] [blame] | 1054 | case OPT_BIND: |
| 1055 | freeandcopy(&bindstr, opt_arg()); |
| 1056 | break; |
Michael Trapp | 552bf8e | 2015-05-08 15:34:07 -0400 | [diff] [blame] | 1057 | case OPT_PROXY: |
| 1058 | proxystr = opt_arg(); |
| 1059 | starttls_proto = PROTO_CONNECT; |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 1060 | break; |
Richard Levitte | ab69ac0 | 2016-02-03 00:47:42 +0100 | [diff] [blame] | 1061 | #ifdef AF_UNIX |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 1062 | case OPT_UNIX: |
Rich Salz | fe08bd7 | 2016-06-08 12:22:14 -0400 | [diff] [blame] | 1063 | connect_type = use_unix; |
Richard Levitte | ab69ac0 | 2016-02-03 00:47:42 +0100 | [diff] [blame] | 1064 | socket_family = AF_UNIX; |
Rich Salz | 7315ce8 | 2016-06-10 11:40:32 -0400 | [diff] [blame] | 1065 | freeandcopy(&host, opt_arg()); |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 1066 | break; |
Richard Levitte | ab69ac0 | 2016-02-03 00:47:42 +0100 | [diff] [blame] | 1067 | #endif |
Rich Salz | d8c25de | 2015-04-25 16:01:21 -0400 | [diff] [blame] | 1068 | case OPT_XMPPHOST: |
Paul Yang | 8176431 | 2017-10-16 15:32:24 -0400 | [diff] [blame] | 1069 | /* fall through, since this is an alias */ |
| 1070 | case OPT_PROTOHOST: |
| 1071 | protohost = opt_arg(); |
Rich Salz | d8c25de | 2015-04-25 16:01:21 -0400 | [diff] [blame] | 1072 | break; |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 1073 | case OPT_VERIFY: |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1074 | verify = SSL_VERIFY_PEER; |
FdaSilvaYY | acc0049 | 2016-08-01 21:30:57 +0200 | [diff] [blame] | 1075 | verify_args.depth = atoi(opt_arg()); |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1076 | if (!c_quiet) |
FdaSilvaYY | acc0049 | 2016-08-01 21:30:57 +0200 | [diff] [blame] | 1077 | BIO_printf(bio_err, "verify depth is %d\n", verify_args.depth); |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 1078 | break; |
| 1079 | case OPT_CERT: |
| 1080 | cert_file = opt_arg(); |
| 1081 | break; |
Dmitry Belyavskiy | a7c04f2 | 2017-02-21 14:22:55 +0300 | [diff] [blame] | 1082 | case OPT_NAMEOPT: |
| 1083 | if (!set_nameopt(opt_arg())) |
| 1084 | goto end; |
| 1085 | break; |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 1086 | case OPT_CRL: |
| 1087 | crl_file = opt_arg(); |
| 1088 | break; |
| 1089 | case OPT_CRL_DOWNLOAD: |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1090 | crl_download = 1; |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 1091 | break; |
| 1092 | case OPT_SESS_OUT: |
| 1093 | sess_out = opt_arg(); |
| 1094 | break; |
| 1095 | case OPT_SESS_IN: |
| 1096 | sess_in = opt_arg(); |
| 1097 | break; |
| 1098 | case OPT_CERTFORM: |
| 1099 | if (!opt_format(opt_arg(), OPT_FMT_PEMDER, &cert_format)) |
| 1100 | goto opthelp; |
| 1101 | break; |
| 1102 | case OPT_CRLFORM: |
| 1103 | if (!opt_format(opt_arg(), OPT_FMT_PEMDER, &crl_format)) |
| 1104 | goto opthelp; |
| 1105 | break; |
| 1106 | case OPT_VERIFY_RET_ERROR: |
FdaSilvaYY | acc0049 | 2016-08-01 21:30:57 +0200 | [diff] [blame] | 1107 | verify_args.return_error = 1; |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 1108 | break; |
| 1109 | case OPT_VERIFY_QUIET: |
FdaSilvaYY | acc0049 | 2016-08-01 21:30:57 +0200 | [diff] [blame] | 1110 | verify_args.quiet = 1; |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 1111 | break; |
| 1112 | case OPT_BRIEF: |
FdaSilvaYY | acc0049 | 2016-08-01 21:30:57 +0200 | [diff] [blame] | 1113 | c_brief = verify_args.quiet = c_quiet = 1; |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 1114 | break; |
| 1115 | case OPT_S_CASES: |
| 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); |
| 1122 | goto end; |
| 1123 | } |
| 1124 | break; |
| 1125 | case OPT_V_CASES: |
| 1126 | if (!opt_verify(o, vpm)) |
| 1127 | goto end; |
| 1128 | vpmtouched++; |
| 1129 | break; |
| 1130 | case OPT_X_CASES: |
| 1131 | if (!args_excert(o, &exc)) |
| 1132 | goto end; |
| 1133 | break; |
| 1134 | case OPT_PREXIT: |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1135 | prexit = 1; |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 1136 | break; |
| 1137 | case OPT_CRLF: |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1138 | crlf = 1; |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 1139 | break; |
| 1140 | case OPT_QUIET: |
| 1141 | c_quiet = c_ign_eof = 1; |
| 1142 | break; |
| 1143 | case OPT_NBIO: |
| 1144 | c_nbio = 1; |
| 1145 | break; |
Rich Salz | 6ba8a5b | 2015-04-25 15:58:22 -0400 | [diff] [blame] | 1146 | case OPT_NOCMDS: |
| 1147 | cmdletters = 0; |
| 1148 | break; |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 1149 | case OPT_ENGINE: |
Rich Salz | 333b070 | 2015-04-25 15:41:29 -0400 | [diff] [blame] | 1150 | e = setup_engine(opt_arg(), 1); |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 1151 | break; |
| 1152 | case OPT_SSL_CLIENT_ENGINE: |
Rich Salz | 333b070 | 2015-04-25 15:41:29 -0400 | [diff] [blame] | 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"); |
| 1157 | goto opthelp; |
| 1158 | } |
Rich Salz | 333b070 | 2015-04-25 15:41:29 -0400 | [diff] [blame] | 1159 | #endif |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 1160 | break; |
Rich Salz | 3ee1eac | 2017-07-05 10:58:48 -0400 | [diff] [blame] | 1161 | case OPT_R_CASES: |
| 1162 | if (!opt_rand(o)) |
| 1163 | goto end; |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 1164 | break; |
| 1165 | case OPT_IGN_EOF: |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1166 | c_ign_eof = 1; |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 1167 | break; |
| 1168 | case OPT_NO_IGN_EOF: |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1169 | c_ign_eof = 0; |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 1170 | break; |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 1171 | case OPT_DEBUG: |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1172 | c_debug = 1; |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 1173 | break; |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 1174 | case OPT_TLSEXTDEBUG: |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1175 | c_tlsextdebug = 1; |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 1176 | break; |
| 1177 | case OPT_STATUS: |
Richard Levitte | 057c676 | 2016-09-19 15:08:58 +0200 | [diff] [blame] | 1178 | #ifndef OPENSSL_NO_OCSP |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1179 | c_status_req = 1; |
Richard Levitte | 057c676 | 2016-09-19 15:08:58 +0200 | [diff] [blame] | 1180 | #endif |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 1181 | break; |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 1182 | case OPT_WDEBUG: |
Rich Salz | 9c3bcfa | 2015-05-15 13:50:38 -0400 | [diff] [blame] | 1183 | #ifdef WATT32 |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1184 | dbug_init(); |
Rich Salz | f642ebc | 2014-08-09 08:02:20 -0400 | [diff] [blame] | 1185 | #endif |
Rich Salz | 9c3bcfa | 2015-05-15 13:50:38 -0400 | [diff] [blame] | 1186 | break; |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 1187 | case OPT_MSG: |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1188 | c_msg = 1; |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 1189 | break; |
| 1190 | case OPT_MSGFILE: |
| 1191 | bio_c_msg = BIO_new_file(opt_arg(), "w"); |
| 1192 | break; |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 1193 | case OPT_TRACE: |
Rich Salz | 9c3bcfa | 2015-05-15 13:50:38 -0400 | [diff] [blame] | 1194 | #ifndef OPENSSL_NO_SSL_TRACE |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1195 | c_msg = 2; |
Dr. Stephen Henson | 93ab9e4 | 2012-06-15 12:46:09 +0000 | [diff] [blame] | 1196 | #endif |
Rich Salz | 9c3bcfa | 2015-05-15 13:50:38 -0400 | [diff] [blame] | 1197 | break; |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 1198 | case OPT_SECURITY_DEBUG: |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1199 | sdebug = 1; |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 1200 | break; |
| 1201 | case OPT_SECURITY_DEBUG_VERBOSE: |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1202 | sdebug = 2; |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 1203 | break; |
| 1204 | case OPT_SHOWCERTS: |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1205 | c_showcerts = 1; |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 1206 | break; |
| 1207 | case OPT_NBIO_TEST: |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1208 | nbio_test = 1; |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 1209 | break; |
| 1210 | case OPT_STATE: |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1211 | state = 1; |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 1212 | break; |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 1213 | case OPT_PSK_IDENTITY: |
| 1214 | psk_identity = opt_arg(); |
| 1215 | break; |
| 1216 | case OPT_PSK: |
| 1217 | for (p = psk_key = opt_arg(); *p; p++) { |
Richard Levitte | 18295f0 | 2016-02-14 13:02:15 +0100 | [diff] [blame] | 1218 | if (isxdigit(_UC(*p))) |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1219 | continue; |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 1220 | BIO_printf(bio_err, "Not a hex number '%s'\n", psk_key); |
| 1221 | goto end; |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1222 | } |
Dr. Stephen Henson | 13cbe5e | 2015-06-25 04:05:07 +0100 | [diff] [blame] | 1223 | break; |
Matt Caswell | e261bdd | 2017-06-12 16:57:06 +0100 | [diff] [blame] | 1224 | case OPT_PSK_SESS: |
| 1225 | psksessf = opt_arg(); |
| 1226 | break; |
Ben Laurie | edc032b | 2011-03-12 17:01:19 +0000 | [diff] [blame] | 1227 | #ifndef OPENSSL_NO_SRP |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 1228 | case OPT_SRPUSER: |
| 1229 | srp_arg.srplogin = opt_arg(); |
Kurt Roeckx | 0d5301a | 2016-02-02 23:58:49 +0100 | [diff] [blame] | 1230 | if (min_version < TLS1_VERSION) |
| 1231 | min_version = TLS1_VERSION; |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 1232 | break; |
| 1233 | case OPT_SRPPASS: |
| 1234 | srppass = opt_arg(); |
Kurt Roeckx | 0d5301a | 2016-02-02 23:58:49 +0100 | [diff] [blame] | 1235 | if (min_version < TLS1_VERSION) |
| 1236 | min_version = TLS1_VERSION; |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 1237 | break; |
| 1238 | case OPT_SRP_STRENGTH: |
| 1239 | srp_arg.strength = atoi(opt_arg()); |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1240 | BIO_printf(bio_err, "SRP minimal length for N is %d\n", |
| 1241 | srp_arg.strength); |
Kurt Roeckx | 0d5301a | 2016-02-02 23:58:49 +0100 | [diff] [blame] | 1242 | if (min_version < TLS1_VERSION) |
| 1243 | min_version = TLS1_VERSION; |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 1244 | break; |
| 1245 | case OPT_SRP_LATEUSER: |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1246 | srp_lateuser = 1; |
Kurt Roeckx | 0d5301a | 2016-02-02 23:58:49 +0100 | [diff] [blame] | 1247 | if (min_version < TLS1_VERSION) |
| 1248 | min_version = TLS1_VERSION; |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 1249 | break; |
| 1250 | case OPT_SRP_MOREGROUPS: |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1251 | srp_arg.amp = 1; |
Kurt Roeckx | 0d5301a | 2016-02-02 23:58:49 +0100 | [diff] [blame] | 1252 | if (min_version < TLS1_VERSION) |
| 1253 | min_version = TLS1_VERSION; |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 1254 | break; |
Ben Laurie | edc032b | 2011-03-12 17:01:19 +0000 | [diff] [blame] | 1255 | #endif |
Dr. Stephen Henson | 287d0b9 | 2015-07-08 23:09:52 +0100 | [diff] [blame] | 1256 | case OPT_SSL_CONFIG: |
| 1257 | ssl_config = opt_arg(); |
| 1258 | break; |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 1259 | case OPT_SSL3: |
Kurt Roeckx | 0d5301a | 2016-02-02 23:58:49 +0100 | [diff] [blame] | 1260 | min_version = SSL3_VERSION; |
| 1261 | max_version = SSL3_VERSION; |
Rich Salz | 9c3bcfa | 2015-05-15 13:50:38 -0400 | [diff] [blame] | 1262 | break; |
Matt Caswell | 582a17d | 2016-10-21 17:39:33 +0100 | [diff] [blame] | 1263 | case OPT_TLS1_3: |
| 1264 | min_version = TLS1_3_VERSION; |
| 1265 | max_version = TLS1_3_VERSION; |
| 1266 | break; |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 1267 | case OPT_TLS1_2: |
Kurt Roeckx | 0d5301a | 2016-02-02 23:58:49 +0100 | [diff] [blame] | 1268 | min_version = TLS1_2_VERSION; |
| 1269 | max_version = TLS1_2_VERSION; |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 1270 | break; |
| 1271 | case OPT_TLS1_1: |
Kurt Roeckx | 0d5301a | 2016-02-02 23:58:49 +0100 | [diff] [blame] | 1272 | min_version = TLS1_1_VERSION; |
| 1273 | max_version = TLS1_1_VERSION; |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 1274 | break; |
| 1275 | case OPT_TLS1: |
Kurt Roeckx | 0d5301a | 2016-02-02 23:58:49 +0100 | [diff] [blame] | 1276 | min_version = TLS1_VERSION; |
| 1277 | max_version = TLS1_VERSION; |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 1278 | break; |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 1279 | case OPT_DTLS: |
Viktor Dukhovni | 6b01bed | 2016-01-18 13:10:21 -0500 | [diff] [blame] | 1280 | #ifndef OPENSSL_NO_DTLS |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1281 | meth = DTLS_client_method(); |
| 1282 | socket_type = SOCK_DGRAM; |
Matt Caswell | 8ccc237 | 2017-04-20 09:57:12 +0100 | [diff] [blame] | 1283 | isdtls = 1; |
Viktor Dukhovni | 6b01bed | 2016-01-18 13:10:21 -0500 | [diff] [blame] | 1284 | #endif |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 1285 | break; |
| 1286 | case OPT_DTLS1: |
Viktor Dukhovni | 6b01bed | 2016-01-18 13:10:21 -0500 | [diff] [blame] | 1287 | #ifndef OPENSSL_NO_DTLS1 |
Kurt Roeckx | 0d5301a | 2016-02-02 23:58:49 +0100 | [diff] [blame] | 1288 | meth = DTLS_client_method(); |
| 1289 | min_version = DTLS1_VERSION; |
| 1290 | max_version = DTLS1_VERSION; |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1291 | socket_type = SOCK_DGRAM; |
Matt Caswell | 8ccc237 | 2017-04-20 09:57:12 +0100 | [diff] [blame] | 1292 | isdtls = 1; |
Viktor Dukhovni | 6b01bed | 2016-01-18 13:10:21 -0500 | [diff] [blame] | 1293 | #endif |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 1294 | break; |
| 1295 | case OPT_DTLS1_2: |
Viktor Dukhovni | 6b01bed | 2016-01-18 13:10:21 -0500 | [diff] [blame] | 1296 | #ifndef OPENSSL_NO_DTLS1_2 |
Kurt Roeckx | 0d5301a | 2016-02-02 23:58:49 +0100 | [diff] [blame] | 1297 | meth = DTLS_client_method(); |
| 1298 | min_version = DTLS1_2_VERSION; |
| 1299 | max_version = DTLS1_2_VERSION; |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1300 | socket_type = SOCK_DGRAM; |
Matt Caswell | 8ccc237 | 2017-04-20 09:57:12 +0100 | [diff] [blame] | 1301 | isdtls = 1; |
| 1302 | #endif |
| 1303 | break; |
| 1304 | case OPT_SCTP: |
| 1305 | #ifndef OPENSSL_NO_SCTP |
| 1306 | protocol = IPPROTO_SCTP; |
Ben Laurie | 36d16f8 | 2005-04-26 16:02:40 +0000 | [diff] [blame] | 1307 | #endif |
Viktor Dukhovni | 6b01bed | 2016-01-18 13:10:21 -0500 | [diff] [blame] | 1308 | break; |
| 1309 | case OPT_TIMEOUT: |
| 1310 | #ifndef OPENSSL_NO_DTLS |
| 1311 | enable_timeouts = 1; |
| 1312 | #endif |
| 1313 | break; |
| 1314 | case OPT_MTU: |
| 1315 | #ifndef OPENSSL_NO_DTLS |
| 1316 | socket_mtu = atol(opt_arg()); |
| 1317 | #endif |
| 1318 | break; |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 1319 | case OPT_FALLBACKSCSV: |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1320 | fallback_scsv = 1; |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 1321 | break; |
| 1322 | case OPT_KEYFORM: |
David Woodhouse | a6972f3 | 2016-09-28 13:07:52 +0100 | [diff] [blame] | 1323 | if (!opt_format(opt_arg(), OPT_FMT_PDE, &key_format)) |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 1324 | goto opthelp; |
| 1325 | break; |
| 1326 | case OPT_PASS: |
| 1327 | passarg = opt_arg(); |
| 1328 | break; |
| 1329 | case OPT_CERT_CHAIN: |
| 1330 | chain_file = opt_arg(); |
| 1331 | break; |
| 1332 | case OPT_KEY: |
| 1333 | key_file = opt_arg(); |
| 1334 | break; |
| 1335 | case OPT_RECONNECT: |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1336 | reconnect = 5; |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 1337 | break; |
| 1338 | case OPT_CAPATH: |
| 1339 | CApath = opt_arg(); |
| 1340 | break; |
Matt Caswell | 2b6bcb7 | 2015-09-22 16:00:52 +0100 | [diff] [blame] | 1341 | case OPT_NOCAPATH: |
| 1342 | noCApath = 1; |
| 1343 | break; |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 1344 | case OPT_CHAINCAPATH: |
| 1345 | chCApath = opt_arg(); |
| 1346 | break; |
| 1347 | case OPT_VERIFYCAPATH: |
| 1348 | vfyCApath = opt_arg(); |
| 1349 | break; |
| 1350 | case OPT_BUILD_CHAIN: |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1351 | build_chain = 1; |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 1352 | break; |
Dr. Stephen Henson | d2add50 | 2017-03-20 18:32:43 +0000 | [diff] [blame] | 1353 | case OPT_REQCAFILE: |
| 1354 | ReqCAfile = opt_arg(); |
| 1355 | break; |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 1356 | case OPT_CAFILE: |
| 1357 | CAfile = opt_arg(); |
| 1358 | break; |
Matt Caswell | 2b6bcb7 | 2015-09-22 16:00:52 +0100 | [diff] [blame] | 1359 | case OPT_NOCAFILE: |
| 1360 | noCAfile = 1; |
| 1361 | break; |
Rob Percival | dd696a5 | 2016-03-02 13:34:05 +0000 | [diff] [blame] | 1362 | #ifndef OPENSSL_NO_CT |
| 1363 | case OPT_NOCT: |
Viktor Dukhovni | 4334143 | 2016-04-07 14:17:37 -0400 | [diff] [blame] | 1364 | ct_validation = 0; |
Rob Percival | dd696a5 | 2016-03-02 13:34:05 +0000 | [diff] [blame] | 1365 | break; |
Viktor Dukhovni | 4334143 | 2016-04-07 14:17:37 -0400 | [diff] [blame] | 1366 | case OPT_CT: |
| 1367 | ct_validation = 1; |
Rob Percival | dd696a5 | 2016-03-02 13:34:05 +0000 | [diff] [blame] | 1368 | break; |
| 1369 | case OPT_CTLOG_FILE: |
| 1370 | ctlog_file = opt_arg(); |
| 1371 | break; |
| 1372 | #endif |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 1373 | case OPT_CHAINCAFILE: |
| 1374 | chCAfile = opt_arg(); |
| 1375 | break; |
| 1376 | case OPT_VERIFYCAFILE: |
| 1377 | vfyCAfile = opt_arg(); |
| 1378 | break; |
Viktor Dukhovni | cddd424 | 2015-12-29 14:25:50 -0500 | [diff] [blame] | 1379 | case OPT_DANE_TLSA_DOMAIN: |
| 1380 | dane_tlsa_domain = opt_arg(); |
| 1381 | break; |
| 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); |
| 1388 | goto end; |
| 1389 | } |
| 1390 | break; |
Viktor Dukhovni | c4fbed6 | 2016-08-19 11:59:47 -0400 | [diff] [blame] | 1391 | case OPT_DANE_EE_NO_NAME: |
| 1392 | dane_ee_no_name = 1; |
| 1393 | break; |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 1394 | case OPT_NEXTPROTONEG: |
Matt Caswell | 1595ca0 | 2016-04-11 11:41:19 +0100 | [diff] [blame] | 1395 | #ifndef OPENSSL_NO_NEXTPROTONEG |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 1396 | next_proto_neg_in = opt_arg(); |
Matt Caswell | 1595ca0 | 2016-04-11 11:41:19 +0100 | [diff] [blame] | 1397 | #endif |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 1398 | break; |
| 1399 | case OPT_ALPN: |
| 1400 | alpn_in = opt_arg(); |
| 1401 | break; |
| 1402 | case OPT_SERVERINFO: |
| 1403 | p = opt_arg(); |
| 1404 | len = strlen(p); |
| 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) |
| 1409 | break; |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1410 | start = i + 1; |
| 1411 | } |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1412 | } |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 1413 | break; |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 1414 | case OPT_STARTTLS: |
| 1415 | if (!opt_pair(opt_arg(), services, &starttls_proto)) |
| 1416 | goto end; |
Matt Caswell | 46da5f9 | 2016-04-15 14:11:09 +0100 | [diff] [blame] | 1417 | break; |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 1418 | case OPT_SERVERNAME: |
| 1419 | servername = opt_arg(); |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 1420 | break; |
Matt Caswell | 11ba87f | 2017-02-13 13:26:37 +0000 | [diff] [blame] | 1421 | case OPT_NOSERVERNAME: |
| 1422 | noservername = 1; |
| 1423 | break; |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 1424 | case OPT_USE_SRTP: |
| 1425 | srtp_profiles = opt_arg(); |
| 1426 | break; |
| 1427 | case OPT_KEYMATEXPORT: |
| 1428 | keymatexportlabel = opt_arg(); |
| 1429 | break; |
| 1430 | case OPT_KEYMATEXPORTLEN: |
| 1431 | keymatexportlen = atoi(opt_arg()); |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1432 | break; |
Matt Caswell | 7e25dd6 | 2015-02-13 23:33:12 +0000 | [diff] [blame] | 1433 | case OPT_ASYNC: |
| 1434 | async = 1; |
| 1435 | break; |
FdaSilvaYY | cf72c75 | 2017-11-05 17:46:48 +0100 | [diff] [blame] | 1436 | case OPT_MAXFRAGLEN: |
| 1437 | len = atoi(opt_arg()); |
| 1438 | switch (len) { |
| 1439 | case 512: |
| 1440 | maxfraglen = TLSEXT_max_fragment_length_512; |
| 1441 | break; |
| 1442 | case 1024: |
| 1443 | maxfraglen = TLSEXT_max_fragment_length_1024; |
| 1444 | break; |
| 1445 | case 2048: |
| 1446 | maxfraglen = TLSEXT_max_fragment_length_2048; |
| 1447 | break; |
| 1448 | case 4096: |
| 1449 | maxfraglen = TLSEXT_max_fragment_length_4096; |
| 1450 | break; |
| 1451 | default: |
| 1452 | BIO_printf(bio_err, |
| 1453 | "%s: Max Fragment Len %u is out of permitted values", |
| 1454 | prog, len); |
| 1455 | goto opthelp; |
| 1456 | } |
| 1457 | break; |
FdaSilvaYY | 28e5ea8 | 2017-04-06 23:47:18 +0200 | [diff] [blame] | 1458 | case OPT_MAX_SEND_FRAG: |
| 1459 | max_send_fragment = atoi(opt_arg()); |
FdaSilvaYY | 28e5ea8 | 2017-04-06 23:47:18 +0200 | [diff] [blame] | 1460 | break; |
Matt Caswell | 032c6d2 | 2015-09-22 11:23:33 +0100 | [diff] [blame] | 1461 | case OPT_SPLIT_SEND_FRAG: |
| 1462 | split_send_fragment = atoi(opt_arg()); |
Matt Caswell | 032c6d2 | 2015-09-22 11:23:33 +0100 | [diff] [blame] | 1463 | break; |
| 1464 | case OPT_MAX_PIPELINES: |
| 1465 | max_pipelines = atoi(opt_arg()); |
| 1466 | break; |
Matt Caswell | dad78fb | 2016-01-13 14:20:25 +0000 | [diff] [blame] | 1467 | case OPT_READ_BUF: |
| 1468 | read_buf_len = atoi(opt_arg()); |
| 1469 | break; |
Peter Wu | 4bf73e9 | 2017-02-01 19:14:27 +0100 | [diff] [blame] | 1470 | case OPT_KEYLOG_FILE: |
| 1471 | keylog_file = opt_arg(); |
| 1472 | break; |
Matt Caswell | 923ac82 | 2017-02-20 16:00:20 +0000 | [diff] [blame] | 1473 | case OPT_EARLY_DATA: |
| 1474 | early_data_file = opt_arg(); |
| 1475 | break; |
Todd Short | 9d75dce | 2017-12-18 16:52:28 -0500 | [diff] [blame] | 1476 | case OPT_FORCE_PHA: |
| 1477 | force_pha = 1; |
| 1478 | break; |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1479 | } |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1480 | } |
Rich Salz | fe08bd7 | 2016-06-08 12:22:14 -0400 | [diff] [blame] | 1481 | if (count4or6 >= 2) { |
| 1482 | BIO_printf(bio_err, "%s: Can't use both -4 and -6\n", prog); |
| 1483 | goto opthelp; |
| 1484 | } |
Matt Caswell | 11ba87f | 2017-02-13 13:26:37 +0000 | [diff] [blame] | 1485 | if (noservername) { |
| 1486 | if (servername != NULL) { |
| 1487 | BIO_printf(bio_err, |
| 1488 | "%s: Can't use -servername and -noservername together\n", |
| 1489 | prog); |
| 1490 | goto opthelp; |
| 1491 | } |
| 1492 | if (dane_tlsa_domain != NULL) { |
| 1493 | BIO_printf(bio_err, |
| 1494 | "%s: Can't use -dane_tlsa_domain and -noservername together\n", |
| 1495 | prog); |
| 1496 | goto opthelp; |
| 1497 | } |
| 1498 | } |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 1499 | argc = opt_num_rest(); |
Cory Benfield | 729ef85 | 2016-06-04 20:46:38 -0700 | [diff] [blame] | 1500 | if (argc == 1) { |
| 1501 | /* If there's a positional argument, it's the equivalent of |
| 1502 | * OPT_CONNECT. |
| 1503 | * Don't allow -connect and a separate argument. |
| 1504 | */ |
| 1505 | if (connectstr != NULL) { |
| 1506 | BIO_printf(bio_err, |
| 1507 | "%s: must not provide both -connect option and target parameter\n", |
| 1508 | prog); |
| 1509 | goto opthelp; |
| 1510 | } |
| 1511 | connect_type = use_inet; |
Matt Caswell | 222417e | 2017-07-07 15:51:02 +0100 | [diff] [blame] | 1512 | freeandcopy(&connectstr, *opt_rest()); |
Cory Benfield | 729ef85 | 2016-06-04 20:46:38 -0700 | [diff] [blame] | 1513 | } else if (argc != 0) { |
Kurt Roeckx | 0335851 | 2016-02-14 20:45:02 +0100 | [diff] [blame] | 1514 | goto opthelp; |
Cory Benfield | 729ef85 | 2016-06-04 20:46:38 -0700 | [diff] [blame] | 1515 | } |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 1516 | |
Paul Yang | 837f87c | 2017-06-16 18:12:02 +0800 | [diff] [blame] | 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"); |
| 1520 | goto opthelp; |
| 1521 | } |
| 1522 | #endif |
Paul Yang | 2234212 | 2017-06-13 01:24:02 +0800 | [diff] [blame] | 1523 | if (proxystr != NULL) { |
Richard Levitte | ab69ac0 | 2016-02-03 00:47:42 +0100 | [diff] [blame] | 1524 | int res; |
| 1525 | char *tmp_host = host, *tmp_port = port; |
Michael Trapp | 552bf8e | 2015-05-08 15:34:07 -0400 | [diff] [blame] | 1526 | if (connectstr == NULL) { |
Cory Benfield | 729ef85 | 2016-06-04 20:46:38 -0700 | [diff] [blame] | 1527 | BIO_printf(bio_err, "%s: -proxy requires use of -connect or target parameter\n", prog); |
Michael Trapp | 552bf8e | 2015-05-08 15:34:07 -0400 | [diff] [blame] | 1528 | goto opthelp; |
| 1529 | } |
Richard Levitte | ab69ac0 | 2016-02-03 00:47:42 +0100 | [diff] [blame] | 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); |
| 1535 | if (!res) { |
FdaSilvaYY | d6073e2 | 2016-08-07 12:04:26 +0200 | [diff] [blame] | 1536 | BIO_printf(bio_err, |
| 1537 | "%s: -proxy argument malformed or ambiguous\n", prog); |
Michael Trapp | 552bf8e | 2015-05-08 15:34:07 -0400 | [diff] [blame] | 1538 | goto end; |
Richard Levitte | ab69ac0 | 2016-02-03 00:47:42 +0100 | [diff] [blame] | 1539 | } |
| 1540 | } else { |
| 1541 | int res = 1; |
| 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); |
| 1550 | if (!res) { |
| 1551 | BIO_printf(bio_err, |
Cory Benfield | 729ef85 | 2016-06-04 20:46:38 -0700 | [diff] [blame] | 1552 | "%s: -connect argument or target parameter malformed or ambiguous\n", |
Richard Levitte | ab69ac0 | 2016-02-03 00:47:42 +0100 | [diff] [blame] | 1553 | prog); |
| 1554 | goto end; |
| 1555 | } |
Michael Trapp | 552bf8e | 2015-05-08 15:34:07 -0400 | [diff] [blame] | 1556 | } |
Michael Trapp | 552bf8e | 2015-05-08 15:34:07 -0400 | [diff] [blame] | 1557 | |
John Hughes | ebc0168 | 2018-02-08 10:49:02 +0100 | [diff] [blame] | 1558 | if (bindstr != NULL) { |
| 1559 | int res; |
| 1560 | res = BIO_parse_hostserv(bindstr, &bindhost, &bindport, |
| 1561 | BIO_PARSE_PRIO_HOST); |
| 1562 | if (!res) { |
| 1563 | BIO_printf(bio_err, |
| 1564 | "%s: -bind argument parameter malformed or ambiguous\n", |
| 1565 | prog); |
| 1566 | goto end; |
| 1567 | } |
| 1568 | } |
| 1569 | |
Balaji Marisetti | 326eaa9 | 2017-08-01 16:54:13 +0530 | [diff] [blame] | 1570 | #ifdef AF_UNIX |
Richard Levitte | ab69ac0 | 2016-02-03 00:47:42 +0100 | [diff] [blame] | 1571 | if (socket_family == AF_UNIX && socket_type != SOCK_STREAM) { |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1572 | BIO_printf(bio_err, |
| 1573 | "Can't use unix sockets and datagrams together\n"); |
| 1574 | goto end; |
| 1575 | } |
Balaji Marisetti | 326eaa9 | 2017-08-01 16:54:13 +0530 | [diff] [blame] | 1576 | #endif |
Ben Laurie | f3b7bda | 2008-11-16 12:47:12 +0000 | [diff] [blame] | 1577 | |
Matt Caswell | 8ccc237 | 2017-04-20 09:57:12 +0100 | [diff] [blame] | 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"); |
| 1582 | goto end; |
| 1583 | } |
| 1584 | /* SCTP is unusual. It uses DTLS over a SOCK_STREAM protocol */ |
| 1585 | socket_type = SOCK_STREAM; |
| 1586 | } |
| 1587 | #endif |
Matt Caswell | 032c6d2 | 2015-09-22 11:23:33 +0100 | [diff] [blame] | 1588 | |
Matt Caswell | e481f9b | 2015-05-15 10:49:56 +0100 | [diff] [blame] | 1589 | #if !defined(OPENSSL_NO_NEXTPROTONEG) |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1590 | next_proto.status = -1; |
| 1591 | if (next_proto_neg_in) { |
| 1592 | next_proto.data = |
| 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"); |
| 1596 | goto end; |
| 1597 | } |
| 1598 | } else |
| 1599 | next_proto.data = NULL; |
Ben Laurie | ee2ffc2 | 2010-07-28 10:06:55 +0000 | [diff] [blame] | 1600 | #endif |
| 1601 | |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 1602 | if (!app_passwd(passarg, NULL, &pass, NULL)) { |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1603 | BIO_printf(bio_err, "Error getting password\n"); |
| 1604 | goto end; |
| 1605 | } |
Dr. Stephen Henson | 826a42a | 2004-11-16 17:30:59 +0000 | [diff] [blame] | 1606 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1607 | if (key_file == NULL) |
| 1608 | key_file = cert_file; |
Dr. Stephen Henson | 826a42a | 2004-11-16 17:30:59 +0000 | [diff] [blame] | 1609 | |
Paul Yang | 2234212 | 2017-06-13 01:24:02 +0800 | [diff] [blame] | 1610 | if (key_file != NULL) { |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 1611 | key = load_key(key_file, key_format, 0, pass, e, |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1612 | "client certificate private key file"); |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 1613 | if (key == NULL) { |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1614 | ERR_print_errors(bio_err); |
| 1615 | goto end; |
| 1616 | } |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1617 | } |
Dr. Stephen Henson | abbc186 | 2004-12-13 18:02:23 +0000 | [diff] [blame] | 1618 | |
Paul Yang | 2234212 | 2017-06-13 01:24:02 +0800 | [diff] [blame] | 1619 | if (cert_file != NULL) { |
Rich Salz | a773b52 | 2016-02-13 22:33:56 -0500 | [diff] [blame] | 1620 | cert = load_cert(cert_file, cert_format, "client certificate file"); |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 1621 | if (cert == NULL) { |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1622 | ERR_print_errors(bio_err); |
| 1623 | goto end; |
| 1624 | } |
| 1625 | } |
Dr. Stephen Henson | 826a42a | 2004-11-16 17:30:59 +0000 | [diff] [blame] | 1626 | |
Paul Yang | 2234212 | 2017-06-13 01:24:02 +0800 | [diff] [blame] | 1627 | if (chain_file != NULL) { |
Rich Salz | a773b52 | 2016-02-13 22:33:56 -0500 | [diff] [blame] | 1628 | if (!load_certs(chain_file, &chain, FORMAT_PEM, NULL, |
Viktor Dukhovni | 0996dc5 | 2016-01-16 00:08:38 -0500 | [diff] [blame] | 1629 | "client certificate chain")) |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1630 | goto end; |
| 1631 | } |
Dr. Stephen Henson | 826a42a | 2004-11-16 17:30:59 +0000 | [diff] [blame] | 1632 | |
Paul Yang | 2234212 | 2017-06-13 01:24:02 +0800 | [diff] [blame] | 1633 | if (crl_file != NULL) { |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1634 | X509_CRL *crl; |
| 1635 | crl = load_crl(crl_file, crl_format); |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 1636 | if (crl == NULL) { |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1637 | BIO_puts(bio_err, "Error loading CRL\n"); |
| 1638 | ERR_print_errors(bio_err); |
| 1639 | goto end; |
| 1640 | } |
| 1641 | crls = sk_X509_CRL_new_null(); |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 1642 | if (crls == NULL || !sk_X509_CRL_push(crls, crl)) { |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1643 | BIO_puts(bio_err, "Error adding CRL\n"); |
| 1644 | ERR_print_errors(bio_err); |
| 1645 | X509_CRL_free(crl); |
| 1646 | goto end; |
| 1647 | } |
| 1648 | } |
Dr. Stephen Henson | abbc186 | 2004-12-13 18:02:23 +0000 | [diff] [blame] | 1649 | |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 1650 | if (!load_excert(&exc)) |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1651 | goto end; |
Richard Levitte | cead7f3 | 2002-07-16 06:52:03 +0000 | [diff] [blame] | 1652 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1653 | if (bio_c_out == NULL) { |
| 1654 | if (c_quiet && !c_debug) { |
| 1655 | bio_c_out = BIO_new(BIO_s_null()); |
Paul Yang | 2234212 | 2017-06-13 01:24:02 +0800 | [diff] [blame] | 1656 | if (c_msg && bio_c_msg == NULL) |
Richard Levitte | a60994d | 2015-09-06 12:20:12 +0200 | [diff] [blame] | 1657 | bio_c_msg = dup_bio_out(FORMAT_TEXT); |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 1658 | } else if (bio_c_out == NULL) |
Richard Levitte | a60994d | 2015-09-06 12:20:12 +0200 | [diff] [blame] | 1659 | bio_c_out = dup_bio_out(FORMAT_TEXT); |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1660 | } |
Ben Laurie | edc032b | 2011-03-12 17:01:19 +0000 | [diff] [blame] | 1661 | #ifndef OPENSSL_NO_SRP |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 1662 | if (!app_passwd(srppass, NULL, &srp_arg.srppassin, NULL)) { |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1663 | BIO_printf(bio_err, "Error getting password\n"); |
| 1664 | goto end; |
| 1665 | } |
Ben Laurie | edc032b | 2011-03-12 17:01:19 +0000 | [diff] [blame] | 1666 | #endif |
| 1667 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1668 | ctx = SSL_CTX_new(meth); |
| 1669 | if (ctx == NULL) { |
| 1670 | ERR_print_errors(bio_err); |
| 1671 | goto end; |
| 1672 | } |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 1673 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1674 | if (sdebug) |
Rich Salz | ecf3a1f | 2015-04-29 11:27:08 -0400 | [diff] [blame] | 1675 | ssl_ctx_security_debug(ctx, sdebug); |
Dr. Stephen Henson | e03c5b5 | 2014-02-17 00:10:00 +0000 | [diff] [blame] | 1676 | |
Richard Levitte | 8f8be10 | 2018-03-19 20:33:50 +0100 | [diff] [blame] | 1677 | if (!config_ctx(cctx, ssl_args, ctx)) |
| 1678 | goto end; |
| 1679 | |
Paul Yang | 2234212 | 2017-06-13 01:24:02 +0800 | [diff] [blame] | 1680 | if (ssl_config != NULL) { |
Dr. Stephen Henson | 287d0b9 | 2015-07-08 23:09:52 +0100 | [diff] [blame] | 1681 | if (SSL_CTX_config(ctx, ssl_config) == 0) { |
| 1682 | BIO_printf(bio_err, "Error using configuration \"%s\"\n", |
| 1683 | ssl_config); |
FdaSilvaYY | d6073e2 | 2016-08-07 12:04:26 +0200 | [diff] [blame] | 1684 | ERR_print_errors(bio_err); |
| 1685 | goto end; |
Dr. Stephen Henson | 287d0b9 | 2015-07-08 23:09:52 +0100 | [diff] [blame] | 1686 | } |
| 1687 | } |
| 1688 | |
Richard Levitte | 8f8be10 | 2018-03-19 20:33:50 +0100 | [diff] [blame] | 1689 | if (min_version != 0 |
| 1690 | && SSL_CTX_set_min_proto_version(ctx, min_version) == 0) |
Kurt Roeckx | 0d5301a | 2016-02-02 23:58:49 +0100 | [diff] [blame] | 1691 | goto end; |
Richard Levitte | 8f8be10 | 2018-03-19 20:33:50 +0100 | [diff] [blame] | 1692 | if (max_version != 0 |
| 1693 | && SSL_CTX_set_max_proto_version(ctx, max_version) == 0) |
Kurt Roeckx | 0d5301a | 2016-02-02 23:58:49 +0100 | [diff] [blame] | 1694 | goto end; |
| 1695 | |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 1696 | if (vpmtouched && !SSL_CTX_set1_param(ctx, vpm)) { |
Matt Caswell | ac59d70 | 2015-03-06 14:39:46 +0000 | [diff] [blame] | 1697 | BIO_printf(bio_err, "Error setting verify params\n"); |
| 1698 | ERR_print_errors(bio_err); |
| 1699 | goto end; |
| 1700 | } |
Dr. Stephen Henson | db99779 | 2009-06-30 15:56:35 +0000 | [diff] [blame] | 1701 | |
Matt Caswell | 5e6f977 | 2015-09-16 23:09:15 +0100 | [diff] [blame] | 1702 | if (async) { |
Matt Caswell | 7e25dd6 | 2015-02-13 23:33:12 +0000 | [diff] [blame] | 1703 | SSL_CTX_set_mode(ctx, SSL_MODE_ASYNC); |
Matt Caswell | 5e6f977 | 2015-09-16 23:09:15 +0100 | [diff] [blame] | 1704 | } |
FdaSilvaYY | 28e5ea8 | 2017-04-06 23:47:18 +0200 | [diff] [blame] | 1705 | |
FdaSilvaYY | 36b2cfb | 2017-04-07 19:15:38 +0200 | [diff] [blame] | 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); |
| 1710 | goto end; |
Matt Caswell | 032c6d2 | 2015-09-22 11:23:33 +0100 | [diff] [blame] | 1711 | } |
FdaSilvaYY | 36b2cfb | 2017-04-07 19:15:38 +0200 | [diff] [blame] | 1712 | |
| 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); |
| 1717 | goto end; |
| 1718 | } |
| 1719 | |
| 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); |
| 1724 | goto end; |
Matt Caswell | 032c6d2 | 2015-09-22 11:23:33 +0100 | [diff] [blame] | 1725 | } |
Matt Caswell | 7e25dd6 | 2015-02-13 23:33:12 +0000 | [diff] [blame] | 1726 | |
Matt Caswell | dad78fb | 2016-01-13 14:20:25 +0000 | [diff] [blame] | 1727 | if (read_buf_len > 0) { |
| 1728 | SSL_CTX_set_default_read_buffer_len(ctx, read_buf_len); |
| 1729 | } |
| 1730 | |
FdaSilvaYY | cf72c75 | 2017-11-05 17:46:48 +0100 | [diff] [blame] | 1731 | if (maxfraglen > 0 |
| 1732 | && !SSL_CTX_set_tlsext_max_fragment_length(ctx, maxfraglen)) { |
| 1733 | BIO_printf(bio_err, |
| 1734 | "%s: Max Fragment Length code %u is out of permitted values" |
| 1735 | "\n", prog, maxfraglen); |
| 1736 | goto end; |
| 1737 | } |
| 1738 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 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); |
| 1743 | goto end; |
| 1744 | } |
Dr. Stephen Henson | d2add50 | 2017-03-20 18:32:43 +0000 | [diff] [blame] | 1745 | if (ReqCAfile != NULL) { |
| 1746 | STACK_OF(X509_NAME) *nm = sk_X509_NAME_new_null(); |
Dr. Stephen Henson | 5969a2d | 2017-03-31 17:04:28 +0100 | [diff] [blame] | 1747 | |
Dr. Stephen Henson | d2add50 | 2017-03-20 18:32:43 +0000 | [diff] [blame] | 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); |
| 1752 | goto end; |
| 1753 | } |
| 1754 | SSL_CTX_set0_CA_list(ctx, nm); |
| 1755 | } |
Dr. Stephen Henson | 59d2d48 | 2008-06-03 11:26:27 +0000 | [diff] [blame] | 1756 | #ifndef OPENSSL_NO_ENGINE |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 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); |
| 1762 | goto end; |
| 1763 | } |
| 1764 | ENGINE_free(ssl_client_engine); |
| 1765 | } |
Dr. Stephen Henson | 59d2d48 | 2008-06-03 11:26:27 +0000 | [diff] [blame] | 1766 | #endif |
| 1767 | |
Nils Larsch | ddac197 | 2006-03-10 23:06:27 +0000 | [diff] [blame] | 1768 | #ifndef OPENSSL_NO_PSK |
Rich Salz | dba3177 | 2016-02-14 00:17:59 -0500 | [diff] [blame] | 1769 | if (psk_key != NULL) { |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1770 | if (c_debug) |
FdaSilvaYY | d6073e2 | 2016-08-07 12:04:26 +0200 | [diff] [blame] | 1771 | BIO_printf(bio_c_out, "PSK key given, setting client callback\n"); |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1772 | SSL_CTX_set_psk_client_callback(ctx, psk_client_cb); |
| 1773 | } |
Piotr Sikora | e783bae | 2014-12-22 11:15:51 +0000 | [diff] [blame] | 1774 | #endif |
Matt Caswell | e261bdd | 2017-06-12 16:57:06 +0100 | [diff] [blame] | 1775 | if (psksessf != NULL) { |
| 1776 | BIO *stmp = BIO_new_file(psksessf, "r"); |
| 1777 | |
| 1778 | if (stmp == NULL) { |
| 1779 | BIO_printf(bio_err, "Can't open PSK session file %s\n", psksessf); |
| 1780 | ERR_print_errors(bio_err); |
| 1781 | goto end; |
| 1782 | } |
| 1783 | psksess = PEM_read_bio_SSL_SESSION(stmp, NULL, 0, NULL); |
| 1784 | BIO_free(stmp); |
| 1785 | if (psksess == NULL) { |
| 1786 | BIO_printf(bio_err, "Can't read PSK session file %s\n", psksessf); |
| 1787 | ERR_print_errors(bio_err); |
| 1788 | goto end; |
| 1789 | } |
Matt Caswell | e261bdd | 2017-06-12 16:57:06 +0100 | [diff] [blame] | 1790 | } |
Matt Caswell | 5ffff59 | 2017-06-12 19:12:13 +0100 | [diff] [blame] | 1791 | if (psk_key != NULL || psksess != NULL) |
| 1792 | SSL_CTX_set_psk_use_session_callback(ctx, psk_use_session_cb); |
| 1793 | |
Piotr Sikora | e783bae | 2014-12-22 11:15:51 +0000 | [diff] [blame] | 1794 | #ifndef OPENSSL_NO_SRTP |
Matt Caswell | ac59d70 | 2015-03-06 14:39:46 +0000 | [diff] [blame] | 1795 | if (srtp_profiles != NULL) { |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 1796 | /* Returns 0 on success! */ |
| 1797 | if (SSL_CTX_set_tlsext_use_srtp(ctx, srtp_profiles) != 0) { |
Matt Caswell | ac59d70 | 2015-03-06 14:39:46 +0000 | [diff] [blame] | 1798 | BIO_printf(bio_err, "Error setting SRTP profile\n"); |
| 1799 | ERR_print_errors(bio_err); |
| 1800 | goto end; |
| 1801 | } |
| 1802 | } |
Nils Larsch | ddac197 | 2006-03-10 23:06:27 +0000 | [diff] [blame] | 1803 | #endif |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 1804 | |
Paul Yang | 2234212 | 2017-06-13 01:24:02 +0800 | [diff] [blame] | 1805 | if (exc != NULL) |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1806 | ssl_ctx_set_excert(ctx, exc); |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 1807 | |
Matt Caswell | e481f9b | 2015-05-15 10:49:56 +0100 | [diff] [blame] | 1808 | #if !defined(OPENSSL_NO_NEXTPROTONEG) |
Paul Yang | 2234212 | 2017-06-13 01:24:02 +0800 | [diff] [blame] | 1809 | if (next_proto.data != NULL) |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1810 | SSL_CTX_set_next_proto_select_cb(ctx, next_proto_cb, &next_proto); |
Matt Caswell | e481f9b | 2015-05-15 10:49:56 +0100 | [diff] [blame] | 1811 | #endif |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1812 | if (alpn_in) { |
Todd Short | 817cd0d | 2016-03-05 08:47:55 -0500 | [diff] [blame] | 1813 | size_t alpn_len; |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1814 | unsigned char *alpn = next_protos_parse(&alpn_len, alpn_in); |
Adam Langley | 6f017a8 | 2013-04-15 18:07:47 -0400 | [diff] [blame] | 1815 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1816 | if (alpn == NULL) { |
| 1817 | BIO_printf(bio_err, "Error parsing -alpn argument\n"); |
| 1818 | goto end; |
| 1819 | } |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 1820 | /* Returns 0 on success! */ |
| 1821 | if (SSL_CTX_set_alpn_protos(ctx, alpn, alpn_len) != 0) { |
FdaSilvaYY | d6073e2 | 2016-08-07 12:04:26 +0200 | [diff] [blame] | 1822 | BIO_printf(bio_err, "Error setting ALPN\n"); |
Matt Caswell | ac59d70 | 2015-03-06 14:39:46 +0000 | [diff] [blame] | 1823 | goto end; |
| 1824 | } |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1825 | OPENSSL_free(alpn); |
| 1826 | } |
Matt Caswell | e481f9b | 2015-05-15 10:49:56 +0100 | [diff] [blame] | 1827 | |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 1828 | for (i = 0; i < serverinfo_count; i++) { |
Viktor Dukhovni | 61986d3 | 2015-04-16 01:50:03 -0400 | [diff] [blame] | 1829 | if (!SSL_CTX_add_client_custom_ext(ctx, |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 1830 | serverinfo_types[i], |
| 1831 | NULL, NULL, NULL, |
| 1832 | serverinfo_cli_parse_cb, NULL)) { |
| 1833 | BIO_printf(bio_err, |
FdaSilvaYY | d6073e2 | 2016-08-07 12:04:26 +0200 | [diff] [blame] | 1834 | "Warning: Unable to add custom extension %u, skipping\n", |
| 1835 | serverinfo_types[i]); |
Matt Caswell | ac59d70 | 2015-03-06 14:39:46 +0000 | [diff] [blame] | 1836 | } |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1837 | } |
Ben Laurie | ee2ffc2 | 2010-07-28 10:06:55 +0000 | [diff] [blame] | 1838 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1839 | if (state) |
| 1840 | SSL_CTX_set_info_callback(ctx, apps_ssl_info_callback); |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 1841 | |
Rob Percival | dd696a5 | 2016-03-02 13:34:05 +0000 | [diff] [blame] | 1842 | #ifndef OPENSSL_NO_CT |
Viktor Dukhovni | 4334143 | 2016-04-07 14:17:37 -0400 | [diff] [blame] | 1843 | /* Enable SCT processing, without early connection termination */ |
| 1844 | if (ct_validation && |
| 1845 | !SSL_CTX_enable_ct(ctx, SSL_CT_VALIDATION_PERMISSIVE)) { |
Rob Percival | dd696a5 | 2016-03-02 13:34:05 +0000 | [diff] [blame] | 1846 | ERR_print_errors(bio_err); |
| 1847 | goto end; |
| 1848 | } |
| 1849 | |
Rob Percival | 70073f3 | 2016-03-07 18:38:06 +0000 | [diff] [blame] | 1850 | if (!ctx_set_ctlog_list_file(ctx, ctlog_file)) { |
Viktor Dukhovni | 4334143 | 2016-04-07 14:17:37 -0400 | [diff] [blame] | 1851 | if (ct_validation) { |
Rob Percival | 328f36c | 2016-03-04 19:06:43 +0000 | [diff] [blame] | 1852 | ERR_print_errors(bio_err); |
| 1853 | goto end; |
| 1854 | } |
| 1855 | |
| 1856 | /* |
| 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). |
| 1861 | */ |
| 1862 | ERR_clear_error(); |
Rob Percival | dd696a5 | 2016-03-02 13:34:05 +0000 | [diff] [blame] | 1863 | } |
| 1864 | #endif |
| 1865 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1866 | SSL_CTX_set_verify(ctx, verify, verify_callback); |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 1867 | |
Matt Caswell | 2b6bcb7 | 2015-09-22 16:00:52 +0100 | [diff] [blame] | 1868 | if (!ctx_set_verify_locations(ctx, CAfile, CApath, noCAfile, noCApath)) { |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1869 | ERR_print_errors(bio_err); |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 1870 | goto end; |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1871 | } |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 1872 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1873 | ssl_ctx_add_crls(ctx, crls, crl_download); |
Dr. Stephen Henson | fdb78f3 | 2012-12-02 16:16:28 +0000 | [diff] [blame] | 1874 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1875 | if (!set_cert_key_stuff(ctx, cert, key, chain, build_chain)) |
| 1876 | goto end; |
Dr. Stephen Henson | 74ecfab | 2012-07-23 23:34:28 +0000 | [diff] [blame] | 1877 | |
Matt Caswell | 11ba87f | 2017-02-13 13:26:37 +0000 | [diff] [blame] | 1878 | if (!noservername) { |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 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); |
| 1882 | } |
| 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"); |
| 1887 | goto end; |
| 1888 | } |
| 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); |
| 1897 | } |
| 1898 | # endif |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 1899 | |
Viktor Dukhovni | cddd424 | 2015-12-29 14:25:50 -0500 | [diff] [blame] | 1900 | if (dane_tlsa_domain != NULL) { |
| 1901 | if (SSL_CTX_dane_enable(ctx) <= 0) { |
| 1902 | BIO_printf(bio_err, |
FdaSilvaYY | d6073e2 | 2016-08-07 12:04:26 +0200 | [diff] [blame] | 1903 | "%s: Error enabling DANE TLSA authentication.\n", |
| 1904 | prog); |
Viktor Dukhovni | cddd424 | 2015-12-29 14:25:50 -0500 | [diff] [blame] | 1905 | ERR_print_errors(bio_err); |
| 1906 | goto end; |
| 1907 | } |
| 1908 | } |
| 1909 | |
Matt Caswell | be62b22 | 2017-01-13 14:25:15 +0000 | [diff] [blame] | 1910 | /* |
| 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. |
| 1914 | */ |
Paul Yang | 2234212 | 2017-06-13 01:24:02 +0800 | [diff] [blame] | 1915 | if (sess_out != NULL) { |
Matt Caswell | be62b22 | 2017-01-13 14:25:15 +0000 | [diff] [blame] | 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); |
| 1919 | } |
| 1920 | |
Peter Wu | 4bf73e9 | 2017-02-01 19:14:27 +0100 | [diff] [blame] | 1921 | if (set_keylog_file(ctx, keylog_file)) |
| 1922 | goto end; |
| 1923 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1924 | con = SSL_new(ctx); |
KaoruToda | f84a648 | 2017-10-19 23:41:03 +0900 | [diff] [blame] | 1925 | if (con == NULL) |
| 1926 | goto end; |
| 1927 | |
Todd Short | 9d75dce | 2017-12-18 16:52:28 -0500 | [diff] [blame] | 1928 | if (force_pha) |
| 1929 | SSL_force_post_handshake_auth(con); |
| 1930 | |
Paul Yang | 2234212 | 2017-06-13 01:24:02 +0800 | [diff] [blame] | 1931 | if (sess_in != NULL) { |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1932 | SSL_SESSION *sess; |
| 1933 | BIO *stmp = BIO_new_file(sess_in, "r"); |
Paul Yang | 2234212 | 2017-06-13 01:24:02 +0800 | [diff] [blame] | 1934 | if (stmp == NULL) { |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1935 | BIO_printf(bio_err, "Can't open session file %s\n", sess_in); |
| 1936 | ERR_print_errors(bio_err); |
| 1937 | goto end; |
| 1938 | } |
| 1939 | sess = PEM_read_bio_SSL_SESSION(stmp, NULL, 0, NULL); |
| 1940 | BIO_free(stmp); |
Paul Yang | 2234212 | 2017-06-13 01:24:02 +0800 | [diff] [blame] | 1941 | if (sess == NULL) { |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1942 | BIO_printf(bio_err, "Can't open session file %s\n", sess_in); |
| 1943 | ERR_print_errors(bio_err); |
| 1944 | goto end; |
| 1945 | } |
Viktor Dukhovni | 61986d3 | 2015-04-16 01:50:03 -0400 | [diff] [blame] | 1946 | if (!SSL_set_session(con, sess)) { |
Matt Caswell | ac59d70 | 2015-03-06 14:39:46 +0000 | [diff] [blame] | 1947 | BIO_printf(bio_err, "Can't set session\n"); |
| 1948 | ERR_print_errors(bio_err); |
| 1949 | goto end; |
| 1950 | } |
Matt Caswell | c5de99a | 2017-07-21 11:39:01 +0100 | [diff] [blame] | 1951 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1952 | SSL_SESSION_free(sess); |
| 1953 | } |
Bodo Moeller | cf6da05 | 2014-10-15 04:03:28 +0200 | [diff] [blame] | 1954 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1955 | if (fallback_scsv) |
| 1956 | SSL_set_mode(con, SSL_MODE_SEND_FALLBACK_SCSV); |
Bodo Moeller | cf6da05 | 2014-10-15 04:03:28 +0200 | [diff] [blame] | 1957 | |
Matt Caswell | 11ba87f | 2017-02-13 13:26:37 +0000 | [diff] [blame] | 1958 | if (!noservername && (servername != NULL || dane_tlsa_domain == NULL)) { |
| 1959 | if (servername == NULL) |
| 1960 | servername = (host == NULL) ? "localhost" : host; |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 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); |
| 1964 | goto end; |
| 1965 | } |
| 1966 | } |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 1967 | |
Viktor Dukhovni | cddd424 | 2015-12-29 14:25:50 -0500 | [diff] [blame] | 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); |
| 1973 | goto end; |
| 1974 | } |
| 1975 | if (dane_tlsa_rrset == NULL) { |
| 1976 | BIO_printf(bio_err, "%s: DANE TLSA authentication requires at " |
Viktor Dukhovni | bc87fb6 | 2016-08-18 16:57:55 -0400 | [diff] [blame] | 1977 | "least one -dane_tlsa_rrdata option.\n", prog); |
Viktor Dukhovni | cddd424 | 2015-12-29 14:25:50 -0500 | [diff] [blame] | 1978 | goto end; |
| 1979 | } |
| 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); |
| 1983 | goto end; |
| 1984 | } |
Viktor Dukhovni | c4fbed6 | 2016-08-19 11:59:47 -0400 | [diff] [blame] | 1985 | if (dane_ee_no_name) |
| 1986 | SSL_dane_set_flags(con, DANE_FLAG_NO_DANE_EE_NAMECHECKS); |
Viktor Dukhovni | cddd424 | 2015-12-29 14:25:50 -0500 | [diff] [blame] | 1987 | } else if (dane_tlsa_rrset != NULL) { |
FdaSilvaYY | bde136c | 2016-03-18 19:02:17 +0100 | [diff] [blame] | 1988 | BIO_printf(bio_err, "%s: DANE TLSA authentication requires the " |
| 1989 | "-dane_tlsa_domain option.\n", prog); |
| 1990 | goto end; |
Viktor Dukhovni | cddd424 | 2015-12-29 14:25:50 -0500 | [diff] [blame] | 1991 | } |
| 1992 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1993 | re_start: |
John Hughes | ebc0168 | 2018-02-08 10:49:02 +0100 | [diff] [blame] | 1994 | if (init_client(&s, host, port, bindhost, bindport, socket_family, |
| 1995 | socket_type, protocol) == 0) { |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1996 | BIO_printf(bio_err, "connect:errno=%d\n", get_last_socket_error()); |
Rich Salz | 8731a4f | 2016-03-02 16:12:46 -0500 | [diff] [blame] | 1997 | BIO_closesocket(s); |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1998 | goto end; |
| 1999 | } |
| 2000 | BIO_printf(bio_c_out, "CONNECTED(%08X)\n", s); |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 2001 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 2002 | if (c_nbio) { |
Rich Salz | ba81081 | 2016-02-27 13:24:28 -0500 | [diff] [blame] | 2003 | if (!BIO_socket_nbio(s, 1)) { |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 2004 | ERR_print_errors(bio_err); |
| 2005 | goto end; |
| 2006 | } |
Rich Salz | ba81081 | 2016-02-27 13:24:28 -0500 | [diff] [blame] | 2007 | BIO_printf(bio_c_out, "Turned on non blocking io\n"); |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 2008 | } |
Matt Caswell | 40a8e9c | 2016-03-18 14:17:03 +0000 | [diff] [blame] | 2009 | #ifndef OPENSSL_NO_DTLS |
Matt Caswell | 8ccc237 | 2017-04-20 09:57:12 +0100 | [diff] [blame] | 2010 | if (isdtls) { |
Richard Levitte | 642a166 | 2016-07-19 13:52:26 +0200 | [diff] [blame] | 2011 | union BIO_sock_info_u peer_info; |
Ben Laurie | 36d16f8 | 2005-04-26 16:02:40 +0000 | [diff] [blame] | 2012 | |
Matt Caswell | 8ccc237 | 2017-04-20 09:57:12 +0100 | [diff] [blame] | 2013 | #ifndef OPENSSL_NO_SCTP |
| 2014 | if (protocol == IPPROTO_SCTP) |
| 2015 | sbio = BIO_new_dgram_sctp(s, BIO_NOCLOSE); |
| 2016 | else |
| 2017 | #endif |
| 2018 | sbio = BIO_new_dgram(s, BIO_NOCLOSE); |
| 2019 | |
Richard Levitte | 642a166 | 2016-07-19 13:52:26 +0200 | [diff] [blame] | 2020 | if ((peer_info.addr = BIO_ADDR_new()) == NULL) { |
| 2021 | BIO_printf(bio_err, "memory allocation failure\n"); |
| 2022 | BIO_closesocket(s); |
Richard Levitte | d6accd5 | 2016-07-19 15:20:00 +0200 | [diff] [blame] | 2023 | goto end; |
Richard Levitte | 642a166 | 2016-07-19 13:52:26 +0200 | [diff] [blame] | 2024 | } |
| 2025 | if (!BIO_sock_info(s, BIO_SOCK_INFO_ADDRESS, &peer_info)) { |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 2026 | BIO_printf(bio_err, "getsockname:errno=%d\n", |
| 2027 | get_last_socket_error()); |
Richard Levitte | 642a166 | 2016-07-19 13:52:26 +0200 | [diff] [blame] | 2028 | BIO_ADDR_free(peer_info.addr); |
Rich Salz | 8731a4f | 2016-03-02 16:12:46 -0500 | [diff] [blame] | 2029 | BIO_closesocket(s); |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 2030 | goto end; |
| 2031 | } |
Ben Laurie | 36d16f8 | 2005-04-26 16:02:40 +0000 | [diff] [blame] | 2032 | |
Richard Levitte | 642a166 | 2016-07-19 13:52:26 +0200 | [diff] [blame] | 2033 | (void)BIO_ctrl_set_connected(sbio, peer_info.addr); |
| 2034 | BIO_ADDR_free(peer_info.addr); |
| 2035 | peer_info.addr = NULL; |
Ben Laurie | 36d16f8 | 2005-04-26 16:02:40 +0000 | [diff] [blame] | 2036 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 2037 | if (enable_timeouts) { |
| 2038 | timeout.tv_sec = 0; |
| 2039 | timeout.tv_usec = DGRAM_RCV_TIMEOUT; |
| 2040 | BIO_ctrl(sbio, BIO_CTRL_DGRAM_SET_RECV_TIMEOUT, 0, &timeout); |
Ben Laurie | 36d16f8 | 2005-04-26 16:02:40 +0000 | [diff] [blame] | 2041 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 2042 | timeout.tv_sec = 0; |
| 2043 | timeout.tv_usec = DGRAM_SND_TIMEOUT; |
| 2044 | BIO_ctrl(sbio, BIO_CTRL_DGRAM_SET_SEND_TIMEOUT, 0, &timeout); |
| 2045 | } |
Ben Laurie | 36d16f8 | 2005-04-26 16:02:40 +0000 | [diff] [blame] | 2046 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 2047 | if (socket_mtu) { |
| 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)); |
| 2051 | BIO_free(sbio); |
| 2052 | goto shut; |
| 2053 | } |
| 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"); |
| 2057 | BIO_free(sbio); |
| 2058 | goto shut; |
| 2059 | } |
Paul Yang | 2234212 | 2017-06-13 01:24:02 +0800 | [diff] [blame] | 2060 | } else { |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 2061 | /* want to do MTU discovery */ |
| 2062 | BIO_ctrl(sbio, BIO_CTRL_DGRAM_MTU_DISCOVER, 0, NULL); |
Paul Yang | 2234212 | 2017-06-13 01:24:02 +0800 | [diff] [blame] | 2063 | } |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 2064 | } else |
Matt Caswell | 40a8e9c | 2016-03-18 14:17:03 +0000 | [diff] [blame] | 2065 | #endif /* OPENSSL_NO_DTLS */ |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 2066 | sbio = BIO_new_socket(s, BIO_NOCLOSE); |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 2067 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 2068 | if (nbio_test) { |
| 2069 | BIO *test; |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 2070 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 2071 | test = BIO_new(BIO_f_nbio_test()); |
| 2072 | sbio = BIO_push(test, sbio); |
| 2073 | } |
| 2074 | |
| 2075 | if (c_debug) { |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 2076 | BIO_set_callback(sbio, bio_dump_callback); |
| 2077 | BIO_set_callback_arg(sbio, (char *)bio_c_out); |
| 2078 | } |
| 2079 | if (c_msg) { |
Dr. Stephen Henson | 93ab9e4 | 2012-06-15 12:46:09 +0000 | [diff] [blame] | 2080 | #ifndef OPENSSL_NO_SSL_TRACE |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 2081 | if (c_msg == 2) |
| 2082 | SSL_set_msg_callback(con, SSL_trace); |
| 2083 | else |
Dr. Stephen Henson | 93ab9e4 | 2012-06-15 12:46:09 +0000 | [diff] [blame] | 2084 | #endif |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 2085 | SSL_set_msg_callback(con, msg_cb); |
| 2086 | SSL_set_msg_callback_arg(con, bio_c_msg ? bio_c_msg : bio_c_out); |
| 2087 | } |
Matt Caswell | e481f9b | 2015-05-15 10:49:56 +0100 | [diff] [blame] | 2088 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 2089 | if (c_tlsextdebug) { |
| 2090 | SSL_set_tlsext_debug_callback(con, tlsext_cb); |
| 2091 | SSL_set_tlsext_debug_arg(con, bio_c_out); |
| 2092 | } |
Matt Caswell | 3e41ac3 | 2016-03-21 16:54:53 +0000 | [diff] [blame] | 2093 | #ifndef OPENSSL_NO_OCSP |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 2094 | if (c_status_req) { |
| 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); |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 2098 | } |
Matt Caswell | 3e41ac3 | 2016-03-21 16:54:53 +0000 | [diff] [blame] | 2099 | #endif |
Ben Laurie | 6caa4ed | 2008-10-26 18:40:52 +0000 | [diff] [blame] | 2100 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 2101 | SSL_set_bio(con, sbio, sbio); |
| 2102 | SSL_set_connect_state(con); |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 2103 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 2104 | /* ok, lets connect */ |
Richard Levitte | 51e5133 | 2016-09-15 11:20:18 +0200 | [diff] [blame] | 2105 | if (fileno_stdin() > SSL_get_fd(con)) |
| 2106 | width = fileno_stdin() + 1; |
Richard Levitte | 0d3b658 | 2016-08-03 21:16:43 +0200 | [diff] [blame] | 2107 | else |
| 2108 | width = SSL_get_fd(con) + 1; |
Richard Levitte | 51e5133 | 2016-09-15 11:20:18 +0200 | [diff] [blame] | 2109 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 2110 | read_tty = 1; |
| 2111 | write_tty = 0; |
| 2112 | tty_on = 0; |
| 2113 | read_ssl = 1; |
| 2114 | write_ssl = 1; |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 2115 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 2116 | cbuf_len = 0; |
| 2117 | cbuf_off = 0; |
| 2118 | sbuf_len = 0; |
| 2119 | sbuf_off = 0; |
Carlos Alberto Lopez Perez | 4249d4b | 2012-08-06 02:00:07 +0200 | [diff] [blame] | 2120 | |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 2121 | switch ((PROTOCOL_CHOICE) starttls_proto) { |
| 2122 | case PROTO_OFF: |
| 2123 | break; |
Robert Scheck | 9576545 | 2016-11-17 17:16:50 +0100 | [diff] [blame] | 2124 | case PROTO_LMTP: |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 2125 | case PROTO_SMTP: |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 2126 | { |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 2127 | /* |
| 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. |
| 2134 | */ |
| 2135 | int foundit = 0; |
| 2136 | BIO *fbio = BIO_new(BIO_f_buffer()); |
Robert Scheck | 20967af | 2017-02-09 22:20:59 +0100 | [diff] [blame] | 2137 | |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 2138 | BIO_push(fbio, sbio); |
Robert Scheck | 9576545 | 2016-11-17 17:16:50 +0100 | [diff] [blame] | 2139 | /* Wait for multi-line response to end from LMTP or SMTP */ |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 2140 | do { |
| 2141 | mbuf_len = BIO_gets(fbio, mbuf, BUFSIZZ); |
Robert Scheck | 20967af | 2017-02-09 22:20:59 +0100 | [diff] [blame] | 2142 | } while (mbuf_len > 3 && mbuf[3] == '-'); |
Paul Yang | 8176431 | 2017-10-16 15:32:24 -0400 | [diff] [blame] | 2143 | if (protohost == NULL) |
| 2144 | protohost = "mail.example.com"; |
Robert Scheck | 7524c52 | 2016-11-18 00:01:28 +0100 | [diff] [blame] | 2145 | if (starttls_proto == (int)PROTO_LMTP) |
Paul Yang | 8176431 | 2017-10-16 15:32:24 -0400 | [diff] [blame] | 2146 | BIO_printf(fbio, "LHLO %s\r\n", protohost); |
Robert Scheck | 7524c52 | 2016-11-18 00:01:28 +0100 | [diff] [blame] | 2147 | else |
Paul Yang | 8176431 | 2017-10-16 15:32:24 -0400 | [diff] [blame] | 2148 | BIO_printf(fbio, "EHLO %s\r\n", protohost); |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 2149 | (void)BIO_flush(fbio); |
Robert Scheck | 9576545 | 2016-11-17 17:16:50 +0100 | [diff] [blame] | 2150 | /* |
| 2151 | * Wait for multi-line response to end LHLO LMTP or EHLO SMTP |
| 2152 | * response. |
| 2153 | */ |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 2154 | do { |
| 2155 | mbuf_len = BIO_gets(fbio, mbuf, BUFSIZZ); |
| 2156 | if (strstr(mbuf, "STARTTLS")) |
| 2157 | foundit = 1; |
Robert Scheck | 20967af | 2017-02-09 22:20:59 +0100 | [diff] [blame] | 2158 | } while (mbuf_len > 3 && mbuf[3] == '-'); |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 2159 | (void)BIO_flush(fbio); |
| 2160 | BIO_pop(fbio); |
| 2161 | BIO_free(fbio); |
| 2162 | if (!foundit) |
| 2163 | BIO_printf(bio_err, |
Robert Scheck | 20967af | 2017-02-09 22:20:59 +0100 | [diff] [blame] | 2164 | "Didn't find STARTTLS in server response," |
Quanah Gibson-Mount | c7944cf | 2015-11-22 21:35:15 -0600 | [diff] [blame] | 2165 | " trying anyway...\n"); |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 2166 | BIO_printf(sbio, "STARTTLS\r\n"); |
| 2167 | BIO_read(sbio, sbuf, BUFSIZZ); |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 2168 | } |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 2169 | break; |
| 2170 | case PROTO_POP3: |
| 2171 | { |
| 2172 | BIO_read(sbio, mbuf, BUFSIZZ); |
| 2173 | BIO_printf(sbio, "STLS\r\n"); |
| 2174 | mbuf_len = BIO_read(sbio, sbuf, BUFSIZZ); |
| 2175 | if (mbuf_len < 0) { |
| 2176 | BIO_printf(bio_err, "BIO_read failed\n"); |
| 2177 | goto end; |
| 2178 | } |
| 2179 | } |
| 2180 | break; |
| 2181 | case PROTO_IMAP: |
| 2182 | { |
| 2183 | int foundit = 0; |
| 2184 | BIO *fbio = BIO_new(BIO_f_buffer()); |
Robert Scheck | 20967af | 2017-02-09 22:20:59 +0100 | [diff] [blame] | 2185 | |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 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 */ |
| 2192 | do { |
| 2193 | mbuf_len = BIO_gets(fbio, mbuf, BUFSIZZ); |
| 2194 | if (strstr(mbuf, "STARTTLS")) |
| 2195 | foundit = 1; |
| 2196 | } |
| 2197 | while (mbuf_len > 3 && mbuf[0] != '.'); |
| 2198 | (void)BIO_flush(fbio); |
| 2199 | BIO_pop(fbio); |
| 2200 | BIO_free(fbio); |
| 2201 | if (!foundit) |
| 2202 | BIO_printf(bio_err, |
Robert Scheck | 20967af | 2017-02-09 22:20:59 +0100 | [diff] [blame] | 2203 | "Didn't find STARTTLS in server response," |
Quanah Gibson-Mount | c7944cf | 2015-11-22 21:35:15 -0600 | [diff] [blame] | 2204 | " trying anyway...\n"); |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 2205 | BIO_printf(sbio, ". STARTTLS\r\n"); |
| 2206 | BIO_read(sbio, sbuf, BUFSIZZ); |
| 2207 | } |
| 2208 | break; |
| 2209 | case PROTO_FTP: |
| 2210 | { |
| 2211 | BIO *fbio = BIO_new(BIO_f_buffer()); |
Robert Scheck | 20967af | 2017-02-09 22:20:59 +0100 | [diff] [blame] | 2212 | |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 2213 | BIO_push(fbio, sbio); |
| 2214 | /* wait for multi-line response to end from FTP */ |
| 2215 | do { |
| 2216 | mbuf_len = BIO_gets(fbio, mbuf, BUFSIZZ); |
| 2217 | } |
| 2218 | while (mbuf_len > 3 && mbuf[3] == '-'); |
| 2219 | (void)BIO_flush(fbio); |
| 2220 | BIO_pop(fbio); |
| 2221 | BIO_free(fbio); |
| 2222 | BIO_printf(sbio, "AUTH TLS\r\n"); |
| 2223 | BIO_read(sbio, sbuf, BUFSIZZ); |
| 2224 | } |
| 2225 | break; |
| 2226 | case PROTO_XMPP: |
Kai Engert | 898ea7b | 2015-07-29 17:41:00 -0400 | [diff] [blame] | 2227 | case PROTO_XMPP_SERVER: |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 2228 | { |
| 2229 | int seen = 0; |
| 2230 | BIO_printf(sbio, "<stream:stream " |
| 2231 | "xmlns:stream='http://etherx.jabber.org/streams' " |
Kai Engert | 898ea7b | 2015-07-29 17:41:00 -0400 | [diff] [blame] | 2232 | "xmlns='jabber:%s' to='%s' version='1.0'>", |
| 2233 | starttls_proto == PROTO_XMPP ? "client" : "server", |
Paul Yang | 8176431 | 2017-10-16 15:32:24 -0400 | [diff] [blame] | 2234 | protohost ? protohost : host); |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 2235 | seen = BIO_read(sbio, mbuf, BUFSIZZ); |
Robert Scheck | 20967af | 2017-02-09 22:20:59 +0100 | [diff] [blame] | 2236 | if (seen < 0) { |
| 2237 | BIO_printf(bio_err, "BIO_read failed\n"); |
| 2238 | goto end; |
| 2239 | } |
| 2240 | mbuf[seen] = '\0'; |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 2241 | while (!strstr |
| 2242 | (mbuf, "<starttls xmlns='urn:ietf:params:xml:ns:xmpp-tls'") |
| 2243 | && !strstr(mbuf, |
| 2244 | "<starttls xmlns=\"urn:ietf:params:xml:ns:xmpp-tls\"")) |
| 2245 | { |
| 2246 | seen = BIO_read(sbio, mbuf, BUFSIZZ); |
| 2247 | |
| 2248 | if (seen <= 0) |
| 2249 | goto shut; |
| 2250 | |
Robert Scheck | 20967af | 2017-02-09 22:20:59 +0100 | [diff] [blame] | 2251 | mbuf[seen] = '\0'; |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 2252 | } |
| 2253 | BIO_printf(sbio, |
| 2254 | "<starttls xmlns='urn:ietf:params:xml:ns:xmpp-tls'/>"); |
| 2255 | seen = BIO_read(sbio, sbuf, BUFSIZZ); |
Robert Scheck | 20967af | 2017-02-09 22:20:59 +0100 | [diff] [blame] | 2256 | if (seen < 0) { |
| 2257 | BIO_printf(bio_err, "BIO_read failed\n"); |
| 2258 | goto shut; |
| 2259 | } |
| 2260 | sbuf[seen] = '\0'; |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 2261 | if (!strstr(sbuf, "<proceed")) |
| 2262 | goto shut; |
Robert Scheck | 20967af | 2017-02-09 22:20:59 +0100 | [diff] [blame] | 2263 | mbuf[0] = '\0'; |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 2264 | } |
| 2265 | break; |
Rich Salz | d8c25de | 2015-04-25 16:01:21 -0400 | [diff] [blame] | 2266 | case PROTO_TELNET: |
| 2267 | { |
| 2268 | static const unsigned char tls_do[] = { |
| 2269 | /* IAC DO START_TLS */ |
| 2270 | 255, 253, 46 |
| 2271 | }; |
| 2272 | static const unsigned char tls_will[] = { |
| 2273 | /* IAC WILL START_TLS */ |
| 2274 | 255, 251, 46 |
| 2275 | }; |
| 2276 | static const unsigned char tls_follows[] = { |
| 2277 | /* IAC SB START_TLS FOLLOWS IAC SE */ |
| 2278 | 255, 250, 46, 1, 255, 240 |
| 2279 | }; |
| 2280 | int bytes; |
| 2281 | |
| 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) |
| 2285 | goto shut; |
| 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) |
| 2293 | goto shut; |
| 2294 | } |
Michael Trapp | 552bf8e | 2015-05-08 15:34:07 -0400 | [diff] [blame] | 2295 | break; |
| 2296 | case PROTO_CONNECT: |
| 2297 | { |
Richard Levitte | ec2a0e6 | 2016-10-05 12:37:58 +0200 | [diff] [blame] | 2298 | enum { |
| 2299 | error_proto, /* Wrong protocol, not even HTTP */ |
| 2300 | error_connect, /* CONNECT failed */ |
| 2301 | success |
| 2302 | } foundit = error_connect; |
Michael Trapp | 552bf8e | 2015-05-08 15:34:07 -0400 | [diff] [blame] | 2303 | BIO *fbio = BIO_new(BIO_f_buffer()); |
| 2304 | |
| 2305 | BIO_push(fbio, sbio); |
Rich Salz | 8230f6c | 2016-03-19 12:40:02 -0400 | [diff] [blame] | 2306 | BIO_printf(fbio, "CONNECT %s HTTP/1.0\r\n\r\n", connectstr); |
Michael Trapp | 552bf8e | 2015-05-08 15:34:07 -0400 | [diff] [blame] | 2307 | (void)BIO_flush(fbio); |
Richard Levitte | ec2a0e6 | 2016-10-05 12:37:58 +0200 | [diff] [blame] | 2308 | /* |
| 2309 | * The first line is the HTTP response. According to RFC 7230, |
| 2310 | * it's formated exactly like this: |
| 2311 | * |
| 2312 | * HTTP/d.d ddd Reason text\r\n |
| 2313 | */ |
| 2314 | mbuf_len = BIO_gets(fbio, mbuf, BUFSIZZ); |
Rich Salz | 3dce109 | 2017-06-08 09:26:20 -0400 | [diff] [blame] | 2315 | if (mbuf_len < (int)strlen("HTTP/1.0 200")) { |
| 2316 | BIO_printf(bio_err, |
| 2317 | "%s: HTTP CONNECT failed, insufficient response " |
| 2318 | "from proxy (got %d octets)\n", prog, mbuf_len); |
| 2319 | (void)BIO_flush(fbio); |
| 2320 | BIO_pop(fbio); |
| 2321 | BIO_free(fbio); |
| 2322 | goto shut; |
| 2323 | } |
Richard Levitte | ec2a0e6 | 2016-10-05 12:37:58 +0200 | [diff] [blame] | 2324 | if (mbuf[8] != ' ') { |
| 2325 | BIO_printf(bio_err, |
| 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, |
| 2331 | &mbuf[9]); |
| 2332 | } else { |
| 2333 | foundit = success; |
| 2334 | } |
| 2335 | if (foundit != error_proto) { |
| 2336 | /* Read past all following headers */ |
| 2337 | do { |
| 2338 | mbuf_len = BIO_gets(fbio, mbuf, BUFSIZZ); |
| 2339 | } while (mbuf_len > 2); |
| 2340 | } |
Michael Trapp | 552bf8e | 2015-05-08 15:34:07 -0400 | [diff] [blame] | 2341 | (void)BIO_flush(fbio); |
| 2342 | BIO_pop(fbio); |
| 2343 | BIO_free(fbio); |
Richard Levitte | ec2a0e6 | 2016-10-05 12:37:58 +0200 | [diff] [blame] | 2344 | if (foundit != success) { |
Michael Trapp | 552bf8e | 2015-05-08 15:34:07 -0400 | [diff] [blame] | 2345 | goto shut; |
| 2346 | } |
| 2347 | } |
| 2348 | break; |
Nathan Phillip Brink | cfb4f1e | 2015-05-13 16:00:21 -0400 | [diff] [blame] | 2349 | case PROTO_IRC: |
| 2350 | { |
| 2351 | int numeric; |
| 2352 | BIO *fbio = BIO_new(BIO_f_buffer()); |
| 2353 | |
| 2354 | BIO_push(fbio, sbio); |
| 2355 | BIO_printf(fbio, "STARTTLS\r\n"); |
| 2356 | (void)BIO_flush(fbio); |
| 2357 | width = SSL_get_fd(con) + 1; |
| 2358 | |
| 2359 | do { |
| 2360 | numeric = 0; |
| 2361 | |
| 2362 | FD_ZERO(&readfds); |
| 2363 | openssl_fdset(SSL_get_fd(con), &readfds); |
| 2364 | timeout.tv_sec = S_CLIENT_IRC_READ_TIMEOUT; |
| 2365 | timeout.tv_usec = 0; |
| 2366 | /* |
| 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. |
| 2372 | */ |
| 2373 | if (!BIO_get_buffer_num_lines(fbio) |
| 2374 | && !BIO_pending(fbio) |
| 2375 | && !BIO_pending(sbio) |
| 2376 | && select(width, (void *)&readfds, NULL, NULL, |
| 2377 | &timeout) < 1) { |
| 2378 | BIO_printf(bio_err, |
| 2379 | "Timeout waiting for response (%d seconds).\n", |
| 2380 | S_CLIENT_IRC_READ_TIMEOUT); |
| 2381 | break; |
| 2382 | } |
| 2383 | |
| 2384 | mbuf_len = BIO_gets(fbio, mbuf, BUFSIZZ); |
| 2385 | if (mbuf_len < 1 || sscanf(mbuf, "%*s %d", &numeric) != 1) |
| 2386 | break; |
| 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); |
| 2392 | break; |
| 2393 | } |
| 2394 | if (numeric == 691) { |
| 2395 | BIO_printf(bio_err, "STARTTLS negotiation failed: "); |
| 2396 | ERR_print_errors(bio_err); |
| 2397 | break; |
| 2398 | } |
| 2399 | } while (numeric != 670); |
| 2400 | |
| 2401 | (void)BIO_flush(fbio); |
| 2402 | BIO_pop(fbio); |
| 2403 | BIO_free(fbio); |
| 2404 | if (numeric != 670) { |
| 2405 | BIO_printf(bio_err, "Server does not support STARTTLS.\n"); |
| 2406 | ret = 1; |
| 2407 | goto shut; |
| 2408 | } |
| 2409 | } |
Valentin Vidic | b2e54eb | 2016-02-15 15:28:41 +0100 | [diff] [blame] | 2410 | break; |
Keigo Tanaka | a2d9cfb | 2017-05-13 09:50:49 +0900 | [diff] [blame] | 2411 | case PROTO_MYSQL: |
| 2412 | { |
| 2413 | /* SSL request packet */ |
| 2414 | static const unsigned char ssl_req[] = { |
| 2415 | /* payload_length, sequence_id */ |
| 2416 | 0x20, 0x00, 0x00, 0x01, |
| 2417 | /* payload */ |
| 2418 | /* capability flags, CLIENT_SSL always set */ |
| 2419 | 0x85, 0xae, 0x7f, 0x00, |
| 2420 | /* max-packet size */ |
| 2421 | 0x00, 0x00, 0x00, 0x01, |
| 2422 | /* character set */ |
| 2423 | 0x21, |
| 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 |
| 2428 | }; |
| 2429 | int bytes = 0; |
| 2430 | int ssl_flg = 0x800; |
| 2431 | int pos; |
| 2432 | const unsigned char *packet = (const unsigned char *)sbuf; |
| 2433 | |
| 2434 | /* Receiving Initial Handshake packet. */ |
| 2435 | bytes = BIO_read(sbio, (void *)packet, BUFSIZZ); |
| 2436 | if (bytes < 0) { |
| 2437 | BIO_printf(bio_err, "BIO_read failed\n"); |
| 2438 | goto shut; |
| 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"); |
| 2442 | goto shut; |
| 2443 | } else if (bytes != (4 + packet[0] + |
| 2444 | (packet[1] << 8) + |
| 2445 | (packet[2] << 16))) { |
| 2446 | BIO_printf(bio_err, "MySQL packet length does not match.\n"); |
| 2447 | goto shut; |
| 2448 | /* protocol version[1] */ |
| 2449 | } else if (packet[4] != 0xA) { |
| 2450 | BIO_printf(bio_err, |
| 2451 | "Only MySQL protocol version 10 is supported.\n"); |
| 2452 | goto shut; |
| 2453 | } |
| 2454 | |
| 2455 | pos = 5; |
| 2456 | /* server version[string+NULL] */ |
| 2457 | for (;;) { |
| 2458 | if (pos >= bytes) { |
| 2459 | BIO_printf(bio_err, "Cannot confirm server version. "); |
| 2460 | goto shut; |
| 2461 | } else if (packet[pos++] == '\0') { |
| 2462 | break; |
| 2463 | } |
Keigo Tanaka | a2d9cfb | 2017-05-13 09:50:49 +0900 | [diff] [blame] | 2464 | } |
| 2465 | |
Steven Danneman | 8530039 | 2017-06-27 15:53:11 -0700 | [diff] [blame] | 2466 | /* make sure we have at least 15 bytes left in the packet */ |
Keigo Tanaka | a2d9cfb | 2017-05-13 09:50:49 +0900 | [diff] [blame] | 2467 | if (pos + 15 > bytes) { |
| 2468 | BIO_printf(bio_err, |
| 2469 | "MySQL server handshake packet is broken.\n"); |
| 2470 | goto shut; |
| 2471 | } |
| 2472 | |
| 2473 | pos += 12; /* skip over conn id[4] + SALT[8] */ |
| 2474 | if (packet[pos++] != '\0') { /* verify filler */ |
| 2475 | BIO_printf(bio_err, |
| 2476 | "MySQL packet is broken.\n"); |
| 2477 | goto shut; |
| 2478 | } |
| 2479 | |
| 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"); |
| 2483 | goto shut; |
| 2484 | } |
| 2485 | |
| 2486 | /* Sending SSL Handshake packet. */ |
| 2487 | BIO_write(sbio, ssl_req, sizeof(ssl_req)); |
| 2488 | (void)BIO_flush(sbio); |
| 2489 | } |
| 2490 | break; |
Valentin Vidic | b2e54eb | 2016-02-15 15:28:41 +0100 | [diff] [blame] | 2491 | case PROTO_POSTGRES: |
| 2492 | { |
| 2493 | static const unsigned char ssl_request[] = { |
| 2494 | /* Length SSLRequest */ |
| 2495 | 0, 0, 0, 8, 4, 210, 22, 47 |
| 2496 | }; |
| 2497 | int bytes; |
| 2498 | |
| 2499 | /* Send SSLRequest packet */ |
| 2500 | BIO_write(sbio, ssl_request, 8); |
| 2501 | (void)BIO_flush(sbio); |
| 2502 | |
| 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') |
| 2506 | goto shut; |
| 2507 | } |
| 2508 | break; |
Robert Scheck | 8f85aa6 | 2017-01-28 00:52:27 +0100 | [diff] [blame] | 2509 | case PROTO_NNTP: |
| 2510 | { |
| 2511 | int foundit = 0; |
| 2512 | BIO *fbio = BIO_new(BIO_f_buffer()); |
| 2513 | |
| 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 */ |
| 2520 | do { |
| 2521 | mbuf_len = BIO_gets(fbio, mbuf, BUFSIZZ); |
| 2522 | if (strstr(mbuf, "STARTTLS")) |
| 2523 | foundit = 1; |
| 2524 | } while (mbuf_len > 1 && mbuf[0] != '.'); |
| 2525 | (void)BIO_flush(fbio); |
| 2526 | BIO_pop(fbio); |
| 2527 | BIO_free(fbio); |
| 2528 | if (!foundit) |
| 2529 | BIO_printf(bio_err, |
| 2530 | "Didn't find STARTTLS in server response," |
| 2531 | " trying anyway...\n"); |
| 2532 | BIO_printf(sbio, "STARTTLS\r\n"); |
Robert Scheck | af7e05c | 2017-02-14 21:47:25 +0100 | [diff] [blame] | 2533 | mbuf_len = BIO_read(sbio, mbuf, BUFSIZZ); |
| 2534 | if (mbuf_len < 0) { |
| 2535 | BIO_printf(bio_err, "BIO_read failed\n"); |
| 2536 | goto end; |
| 2537 | } |
| 2538 | mbuf[mbuf_len] = '\0'; |
| 2539 | if (strstr(mbuf, "382") == NULL) { |
| 2540 | BIO_printf(bio_err, "STARTTLS failed: %s", mbuf); |
| 2541 | goto shut; |
| 2542 | } |
Robert Scheck | 8f85aa6 | 2017-01-28 00:52:27 +0100 | [diff] [blame] | 2543 | } |
| 2544 | break; |
Robert Scheck | 20967af | 2017-02-09 22:20:59 +0100 | [diff] [blame] | 2545 | case PROTO_SIEVE: |
| 2546 | { |
| 2547 | int foundit = 0; |
| 2548 | BIO *fbio = BIO_new(BIO_f_buffer()); |
| 2549 | |
| 2550 | BIO_push(fbio, sbio); |
| 2551 | /* wait for multi-line response to end from Sieve */ |
| 2552 | do { |
| 2553 | mbuf_len = BIO_gets(fbio, mbuf, BUFSIZZ); |
| 2554 | /* |
| 2555 | * According to RFC 5804 § 1.7, capability |
| 2556 | * is case-insensitive, make it uppercase |
| 2557 | */ |
| 2558 | if (mbuf_len > 1 && mbuf[0] == '"') { |
| 2559 | make_uppercase(mbuf); |
| 2560 | if (strncmp(mbuf, "\"STARTTLS\"", 10) == 0) |
| 2561 | foundit = 1; |
| 2562 | } |
| 2563 | } while (mbuf_len > 1 && mbuf[0] == '"'); |
| 2564 | (void)BIO_flush(fbio); |
| 2565 | BIO_pop(fbio); |
| 2566 | BIO_free(fbio); |
| 2567 | if (!foundit) |
| 2568 | BIO_printf(bio_err, |
| 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); |
| 2573 | if (mbuf_len < 0) { |
| 2574 | BIO_printf(bio_err, "BIO_read failed\n"); |
| 2575 | goto end; |
Robert Scheck | af7e05c | 2017-02-14 21:47:25 +0100 | [diff] [blame] | 2576 | } |
| 2577 | mbuf[mbuf_len] = '\0'; |
| 2578 | if (mbuf_len < 2) { |
| 2579 | BIO_printf(bio_err, "STARTTLS failed: %s", mbuf); |
Robert Scheck | 20967af | 2017-02-09 22:20:59 +0100 | [diff] [blame] | 2580 | goto shut; |
| 2581 | } |
| 2582 | /* |
| 2583 | * According to RFC 5804 § 2.2, response codes are case- |
| 2584 | * insensitive, make it uppercase but preserve the response. |
| 2585 | */ |
Robert Scheck | 20967af | 2017-02-09 22:20:59 +0100 | [diff] [blame] | 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); |
| 2590 | goto shut; |
| 2591 | } |
| 2592 | } |
| 2593 | break; |
Robert Scheck | 398b0bb | 2017-02-27 00:44:14 +0100 | [diff] [blame] | 2594 | case PROTO_LDAP: |
| 2595 | { |
| 2596 | /* StartTLS Operation according to RFC 4511 */ |
| 2597 | static char ldap_tls_genconf[] = "asn1=SEQUENCE:LDAPMessage\n" |
| 2598 | "[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"; |
| 2602 | long errline = -1; |
| 2603 | char *genstr = NULL; |
| 2604 | int result = -1; |
| 2605 | ASN1_TYPE *atyp = NULL; |
| 2606 | BIO *ldapbio = BIO_new(BIO_s_mem()); |
| 2607 | CONF *cnf = NCONF_new(NULL); |
| 2608 | |
| 2609 | if (cnf == NULL) { |
| 2610 | BIO_free(ldapbio); |
| 2611 | goto end; |
| 2612 | } |
| 2613 | BIO_puts(ldapbio, ldap_tls_genconf); |
| 2614 | if (NCONF_load_bio(cnf, ldapbio, &errline) <= 0) { |
| 2615 | BIO_free(ldapbio); |
| 2616 | NCONF_free(cnf); |
| 2617 | if (errline <= 0) { |
| 2618 | BIO_printf(bio_err, "NCONF_load_bio failed\n"); |
| 2619 | goto end; |
| 2620 | } else { |
| 2621 | BIO_printf(bio_err, "Error on line %ld\n", errline); |
| 2622 | goto end; |
| 2623 | } |
| 2624 | } |
| 2625 | BIO_free(ldapbio); |
| 2626 | genstr = NCONF_get_string(cnf, "default", "asn1"); |
| 2627 | if (genstr == NULL) { |
| 2628 | NCONF_free(cnf); |
| 2629 | BIO_printf(bio_err, "NCONF_get_string failed\n"); |
| 2630 | goto end; |
| 2631 | } |
| 2632 | atyp = ASN1_generate_nconf(genstr, cnf); |
| 2633 | if (atyp == NULL) { |
| 2634 | NCONF_free(cnf); |
| 2635 | BIO_printf(bio_err, "ASN1_generate_nconf failed\n"); |
| 2636 | goto end; |
| 2637 | } |
| 2638 | NCONF_free(cnf); |
| 2639 | |
| 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); |
| 2645 | |
| 2646 | mbuf_len = BIO_read(sbio, mbuf, BUFSIZZ); |
| 2647 | if (mbuf_len < 0) { |
| 2648 | BIO_printf(bio_err, "BIO_read failed\n"); |
| 2649 | goto end; |
| 2650 | } |
| 2651 | result = ldap_ExtendedResponse_parse(mbuf, mbuf_len); |
| 2652 | if (result < 0) { |
| 2653 | BIO_printf(bio_err, "ldap_ExtendedResponse_parse failed\n"); |
| 2654 | goto shut; |
| 2655 | } else if (result > 0) { |
| 2656 | BIO_printf(bio_err, "STARTTLS failed, LDAP Result Code: %i\n", |
| 2657 | result); |
| 2658 | goto shut; |
| 2659 | } |
| 2660 | mbuf_len = 0; |
| 2661 | } |
| 2662 | break; |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 2663 | } |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 2664 | |
Matt Caswell | 0a5ece5 | 2017-02-24 16:11:03 +0000 | [diff] [blame] | 2665 | if (early_data_file != NULL |
Matt Caswell | add8d0e | 2017-07-05 20:53:03 +0100 | [diff] [blame] | 2666 | && ((SSL_get0_session(con) != NULL |
| 2667 | && SSL_SESSION_get_max_early_data(SSL_get0_session(con)) > 0) |
| 2668 | || (psksess != NULL |
| 2669 | && SSL_SESSION_get_max_early_data(psksess) > 0))) { |
Matt Caswell | 923ac82 | 2017-02-20 16:00:20 +0000 | [diff] [blame] | 2670 | BIO *edfile = BIO_new_file(early_data_file, "r"); |
| 2671 | size_t readbytes, writtenbytes; |
| 2672 | int finish = 0; |
| 2673 | |
| 2674 | if (edfile == NULL) { |
| 2675 | BIO_printf(bio_err, "Cannot open early data file\n"); |
| 2676 | goto shut; |
| 2677 | } |
| 2678 | |
| 2679 | while (!finish) { |
| 2680 | if (!BIO_read_ex(edfile, cbuf, BUFSIZZ, &readbytes)) |
| 2681 | finish = 1; |
| 2682 | |
Matt Caswell | 0665b4e | 2017-03-02 15:05:36 +0000 | [diff] [blame] | 2683 | while (!SSL_write_early_data(con, cbuf, readbytes, &writtenbytes)) { |
Matt Caswell | 923ac82 | 2017-02-20 16:00:20 +0000 | [diff] [blame] | 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 */ |
| 2689 | continue; |
| 2690 | default: |
| 2691 | BIO_printf(bio_err, "Error writing early data\n"); |
| 2692 | BIO_free(edfile); |
Matt Caswell | dd5b98c | 2017-07-21 11:40:28 +0100 | [diff] [blame] | 2693 | ERR_print_errors(bio_err); |
Matt Caswell | 923ac82 | 2017-02-20 16:00:20 +0000 | [diff] [blame] | 2694 | goto shut; |
| 2695 | } |
| 2696 | } |
| 2697 | } |
| 2698 | |
| 2699 | BIO_free(edfile); |
| 2700 | } |
| 2701 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 2702 | for (;;) { |
| 2703 | FD_ZERO(&readfds); |
| 2704 | FD_ZERO(&writefds); |
Dr. Stephen Henson | b972fba | 2009-08-12 13:19:54 +0000 | [diff] [blame] | 2705 | |
Matt Caswell | 6f6da2f | 2018-05-03 15:59:31 +0100 | [diff] [blame] | 2706 | if (SSL_is_dtls(con) && DTLSv1_get_timeout(con, &timeout)) |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 2707 | timeoutp = &timeout; |
| 2708 | else |
| 2709 | timeoutp = NULL; |
| 2710 | |
Matt Caswell | 12557a3 | 2017-03-30 16:06:29 +0100 | [diff] [blame] | 2711 | if (!SSL_is_init_finished(con) && SSL_total_renegotiations(con) == 0 |
Matt Caswell | b07b2a1 | 2017-02-09 13:33:09 +0000 | [diff] [blame] | 2712 | && SSL_get_key_update_type(con) == SSL_KEY_UPDATE_NONE) { |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 2713 | in_init = 1; |
| 2714 | tty_on = 0; |
| 2715 | } else { |
| 2716 | tty_on = 1; |
| 2717 | if (in_init) { |
| 2718 | in_init = 0; |
Matt Caswell | e481f9b | 2015-05-15 10:49:56 +0100 | [diff] [blame] | 2719 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 2720 | if (c_brief) { |
| 2721 | BIO_puts(bio_err, "CONNECTION ESTABLISHED\n"); |
Rich Salz | ecf3a1f | 2015-04-29 11:27:08 -0400 | [diff] [blame] | 2722 | print_ssl_summary(con); |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 2723 | } |
Scott Deboy | 67c408c | 2013-08-01 11:54:09 -0700 | [diff] [blame] | 2724 | |
Rob Percival | 0d4d5ab | 2016-03-10 19:49:34 +0000 | [diff] [blame] | 2725 | print_stuff(bio_c_out, con, full_log); |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 2726 | if (full_log > 0) |
| 2727 | full_log--; |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 2728 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 2729 | if (starttls_proto) { |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 2730 | BIO_write(bio_err, mbuf, mbuf_len); |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 2731 | /* We don't need to know any more */ |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 2732 | if (!reconnect) |
| 2733 | starttls_proto = PROTO_OFF; |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 2734 | } |
Richard Levitte | 135c0af | 2001-11-14 13:57:52 +0000 | [diff] [blame] | 2735 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 2736 | if (reconnect) { |
| 2737 | reconnect--; |
| 2738 | BIO_printf(bio_c_out, |
| 2739 | "drop connection and then reconnect\n"); |
Matt Caswell | ec44792 | 2016-01-25 15:00:10 +0000 | [diff] [blame] | 2740 | do_ssl_shutdown(con); |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 2741 | SSL_set_connect_state(con); |
Rich Salz | 8731a4f | 2016-03-02 16:12:46 -0500 | [diff] [blame] | 2742 | BIO_closesocket(SSL_get_fd(con)); |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 2743 | goto re_start; |
| 2744 | } |
| 2745 | } |
| 2746 | } |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 2747 | |
Matt Caswell | fd068d5 | 2016-02-12 13:33:45 +0000 | [diff] [blame] | 2748 | ssl_pending = read_ssl && SSL_has_pending(con); |
Bodo Möller | c7ac31e | 1999-04-09 20:54:25 +0000 | [diff] [blame] | 2749 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 2750 | if (!ssl_pending) { |
Rich Salz | 1fbab1d | 2016-03-17 12:53:11 -0400 | [diff] [blame] | 2751 | #if !defined(OPENSSL_SYS_WINDOWS) && !defined(OPENSSL_SYS_MSDOS) |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 2752 | if (tty_on) { |
John Denker | a3ef2c1 | 2016-06-10 14:46:07 -0400 | [diff] [blame] | 2753 | /* |
| 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. |
| 2757 | */ |
Richard Levitte | 0d3b658 | 2016-08-03 21:16:43 +0200 | [diff] [blame] | 2758 | if (read_tty && !at_eof) |
Richard Levitte | 51e5133 | 2016-09-15 11:20:18 +0200 | [diff] [blame] | 2759 | openssl_fdset(fileno_stdin(), &readfds); |
| 2760 | #if !defined(OPENSSL_SYS_VMS) |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 2761 | if (write_tty) |
Richard Levitte | 51e5133 | 2016-09-15 11:20:18 +0200 | [diff] [blame] | 2762 | openssl_fdset(fileno_stdout(), &writefds); |
Richard Levitte | 0d3b658 | 2016-08-03 21:16:43 +0200 | [diff] [blame] | 2763 | #endif |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 2764 | } |
| 2765 | if (read_ssl) |
| 2766 | openssl_fdset(SSL_get_fd(con), &readfds); |
| 2767 | if (write_ssl) |
| 2768 | openssl_fdset(SSL_get_fd(con), &writefds); |
Dr. Stephen Henson | 06f4536 | 1999-09-20 22:09:17 +0000 | [diff] [blame] | 2769 | #else |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 2770 | if (!tty_on || !write_tty) { |
| 2771 | if (read_ssl) |
| 2772 | openssl_fdset(SSL_get_fd(con), &readfds); |
| 2773 | if (write_ssl) |
| 2774 | openssl_fdset(SSL_get_fd(con), &writefds); |
| 2775 | } |
Dr. Stephen Henson | 06f4536 | 1999-09-20 22:09:17 +0000 | [diff] [blame] | 2776 | #endif |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 2777 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 2778 | /* |
| 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 |
| 2783 | * (void *). |
| 2784 | */ |
Richard Levitte | 3d7c4a5 | 2003-09-27 21:56:08 +0000 | [diff] [blame] | 2785 | #if defined(OPENSSL_SYS_WINDOWS) || defined(OPENSSL_SYS_MSDOS) |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 2786 | /* |
| 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. |
| 2792 | */ |
| 2793 | i = 0; |
| 2794 | if (!write_tty) { |
| 2795 | if (read_tty) { |
| 2796 | tv.tv_sec = 1; |
| 2797 | tv.tv_usec = 0; |
| 2798 | i = select(width, (void *)&readfds, (void *)&writefds, |
| 2799 | NULL, &tv); |
Matt Caswell | 75dd6c1 | 2016-05-20 11:53:26 +0100 | [diff] [blame] | 2800 | if (!i && (!has_stdin_waiting() || !read_tty)) |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 2801 | continue; |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 2802 | } else |
| 2803 | i = select(width, (void *)&readfds, (void *)&writefds, |
| 2804 | NULL, timeoutp); |
| 2805 | } |
Dr. Stephen Henson | 06f4536 | 1999-09-20 22:09:17 +0000 | [diff] [blame] | 2806 | #else |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 2807 | i = select(width, (void *)&readfds, (void *)&writefds, |
| 2808 | NULL, timeoutp); |
Dr. Stephen Henson | 06f4536 | 1999-09-20 22:09:17 +0000 | [diff] [blame] | 2809 | #endif |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 2810 | if (i < 0) { |
| 2811 | BIO_printf(bio_err, "bad select %d\n", |
| 2812 | get_last_socket_error()); |
| 2813 | goto shut; |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 2814 | } |
| 2815 | } |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 2816 | |
Matt Caswell | 6f6da2f | 2018-05-03 15:59:31 +0100 | [diff] [blame] | 2817 | if (SSL_is_dtls(con) && DTLSv1_handle_timeout(con) > 0) |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 2818 | BIO_printf(bio_err, "TIMEOUT occurred\n"); |
Dr. Stephen Henson | b972fba | 2009-08-12 13:19:54 +0000 | [diff] [blame] | 2819 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 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: |
| 2824 | cbuf_off += k; |
| 2825 | cbuf_len -= k; |
| 2826 | if (k <= 0) |
| 2827 | goto end; |
| 2828 | /* we have done a write(con,NULL,0); */ |
| 2829 | if (cbuf_len <= 0) { |
| 2830 | read_tty = 1; |
| 2831 | write_ssl = 0; |
| 2832 | } else { /* if (cbuf_len > 0) */ |
| 2833 | |
| 2834 | read_tty = 0; |
| 2835 | write_ssl = 1; |
| 2836 | } |
| 2837 | break; |
| 2838 | case SSL_ERROR_WANT_WRITE: |
| 2839 | BIO_printf(bio_c_out, "write W BLOCK\n"); |
| 2840 | write_ssl = 1; |
| 2841 | read_tty = 0; |
| 2842 | break; |
Matt Caswell | 7e25dd6 | 2015-02-13 23:33:12 +0000 | [diff] [blame] | 2843 | case SSL_ERROR_WANT_ASYNC: |
| 2844 | BIO_printf(bio_c_out, "write A BLOCK\n"); |
Matt Caswell | e1b9840 | 2015-10-06 14:04:11 +0100 | [diff] [blame] | 2845 | wait_for_async(con); |
Matt Caswell | 7e25dd6 | 2015-02-13 23:33:12 +0000 | [diff] [blame] | 2846 | write_ssl = 1; |
| 2847 | read_tty = 0; |
| 2848 | break; |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 2849 | case SSL_ERROR_WANT_READ: |
| 2850 | BIO_printf(bio_c_out, "write R BLOCK\n"); |
| 2851 | write_tty = 0; |
| 2852 | read_ssl = 1; |
| 2853 | write_ssl = 0; |
| 2854 | break; |
| 2855 | case SSL_ERROR_WANT_X509_LOOKUP: |
| 2856 | BIO_printf(bio_c_out, "write X BLOCK\n"); |
| 2857 | break; |
| 2858 | case SSL_ERROR_ZERO_RETURN: |
| 2859 | if (cbuf_len != 0) { |
| 2860 | BIO_printf(bio_c_out, "shutdown\n"); |
| 2861 | ret = 0; |
| 2862 | goto shut; |
| 2863 | } else { |
| 2864 | read_tty = 1; |
| 2865 | write_ssl = 0; |
| 2866 | break; |
| 2867 | } |
| 2868 | |
| 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()); |
| 2873 | goto shut; |
| 2874 | } else { |
| 2875 | read_tty = 1; |
| 2876 | write_ssl = 0; |
| 2877 | } |
| 2878 | break; |
Matt Caswell | fc7f190 | 2016-05-03 17:55:00 +0100 | [diff] [blame] | 2879 | case SSL_ERROR_WANT_ASYNC_JOB: |
| 2880 | /* This shouldn't ever happen in s_client - treat as an error */ |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 2881 | case SSL_ERROR_SSL: |
| 2882 | ERR_print_errors(bio_err); |
| 2883 | goto shut; |
| 2884 | } |
| 2885 | } |
Richard Levitte | c7bdb6a | 2016-09-14 20:54:30 +0200 | [diff] [blame] | 2886 | #if defined(OPENSSL_SYS_WINDOWS) || defined(OPENSSL_SYS_MSDOS) || defined(OPENSSL_SYS_VMS) |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 2887 | /* Assume Windows/DOS/BeOS can always write */ |
| 2888 | else if (!ssl_pending && write_tty) |
Dr. Stephen Henson | 06f4536 | 1999-09-20 22:09:17 +0000 | [diff] [blame] | 2889 | #else |
Richard Levitte | 51e5133 | 2016-09-15 11:20:18 +0200 | [diff] [blame] | 2890 | else if (!ssl_pending && FD_ISSET(fileno_stdout(), &writefds)) |
Dr. Stephen Henson | 06f4536 | 1999-09-20 22:09:17 +0000 | [diff] [blame] | 2891 | #endif |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 2892 | { |
Ulf Möller | a53955d | 1999-06-04 21:35:58 +0000 | [diff] [blame] | 2893 | #ifdef CHARSET_EBCDIC |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 2894 | ascii2ebcdic(&(sbuf[sbuf_off]), &(sbuf[sbuf_off]), sbuf_len); |
Ulf Möller | a53955d | 1999-06-04 21:35:58 +0000 | [diff] [blame] | 2895 | #endif |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 2896 | i = raw_write_stdout(&(sbuf[sbuf_off]), sbuf_len); |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 2897 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 2898 | if (i <= 0) { |
| 2899 | BIO_printf(bio_c_out, "DONE\n"); |
| 2900 | ret = 0; |
| 2901 | goto shut; |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 2902 | } |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 2903 | |
FdaSilvaYY | 0fe2a0a | 2016-12-28 19:22:25 +0100 | [diff] [blame] | 2904 | sbuf_len -= i; |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 2905 | sbuf_off += i; |
| 2906 | if (sbuf_len <= 0) { |
| 2907 | read_ssl = 1; |
| 2908 | write_tty = 0; |
| 2909 | } |
| 2910 | } else if (ssl_pending || FD_ISSET(SSL_get_fd(con), &readfds)) { |
Ralf S. Engelschall | 58964a4 | 1998-12-21 10:56:39 +0000 | [diff] [blame] | 2911 | #ifdef RENEG |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 2912 | { |
| 2913 | static int iiii; |
| 2914 | if (++iiii == 52) { |
| 2915 | SSL_renegotiate(con); |
| 2916 | iiii = 0; |
| 2917 | } |
| 2918 | } |
Ralf S. Engelschall | 58964a4 | 1998-12-21 10:56:39 +0000 | [diff] [blame] | 2919 | #endif |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 2920 | k = SSL_read(con, sbuf, 1024 /* BUFSIZZ */ ); |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 2921 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 2922 | switch (SSL_get_error(con, k)) { |
| 2923 | case SSL_ERROR_NONE: |
| 2924 | if (k <= 0) |
| 2925 | goto end; |
| 2926 | sbuf_off = 0; |
| 2927 | sbuf_len = k; |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 2928 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 2929 | read_ssl = 0; |
| 2930 | write_tty = 1; |
| 2931 | break; |
Matt Caswell | 7e25dd6 | 2015-02-13 23:33:12 +0000 | [diff] [blame] | 2932 | case SSL_ERROR_WANT_ASYNC: |
| 2933 | BIO_printf(bio_c_out, "read A BLOCK\n"); |
Matt Caswell | e1b9840 | 2015-10-06 14:04:11 +0100 | [diff] [blame] | 2934 | wait_for_async(con); |
Matt Caswell | 7e25dd6 | 2015-02-13 23:33:12 +0000 | [diff] [blame] | 2935 | write_tty = 0; |
| 2936 | read_ssl = 1; |
| 2937 | if ((read_tty == 0) && (write_ssl == 0)) |
| 2938 | write_ssl = 1; |
| 2939 | break; |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 2940 | case SSL_ERROR_WANT_WRITE: |
| 2941 | BIO_printf(bio_c_out, "read W BLOCK\n"); |
| 2942 | write_ssl = 1; |
| 2943 | read_tty = 0; |
| 2944 | break; |
| 2945 | case SSL_ERROR_WANT_READ: |
| 2946 | BIO_printf(bio_c_out, "read R BLOCK\n"); |
| 2947 | write_tty = 0; |
| 2948 | read_ssl = 1; |
| 2949 | if ((read_tty == 0) && (write_ssl == 0)) |
| 2950 | write_ssl = 1; |
| 2951 | break; |
| 2952 | case SSL_ERROR_WANT_X509_LOOKUP: |
| 2953 | BIO_printf(bio_c_out, "read X BLOCK\n"); |
| 2954 | break; |
| 2955 | case SSL_ERROR_SYSCALL: |
| 2956 | ret = get_last_socket_error(); |
| 2957 | if (c_brief) |
| 2958 | BIO_puts(bio_err, "CONNECTION CLOSED BY SERVER\n"); |
| 2959 | else |
| 2960 | BIO_printf(bio_err, "read:errno=%d\n", ret); |
| 2961 | goto shut; |
| 2962 | case SSL_ERROR_ZERO_RETURN: |
| 2963 | BIO_printf(bio_c_out, "closed\n"); |
| 2964 | ret = 0; |
| 2965 | goto shut; |
Matt Caswell | fc7f190 | 2016-05-03 17:55:00 +0100 | [diff] [blame] | 2966 | case SSL_ERROR_WANT_ASYNC_JOB: |
| 2967 | /* This shouldn't ever happen in s_client. Treat as an error */ |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 2968 | case SSL_ERROR_SSL: |
| 2969 | ERR_print_errors(bio_err); |
| 2970 | goto shut; |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 2971 | } |
| 2972 | } |
Matt Caswell | 75dd6c1 | 2016-05-20 11:53:26 +0100 | [diff] [blame] | 2973 | /* OPENSSL_SYS_MSDOS includes OPENSSL_SYS_WINDOWS */ |
| 2974 | #if defined(OPENSSL_SYS_MSDOS) |
| 2975 | else if (has_stdin_waiting()) |
Dr. Stephen Henson | 06f4536 | 1999-09-20 22:09:17 +0000 | [diff] [blame] | 2976 | #else |
Richard Levitte | 51e5133 | 2016-09-15 11:20:18 +0200 | [diff] [blame] | 2977 | else if (FD_ISSET(fileno_stdin(), &readfds)) |
Dr. Stephen Henson | 06f4536 | 1999-09-20 22:09:17 +0000 | [diff] [blame] | 2978 | #endif |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 2979 | { |
| 2980 | if (crlf) { |
| 2981 | int j, lf_num; |
Bodo Möller | 1bdb863 | 1999-08-07 02:51:10 +0000 | [diff] [blame] | 2982 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 2983 | i = raw_read_stdin(cbuf, BUFSIZZ / 2); |
| 2984 | lf_num = 0; |
| 2985 | /* both loops are skipped when i <= 0 */ |
| 2986 | for (j = 0; j < i; j++) |
| 2987 | if (cbuf[j] == '\n') |
| 2988 | lf_num++; |
| 2989 | for (j = i - 1; j >= 0; j--) { |
| 2990 | cbuf[j + lf_num] = cbuf[j]; |
| 2991 | if (cbuf[j] == '\n') { |
| 2992 | lf_num--; |
| 2993 | i++; |
| 2994 | cbuf[j + lf_num] = '\r'; |
| 2995 | } |
| 2996 | } |
| 2997 | assert(lf_num == 0); |
Richard Levitte | 51e5133 | 2016-09-15 11:20:18 +0200 | [diff] [blame] | 2998 | } else |
Richard Levitte | c7bdb6a | 2016-09-14 20:54:30 +0200 | [diff] [blame] | 2999 | i = raw_read_stdin(cbuf, BUFSIZZ); |
Viktor Szakats | d485640 | 2016-08-30 03:01:16 +0200 | [diff] [blame] | 3000 | #if !defined(OPENSSL_SYS_WINDOWS) && !defined(OPENSSL_SYS_MSDOS) |
John Denker | a3ef2c1 | 2016-06-10 14:46:07 -0400 | [diff] [blame] | 3001 | if (i == 0) |
| 3002 | at_eof = 1; |
Viktor Szakats | d485640 | 2016-08-30 03:01:16 +0200 | [diff] [blame] | 3003 | #endif |
John Denker | a3ef2c1 | 2016-06-10 14:46:07 -0400 | [diff] [blame] | 3004 | |
Rich Salz | 6ba8a5b | 2015-04-25 15:58:22 -0400 | [diff] [blame] | 3005 | if ((!c_ign_eof) && ((i <= 0) || (cbuf[0] == 'Q' && cmdletters))) { |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 3006 | BIO_printf(bio_err, "DONE\n"); |
| 3007 | ret = 0; |
| 3008 | goto shut; |
| 3009 | } |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 3010 | |
Rich Salz | 6ba8a5b | 2015-04-25 15:58:22 -0400 | [diff] [blame] | 3011 | if ((!c_ign_eof) && (cbuf[0] == 'R' && cmdletters)) { |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 3012 | BIO_printf(bio_err, "RENEGOTIATING\n"); |
| 3013 | SSL_renegotiate(con); |
| 3014 | cbuf_len = 0; |
| 3015 | } |
Matt Caswell | b07b2a1 | 2017-02-09 13:33:09 +0000 | [diff] [blame] | 3016 | |
Matt Caswell | f14afca | 2017-02-14 11:20:44 +0000 | [diff] [blame] | 3017 | if (!c_ign_eof && (cbuf[0] == 'K' || cbuf[0] == 'k' ) |
| 3018 | && cmdletters) { |
Matt Caswell | b07b2a1 | 2017-02-09 13:33:09 +0000 | [diff] [blame] | 3019 | BIO_printf(bio_err, "KEYUPDATE\n"); |
| 3020 | SSL_key_update(con, |
| 3021 | cbuf[0] == 'K' ? SSL_KEY_UPDATE_REQUESTED |
| 3022 | : SSL_KEY_UPDATE_NOT_REQUESTED); |
| 3023 | cbuf_len = 0; |
| 3024 | } |
Richard Levitte | b612799 | 2016-11-15 14:53:33 +0100 | [diff] [blame] | 3025 | #ifndef OPENSSL_NO_HEARTBEATS |
| 3026 | else if ((!c_ign_eof) && (cbuf[0] == 'B' && cmdletters)) { |
| 3027 | BIO_printf(bio_err, "HEARTBEATING\n"); |
| 3028 | SSL_heartbeat(con); |
| 3029 | cbuf_len = 0; |
| 3030 | } |
| 3031 | #endif |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 3032 | else { |
| 3033 | cbuf_len = i; |
| 3034 | cbuf_off = 0; |
Ulf Möller | a53955d | 1999-06-04 21:35:58 +0000 | [diff] [blame] | 3035 | #ifdef CHARSET_EBCDIC |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 3036 | ebcdic2ascii(cbuf, cbuf, i); |
Ulf Möller | a53955d | 1999-06-04 21:35:58 +0000 | [diff] [blame] | 3037 | #endif |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 3038 | } |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 3039 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 3040 | write_ssl = 1; |
| 3041 | read_tty = 0; |
| 3042 | } |
| 3043 | } |
Dr. Stephen Henson | 0e1dba9 | 2007-10-26 12:06:36 +0000 | [diff] [blame] | 3044 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 3045 | ret = 0; |
| 3046 | shut: |
| 3047 | if (in_init) |
Rob Percival | 0d4d5ab | 2016-03-10 19:49:34 +0000 | [diff] [blame] | 3048 | print_stuff(bio_c_out, con, full_log); |
Matt Caswell | ec44792 | 2016-01-25 15:00:10 +0000 | [diff] [blame] | 3049 | do_ssl_shutdown(con); |
Richard Levitte | 27da42d | 2018-01-14 17:15:32 +0100 | [diff] [blame] | 3050 | |
Matt Caswell | cb2e10f | 2016-05-20 16:34:24 +0100 | [diff] [blame] | 3051 | /* |
Bernd Edlinger | 26ec943 | 2018-01-13 18:41:08 +0100 | [diff] [blame] | 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. |
| 3060 | */ |
| 3061 | shutdown(SSL_get_fd(con), 1); /* SHUT_WR */ |
Andy Polyakov | f69d050 | 2018-04-05 19:19:35 +0200 | [diff] [blame] | 3062 | /* |
| 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...] |
| 3066 | */ |
| 3067 | timeout.tv_sec = 0; |
| 3068 | timeout.tv_usec = 500000; /* some extreme round-trip */ |
| 3069 | do { |
| 3070 | FD_ZERO(&readfds); |
| 3071 | openssl_fdset(s, &readfds); |
| 3072 | } while (select(s + 1, &readfds, NULL, NULL, &timeout) > 0 |
| 3073 | && BIO_read(sbio, sbuf, BUFSIZZ) > 0); |
| 3074 | |
Rich Salz | 8731a4f | 2016-03-02 16:12:46 -0500 | [diff] [blame] | 3075 | BIO_closesocket(SSL_get_fd(con)); |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 3076 | end: |
| 3077 | if (con != NULL) { |
| 3078 | if (prexit != 0) |
Rob Percival | 0d4d5ab | 2016-03-10 19:49:34 +0000 | [diff] [blame] | 3079 | print_stuff(bio_c_out, con, 1); |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 3080 | SSL_free(con); |
| 3081 | } |
Matt Caswell | 9561e2a | 2017-07-05 10:32:33 +0100 | [diff] [blame] | 3082 | SSL_SESSION_free(psksess); |
Matt Caswell | e481f9b | 2015-05-15 10:49:56 +0100 | [diff] [blame] | 3083 | #if !defined(OPENSSL_NO_NEXTPROTONEG) |
Rich Salz | b548a1f | 2015-05-01 10:02:07 -0400 | [diff] [blame] | 3084 | OPENSSL_free(next_proto.data); |
Dr. Stephen Henson | dd25165 | 2012-07-03 16:37:50 +0000 | [diff] [blame] | 3085 | #endif |
Rich Salz | 62adbce | 2015-04-11 10:22:36 -0400 | [diff] [blame] | 3086 | SSL_CTX_free(ctx); |
Peter Wu | 4bf73e9 | 2017-02-01 19:14:27 +0100 | [diff] [blame] | 3087 | set_keylog_file(NULL, NULL); |
Rich Salz | 222561f | 2015-04-30 17:33:59 -0400 | [diff] [blame] | 3088 | X509_free(cert); |
Rich Salz | 4b45c6e | 2015-04-30 17:57:32 -0400 | [diff] [blame] | 3089 | sk_X509_CRL_pop_free(crls, X509_CRL_free); |
Rich Salz | c5ba2d9 | 2015-03-28 10:54:15 -0400 | [diff] [blame] | 3090 | EVP_PKEY_free(key); |
Rich Salz | 222561f | 2015-04-30 17:33:59 -0400 | [diff] [blame] | 3091 | sk_X509_pop_free(chain, X509_free); |
Rich Salz | b548a1f | 2015-05-01 10:02:07 -0400 | [diff] [blame] | 3092 | OPENSSL_free(pass); |
Dr. Stephen Henson | d40a1f7 | 2015-09-20 13:59:49 +0100 | [diff] [blame] | 3093 | #ifndef OPENSSL_NO_SRP |
| 3094 | OPENSSL_free(srp_arg.srppassin); |
| 3095 | #endif |
Dr. Stephen Henson | eb67172 | 2016-10-01 15:16:59 +0100 | [diff] [blame] | 3096 | OPENSSL_free(connectstr); |
John Hughes | ebc0168 | 2018-02-08 10:49:02 +0100 | [diff] [blame] | 3097 | OPENSSL_free(bindstr); |
Richard Levitte | ab69ac0 | 2016-02-03 00:47:42 +0100 | [diff] [blame] | 3098 | OPENSSL_free(host); |
| 3099 | OPENSSL_free(port); |
Rich Salz | 222561f | 2015-04-30 17:33:59 -0400 | [diff] [blame] | 3100 | X509_VERIFY_PARAM_free(vpm); |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 3101 | ssl_excert_free(exc); |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 3102 | sk_OPENSSL_STRING_free(ssl_args); |
Viktor Dukhovni | cddd424 | 2015-12-29 14:25:50 -0500 | [diff] [blame] | 3103 | sk_OPENSSL_STRING_free(dane_tlsa_rrset); |
Rich Salz | 62adbce | 2015-04-11 10:22:36 -0400 | [diff] [blame] | 3104 | SSL_CONF_CTX_free(cctx); |
Rich Salz | 4b45c6e | 2015-04-30 17:57:32 -0400 | [diff] [blame] | 3105 | OPENSSL_clear_free(cbuf, BUFSIZZ); |
| 3106 | OPENSSL_clear_free(sbuf, BUFSIZZ); |
| 3107 | OPENSSL_clear_free(mbuf, BUFSIZZ); |
Richard Levitte | dd1abd4 | 2016-09-28 23:39:18 +0200 | [diff] [blame] | 3108 | release_engine(e); |
Rich Salz | ca3a82c | 2015-03-25 11:31:18 -0400 | [diff] [blame] | 3109 | BIO_free(bio_c_out); |
| 3110 | bio_c_out = NULL; |
| 3111 | BIO_free(bio_c_msg); |
| 3112 | bio_c_msg = NULL; |
KaoruToda | 26a7d93 | 2017-10-17 23:04:09 +0900 | [diff] [blame] | 3113 | return ret; |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 3114 | } |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 3115 | |
Rob Percival | 0d4d5ab | 2016-03-10 19:49:34 +0000 | [diff] [blame] | 3116 | static void print_stuff(BIO *bio, SSL *s, int full) |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 3117 | { |
| 3118 | X509 *peer = NULL; |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 3119 | STACK_OF(X509) *sk; |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 3120 | const SSL_CIPHER *c; |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 3121 | int i; |
Dr. Stephen Henson | 09b6c2e | 2005-09-30 23:35:33 +0000 | [diff] [blame] | 3122 | #ifndef OPENSSL_NO_COMP |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 3123 | const COMP_METHOD *comp, *expansion; |
Dr. Stephen Henson | 09b6c2e | 2005-09-30 23:35:33 +0000 | [diff] [blame] | 3124 | #endif |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 3125 | unsigned char *exportedkeymat; |
Rob Percival | dd696a5 | 2016-03-02 13:34:05 +0000 | [diff] [blame] | 3126 | #ifndef OPENSSL_NO_CT |
Rob Percival | 0d4d5ab | 2016-03-10 19:49:34 +0000 | [diff] [blame] | 3127 | const SSL_CTX *ctx = SSL_get_SSL_CTX(s); |
Rob Percival | b536958 | 2016-03-10 23:10:02 +0000 | [diff] [blame] | 3128 | #endif |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 3129 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 3130 | if (full) { |
| 3131 | int got_a_chain = 0; |
Bodo Möller | bc2e519 | 1999-05-17 20:46:43 +0000 | [diff] [blame] | 3132 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 3133 | sk = SSL_get_peer_cert_chain(s); |
| 3134 | if (sk != NULL) { |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 3135 | got_a_chain = 1; |
Bodo Möller | bc2e519 | 1999-05-17 20:46:43 +0000 | [diff] [blame] | 3136 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 3137 | BIO_printf(bio, "---\nCertificate chain\n"); |
| 3138 | for (i = 0; i < sk_X509_num(sk); i++) { |
Dmitry Belyavskiy | b5c4209 | 2017-04-25 12:25:42 -0400 | [diff] [blame] | 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"); |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 3145 | if (c_showcerts) |
| 3146 | PEM_write_bio_X509(bio, sk_X509_value(sk, i)); |
| 3147 | } |
| 3148 | } |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 3149 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 3150 | BIO_printf(bio, "---\n"); |
| 3151 | peer = SSL_get_peer_certificate(s); |
| 3152 | if (peer != NULL) { |
| 3153 | BIO_printf(bio, "Server certificate\n"); |
Matt Caswell | dbd87ff | 2015-01-21 11:09:58 +0000 | [diff] [blame] | 3154 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 3155 | /* Redundant if we showed the whole chain */ |
| 3156 | if (!(c_showcerts && got_a_chain)) |
| 3157 | PEM_write_bio_X509(bio, peer); |
Dmitry Belyavskiy | b5c4209 | 2017-04-25 12:25:42 -0400 | [diff] [blame] | 3158 | dump_cert_text(bio, peer); |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 3159 | } else { |
Dr. Stephen Henson | 5969a2d | 2017-03-31 17:04:28 +0100 | [diff] [blame] | 3160 | BIO_printf(bio, "no peer certificate available\n"); |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 3161 | } |
Dr. Stephen Henson | 5969a2d | 2017-03-31 17:04:28 +0100 | [diff] [blame] | 3162 | print_ca_names(bio, s); |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 3163 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 3164 | ssl_print_sigalgs(bio, s); |
| 3165 | ssl_print_tmp_key(bio, s); |
Dr. Stephen Henson | e7f8ff4 | 2012-03-06 14:28:21 +0000 | [diff] [blame] | 3166 | |
Rob Percival | dd696a5 | 2016-03-02 13:34:05 +0000 | [diff] [blame] | 3167 | #ifndef OPENSSL_NO_CT |
Viktor Dukhovni | 4334143 | 2016-04-07 14:17:37 -0400 | [diff] [blame] | 3168 | /* |
| 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. |
| 3176 | */ |
| 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; |
Rob Percival | 6bea2a7 | 2016-03-04 19:07:25 +0000 | [diff] [blame] | 3180 | |
Viktor Dukhovni | 4334143 | 2016-04-07 14:17:37 -0400 | [diff] [blame] | 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); |
Rob Percival | 6bea2a7 | 2016-03-04 19:07:25 +0000 | [diff] [blame] | 3184 | |
Viktor Dukhovni | 4334143 | 2016-04-07 14:17:37 -0400 | [diff] [blame] | 3185 | BIO_printf(bio, "---\n"); |
| 3186 | for (i = 0; i < sct_count; ++i) { |
| 3187 | SCT *sct = sk_SCT_value(scts, i); |
Rob Percival | 0d4d5ab | 2016-03-10 19:49:34 +0000 | [diff] [blame] | 3188 | |
Viktor Dukhovni | 4334143 | 2016-04-07 14:17:37 -0400 | [diff] [blame] | 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"); |
| 3194 | } |
| 3195 | BIO_printf(bio, "\n"); |
| 3196 | } |
Rob Percival | 6bea2a7 | 2016-03-04 19:07:25 +0000 | [diff] [blame] | 3197 | } |
Rob Percival | dd696a5 | 2016-03-02 13:34:05 +0000 | [diff] [blame] | 3198 | #endif |
| 3199 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 3200 | BIO_printf(bio, |
Andy Polyakov | 7d67298 | 2017-03-29 23:23:56 +0200 | [diff] [blame] | 3201 | "---\nSSL handshake has read %ju bytes " |
| 3202 | "and written %ju bytes\n", |
Rich Salz | 12997aa | 2017-08-15 09:42:38 -0400 | [diff] [blame] | 3203 | BIO_number_read(SSL_get_rbio(s)), |
| 3204 | BIO_number_written(SSL_get_wbio(s))); |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 3205 | } |
Viktor Dukhovni | c0a445a | 2016-02-07 19:07:57 -0500 | [diff] [blame] | 3206 | print_verify_detail(s, bio); |
Dr. Stephen Henson | b577fd0 | 2016-02-08 16:18:26 +0000 | [diff] [blame] | 3207 | BIO_printf(bio, (SSL_session_reused(s) ? "---\nReused, " : "---\nNew, ")); |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 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)); |
| 3211 | if (peer != NULL) { |
| 3212 | EVP_PKEY *pktmp; |
FdaSilvaYY | bde136c | 2016-03-18 19:02:17 +0100 | [diff] [blame] | 3213 | |
Dr. Stephen Henson | c01ff88 | 2015-12-14 13:13:32 +0000 | [diff] [blame] | 3214 | pktmp = X509_get0_pubkey(peer); |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 3215 | BIO_printf(bio, "Server public key is %d bit\n", |
| 3216 | EVP_PKEY_bits(pktmp)); |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 3217 | } |
| 3218 | BIO_printf(bio, "Secure Renegotiation IS%s supported\n", |
| 3219 | SSL_get_secure_renegotiation_support(s) ? "" : " NOT"); |
Dr. Stephen Henson | 09b6c2e | 2005-09-30 23:35:33 +0000 | [diff] [blame] | 3220 | #ifndef OPENSSL_NO_COMP |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 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"); |
Dr. Stephen Henson | 09b6c2e | 2005-09-30 23:35:33 +0000 | [diff] [blame] | 3227 | #endif |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 3228 | |
Dr. Stephen Henson | 5755947 | 2012-02-09 15:43:58 +0000 | [diff] [blame] | 3229 | #ifdef SSL_DEBUG |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 3230 | { |
| 3231 | /* Print out local port of connection: useful for debugging */ |
| 3232 | int sock; |
Richard Levitte | 642a166 | 2016-07-19 13:52:26 +0200 | [diff] [blame] | 3233 | union BIO_sock_info_u info; |
| 3234 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 3235 | sock = SSL_get_fd(s); |
Richard Levitte | 642a166 | 2016-07-19 13:52:26 +0200 | [diff] [blame] | 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", |
Jon Loeliger | 1abd292 | 2016-07-26 12:48:20 -0400 | [diff] [blame] | 3239 | ntohs(BIO_ADDR_rawport(info.addr))); |
Richard Levitte | 642a166 | 2016-07-19 13:52:26 +0200 | [diff] [blame] | 3240 | } |
| 3241 | BIO_ADDR_free(info.addr); |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 3242 | } |
Dr. Stephen Henson | a2f9200 | 2011-05-09 15:44:01 +0000 | [diff] [blame] | 3243 | #endif |
| 3244 | |
Matt Caswell | e481f9b | 2015-05-15 10:49:56 +0100 | [diff] [blame] | 3245 | #if !defined(OPENSSL_NO_NEXTPROTONEG) |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 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); |
| 3253 | } |
Matt Caswell | e481f9b | 2015-05-15 10:49:56 +0100 | [diff] [blame] | 3254 | #endif |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 3255 | { |
| 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); |
| 3263 | } else |
| 3264 | BIO_printf(bio, "No ALPN negotiated\n"); |
| 3265 | } |
Ben Laurie | 71fa451 | 2012-06-03 22:00:21 +0000 | [diff] [blame] | 3266 | |
Piotr Sikora | e783bae | 2014-12-22 11:15:51 +0000 | [diff] [blame] | 3267 | #ifndef OPENSSL_NO_SRTP |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 3268 | { |
| 3269 | SRTP_PROTECTION_PROFILE *srtp_profile = |
| 3270 | SSL_get_selected_srtp_profile(s); |
| 3271 | |
| 3272 | if (srtp_profile) |
| 3273 | BIO_printf(bio, "SRTP Extension negotiated, profile=%s\n", |
| 3274 | srtp_profile->name); |
| 3275 | } |
Piotr Sikora | e783bae | 2014-12-22 11:15:51 +0000 | [diff] [blame] | 3276 | #endif |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 3277 | |
Matt Caswell | 576eb39 | 2017-02-23 11:52:43 +0000 | [diff] [blame] | 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"); |
| 3282 | break; |
| 3283 | |
| 3284 | case SSL_EARLY_DATA_REJECTED: |
| 3285 | BIO_printf(bio, "Early data was rejected\n"); |
| 3286 | break; |
| 3287 | |
| 3288 | case SSL_EARLY_DATA_ACCEPTED: |
| 3289 | BIO_printf(bio, "Early data was accepted\n"); |
| 3290 | break; |
| 3291 | |
| 3292 | } |
| 3293 | } |
| 3294 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 3295 | SSL_SESSION_print(bio, SSL_get_session(s)); |
FdaSilvaYY | d6073e2 | 2016-08-07 12:04:26 +0200 | [diff] [blame] | 3296 | if (SSL_get_session(s) != NULL && keymatexportlabel != NULL) { |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 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); |
Rich Salz | 68dc682 | 2015-04-30 17:48:31 -0400 | [diff] [blame] | 3300 | exportedkeymat = app_malloc(keymatexportlen, "export key"); |
| 3301 | if (!SSL_export_keying_material(s, exportedkeymat, |
| 3302 | keymatexportlen, |
| 3303 | keymatexportlabel, |
| 3304 | strlen(keymatexportlabel), |
| 3305 | NULL, 0, 0)) { |
| 3306 | BIO_printf(bio, " Error\n"); |
| 3307 | } else { |
| 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"); |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 3312 | } |
Rich Salz | 68dc682 | 2015-04-30 17:48:31 -0400 | [diff] [blame] | 3313 | OPENSSL_free(exportedkeymat); |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 3314 | } |
| 3315 | BIO_printf(bio, "---\n"); |
Rich Salz | 222561f | 2015-04-30 17:33:59 -0400 | [diff] [blame] | 3316 | X509_free(peer); |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 3317 | /* flush, or debugging output gets mixed with http response */ |
| 3318 | (void)BIO_flush(bio); |
| 3319 | } |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 3320 | |
Matt Caswell | 3e41ac3 | 2016-03-21 16:54:53 +0000 | [diff] [blame] | 3321 | # ifndef OPENSSL_NO_OCSP |
Dr. Stephen Henson | 67c8e7f | 2007-09-26 21:56:59 +0000 | [diff] [blame] | 3322 | static int ocsp_resp_cb(SSL *s, void *arg) |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 3323 | { |
| 3324 | const unsigned char *p; |
| 3325 | int len; |
| 3326 | OCSP_RESPONSE *rsp; |
| 3327 | len = SSL_get_tlsext_status_ocsp_resp(s, &p); |
| 3328 | BIO_puts(arg, "OCSP response: "); |
Paul Yang | 2234212 | 2017-06-13 01:24:02 +0800 | [diff] [blame] | 3329 | if (p == NULL) { |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 3330 | BIO_puts(arg, "no response sent\n"); |
| 3331 | return 1; |
| 3332 | } |
| 3333 | rsp = d2i_OCSP_RESPONSE(NULL, &p, len); |
Paul Yang | 2234212 | 2017-06-13 01:24:02 +0800 | [diff] [blame] | 3334 | if (rsp == NULL) { |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 3335 | BIO_puts(arg, "response parse error\n"); |
| 3336 | BIO_dump_indent(arg, (char *)p, len, 4); |
| 3337 | return 0; |
| 3338 | } |
| 3339 | BIO_puts(arg, "\n======================================\n"); |
| 3340 | OCSP_RESPONSE_print(arg, rsp, 0); |
| 3341 | BIO_puts(arg, "======================================\n"); |
| 3342 | OCSP_RESPONSE_free(rsp); |
| 3343 | return 1; |
| 3344 | } |
Matt Caswell | 3e41ac3 | 2016-03-21 16:54:53 +0000 | [diff] [blame] | 3345 | # endif |
Matt Caswell | f9e5503 | 2016-03-21 15:32:40 +0000 | [diff] [blame] | 3346 | |
Robert Scheck | 398b0bb | 2017-02-27 00:44:14 +0100 | [diff] [blame] | 3347 | static int ldap_ExtendedResponse_parse(const char *buf, long rem) |
| 3348 | { |
| 3349 | const unsigned char *cur, *end; |
| 3350 | long len; |
| 3351 | int tag, xclass, inf, ret = -1; |
| 3352 | |
| 3353 | cur = (const unsigned char *)buf; |
| 3354 | end = cur + rem; |
| 3355 | |
| 3356 | /* |
| 3357 | * From RFC 4511: |
| 3358 | * |
| 3359 | * LDAPMessage ::= SEQUENCE { |
| 3360 | * messageID MessageID, |
| 3361 | * protocolOp CHOICE { |
| 3362 | * ... |
| 3363 | * extendedResp ExtendedResponse, |
| 3364 | * ... }, |
| 3365 | * controls [0] Controls OPTIONAL } |
| 3366 | * |
| 3367 | * ExtendedResponse ::= [APPLICATION 24] SEQUENCE { |
| 3368 | * COMPONENTS OF LDAPResult, |
| 3369 | * responseName [10] LDAPOID OPTIONAL, |
| 3370 | * responseValue [11] OCTET STRING OPTIONAL } |
| 3371 | * |
| 3372 | * LDAPResult ::= SEQUENCE { |
| 3373 | * resultCode ENUMERATED { |
| 3374 | * success (0), |
| 3375 | * ... |
| 3376 | * other (80), |
| 3377 | * ... }, |
| 3378 | * matchedDN LDAPDN, |
| 3379 | * diagnosticMessage LDAPString, |
| 3380 | * referral [3] Referral OPTIONAL } |
| 3381 | */ |
| 3382 | |
| 3383 | /* pull SEQUENCE */ |
| 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"); |
| 3388 | goto end; |
| 3389 | } |
| 3390 | |
Andy Polyakov | 8b0d424 | 2017-03-02 16:56:44 +0100 | [diff] [blame] | 3391 | rem = len; /* ensure that we don't overstep the SEQUENCE */ |
| 3392 | |
Robert Scheck | 398b0bb | 2017-02-27 00:44:14 +0100 | [diff] [blame] | 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"); |
| 3398 | goto end; |
| 3399 | } |
| 3400 | |
| 3401 | cur += len; /* shall we check for MessageId match or just skip? */ |
| 3402 | |
| 3403 | /* pull [APPLICATION 24] */ |
| 3404 | rem = end - cur; |
| 3405 | inf = ASN1_get_object(&cur, &len, &tag, &xclass, rem); |
| 3406 | if (inf != V_ASN1_CONSTRUCTED || xclass != V_ASN1_APPLICATION || |
| 3407 | tag != 24) { |
| 3408 | BIO_printf(bio_err, "Not ExtendedResponse\n"); |
| 3409 | goto end; |
| 3410 | } |
| 3411 | |
| 3412 | /* pull resultCode */ |
| 3413 | rem = end - cur; |
| 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"); |
| 3418 | goto end; |
| 3419 | } |
| 3420 | |
| 3421 | /* len should always be one, but just in case... */ |
| 3422 | for (ret = 0, inf = 0; inf < len; inf++) { |
| 3423 | ret <<= 8; |
| 3424 | ret |= cur[inf]; |
| 3425 | } |
| 3426 | /* There is more data, but we don't care... */ |
| 3427 | end: |
| 3428 | return ret; |
| 3429 | } |
| 3430 | |
FdaSilvaYY | d6073e2 | 2016-08-07 12:04:26 +0200 | [diff] [blame] | 3431 | #endif /* OPENSSL_NO_SOCK */ |