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